@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]

Project:  COMPA
Version:	1.0
Last change:	11/10/2017 [Add Define a table of contents Link]
Assigned to:	Ngo Dang Truong
Primary use:	Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
    + Header / header
	+ Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
	+ Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# Text Color (text): #666666
# Text Color Deep (Text, title): #333333
# Primary Color 01(Link):  #d0c194
# Primary Color 02(Link):   #af7746
# Primary Color 03(Link):  #f7b527

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

Body copy:		16px/1.6 'Poppins', Arial, "Helvetica Neue", sans-serif;
Heading Section:	36px/1.6 'Allura', cursive; 36px/1.6 'Poppins', Arial, "Helvetica Neue", sans-serif;
Input, textarea:	14px/1.6 'Poppins', Arial, "Helvetica Neue", sans-serif;
Title:	18px/1.6 'Poppins', Arial, "Helvetica Neue", sans-serif;

Notes:	decreasing heading by 0.4em with every subsequent heading level
-------------------------------------------------------------------*/
/*-----------------------------------------------------*/
/*                   INCLUDE FILE                      */
/*-----------------------------------------------------*/
/*    Init variables and mixins    */
/* clearFix */
/* Detect variable screen */
/*    Include all sass of components general    */
/* #Basic Styles
================================================== */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: -webkit-calc(25/15);
  line-height: -moz-calc(25/15);
  line-height: calc(25/15);
  color: #666;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 1200px) {
  .page-layout-boxed {
    width: 1240px;
    margin: 0 auto;
  }
}

/* #Typography
================================================== */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
}

p img {
  margin: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

.text-small {
  font-size: 13px;
}

/*	Blockquotes  */
/* #Links
================================================== */
a, a:visited {
  text-decoration: none;
}

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

p a, p a:visited {
  line-height: inherit;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover {
  cursor: pointer;
}

a, button {
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

a:hover, button:hover {
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 1px transparent;
  -moz-box-shadow: 0 0 1px transparent;
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  -o-transition-property: color;
  -moz-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}

.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

/* #Lists
================================================== */
ul {
  list-style: none outside;
}

ol {
  list-style: decimal;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*-------------------------------------
              Base Button
--------------------------------------*/
/* #Button Styles
================================================== */
.au-btn {
  border: 2px solid #555;
  line-height: 1;
  background: #555;
  padding: 10px 20px;
  display: inline-block;
  vertical-align: bottom;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.au-btn:focus {
  outline: none;
}

.au-btn:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.au-btn-border {
  background: transparent;
  border: 2px solid #333333;
  color: #333333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.au-btn-border:hover {
  background: #ff9000;
  border-color: #ff9000;
  color: #fff;
}

.au-btn-border:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.au-btn-border:focus {
  color: #fff;
}

.au-btn-radius {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.au-btn-pill {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.au-btn-primary {
  border-color: #ff9000;
  background: #ff9000;
  color: #fff;
}

.au-btn-primary:hover {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.au-btn-primary:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.au-btn-primary:focus {
  color: #fff;
}

.au-btn-white {
  border-color: #fff;
  background: #fff;
  color: #333333;
}

.au-btn-white:hover {
  background: #ff9000;
  border-color: #ff9000;
  color: #fff;
}

.au-btn-white:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.au-btn-md {
  line-height: 46px;
  padding: 0 30px;
  font-size: 18px;
}

.au-btn-sm {
  line-height: 36px;
  font-size: 15px;
  padding: 0 25px;
}

.au-btn-border-light {
  background: none;
  border-color: #fff;
  color: #fff;
}

.au-btn-border-light:hover {
  background: #ff9000;
  border-color: #ff9000;
  color: #fff;
}

.au-btn-border-light:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.au-btn-border-light:focus {
  color: #fff;
}

/* #Social item
================================================== */
.social-item {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: table;
  text-align: center;
}

.social-item a {
  display: table-cell;
  vertical-align: middle;
  color: #888;
  font-size: 15px;
}

.social-item a:hover {
  color: #ff9000;
}

/* #Hamburgers button
================================================== */
.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  vertical-align: top;
}

.hamburger:focus {
  outline: none;
}

.hamburger .hamburger-box {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 25px;
  height: 22px;
}

.hamburger .hamburger-box .hamburger-inner {
  width: 25px;
  height: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.hamburger .hamburger-box .hamburger-inner:before {
  width: 25px;
  height: 3px;
  top: -6px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.hamburger .hamburger-box .hamburger-inner:after {
  bottom: -6px;
  width: 25px;
  height: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.hamburger--elastic .hamburger-box .hamburger-inner:before {
  top: 8px;
}

.hamburger--elastic .hamburger-box .hamburger-inner:after {
  top: 16px;
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
  -moz-transform: translate3d(0, 8px, 0) rotate(135deg);
  transform: translate3d(0, 8px, 0) rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
  -moz-transform: translate3d(0, -16px, 0) rotate(-270deg);
  transform: translate3d(0, -16px, 0) rotate(-270deg);
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
}

/* #owl style
================================================== */
.nav-style-1 {
  position: relative;
}

.nav-style-1 .image-box {
  margin-bottom: 0;
}

.nav-style-1 .owl-nav .owl-next {
  right: -15px;
}

.nav-style-1 .owl-nav .owl-next i:before {
  margin-left: 1px;
}

.nav-style-1 .owl-nav .owl-prev {
  left: -15px;
}

.nav-style-1 .owl-nav .owl-prev i:before {
  margin-left: -1px;
}

.nav-style-1 .owl-nav .owl-next,
.nav-style-1 .owl-nav .owl-prev {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  width: 42px;
  height: 42px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
}

.nav-style-1 .owl-nav .owl-next:hover,
.nav-style-1 .owl-nav .owl-prev:hover {
  background: #ff9000;
  color: #fff;
}

.nav-style-1 .owl-nav .owl-next i,
.nav-style-1 .owl-nav .owl-prev i {
  color: #fff;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-style-1 .owl-nav .owl-next i:before,
.nav-style-1 .owl-nav .owl-prev i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1230px) {
  .nav-style-1 .owl-nav .owl-next {
    right: -15px;
  }
  .nav-style-1 .owl-nav .owl-prev {
    left: -15px;
  }
}

@media (max-width: 1199px) {
  .nav-style-1 .owl-nav .owl-prev,
  .nav-style-1 .owl-nav .owl-next {
    top: 20%;
  }
}

@media (max-width: 991px) {
  .nav-style-1 .owl-nav .owl-prev,
  .nav-style-1 .owl-nav .owl-next {
    top: 25%;
  }
}

.nav-style-1--center {
  position: relative;
}

.nav-style-1--center .image-box {
  margin-bottom: 0;
}

.nav-style-1--center .owl-nav .owl-next,
.nav-style-1--center .owl-nav .owl-prev {
  top: 50%;
  margin-top: -16px;
}

@media (max-width: 1199px) {
  .nav-style-1--center .owl-prev,
  .nav-style-1--center .owl-next {
    top: 50%;
  }
}

@media (max-width: 991px) {
  .nav-style-1--center .owl-prev,
  .nav-style-1--center .owl-next {
    top: 50%;
  }
}

.nav-style-1--inner {
  position: relative;
}

.nav-style-1--inner .image-box {
  margin-bottom: 0;
}

.nav-style-1--inner .owl-nav .owl-next,
.nav-style-1--inner .owl-nav .owl-prev {
  top: 50%;
  margin-top: -16px;
  visibility: visible;
  opacity: 1;
}

.nav-style-1--inner .owl-nav .owl-next {
  right: 20px;
}

.nav-style-1--inner .owl-nav .owl-prev {
  left: 20px;
}

.nav-style-1--inner:hover .owl-nav .owl-next {
  right: 20px;
}

.nav-style-1--inner:hover .owl-nav .owl-prev {
  left: 20px;
}

@media (max-width: 1199px) {
  .nav-style-1--inner .owl-prev,
  .nav-style-1--inner .owl-next {
    top: 50%;
  }
}

@media (max-width: 991px) {
  .nav-style-1--inner .owl-prev,
  .nav-style-1--inner .owl-next {
    top: 50%;
  }
}

.nav-style-1--inner-2 .owl-nav .owl-prev {
  left: 0;
}

.nav-style-1--inner-2 .owl-nav .owl-next {
  right: 0;
}

.nav-style-2 {
  position: static;
}

.nav-style-2 .image-box {
  margin-bottom: 0;
}

.nav-style-2 .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
}

.nav-style-2 .owl-nav .owl-next i {
  margin-left: 1px;
}

.nav-style-2 .owl-nav .owl-next,
.nav-style-2 .owl-nav .owl-prev {
  font-size: 13px;
  border: 2px solid #ccc;
  width: 32px;
  height: 32px;
  float: left;
  margin-left: 5px;
  position: relative;
}

.nav-style-2 .owl-nav .owl-next i,
.nav-style-2 .owl-nav .owl-prev i {
  color: #ccc;
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
}

.nav-style-2 .owl-nav .owl-next i:before,
.nav-style-2 .owl-nav .owl-prev i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-style-2 .owl-nav .owl-next:hover,
.nav-style-2 .owl-nav .owl-prev:hover {
  border-color: #ff9000;
}

.nav-style-2 .owl-nav .owl-next:hover i,
.nav-style-2 .owl-nav .owl-prev:hover i {
  color: #ff9000;
}

.dots-style-1 .owl-dots {
  text-align: center;
}

.dots-style-1 .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 7px;
  width: 10px;
  height: 10px;
  background: #999999;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.dots-style-1 .owl-dots .owl-dot.active {
  background: #ff9000;
}

/* #project tabs
================================================== */
.project-tabs {
  padding: 0;
  text-align: center;
}

.project-tabs li {
  display: inline-block;
  padding: 0 15px;
}

.project-tabs li.active span {
  color: #ff9000;
}

.project-tabs li span {
  cursor: pointer;
  color: #878787;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 991px) {
  .project-tabs li {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .project-tabs li {
    display: block;
  }
}

/* #Au Tabs
================================================== */
.au-tabs {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #e6e6e6;
}

.au-tabs:after {
  content: "";
  display: table;
  clear: both;
}

.au-tabs li {
  float: left;
}

.au-tabs li.active a {
  color: #333;
  background: #f2f2f2;
}

.au-tabs li a {
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  padding: 20px 80px;
}

.au-tabs li a:hover {
  color: #333;
  background: #f2f2f2;
}

@media (max-width: 991px) {
  .au-tabs li {
    width: 100%;
  }
  .au-tabs li a {
    display: block;
  }
}

.post-tabs {
  padding: 0;
  margin: 0;
}

.post-tabs li {
  margin-bottom: 10px;
}

.post-tabs li a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #888888;
}

.post-tabs li a:hover {
  color: #ff9000;
}

.post-tabs li.active a {
  color: #ff9000;
}

/*Gallery box*/
.gallery-box {
  position: relative;
}

.gallery-box:hover .gallery-overlay {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.gallery-box .gallery-overlay {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.gallery-box .gallery-overlay a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  color: #fff;
}

.gallery-box .gallery-overlay a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mfp-bg {
  z-index: 100000;
}

.mfp-gallery {
  z-index: 1000000;
}

.mfp-content {
  width: 800px;
}

/*Page toolbar*/
.page-toolbar .page-nav .page-next,
.page-toolbar .page-nav .page-prev {
  color: #ccc;
  width: 32px;
  height: 32px;
  border: 2px solid #ccc;
  position: relative;
}

.page-toolbar .page-nav .page-next:before,
.page-toolbar .page-nav .page-prev:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-toolbar .page-nav .page-next:hover,
.page-toolbar .page-nav .page-prev:hover {
  border-color: #ff9000;
  color: #ff9000;
}

.page-toolbar .page-nav .page-prev:before {
  margin-left: -1px;
}

.page-toolbar .page-nav .page-next:before {
  margin-left: 1px;
}

/*Search widget*/
.search-widget {
  position: relative;
}

.search-widget .icon-search {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  display: table;
  text-align: center;
  background: #333;
}

.search-widget .icon-search a {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.search-widget input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #CCCCCC;
}

.search-widget input:focus {
  outline: none;
}

.search-widget-1 .icon-search {
  background: none;
}

.search-widget-1 .icon-search a {
  color: #333;
  font-size: 12px;
}

.search-widget-1 input {
  padding: 14px 20px;
  font-size: 13px;
}

/* #Lists
================================================== */
.sidebar-lists-1 {
  padding: 0;
  margin: 0;
}

.sidebar-lists-1 li:last-child a {
  border-bottom: 1px solid #e6e6e6;
}

.sidebar-lists-1 li a {
  border-top: 1px solid #e6e6e6;
  display: block;
  padding: 8px 0;
  color: #555555;
}

.sidebar-lists-1 li a:hover {
  color: #ff9000;
}

.sidebar-lists-2 li:last-child a {
  border-bottom: none;
}

.sidebar-lists-2 li {
  line-height: 1;
  padding: 13px 0;
}

.sidebar-lists-2 li a {
  border-top: none;
  border-left: 3px solid transparent;
  padding: 0 0 0 20px;
  display: block;
  line-height: 1.5;
}

.sidebar-lists-2 li a:hover {
  color: #ff9000;
  border-color: #ff9000;
}

.sidebar-lists-2 li.active a {
  color: #ff9000;
  border-color: #ff9000;
}

.sidebar-lists-3 li:last-child a {
  border-bottom: none;
}

.sidebar-lists-3 li {
  margin-bottom: 10px;
}

.sidebar-lists-3 li:after {
  content: "";
  display: table;
  clear: both;
}

.sidebar-lists-3 li a {
  float: left;
  border: none;
  padding: 0;
}

.sidebar-lists-3 li span {
  float: right;
}

.sidebar-contact {
  position: relative;
}

.sidebar-contact li {
  margin-bottom: 10px;
  position: relative;
}

.sidebar-contact li i {
  color: #ff9000;
  position: absolute;
  top: 5px;
  left: 0;
}

.sidebar-contact li span {
  padding-left: 30px;
  display: block;
  color: #555555;
}

/*Video*/
.video-wrapper {
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
}

.video-wrapper .video-photo {
  height: 0;
  opacity: 0;
  position: absolute;
}

.video-wrapper .overlay-play-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.video-wrapper .overlay-play-video .icon {
  display: block;
  position: absolute;
  width: 97px;
  height: 76px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-wrapper .embed-responsive {
  height: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 4s;
  -o-transition: all 4s;
  -moz-transition: all 4s;
  transition: all 4s;
}

/* #au-paginations
================================================== */
.au-paginations {
  padding: 0;
  margin: 0;
}

.au-paginations:after {
  content: "";
  display: table;
  clear: both;
}

.au-paginations li:not(.next) {
  margin-right: 10px;
  float: left;
  width: 36px;
  height: 36px;
  border: 1px solid #e6e6e6;
  display: table;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.au-paginations li:not(.next) a {
  display: table-cell;
  vertical-align: middle;
  color: #808080;
  font-size: 13px;
}

.au-paginations li:not(.next).active {
  background: #ff9000;
  border-color: #ff9000;
}

.au-paginations li:not(.next).active a {
  color: #fff;
}

.au-paginations li:not(.next):hover {
  background: #ff9000;
  border-color: #ff9000;
}

.au-paginations li:not(.next):hover a {
  color: #fff;
}

.au-paginations .next {
  display: table;
  text-align: center;
  float: left;
  width: 60px;
  height: 36px;
  margin-left: 10px;
}

.au-paginations .next a {
  color: #555;
  display: table-cell;
  vertical-align: middle;
  font-size: 13px;
}

.au-paginations .next a i {
  margin-left: 5px;
  font-size: 15px;
}

.au-paginations .next a:hover {
  color: #ff9000;
}

/* #text elements
================================================== */
.text-hover-animate {
  position: relative;
}

.text-hover-animate:before {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -1px;
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-hover-animate:hover {
  color: #fff;
  padding-left: 10px;
}

.text-hover-animate:hover:before {
  width: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-block {
  padding: 0;
  margin: 0;
  display: block;
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 18px;
}

.text-med-sm {
  font-size: 24px;
}

.text-med {
  font-size: 30px;
}

.text-med-lg {
  font-size: 36px;
}

.text-large-sm {
  font-size: 60px;
}

.text-large {
  font-size: 80px;
}

.text-black {
  color: #222;
}

.text-black:before {
  background: #222;
}

.text-black:hover {
  color: #222;
}

.text-white {
  color: #fff;
}

.text-white:before {
  background: #fff;
}

.text-white:hover {
  color: #fff;
}

.text-script {
  font-family: "Playlist Script", cursive;
}

.text-inline {
  display: inline-block;
  padding: 0;
  margin: 0;
}

/*Tooltip*/
.tooltip-inner {
  max-width: none;
  white-space: nowrap;
  z-index: 100;
}

/*Notify*/
.notify-product.alert-success {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  color: #fff;
  background: #43A047;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.notify-product.alert-success .close {
  color: #fff;
  opacity: 1;
}

.notify-product.alert-danger {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  color: #fff;
  background: #F44336;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.notify-product.alert-danger .close {
  color: #fff;
  opacity: 1;
}

/* #Footer Section styles
================================================== */
.footer .footer-heading {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 30px;
}

.footer .text-block {
  color: #999999;
}

.footer .vertical-list li {
  line-height: 2;
}

.footer .vertical-list li a {
  color: #999;
}

.footer .vertical-list li a:hover {
  color: #ff9000;
}

.footer .link-color {
  color: #ff9000;
}

.footer .footer-item {
  margin-bottom: 30px;
}

.footer .footer-social {
  margin-bottom: 40px;
}

.footer .footer-social .social-item {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.footer .footer-social .social-item a {
  color: #fff;
}

.footer .footer-social .social-item .fa-twitter {
  background: #00aced;
}

.footer .footer-social .social-item .fa-twitter:hover {
  background: #1a90d9;
}

.footer .footer-social .social-item .fa-google-plus {
  background: #dd4b39;
}

.footer .footer-social .social-item .fa-google-plus:hover {
  background: #d13e30;
}

.footer .footer-social .social-item .fa-facebook {
  background: #3b5998;
}

.footer .footer-social .social-item .fa-facebook:hover {
  background: #324a80;
}

.footer .footer-menu li a:before {
  content: '\f105';
  font-family: FontAwesome, sans-serif;
  margin-right: 5px;
}

.footer .footer-item-contact .link-color, .footer .footer-item-contact .text-bold,
.footer .footer-item-about .link-color,
.footer .footer-item-about .text-bold {
  margin-left: 4px;
}

.footer .footer-contact {
  position: relative;
}

.footer .footer-contact li i {
  color: #ff9000;
  margin-right: 5px;
}

.footer .footer-contact li span {
  color: #aaaaaa;
}

.footer .footer-contact .bg-map {
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
}

.footer .footer-bar {
  text-align: center;
  padding: 20px 0;
  background: #1a1a1a;
}

.footer .footer-bar a {
  color: #cccccc;
  margin-left: 5px;
}

.footer .footer-bar a:hover {
  color: #ff9000;
}

/* #Form styles
================================================== */
.au-input {
  background: transparent;
  border: 1px solid #cccccc;
  padding: 13px 25px;
  width: 100%;
}

.au-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #444444;
}

.au-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #444444;
  opacity: 1;
}

.au-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #444444;
  opacity: 1;
}

.au-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #444444;
}

.au-input:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #444444;
}

.au-input:focus {
  outline: none;
  border-color: #ff9000;
}

.au-input-label {
  display: block;
  margin-bottom: 5px;
}

.au-textarea {
  background: transparent;
  border: 1px solid #cccccc;
  padding: 13px 25px;
  width: 100%;
}

.au-textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #444444;
}

.au-textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #444444;
  opacity: 1;
}

.au-textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #444444;
  opacity: 1;
}

.au-textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #444444;
}

.au-textarea:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #444444;
}

.au-textarea:focus {
  outline: none;
  border-color: #ff9000;
}

.chosen-container {
  position: relative;
}

.chosen-container:focus {
  outline: none;
}

.chosen-container.chosen-container-single-nosearch .chosen-drop .chosen-search {
  display: none;
}

.chosen-container .chosen-single {
  padding: 8px 10px;
  display: block;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  color: #888888;
}

.chosen-container .chosen-single span:after {
  content: '\f0d7';
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: FontAwesome, sans-serif;
  float: right;
}

.chosen-container .chosen-drop {
  background: #fff;
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #ccc;
  z-index: 100;
  display: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-top: 3px;
}

.chosen-container .chosen-drop .chosen-search {
  padding: 10px;
  position: relative;
}

.chosen-container .chosen-drop .chosen-search:after {
  content: '\f002';
  font-family: FontAwesome, sans-serif;
  position: absolute;
  top: 11px;
  right: 20px;
}

.chosen-container .chosen-drop .chosen-search .chosen-search-input {
  border: 1px solid #999999;
  width: 100%;
  padding-left: 10px;
}

.chosen-container .chosen-drop .chosen-search .chosen-search-input:focus {
  outline: none;
}

.chosen-container .chosen-drop .chosen-results {
  margin-bottom: 0;
  padding-left: 0;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

.chosen-container .chosen-drop .chosen-results li {
  cursor: pointer;
  padding: 5px 20px;
}

.chosen-container .chosen-drop .chosen-results li:hover {
  background: #e5e5e5;
}

.chosen-container .chosen-drop .chosen-results li.result-selected {
  font-weight: 700;
}

.chosen-container.chosen-with-drop .chosen-single span:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.chosen-container.chosen-with-drop .chosen-drop {
  display: block;
}

.au-select {
  width: 100%;
  padding: 10px 13px;
  background: none;
}

.au-input-number {
  line-height: 38px;
  vertical-align: top;
  padding-left: 10px;
  border: 1px solid #999;
}

.au-input-number::-webkit-outer-spin-button, .au-input-number::-webkit-inner-spin-button {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.au-input-number:focus {
  outline: none;
}

.input-checkbox label {
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.input-checkbox label:before {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  padding: 2px;
  color: transparent;
  border: 1px solid #999;
  content: '\f00c';
  font-family: FontAwesome, sans-serif;
  background: #fff;
}

.input-checkbox input[type=checkbox] {
  position: absolute;
  display: none;
}

.input-checkbox input[type=checkbox]:checked ~ label:before {
  color: #006fbd;
}

.input-radio {
  position: relative;
}

.input-radio label {
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
  z-index: 10;
  padding: 5px 30px;
  position: relative;
}

.input-radio .check {
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  padding: 2px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: transparent;
  border: 1px solid #999;
  content: '\f111';
  font-family: FontAwesome, sans-serif;
  background: #fff;
  z-index: 1;
}

.input-radio input[type=radio] {
  position: absolute;
  display: none;
}

.input-radio input[type=radio]:checked ~ .check:after {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  content: '';
  background: #006fbd;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.help-block {
  display: block !important;
  margin: 0;
  height: 22px;
}

.help-block ul {
  margin-bottom: 0;
  padding-bottom: 5px;
}

.help-block ul li {
  font-size: 13px;
}

input.disabled {
  cursor: not-allowed;
}

/* #Header Section styles
================================================== */
.topbar {
  background: #222222;
  padding: 7px 0;
}

.topbar .topbar-contact {
  margin-bottom: 0;
  display: inline-block;
  color: #888;
}

.topbar .topbar-contact i {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

.topbar .topbar-contact span {
  line-height: 18px;
  vertical-align: middle;
}

.topbar .social-item a:hover {
  color: #ff9000;
}

.header-bar {
  padding: 13px 0;
  z-index: 1000;
  background: #fff;
}

.header-bar:after {
  content: "";
  display: table;
  clear: both;
}

.header-bar .header-logo {
  float: left;
}

.header-bar .header-logo a {
  display: inline-block;
  line-height: 75px;
}

.header-bar .header-logo img {
  max-height: 75px;
}

.header-bar .header-navbar {
  float: right;
}

.header-bar .header-topbar {
  text-align: right;
}

.header-bar .header-topbar .topbar-social {
  margin-bottom: 4px;
  margin-right: 30px;
  vertical-align: middle;
}

.header-bar .header-topbar .au-btn {
  border-color: #ff9000;
  color: #ff9000;
}

.header-bar .header-topbar .au-btn:hover {
  border-color: #ff9000;
  background: #ff9000;
  color: #fff;
}

.header-bar .header-topbar .au-btn:active {
  border-color: #e58200;
  background: #e58200;
  color: #fff;
}

@media (max-width: 1199px) {
  .header-bar .header-logo img {
    max-height: 55px;
  }
  .header-bar .header-navbar .navbar-horizontal > .navbar-menu > li > a {
    padding: 22px 10px;
  }
}

.header-bar.cloned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-bar.unsticky {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(0, -100%) scale(1);
  -moz-transform: translate(0, -100%) scale(1);
  -ms-transform: translate(0, -100%) scale(1);
  -o-transform: translate(0, -100%) scale(1);
  transform: translate(0, -100%) scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-bar.sticky {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -ms-transform: translate(0, 0) scale(1);
  -o-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px 0;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.header-bar.sticky .header-logo a {
  line-height: 55px;
}

.header-bar.sticky .header-logo img {
  max-height: 55px;
}

.header-bar.sticky .navbar-horizontal > .navbar-menu > li > a {
  padding: 16px 15px;
}

@media (max-width: 1199px) {
  .header-bar.sticky .navbar-horizontal > .navbar-menu > li > a {
    padding: 16px 10px;
  }
}

.header--transparent .header-bar.sticky {
  background: rgba(0, 0, 0, 0.95);
}

.header--transparent .header-bar--dark.sticky {
  background: rgba(255, 255, 255, 0.95);
}

.header-bar-2.sticky .header-holder {
  border-bottom: none;
}

.header-bar-2.sticky .header-topbar {
  display: none;
}

.header-bar-2 {
  padding: 25px 0 0 0;
}

.header-bar-2 .navbar-horizontal > .navbar-menu > li > a {
  padding: 20px 15px;
}

.header-bar-2 .header-holder {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-bar-2 .header-holder:after {
  content: "";
  display: table;
  clear: both;
}

.header--no-border .header-holder {
  border-bottom: none;
}

.header-bar-mobile {
  background: #fff;
}

.header-bar-mobile .header-toolbar {
  padding: 5px 0;
}

.header-bar-mobile .header-toolbar:after {
  content: "";
  display: table;
  clear: both;
}

.header-bar-mobile .header-logo {
  padding-top: 5px;
  padding-bottom: 3px;
  float: left;
}

.header-bar-mobile .hamburger {
  padding: 39px 0;
  float: right;
}

.header-bar-mobile .header-navbar:after {
  content: "";
  display: table;
  clear: both;
}

.header-desktop {
  z-index: 1000;
}

.header--absolute {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.header--light {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.header--light .topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header--light .topbar .topbar-contact,
.header--light .social-item a {
  color: #fff;
}

.header--light .social-item a:hover {
  color: #ff9000;
}

.header--light .topbar .topbar-contact i {
  color: #999999;
}

.header--light .navbar-horizontal > .navbar-menu > li > a {
  color: #fff;
}

.header--transparent .topbar {
  background: none;
}

.header--transparent .header-bar {
  background: transparent;
}

/* #Heading Styles
================================================== */
.heading-section {
  color: #333;
  font-weight: 800;
  font-size: 30px;
  margin: 0;
  position: relative;
  text-align: center;
  padding-bottom: 25px;
}

.heading-section:after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -80px;
  width: 160px;
  height: 4px;
  background: #ff9000;
  content: '';
  display: block;
}

.heading-section--left {
  text-align: left;
}

.heading-section--left:after {
  left: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .heading-section--left {
    padding-right: 80px;
  }
}

.heading-section--light {
  color: #fff;
}

.heading-page {
  color: #fff;
  padding: 100px 0 110px 0;
}

.heading-page .breadcrumbs {
  padding: 0;
  margin: 0;
}

.heading-page .breadcrumbs:after {
  content: "";
  display: table;
  clear: both;
}

.heading-page .breadcrumbs li {
  float: left;
}

.heading-page .breadcrumbs li:after {
  content: "/";
  margin: 0 5px;
}

.heading-page .breadcrumbs li:last-child {
  pointer-events: none;
}

.heading-page .breadcrumbs li:last-child:after {
  display: none;
}

.heading-page .breadcrumbs li:first-child a:before {
  content: '\f015';
  font-family: FontAwesome, sans-serif;
  margin-right: 5px;
}

.heading-page .breadcrumbs li a {
  font-size: 13px;
  color: #fff;
}

.heading-page .breadcrumbs li a:hover {
  color: #ff9000;
}

.heading-page .title {
  font-weight: 700;
  font-size: 39px;
  margin: 5px 0 0;
}

.heading-page .au-btn {
  margin-top: 10px;
}

.heading-page .hp-featured {
  text-align: right;
}

@media (max-width: 767px) {
  .heading-page .hp-featured {
    text-align: left;
    margin-top: 10px;
  }
}

.heading-page--grey .breadcrumbs li a {
  color: #888;
}

.heading-page--grey .breadcrumbs li:after {
  color: #888;
}

.heading-page--grey .title {
  color: #333;
}

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

/* #Icon box
================================================== */
.icon-box .title {
  margin: 0;
}

.icon-box .title a {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.icon-box .content {
  margin: 0;
}

.icon-box-1 {
  text-align: center;
  margin-bottom: 70px;
}

.icon-box-1 .title {
  margin: 15px 0 10px 0;
}

.icon-box-1 .title a:hover {
  color: #ff9000;
}

.icon-box-1:hover .icon img {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

.icon-box-1 .content {
  padding: 0 20px;
}

@media (max-width: 767px) {
  .icon-box-1 .content {
    padding: 0 120px;
  }
  .icon-box-1 .title a {
    font-size: 18px;
  }
}

@media (max-width: 479px) {
  .icon-box-1 .content {
    padding: 0;
  }
}

/*icon box 2*/
.icon-box-2 {
  border: 1px solid #e5e5e5;
  padding: 0 40px 40px 40px;
  margin-bottom: 30px;
  background: #fff;
}

.icon-box-2 .icon {
  width: 50px;
  height: 50px;
  background: #333333;
  margin-bottom: 15px;
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  -o-transition-property: color;
  -moz-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.icon-box-2 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff9000;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.icon-box-2 .icon i {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 26px;
  color: #fff;
  z-index: 2;
}

.icon-box-2:hover .icon:before {
  z-index: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.icon-box-2 .title {
  margin-bottom: 15px;
}

.icon-box-2 .title a:hover {
  color: #ff9000;
}

@media (max-width: 767px) {
  .icon-box-2 .title a {
    font-size: 18px;
  }
}

.icon-box-2--color {
  border: none;
}

.icon-box-2--color .icon {
  background: #ff9000;
}

.icon-box-2--color .icon:before {
  background: #e58200;
}

/*icon box 3*/
.icon-box-3 {
  text-align: center;
  margin-bottom: 60px;
}

.icon-box-3 .number {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: #ff9000;
  display: block;
}

.icon-box-3 .icon {
  display: block;
  margin-bottom: 20px;
  font-size: 30px;
  color: #fff;
}

.icon-box-3 .title {
  font-size: 15px;
  font-weight: 700;
  color: #ff9000;
}

/*iconbox 4*/
.icon-box-4 {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.icon-box-4 .icon img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon-box-4 .icon img:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*icon box 5*/
.icon-box-5 {
  margin-bottom: 30px;
}

.icon-box-5 .icon {
  float: left;
}

.icon-box-5 .icon i {
  font-size: 26px;
  color: #ff9000;
}

.icon-box-5 .title {
  margin-bottom: 10px;
}

.icon-box-5 .title a {
  display: block;
  color: #ff9000;
  font-size: 16px;
}

.icon-box-5 .textbox {
  color: #CCCCCC;
}

.icon-box-5 .content {
  padding-right: 30px;
  margin-left: 60px;
}

@media (max-width: 479px) {
  .icon-box-5 .title {
    line-height: 1.5;
  }
}

/* #Image box
================================================== */
.image-box .image {
  overflow: hidden;
}

.image-box .image img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.image-box .image img:hover {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.image-box .title {
  margin: 0;
}

.image-box .title a {
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

.image-box .title a:hover {
  color: #ff9000;
}

.image-box .read-more-icon {
  width: 30px;
  height: 30px;
  color: #fff;
  background: #bababa;
  text-align: center;
  display: table;
}

.image-box .read-more-icon:before {
  display: table-cell;
  vertical-align: middle;
}

.image-box .read-more-icon:hover {
  background: #ff9000;
}

.image-box-1 {
  height: 100%;
  background: #fff;
  position: relative;
  margin-bottom: 30px;
}

.image-box-1 .content {
  background: #fff;
  padding: 20px 20px 30px 30px;
}

.image-box-1 .content .read-more-icon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.image-box-2 {
  margin-bottom: 60px;
}

.image-box-2 .image {
  margin-bottom: 15px;
}

.image-box-2 .title {
  margin-bottom: 20px;
}

.image-box-2 .title a {
  font-weight: 700;
}

.image-box-2 .textbox {
  margin-bottom: 20px;
}

.image-box-2 .au-btn {
  border-color: #cccccc;
  color: #808080;
}

.image-box-2 .au-btn:hover {
  background: #ff9000;
  border-color: #ff9000;
  color: #fff;
}

.image-box-2 .au-btn:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.image-box-2 .au-btn:focus {
  color: #fff;
}

.image-box-2 .au-btn span {
  margin-right: 3px;
}

.image-box-2 .au-btn i {
  line-height: 20px;
}

@media (max-width: 767px) {
  .image-box-2 .title a {
    font-size: 20px;
  }
}

.image-box-2--lite .image {
  margin-bottom: 0;
}

.image-box-2--lite .title a {
  display: block;
  padding: 20px 25px;
  color: #ff9000;
  background: #333;
}

.image-box-2--lite .title a:hover {
  background: #ff9000;
  color: #fff;
}

.image-box-2--light .title a {
  background: #fff;
  color: #333333;
}

.image-box-2--border {
  border: 1px solid #e5e5e5;
  padding: 30px 30px 40px 30px;
  background: #fff;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .image-box-2--border {
    border: none;
    padding: 15px 15px 30px;
  }
}

/*Image box 3*/
.image-box-3 {
  position: relative;
}

.image-box-3 .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image-box-3 .content {
  position: absolute;
  padding: 30px;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.image-box-3 .content .title {
  visibility: hidden;
  margin-bottom: 15px;
  -webkit-animation: fadeOutDown .5s;
  -moz-animation: fadeOutDown .5s;
  -o-animation: fadeOutDown .5s;
  animation: fadeOutDown .5s;
}

.image-box-3 .content .title a {
  color: #fff;
  font-weight: 700;
}

.image-box-3 .content .au-btn {
  visibility: hidden;
  -webkit-animation: fadeOutDown .5s;
  -moz-animation: fadeOutDown .5s;
  -o-animation: fadeOutDown .5s;
  animation: fadeOutDown .5s;
}

.image-box-3:hover .bg-overlay {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image-box-3:hover .content .title {
  visibility: visible;
  -webkit-animation: fadeInUp .5s;
  -moz-animation: fadeInUp .5s;
  -o-animation: fadeInUp .5s;
  animation: fadeInUp .5s;
}

.image-box-3:hover .content .au-btn {
  visibility: visible;
  -webkit-animation: fadeInUp .5s;
  -moz-animation: fadeInUp .5s;
  -o-animation: fadeInUp .5s;
  animation: fadeInUp .5s;
}

/*image box 4*/
.image-box-4 {
  margin-bottom: 50px;
}

.image-box-4 .image {
  margin-bottom: 15px;
}

.image-box-4 .title {
  margin-bottom: 15px;
}

.image-box-4 .title a {
  font-weight: 700;
  font-size: 18px;
}

.image-box-4 .sub-info .date {
  color: #999999;
}

.image-box-4 .sub-info .divider {
  margin: 0 5px;
}

.image-box-4 .sub-info .subject {
  color: #ff9000;
}

/*image box 5*/
.image-box-5 {
  margin-bottom: 50px;
  text-align: center;
}

.image-box-5 .box-body {
  margin-bottom: 10px;
  padding: 0 150px;
}

.image-box-5 .box-body p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
  position: relative;
  padding: 20px 30px;
}

.image-box-5 .box-body p:before {
  position: absolute;
  left: 0;
  line-height: 1;
  top: 0;
  content: '“';
  font-family: Arial, sans-serif;
  font-size: 60px;
  color: #ccc;
  font-weight: 700;
}

.image-box-5 .box-bot {
  display: inline-block;
}

.image-box-5 .box-bot:after {
  content: "";
  display: table;
  clear: both;
}

.image-box-5 .box-bot .avatar {
  float: left;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}

.image-box-5 .box-bot .avatar img {
  width: 100%;
}

.image-box-5 .box-bot .info {
  text-align: left;
  margin-left: 80px;
  padding-left: 20px;
  padding-top: 13px;
}

.image-box-5 .box-bot .info .name {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: #333333;
}

.image-box-5 .box-bot .info .job-title {
  display: block;
  color: #888888;
  font-size: 13px;
}

@media (max-width: 767px) {
  .image-box-5 .box-body {
    padding: 0 50px;
  }
}

@media (max-width: 479px) {
  .image-box-5 .box-body {
    padding: 0;
  }
}

.image-box-5-1 {
  text-align: left;
  position: relative;
  margin-bottom: 110px !important;
}

.image-box-5-1 .box-body {
  border: 1px solid #e5e5e5;
  padding: 20px 50px 80px;
  margin-bottom: 0;
}

.image-box-5-1 .box-bot {
  text-align: center;
  position: absolute;
  bottom: -100px;
  left: 50px;
}

.image-box-5-1 .box-bot .avatar {
  display: inline-block;
  float: none;
  margin-bottom: 15px;
}

.image-box-5-1 .box-bot .info {
  margin-left: 0;
  padding: 0;
}

.image-box-5-1--light .box-body {
  background: #fff;
}

/*Image box 6*/
.image-box-6 .image {
  padding-right: 30px;
}

.image-box-6 .image img {
  width: 100%;
}

.image-box-6 .image img:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.image-box-6 .title {
  margin: 60px 0 40px;
}

.image-box-6 .title a {
  font-weight: 700;
  color: #333333;
  font-size: 30px;
}

@media (max-width: 1199px) {
  .image-box-6 .image {
    padding-right: 0;
  }
  .image-box-6 .title {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .image-box-6 .title a {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .image-box-6 .title {
    margin-top: 20px;
  }
}

/*image box 7*/
.image-box-7 {
  margin-bottom: 15px;
}

.image-box-7:after {
  content: "";
  display: table;
  clear: both;
}

.image-box-7 .image {
  width: 70px;
  float: left;
}

.image-box-7 .content {
  padding-left: 15px;
  margin-left: 70px;
}

.image-box-7 .title {
  line-height: 1.2;
  margin-bottom: 10px;
}

.image-box-7 .title a {
  display: block;
  font-size: 15px;
}

.image-box-7 .date {
  color: #808080;
  font-size: 13px;
}

/*Image box 8*/
.image-box-8 {
  padding-top: 25px;
}

.image-box-8 .image-box-holder {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #333333;
  padding: 50px 30px 30px 40px;
  position: relative;
}

.image-box-8 .avatar {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #ff9000;
}

.image-box-8 .avatar img {
  width: 100%;
}

.image-box-8 .content {
  color: #ccc;
  margin-bottom: 15px;
}

.image-box-8 .name-job {
  color: #ff9000;
}

/*Image box 9*/
.image-box-9 {
  position: relative;
  margin-bottom: 30px;
}

.image-box-9 .image img:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.image-box-9:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.image-box-9 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.6)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  text-align: center;
  padding: 10px;
}

.image-box-9 .content .name a {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.image-box-9 .content .job-title {
  color: #ff9000;
}

/*Image box 10*/
.image-box-10 {
  margin-bottom: 60px;
}

.image-box-10 .image,
.image-box-10 .video-wrapper {
  margin-bottom: 30px;
}

.image-box-10 .title a {
  font-size: 30px;
  margin-bottom: 30px;
  display: block;
  color: #222;
}

.image-box-10 .title a:hover {
  color: #ff9000;
}

.image-box-10 .info {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.image-box-10 .info a,
.image-box-10 .info span {
  color: #808080;
  font-size: 13px;
}

.image-box-10 .info .author:after,
.image-box-10 .info .date:after,
.image-box-10 .info .subject:after {
  content: '|';
  margin-left: 3px;
}

.image-box-10 .info .subject {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.image-box-10 .info .subject li {
  display: inline-block;
}

.image-box-10 .info .subject li:after {
  content: ',';
}

.image-box-10 .info .subject li:last-child:after {
  display: none;
}

.image-box-10 .info a:hover {
  color: #ff9000;
}

.image-box-10 .content {
  margin-bottom: 20px;
}

.image-box-10 .read-more {
  color: #333333;
  font-weight: 700;
}

.image-box-10 .read-more:before {
  content: '\f0da';
  font-family: FontAwesome, sans-serif;
  margin-right: 5px;
}

.image-box-10 .read-more:hover {
  color: #ff9000;
}

/*Image box 11*/
.image-box-11 {
  margin-bottom: 30px;
}

.image-box-11 .image {
  margin-bottom: 15px;
}

.image-box-11 .title {
  line-height: 1.5;
}

.image-box-11 .title a {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
  color: #222;
}

.image-box-11 .title a:hover {
  color: #ff9000;
}

.image-box-11 .info a,
.image-box-11 .info span {
  color: #808080;
  font-size: 13px;
}

.image-box-11 .info .date:after {
  content: '|';
  margin-left: 3px;
}

.image-box-11 .info a:hover {
  color: #ff9000;
}

/*Image box 12*/
.image-box-12 {
  margin-bottom: 55px;
}

.image-box-12 .image {
  position: relative;
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
}

.image-box-12 .image img:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.image-box-12 .image .badge {
  width: 50px;
  height: 50px;
  background: #999;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: table;
  text-align: center;
  position: absolute;
  top: 8px;
  left: 8px;
}

.image-box-12 .image .badge span {
  display: table-cell;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 400;
}

.image-box-12 .image .btn-add-to-cart {
  background: #ff9000;
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 160px;
  height: 40px;
  display: table;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image-box-12 .image .btn-add-to-cart:hover {
  background: #e58200;
}

.image-box-12 .image .btn-add-to-cart span {
  display: table-cell;
  vertical-align: middle;
}

.image-box-12 .image .btn-add-to-cart.is-added {
  background: #F44336;
}

.image-box-12 .image:hover {
  border-color: #ff9000;
}

.image-box-12 .image:hover .btn-add-to-cart {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image-box-12 .title {
  margin-bottom: 7px;
}

.image-box-12 .price {
  color: #ff9000;
  font-weight: 700;
  font-size: 18px;
}

/* #Navbar styles
================================================== */
.navbar-horizontal .navbar-menu {
  padding: 0;
  margin: 0;
}

.navbar-horizontal .navbar-menu:after {
  content: "";
  display: table;
  clear: both;
}

.navbar-horizontal .navbar-menu li > a span {
  border-bottom: 2px solid transparent;
}

.navbar-horizontal .navbar-menu li > a:hover span {
  border-bottom: 2px solid #ff9000;
}

.navbar-horizontal .navbar-menu li {
  float: left;
}

.navbar-horizontal .navbar-menu li a {
  color: #888;
  display: inline-block;
  padding: 25px 15px;
  font-weight: 700;
}

.navbar-horizontal .navbar-menu li a:hover {
  color: #ff9000;
}

.navbar-horizontal .navbar-menu li i {
  display: none;
}

.navbar-horizontal .navbar-menu li.drop {
  position: relative;
  z-index: 10000;
}

.navbar-horizontal .navbar-menu li.drop:hover > a {
  color: #ff9000;
}

.navbar-horizontal .navbar-menu li.drop:hover > a span {
  border-bottom: 2px solid #ff9000;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu {
  background: #fff;
  z-index: 10000;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  margin: 0;
  padding: 0;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu.bottom-right {
  top: 110%;
  left: 15px;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu.bottom-left {
  top: 110%;
  right: 0;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu.top-left {
  top: 0;
  right: 110%;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu.top-right {
  top: 0;
  margin-left: 1px;
  left: 110%;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu li {
  float: none;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu li a {
  line-height: 1.4;
  padding: 13px 20px;
  display: block;
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  position: relative;
  border-top: 1px solid #e1e6eb;
  background: #f7f7f7;
}

.navbar-horizontal .navbar-menu li.drop .drop-menu li a:hover {
  background: #ffffff;
  color: #333;
}

.navbar-horizontal .navbar-menu li.drop:hover > .drop-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-horizontal .navbar-menu li.drop:hover > .drop-menu.bottom-right, .navbar-horizontal .navbar-menu li.drop:hover > .drop-menu.bottom-left {
  top: 100%;
}

.navbar-horizontal .navbar-menu li.drop:hover > .drop-menu.top-left {
  right: 100%;
}

.navbar-horizontal .navbar-menu li.drop:hover > .drop-menu.top-right {
  left: 100%;
}

/*Navbar menu mobile*/
.navbar-mobile {
  z-index: 10000;
  width: 100%;
  float: left;
  display: none;
}

.navbar-mobile .navbar-menu {
  padding: 0;
  margin: 0;
}

.navbar-mobile .navbar-menu li a {
  display: block;
}

.navbar-mobile .navbar-menu li.drop .drop-menu {
  display: none;
  padding: 0;
}

.navbar-mobile {
  background: #ff9000;
}

.navbar-mobile ul.navbar-menu .navbar-menu-contact {
  background: #fff;
  padding: 14px 30px;
  border-top: 1px solid #e5e5e5;
}

.navbar-mobile ul.navbar-menu li {
  position: relative;
}

.navbar-mobile ul.navbar-menu li a {
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
  font-weight: 700;
  border-bottom: 1px solid #e58200;
  position: relative;
  z-index: 100;
}

.navbar-mobile ul.navbar-menu li.drop > .arrow {
  width: 50px;
  height: 50px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-mobile ul.navbar-menu li.drop > .arrow i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
}

.navbar-mobile ul.navbar-menu li.drop > .arrow i:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 3px;
  background: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.navbar-mobile ul.navbar-menu li.drop > .arrow i:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 3px;
  height: 11px;
  background: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.navbar-mobile ul.navbar-menu li.drop > .clicked {
  color: #f1c40f;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu {
  width: 100%;
  background: #fff;
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu li a {
  font-size: 15px;
  font-weight: 400;
  padding: 12px 40px;
  color: #333;
  border-bottom: 1px solid #e1e6eb;
  background: #fff;
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu .drop .drop-menu {
  display: block;
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu .drop .drop-menu li a {
  background: #fff;
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu .drop > a {
  background: #f7f7f7;
}

.navbar-mobile ul.navbar-menu li.drop .drop-menu .drop li a {
  padding: 15px 50px;
}

.slide {
  text-align: center;
}

.slide .uranus.tparrows {
  z-index: 100;
}

.slide .tp-bullets {
  z-index: 100;
}

.slide .tparrows {
  width: 40px;
  height: 90px;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  margin-top: -45px;
  background: transparent;
}

.slide .tparrows:before {
  font-size: 18px;
  width: 40px;
  height: 90px;
  line-height: 90px;
}

.slide .tparrows.tp-leftarrow {
  left: 15px !important;
  right: auto;
}

.slide .tparrows.tp-leftarrow:before {
  content: '\f104';
  font-family: FontAwesome, sans-serif;
  font-size: 60px;
  color: #999999;
}

.slide .tparrows.tp-leftarrow:hover:before {
  color: #fff;
}

.slide .tparrows.tp-rightarrow {
  left: auto !important;
  right: 15px;
}

.slide .tparrows.tp-rightarrow:before {
  content: '\f105';
  font-family: FontAwesome, sans-serif;
  font-size: 60px;
  color: #999999;
}

.slide .tparrows.tp-rightarrow:hover:before {
  color: #fff;
}

.slide .item-1 .caption-1 .heading-section {
  font-size: 30px;
  color: #fff;
  white-space: normal;
  padding-bottom: 20px;
}

.slide .item-1 .caption-2 {
  font-size: 72px;
  color: #fff;
  white-space: normal;
  font-weight: 700;
  line-height: 1;
}

.slide .item-1 .caption-2--sm {
  font-size: 60px;
}

.slide .item-1 .caption-3 {
  font-size: 22px;
  color: #fff;
  white-space: normal;
}

.slide .item-2 .caption-3 {
  font-weight: 700;
}

.slide .item-countdown .caption-2 {
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #fff;
}

.slide .item-countdown .caption-time {
  color: #fff;
  font-weight: 700;
}

.slide .item-countdown .caption-sub {
  font-weight: 400;
  color: #fff;
}

.slide .coming-soon-footer {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 10000;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slide .coming-soon-footer .text-flow {
  margin-bottom: 20px;
  color: #cccccc;
  font-weight: 300;
  font-size: 13px;
}

.slide .coming-soon-footer .au-input {
  background: #fff;
  width: 270px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  text-align: left !important;
}

.slide .coming-soon-footer .au-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #555555;
}

.slide .coming-soon-footer .au-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555555;
  opacity: 1;
}

.slide .coming-soon-footer .au-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
  opacity: 1;
}

.slide .coming-soon-footer .au-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555555;
}

.slide .coming-soon-footer .au-input:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #555555;
}

.slide .coming-soon-footer .au-btn {
  color: #fff;
  background: #333;
  border-color: #333333;
  line-height: 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  margin-bottom: 10px;
}

.slide .coming-soon-footer .au-btn:hover {
  background: #ff9000 !important;
  border-color: #ff9000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slide .mouse-wheel {
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  left: 50%;
  bottom: 30px;
  width: 33px;
  height: 45px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  border: 2px solid #fff;
  -webkit-transform: translateX(-50%) translateZ(0);
  -moz-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  z-index: 100;
}

.slide .mouse-wheel-inner {
  position: absolute;
  left: 50%;
  margin-left: -3px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  background: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: mouse-wheel 1.25s infinite linear;
  -moz-animation: mouse-wheel 1.25s infinite linear;
  -o-animation: mouse-wheel 1.25s infinite linear;
  animation: mouse-wheel 1.25s infinite linear;
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}

@-webkit-keyframes mouse-wheel {
  0% {
    -webkit-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  20% {
    -webkit-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  60% {
    -webkit-transform: scaleY(1.5) translateY(-7px);
    transform: scaleY(1.5) translateY(-7px);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
}

@-moz-keyframes mouse-wheel {
  0% {
    -moz-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  20% {
    -moz-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  60% {
    -moz-transform: scaleY(1.5) translateY(-7px);
    transform: scaleY(1.5) translateY(-7px);
  }
  100% {
    -moz-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
}

@-o-keyframes mouse-wheel {
  0% {
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  20% {
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  60% {
    -o-transform: scaleY(1.5) translateY(-7px);
    transform: scaleY(1.5) translateY(-7px);
  }
  100% {
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
}

@keyframes mouse-wheel {
  0% {
    -webkit-transform: scaleY(1) translateY(0);
    -moz-transform: scaleY(1) translateY(0);
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  20% {
    -webkit-transform: scaleY(1) translateY(0);
    -moz-transform: scaleY(1) translateY(0);
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
  60% {
    -webkit-transform: scaleY(1.5) translateY(-7px);
    -moz-transform: scaleY(1.5) translateY(-7px);
    -o-transform: scaleY(1.5) translateY(-7px);
    transform: scaleY(1.5) translateY(-7px);
  }
  100% {
    -webkit-transform: scaleY(1) translateY(0);
    -moz-transform: scaleY(1) translateY(0);
    -o-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
  }
}

/* #Helper class
================================================== */
.show {
  display: block !important;
}

.hidden {
  display: none !important;
}

.clear-list-style {
  padding: 0;
  margin: 0;
  list-style: none;
}

.b-t-0 {
  border-top: none;
}

.b-b-0 {
  border-bottom: none;
}

.b-r-0 {
  border-right: none;
}

.b-l-0 {
  border-left: none;
}

.b-0 {
  border: none;
}

.p-b-0 {
  padding-bottom: 0px;
}

.p-t-0 {
  padding-top: 0px;
}

.p-r-0 {
  padding-right: 0px;
}

.p-l-0 {
  padding-left: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

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

.m-r-0 {
  margin-right: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.m-0 {
  margin: 0px;
}

.p-0 {
  padding: 0px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.p-l-5 {
  padding-left: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

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

.m-r-5 {
  margin-right: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-5 {
  margin: 5px;
}

.p-5 {
  padding: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-l-10 {
  padding-left: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

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

.m-r-10 {
  margin-right: 10px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-10 {
  margin: 10px;
}

.p-10 {
  padding: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

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

.m-r-15 {
  margin-right: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-15 {
  margin: 15px;
}

.p-15 {
  padding: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-l-20 {
  padding-left: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

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

.m-r-20 {
  margin-right: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-20 {
  margin: 20px;
}

.p-20 {
  padding: 20px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-l-25 {
  padding-left: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

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

.m-r-25 {
  margin-right: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-25 {
  margin: 25px;
}

.p-25 {
  padding: 25px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-l-30 {
  padding-left: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

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

.m-r-30 {
  margin-right: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-30 {
  margin: 30px;
}

.p-30 {
  padding: 30px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-r-35 {
  padding-right: 35px;
}

.p-l-35 {
  padding-left: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

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

.m-r-35 {
  margin-right: 35px;
}

.m-l-35 {
  margin-left: 35px;
}

.m-35 {
  margin: 35px;
}

.p-35 {
  padding: 35px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-l-40 {
  padding-left: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

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

.m-r-40 {
  margin-right: 40px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-40 {
  margin: 40px;
}

.p-40 {
  padding: 40px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-r-45 {
  padding-right: 45px;
}

.p-l-45 {
  padding-left: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

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

.m-r-45 {
  margin-right: 45px;
}

.m-l-45 {
  margin-left: 45px;
}

.m-45 {
  margin: 45px;
}

.p-45 {
  padding: 45px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-r-50 {
  padding-right: 50px;
}

.p-l-50 {
  padding-left: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

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

.m-r-50 {
  margin-right: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-50 {
  margin: 50px;
}

.p-50 {
  padding: 50px;
}

.p-b-55 {
  padding-bottom: 55px;
}

.p-t-55 {
  padding-top: 55px;
}

.p-r-55 {
  padding-right: 55px;
}

.p-l-55 {
  padding-left: 55px;
}

.m-b-55 {
  margin-bottom: 55px;
}

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

.m-r-55 {
  margin-right: 55px;
}

.m-l-55 {
  margin-left: 55px;
}

.m-55 {
  margin: 55px;
}

.p-55 {
  padding: 55px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-l-60 {
  padding-left: 60px;
}

.m-b-60 {
  margin-bottom: 60px;
}

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

.m-r-60 {
  margin-right: 60px;
}

.m-l-60 {
  margin-left: 60px;
}

.m-60 {
  margin: 60px;
}

.p-60 {
  padding: 60px;
}

.p-b-65 {
  padding-bottom: 65px;
}

.p-t-65 {
  padding-top: 65px;
}

.p-r-65 {
  padding-right: 65px;
}

.p-l-65 {
  padding-left: 65px;
}

.m-b-65 {
  margin-bottom: 65px;
}

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

.m-r-65 {
  margin-right: 65px;
}

.m-l-65 {
  margin-left: 65px;
}

.m-65 {
  margin: 65px;
}

.p-65 {
  padding: 65px;
}

.p-b-70 {
  padding-bottom: 70px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-r-70 {
  padding-right: 70px;
}

.p-l-70 {
  padding-left: 70px;
}

.m-b-70 {
  margin-bottom: 70px;
}

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

.m-r-70 {
  margin-right: 70px;
}

.m-l-70 {
  margin-left: 70px;
}

.m-70 {
  margin: 70px;
}

.p-70 {
  padding: 70px;
}

.p-b-75 {
  padding-bottom: 75px;
}

.p-t-75 {
  padding-top: 75px;
}

.p-r-75 {
  padding-right: 75px;
}

.p-l-75 {
  padding-left: 75px;
}

.m-b-75 {
  margin-bottom: 75px;
}

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

.m-r-75 {
  margin-right: 75px;
}

.m-l-75 {
  margin-left: 75px;
}

.m-75 {
  margin: 75px;
}

.p-75 {
  padding: 75px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-l-80 {
  padding-left: 80px;
}

.m-b-80 {
  margin-bottom: 80px;
}

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

.m-r-80 {
  margin-right: 80px;
}

.m-l-80 {
  margin-left: 80px;
}

.m-80 {
  margin: 80px;
}

.p-80 {
  padding: 80px;
}

.p-b-85 {
  padding-bottom: 85px;
}

.p-t-85 {
  padding-top: 85px;
}

.p-r-85 {
  padding-right: 85px;
}

.p-l-85 {
  padding-left: 85px;
}

.m-b-85 {
  margin-bottom: 85px;
}

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

.m-r-85 {
  margin-right: 85px;
}

.m-l-85 {
  margin-left: 85px;
}

.m-85 {
  margin: 85px;
}

.p-85 {
  padding: 85px;
}

.p-b-90 {
  padding-bottom: 90px;
}

.p-t-90 {
  padding-top: 90px;
}

.p-r-90 {
  padding-right: 90px;
}

.p-l-90 {
  padding-left: 90px;
}

.m-b-90 {
  margin-bottom: 90px;
}

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

.m-r-90 {
  margin-right: 90px;
}

.m-l-90 {
  margin-left: 90px;
}

.m-90 {
  margin: 90px;
}

.p-90 {
  padding: 90px;
}

.p-b-95 {
  padding-bottom: 95px;
}

.p-t-95 {
  padding-top: 95px;
}

.p-r-95 {
  padding-right: 95px;
}

.p-l-95 {
  padding-left: 95px;
}

.m-b-95 {
  margin-bottom: 95px;
}

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

.m-r-95 {
  margin-right: 95px;
}

.m-l-95 {
  margin-left: 95px;
}

.m-95 {
  margin: 95px;
}

.p-95 {
  padding: 95px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-l-100 {
  padding-left: 100px;
}

.m-b-100 {
  margin-bottom: 100px;
}

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

.m-r-100 {
  margin-right: 100px;
}

.m-l-100 {
  margin-left: 100px;
}

.m-100 {
  margin: 100px;
}

.p-100 {
  padding: 100px;
}

.p-b-105 {
  padding-bottom: 105px;
}

.p-t-105 {
  padding-top: 105px;
}

.p-r-105 {
  padding-right: 105px;
}

.p-l-105 {
  padding-left: 105px;
}

.m-b-105 {
  margin-bottom: 105px;
}

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

.m-r-105 {
  margin-right: 105px;
}

.m-l-105 {
  margin-left: 105px;
}

.m-105 {
  margin: 105px;
}

.p-105 {
  padding: 105px;
}

.p-b-110 {
  padding-bottom: 110px;
}

.p-t-110 {
  padding-top: 110px;
}

.p-r-110 {
  padding-right: 110px;
}

.p-l-110 {
  padding-left: 110px;
}

.m-b-110 {
  margin-bottom: 110px;
}

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

.m-r-110 {
  margin-right: 110px;
}

.m-l-110 {
  margin-left: 110px;
}

.m-110 {
  margin: 110px;
}

.p-110 {
  padding: 110px;
}

.p-b-115 {
  padding-bottom: 115px;
}

.p-t-115 {
  padding-top: 115px;
}

.p-r-115 {
  padding-right: 115px;
}

.p-l-115 {
  padding-left: 115px;
}

.m-b-115 {
  margin-bottom: 115px;
}

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

.m-r-115 {
  margin-right: 115px;
}

.m-l-115 {
  margin-left: 115px;
}

.m-115 {
  margin: 115px;
}

.p-115 {
  padding: 115px;
}

.p-b-120 {
  padding-bottom: 120px;
}

.p-t-120 {
  padding-top: 120px;
}

.p-r-120 {
  padding-right: 120px;
}

.p-l-120 {
  padding-left: 120px;
}

.m-b-120 {
  margin-bottom: 120px;
}

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

.m-r-120 {
  margin-right: 120px;
}

.m-l-120 {
  margin-left: 120px;
}

.m-120 {
  margin: 120px;
}

.p-120 {
  padding: 120px;
}

.p-b-125 {
  padding-bottom: 125px;
}

.p-t-125 {
  padding-top: 125px;
}

.p-r-125 {
  padding-right: 125px;
}

.p-l-125 {
  padding-left: 125px;
}

.m-b-125 {
  margin-bottom: 125px;
}

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

.m-r-125 {
  margin-right: 125px;
}

.m-l-125 {
  margin-left: 125px;
}

.m-125 {
  margin: 125px;
}

.p-125 {
  padding: 125px;
}

.p-b-130 {
  padding-bottom: 130px;
}

.p-t-130 {
  padding-top: 130px;
}

.p-r-130 {
  padding-right: 130px;
}

.p-l-130 {
  padding-left: 130px;
}

.m-b-130 {
  margin-bottom: 130px;
}

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

.m-r-130 {
  margin-right: 130px;
}

.m-l-130 {
  margin-left: 130px;
}

.m-130 {
  margin: 130px;
}

.p-130 {
  padding: 130px;
}

.p-b-135 {
  padding-bottom: 135px;
}

.p-t-135 {
  padding-top: 135px;
}

.p-r-135 {
  padding-right: 135px;
}

.p-l-135 {
  padding-left: 135px;
}

.m-b-135 {
  margin-bottom: 135px;
}

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

.m-r-135 {
  margin-right: 135px;
}

.m-l-135 {
  margin-left: 135px;
}

.m-135 {
  margin: 135px;
}

.p-135 {
  padding: 135px;
}

.p-b-140 {
  padding-bottom: 140px;
}

.p-t-140 {
  padding-top: 140px;
}

.p-r-140 {
  padding-right: 140px;
}

.p-l-140 {
  padding-left: 140px;
}

.m-b-140 {
  margin-bottom: 140px;
}

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

.m-r-140 {
  margin-right: 140px;
}

.m-l-140 {
  margin-left: 140px;
}

.m-140 {
  margin: 140px;
}

.p-140 {
  padding: 140px;
}

.p-b-145 {
  padding-bottom: 145px;
}

.p-t-145 {
  padding-top: 145px;
}

.p-r-145 {
  padding-right: 145px;
}

.p-l-145 {
  padding-left: 145px;
}

.m-b-145 {
  margin-bottom: 145px;
}

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

.m-r-145 {
  margin-right: 145px;
}

.m-l-145 {
  margin-left: 145px;
}

.m-145 {
  margin: 145px;
}

.p-145 {
  padding: 145px;
}

.p-b-150 {
  padding-bottom: 150px;
}

.p-t-150 {
  padding-top: 150px;
}

.p-r-150 {
  padding-right: 150px;
}

.p-l-150 {
  padding-left: 150px;
}

.m-b-150 {
  margin-bottom: 150px;
}

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

.m-r-150 {
  margin-right: 150px;
}

.m-l-150 {
  margin-left: 150px;
}

.m-150 {
  margin: 150px;
}

.p-150 {
  padding: 150px;
}

.p-b-155 {
  padding-bottom: 155px;
}

.p-t-155 {
  padding-top: 155px;
}

.p-r-155 {
  padding-right: 155px;
}

.p-l-155 {
  padding-left: 155px;
}

.m-b-155 {
  margin-bottom: 155px;
}

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

.m-r-155 {
  margin-right: 155px;
}

.m-l-155 {
  margin-left: 155px;
}

.m-155 {
  margin: 155px;
}

.p-155 {
  padding: 155px;
}

.p-b-160 {
  padding-bottom: 160px;
}

.p-t-160 {
  padding-top: 160px;
}

.p-r-160 {
  padding-right: 160px;
}

.p-l-160 {
  padding-left: 160px;
}

.m-b-160 {
  margin-bottom: 160px;
}

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

.m-r-160 {
  margin-right: 160px;
}

.m-l-160 {
  margin-left: 160px;
}

.m-160 {
  margin: 160px;
}

.p-160 {
  padding: 160px;
}

.p-b-165 {
  padding-bottom: 165px;
}

.p-t-165 {
  padding-top: 165px;
}

.p-r-165 {
  padding-right: 165px;
}

.p-l-165 {
  padding-left: 165px;
}

.m-b-165 {
  margin-bottom: 165px;
}

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

.m-r-165 {
  margin-right: 165px;
}

.m-l-165 {
  margin-left: 165px;
}

.m-165 {
  margin: 165px;
}

.p-165 {
  padding: 165px;
}

.p-b-170 {
  padding-bottom: 170px;
}

.p-t-170 {
  padding-top: 170px;
}

.p-r-170 {
  padding-right: 170px;
}

.p-l-170 {
  padding-left: 170px;
}

.m-b-170 {
  margin-bottom: 170px;
}

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

.m-r-170 {
  margin-right: 170px;
}

.m-l-170 {
  margin-left: 170px;
}

.m-170 {
  margin: 170px;
}

.p-170 {
  padding: 170px;
}

.p-b-175 {
  padding-bottom: 175px;
}

.p-t-175 {
  padding-top: 175px;
}

.p-r-175 {
  padding-right: 175px;
}

.p-l-175 {
  padding-left: 175px;
}

.m-b-175 {
  margin-bottom: 175px;
}

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

.m-r-175 {
  margin-right: 175px;
}

.m-l-175 {
  margin-left: 175px;
}

.m-175 {
  margin: 175px;
}

.p-175 {
  padding: 175px;
}

.p-b-180 {
  padding-bottom: 180px;
}

.p-t-180 {
  padding-top: 180px;
}

.p-r-180 {
  padding-right: 180px;
}

.p-l-180 {
  padding-left: 180px;
}

.m-b-180 {
  margin-bottom: 180px;
}

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

.m-r-180 {
  margin-right: 180px;
}

.m-l-180 {
  margin-left: 180px;
}

.m-180 {
  margin: 180px;
}

.p-180 {
  padding: 180px;
}

.p-b-185 {
  padding-bottom: 185px;
}

.p-t-185 {
  padding-top: 185px;
}

.p-r-185 {
  padding-right: 185px;
}

.p-l-185 {
  padding-left: 185px;
}

.m-b-185 {
  margin-bottom: 185px;
}

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

.m-r-185 {
  margin-right: 185px;
}

.m-l-185 {
  margin-left: 185px;
}

.m-185 {
  margin: 185px;
}

.p-185 {
  padding: 185px;
}

.p-b-190 {
  padding-bottom: 190px;
}

.p-t-190 {
  padding-top: 190px;
}

.p-r-190 {
  padding-right: 190px;
}

.p-l-190 {
  padding-left: 190px;
}

.m-b-190 {
  margin-bottom: 190px;
}

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

.m-r-190 {
  margin-right: 190px;
}

.m-l-190 {
  margin-left: 190px;
}

.m-190 {
  margin: 190px;
}

.p-190 {
  padding: 190px;
}

.p-b-195 {
  padding-bottom: 195px;
}

.p-t-195 {
  padding-top: 195px;
}

.p-r-195 {
  padding-right: 195px;
}

.p-l-195 {
  padding-left: 195px;
}

.m-b-195 {
  margin-bottom: 195px;
}

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

.m-r-195 {
  margin-right: 195px;
}

.m-l-195 {
  margin-left: 195px;
}

.m-195 {
  margin: 195px;
}

.p-195 {
  padding: 195px;
}

.p-b-200 {
  padding-bottom: 200px;
}

.p-t-200 {
  padding-top: 200px;
}

.p-r-200 {
  padding-right: 200px;
}

.p-l-200 {
  padding-left: 200px;
}

.m-b-200 {
  margin-bottom: 200px;
}

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

.m-r-200 {
  margin-right: 200px;
}

.m-l-200 {
  margin-left: 200px;
}

.m-200 {
  margin: 200px;
}

.p-200 {
  padding: 200px;
}

.p-b-205 {
  padding-bottom: 205px;
}

.p-t-205 {
  padding-top: 205px;
}

.p-r-205 {
  padding-right: 205px;
}

.p-l-205 {
  padding-left: 205px;
}

.m-b-205 {
  margin-bottom: 205px;
}

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

.m-r-205 {
  margin-right: 205px;
}

.m-l-205 {
  margin-left: 205px;
}

.m-205 {
  margin: 205px;
}

.p-205 {
  padding: 205px;
}

.p-b-210 {
  padding-bottom: 210px;
}

.p-t-210 {
  padding-top: 210px;
}

.p-r-210 {
  padding-right: 210px;
}

.p-l-210 {
  padding-left: 210px;
}

.m-b-210 {
  margin-bottom: 210px;
}

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

.m-r-210 {
  margin-right: 210px;
}

.m-l-210 {
  margin-left: 210px;
}

.m-210 {
  margin: 210px;
}

.p-210 {
  padding: 210px;
}

.p-b-215 {
  padding-bottom: 215px;
}

.p-t-215 {
  padding-top: 215px;
}

.p-r-215 {
  padding-right: 215px;
}

.p-l-215 {
  padding-left: 215px;
}

.m-b-215 {
  margin-bottom: 215px;
}

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

.m-r-215 {
  margin-right: 215px;
}

.m-l-215 {
  margin-left: 215px;
}

.m-215 {
  margin: 215px;
}

.p-215 {
  padding: 215px;
}

.p-b-220 {
  padding-bottom: 220px;
}

.p-t-220 {
  padding-top: 220px;
}

.p-r-220 {
  padding-right: 220px;
}

.p-l-220 {
  padding-left: 220px;
}

.m-b-220 {
  margin-bottom: 220px;
}

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

.m-r-220 {
  margin-right: 220px;
}

.m-l-220 {
  margin-left: 220px;
}

.m-220 {
  margin: 220px;
}

.p-220 {
  padding: 220px;
}

.p-b-225 {
  padding-bottom: 225px;
}

.p-t-225 {
  padding-top: 225px;
}

.p-r-225 {
  padding-right: 225px;
}

.p-l-225 {
  padding-left: 225px;
}

.m-b-225 {
  margin-bottom: 225px;
}

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

.m-r-225 {
  margin-right: 225px;
}

.m-l-225 {
  margin-left: 225px;
}

.m-225 {
  margin: 225px;
}

.p-225 {
  padding: 225px;
}

.p-b-230 {
  padding-bottom: 230px;
}

.p-t-230 {
  padding-top: 230px;
}

.p-r-230 {
  padding-right: 230px;
}

.p-l-230 {
  padding-left: 230px;
}

.m-b-230 {
  margin-bottom: 230px;
}

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

.m-r-230 {
  margin-right: 230px;
}

.m-l-230 {
  margin-left: 230px;
}

.m-230 {
  margin: 230px;
}

.p-230 {
  padding: 230px;
}

.p-b-235 {
  padding-bottom: 235px;
}

.p-t-235 {
  padding-top: 235px;
}

.p-r-235 {
  padding-right: 235px;
}

.p-l-235 {
  padding-left: 235px;
}

.m-b-235 {
  margin-bottom: 235px;
}

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

.m-r-235 {
  margin-right: 235px;
}

.m-l-235 {
  margin-left: 235px;
}

.m-235 {
  margin: 235px;
}

.p-235 {
  padding: 235px;
}

.p-b-240 {
  padding-bottom: 240px;
}

.p-t-240 {
  padding-top: 240px;
}

.p-r-240 {
  padding-right: 240px;
}

.p-l-240 {
  padding-left: 240px;
}

.m-b-240 {
  margin-bottom: 240px;
}

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

.m-r-240 {
  margin-right: 240px;
}

.m-l-240 {
  margin-left: 240px;
}

.m-240 {
  margin: 240px;
}

.p-240 {
  padding: 240px;
}

.p-b-245 {
  padding-bottom: 245px;
}

.p-t-245 {
  padding-top: 245px;
}

.p-r-245 {
  padding-right: 245px;
}

.p-l-245 {
  padding-left: 245px;
}

.m-b-245 {
  margin-bottom: 245px;
}

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

.m-r-245 {
  margin-right: 245px;
}

.m-l-245 {
  margin-left: 245px;
}

.m-245 {
  margin: 245px;
}

.p-245 {
  padding: 245px;
}

.p-b-250 {
  padding-bottom: 250px;
}

.p-t-250 {
  padding-top: 250px;
}

.p-r-250 {
  padding-right: 250px;
}

.p-l-250 {
  padding-left: 250px;
}

.m-b-250 {
  margin-bottom: 250px;
}

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

.m-r-250 {
  margin-right: 250px;
}

.m-l-250 {
  margin-left: 250px;
}

.m-250 {
  margin: 250px;
}

.p-250 {
  padding: 250px;
}

@media (max-width: 319px) {
  .hidden-phone-small {
    display: none !important;
  }
}

@media (max-width: 479px) {
  .hidden-phone-med {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-tablet-portrait {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hidden-tablet-landscape {
    display: none !important;
  }
}

@media (min-width: 320px) {
  .hidden-phone-small-up {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hidden-phone-med-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-tablet-portrait-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-tablet-landscape-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-desktop-med {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-desktop-med-up {
    display: none !important;
  }
}

@media (max-width: 1599px) {
  .hidden-desktop-large {
    display: none !important;
  }
}

@media (min-width: 1600px) {
  .hidden-desktop-large-up {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hidden-phone-med-tablet-portrait {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-tablet-portrait-tablet-landscape {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-tablet-landscape-desktop-med {
    display: none !important;
  }
}

/* #Backgroud
================================================== */
.bg-black {
  background: #333;
}

.bg-transparent {
  background: transparent;
}

.bg-grey {
  background: #f0f0f0;
}

.bg-grey-light {
  background: #f5f5f5;
}

.bg-grey-dark {
  background: #999999;
}

.bg-white {
  background: #fff;
}

.bg-cover {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}

.bg-primary {
  background: #ff9000;
}

.bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.parallax-window {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-color: transparent !important;
  background-attachment: fixed !important;
}

.bg-gradient {
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(black));
  background: -webkit-linear-gradient(bottom, transparent 0%, black 100%);
  background: -moz-linear-gradient(bottom, transparent 0%, black 100%);
  background: -o-linear-gradient(bottom, transparent 0%, black 100%);
  background: linear-gradient(to top, transparent 0%, black 100%);
}

.bg-gradient-light {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 100%);
}

/* #Block
================================================== */
.block-contain:after {
  content: "";
  display: table;
  clear: both;
}

.block-contain .block-left {
  float: left;
}

.block-contain .block-right {
  float: right;
}

.horizontal-list {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: bottom;
}

.horizontal-list:after {
  content: "";
  display: table;
  clear: both;
}

.horizontal-list li {
  float: left;
}

.block-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-list {
  padding: 0;
  margin: 0;
}

/*col custom*/
@media (min-width: 1600px) {
  .col-cs-2 {
    width: 20%;
    float: left;
  }
}

.row-cs:after {
  content: "";
  display: table;
  clear: both;
}

.col-cs-6 {
  width: 50%;
  float: left;
}

.col-cs-12 {
  width: 100%;
  float: left;
}

.col-cs-3 {
  width: 25%;
  float: left;
}

.col-cs-4 {
  width: -webkit-calc(100% / 3);
  width: -moz-calc(100% / 3);
  width: calc(100% / 3);
  float: left;
}

/*Col slice*/
.row-sl:after {
  content: "";
  display: table;
  clear: both;
}

.col-sl-4 {
  float: left;
  width: -webkit-calc(100% / 3);
  width: -moz-calc(100% / 3);
  width: calc(100% / 3);
}

ul.list-reset {
  padding-left: 0;
  margin-bottom: 0;
}

.pos-absolute {
  position: absolute !important;
}

.pos-fixed {
  position: fixed !important;
}

.block-inline {
  display: inline-block;
}

.cp-spinner {
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.cp-eclipse {
  width: 12px;
  height: 12px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ff9000;
  margin: 12px;
  -webkit-animation: cp-eclipse-animate 1s ease-out infinite;
  -moz-animation: cp-eclipse-animate 1s ease-out infinite;
  -o-animation: cp-eclipse-animate 1s ease-out infinite;
  animation: cp-eclipse-animate 1s ease-out infinite;
}

.cp-eclipse:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid transparent;
  border-right-color: #ff9000;
  position: absolute;
  top: -18px;
  left: -18px;
}

.cp-eclipse:after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid transparent;
  border-left-color: #ff9000;
  position: absolute;
  top: -18px;
  right: -18px;
}

@-webkit-keyframes cp-eclipse-animate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes cp-eclipse-animate {
  0% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes cp-eclipse-animate {
  0% {
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cp-eclipse-animate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* #Section styles
================================================== */
.section {
  position: relative;
  display: block;
}

@media (max-width: 991px) {
  .section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* #Section call to action
================================================== */
.call-to-action-1 .text-block {
  line-height: 48px;
  font-weight: 700;
}

.call-to-action-1 .au-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #ff9000;
}

.call-to-action-1 .au-btn:active {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #ff9000;
}

@media (max-width: 1199px) {
  .call-to-action-1 .block-contain .block-right {
    float: none;
  }
  .call-to-action-1 .block-contain .block-left {
    margin-bottom: 15px;
    float: none;
  }
}

.call-to-action-1--dark {
  background: #333333;
}

.call-to-action-1--dark .au-btn:hover {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.call-to-action-1--dark .au-btn:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.call-to-action-1--light {
  background: #fff;
}

.call-to-action-1--light .text-block {
  color: #333;
}

.call-to-action-1--light .au-btn {
  background: #ff9000;
  border-color: #ff9000;
}

.call-to-action-1--light .au-btn:hover {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.call-to-action-1--overlay .bg-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.call-to-action-1--overlay .au-btn:hover {
  background: #ff9000;
  border-color: #ff9000;
  color: #fff;
}

.call-to-action-1--overlay .au-btn:active {
  background: #e58200;
  border-color: #e58200;
  color: #fff;
}

.call-to-action-2 .bg-overlay {
  background: rgba(204, 116, 0, 0.8);
}

.call-to-action-3 {
  text-align: center;
}

.call-to-action-3 .text-block {
  font-weight: 700;
  line-height: 48px;
}

.call-to-action-3 .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.call-to-action-3 .au-btn {
  border-color: #ff9000;
  color: #ff9000;
}

.call-to-action-3 .au-btn:hover {
  color: #fff;
}

.call-to-action-3 .au-btn:active {
  color: #fff;
}

.call-to-action-3--color .bg-overlay {
  background: rgba(255, 144, 0, 0.8);
}

.call-to-action-3--color .au-btn {
  color: #fff;
  border-color: #fff;
}

.call-to-action-3--color .au-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #ff9000;
}

/* #Section Project list
================================================== */
@media (max-width: 991px) {
  .project-list .col-cs-3 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-list .col-cs-3 {
    width: 100%;
  }
}

.project-list--tabs-horizontal .header-section:after {
  content: "";
  display: table;
  clear: both;
}

.project-list--tabs-horizontal .header-section .heading-section {
  float: left;
}

.project-list--tabs-horizontal .header-section .project-tabs {
  float: right;
  text-align: left;
}

.project-list--tabs-horizontal .image-box {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .project-list--tabs-horizontal .header-section .project-tabs {
    float: none;
    display: block;
  }
  .project-list--tabs-horizontal .header-section .project-tabs li {
    padding-right: 30px;
    padding-left: 0;
  }
  .project-list--tabs-horizontal .header-section .heading-section {
    float: none;
    display: block;
  }
}

.project-list--dark {
  background: #333333;
}

.project-list--dark .heading-section {
  color: #fff;
}

@media (max-width: 991px) {
  .project-list-slide .col-cs-3 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-list-slide .col-cs-4,
  .project-list-slide .col-cs-3 {
    width: 100%;
  }
}

.why-choose-us-1 .text-block {
  width: 570px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .why-choose-us-1 .text-block {
    width: 100%;
  }
}

/* #Section statistic
================================================== */
.statistic-1 .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.statistic-1--light .icon-box-3 .icon {
  color: #333;
}

.statistic-1--light .icon-box-3 .title {
  color: #808080;
}

.statistic-1--color .icon-box-3 .title {
  color: #fff;
}

.statistic-1--color .icon-box-3 .number {
  color: #fff;
}

/* #Section our partner
================================================== */
.our-partner .owl-carousel {
  margin-top: -15px;
}

.our-partner .owl-carousel .owl-stage-outer {
  padding-top: 15px;
}

@media (max-width: 767px) {
  .our-partner .col-cs-3 {
    width: 50%;
  }
}

@media (max-width: 479px) {
  .our-partner .col-cs-3 {
    width: 100%;
  }
}

.our-partner-1 .partner-item {
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.our-partner-1 .owl-carousel {
  margin-top: -15px;
}

.our-partner-1 .owl-carousel .owl-stage-outer {
  padding-top: 15px;
}

/* #Section commitment 1
================================================== */
.commitment-1 .text-block {
  width: 570px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .commitment-1 .text-block {
    width: 100%;
  }
}

.commitment-1 .commitment-tabs-section {
  text-align: center;
}

.commitment-1 .commitment-tabs-section .tab-content {
  text-align: left;
}

.commitment-1 .commitment-tabs-section .au-tabs {
  width: 100%;
}

.commitment-1 .commitment-tabs-section .au-tabs li {
  width: 25%;
}

.commitment-1 .commitment-tabs-section .au-tabs li a {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .commitment-1 .commitment-tabs-section .au-tabs li {
    width: 100%;
  }
  .commitment-1 .commitment-tabs-section .au-tabs li a {
    border-top: 0;
  }
  .commitment-1 .commitment-tabs-section .au-tabs li:first-child a {
    border-top: 1px solid #e5e5e5;
  }
}

.testimonials--overlay .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.testimonials--overlay .heading-section {
  color: #fff;
}

.testimonials--overlay .image-box-5 .box-body p,
.testimonials--overlay .image-box-5 .box-bot .info .name {
  color: #fff;
}

.testimonials--overlay .image-box-5 .box-bot .info .job-title {
  color: #ccc;
}

/*Blog list*/
@media (max-width: 991px) {
  .blog-list-1 .col-cs-4 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .blog-list-1 .col-cs-4 {
    width: 100%;
  }
}

.blog-list--pull-top {
  position: relative;
  margin-bottom: -95px;
}

.blog-list--pull-top .section-holder {
  top: -95px;
  position: relative;
}

@media (max-width: 1199px) {
  .blog-list--pull-top {
    margin-bottom: 0;
    padding-top: 70px;
  }
  .blog-list--pull-top .section-holder {
    top: 0;
  }
}

/*Section article*/
.article .block-title {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  padding: 0;
  margin-bottom: 20px;
}

.article .article-image {
  margin-bottom: 30px;
}

.article .text-block {
  margin-bottom: 35px;
}

.article .article-list {
  margin-bottom: 30px;
}

.article .article-list li {
  list-style: none;
  margin-bottom: 10px;
}

.article .article-list li:before {
  content: '';
  background: #555;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 8px;
  height: 8px;
}

.article .article-blockquote {
  padding: 10px 50px;
  margin-bottom: 30px;
}

.article .article-blockquote p {
  font-size: 18px;
  margin-bottom: 15px;
}

.article .article-blockquote span {
  font-size: 15px;
  margin-bottom: 10px;
}

.article .article-blockquote .text-grey {
  color: #808080;
}

.article-1 {
  border-left: 1px solid #EBEBEB;
  padding-left: 40px;
}

.article-1 .article-title {
  font-size: 18px;
  color: #333333;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .article-1 {
    border-left: none;
    padding-left: 15px;
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .services-details-page .post-tabs {
    padding-top: 0;
  }
}

.article-2 .article-title {
  font-size: 30px;
  color: #222;
  margin-top: 0;
  margin-bottom: 25px;
}

.article-2 .article-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.article-2 .article-info a,
.article-2 .article-info span {
  color: #808080;
  font-size: 13px;
}

.article-2 .article-info .author:after,
.article-2 .article-info .date:after,
.article-2 .article-info .subject:after {
  content: '|';
  margin-left: 3px;
}

.article-2 .article-info .subject {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.article-2 .article-info .subject li {
  display: inline-block;
}

.article-2 .article-info .subject li:after {
  content: ',';
}

.article-2 .article-info .subject li:last-child:after {
  display: none;
}

.article-2 .article-info a:hover {
  color: #ff9000;
}

/*Article Next Previews Post*/
.article-pn {
  padding-top: 30px;
  padding-bottom: 30px;
}

.article-pn .prev-post span,
.article-pn .next-post span {
  display: block;
  margin-bottom: 15px;
  font-size: 13px;
}

.article-pn .prev-post a,
.article-pn .next-post a {
  color: #333;
  font-weight: 700;
}

.article-pn .prev-post a:hover,
.article-pn .next-post a:hover {
  color: #ff9000;
}

.article-pn .prev-post {
  padding-right: 100px;
}

.article-pn .prev-post span:before {
  margin-right: 10px;
  content: '\f104';
  font-family: FontAwesome, sans-serif;
}

.article-pn .next-post {
  text-align: right;
  padding-left: 100px;
}

.article-pn .next-post span:after {
  margin-left: 10px;
  content: '\f105';
  font-family: FontAwesome, sans-serif;
}

@media (max-width: 767px) {
  .article-pn .next-post {
    padding-left: 15px;
  }
  .article-pn .prev-post {
    padding-right: 15px;
  }
}

/*Article tags*/
.article-tags {
  font-size: 13px;
}

.article-tags .tags {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.article-tags .tags li {
  display: inline-block;
}

.article-tags .tags li:after {
  content: ',';
}

.article-tags .tags li a {
  color: #666666;
}

.article-tags .tags li a:hover {
  color: #ff9000;
}

.article-tags .tags li:last-child:after {
  display: none;
}

/*Article share*/
.article-share {
  text-align: center;
  border: 1px solid #e5e5e5;
  padding: 30px;
}

.article-share .text-block {
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-share .share-list .social-item {
  margin: 0 5px;
  width: 36px;
  height: 36px;
  background: #e6e6e6;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.article-share .share-list .social-item a {
  font-size: 18px;
}

.article-share .share-list .social-item:hover {
  background: #ff9000;
}

.article-share .share-list .social-item:hover a {
  color: #fff;
}

/* Article author*/
.article-author .author-box {
  padding: 30px 100px 50px 30px;
  background: #f2f2f2;
}

.article-author .author-box:after {
  content: "";
  display: table;
  clear: both;
}

.article-author .author-box .avatar {
  float: left;
  width: 80px;
  height: 80px;
}

.article-author .author-box .avatar img {
  width: 100%;
}

.article-author .author-box .content {
  margin-left: 80px;
  padding-left: 25px;
}

.article-author .author-box .content .author-title {
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 700;
}

.article-author .author-box .content .author-content {
  margin-bottom: 0;
  color: #555555;
}

@media (max-width: 479px) {
  .article-author .author-box {
    padding: 30px;
  }
  .article-author .author-box .avatar {
    float: none;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .article-author .author-box .content {
    padding-left: 0;
    margin-left: 0;
  }
}

/*comments 1*/
.article-comments .block-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}

.article-comments .comments-list {
  margin: 0;
  padding: 0;
}

.article-comments .comments-list li:last-child .comments-item {
  border-bottom: 1px solid #e5e5e5;
}

.article-comments .comments-list li:last-child .comments-item .comment-content {
  border-bottom: none;
}

.article-comments .comments-has-child .comments-child-list {
  padding-left: 90px;
}

.article-comments .comments-has-child .comments-child-list .comments-item {
  border-bottom: 1px solid #e5e5e5;
}

.article-comments .comments-has-child .comments-child-list .comments-item .comment-content {
  border-bottom: none;
}

.article-comments .comments-item {
  margin-bottom: 25px;
}

.article-comments .comments-item .author-image {
  width: 50px;
  overflow: hidden;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.article-comments .comments-item .author-image img {
  width: 100%;
}

.article-comments .comments-item .comment-content {
  margin-left: 70px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 100px;
}

.article-comments .comments-item .comment-content .author-info {
  font-size: 13px;
  margin-right: 15px;
  margin-bottom: 0;
  color: #808080;
}

.article-comments .comments-item .comment-content .author-info a {
  color: #808080;
}

.article-comments .comments-item .comment-content .author-info a:hover {
  color: #ff9000;
}

.article-comments .comments-item .comment-content .author-info .reply-link {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  margin-left: 15px;
  color: #555555;
  font-size: 13px;
}

.article-comments .comments-item .comment-content .author-info .reply-link:hover {
  color: #ff9000;
}

.article-comments .comments-item .comment-content .content {
  font-size: 15px;
  color: #555555;
}

.article-comments .comments-item .comment-content .reply-link {
  color: #888;
  font-size: 14px;
}

.article-comments .comments-item:hover .comment-content .author-info .reply-link {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*Article Leave Comments*/
.article-leave-comment .block-title {
  margin-bottom: 15px;
}

.article-leave-comment .text-block {
  color: #333333;
}

.article-leave-comment .au-input,
.article-leave-comment .au-textarea {
  border-color: #e5e5e5;
  padding: 13px 15px;
}

.article-leave-comment .au-input::-webkit-input-placeholder,
.article-leave-comment .au-textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888888;
}

.article-leave-comment .au-input:-moz-placeholder,
.article-leave-comment .au-textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
  opacity: 1;
}

.article-leave-comment .au-input::-moz-placeholder,
.article-leave-comment .au-textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
  opacity: 1;
}

.article-leave-comment .au-input:-ms-input-placeholder,
.article-leave-comment .au-textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888888;
}

.article-leave-comment .au-input:-ms-input-placeholder,
.article-leave-comment .au-textarea:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #888888;
}

.article-leave-comment .au-btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .article-leave-comment .form-group {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/*Shop toolbar*/
.shop-header .product-found {
  font-size: 16px;
  color: #808080;
}

.shop-header .woocommerce-ordering {
  display: inline-block;
}

@media (max-width: 991px) {
  .shop-header .toolbar-left {
    margin: 0 -5px;
  }
  .shop-header .toolbar-left:after {
    content: "";
    display: table;
    clear: both;
  }
  .shop-header .woocommerce-ordering {
    margin-bottom: 10px;
    width: 50%;
    margin-right: 0;
    float: right;
    padding: 0 5px;
  }
  .shop-header .woocommerce-ordering .current {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .shop-header .toolbar-left {
    margin: 0;
  }
  .shop-header .toolbar-left:after {
    content: "";
    display: table;
    clear: both;
  }
  .shop-header .woocommerce-ordering {
    width: 100%;
    padding: 0;
  }
}

.shop-footer {
  text-align: center;
}

.shop-footer .au-paginations {
  display: inline-block;
}

.woocommerce-ordering {
  padding-left: 0;
  margin-right: 8px;
  margin-bottom: 0;
}

.woocommerce-ordering li {
  display: inline-block;
}

.woocommerce-ordering .current {
  position: relative;
  min-width: 200px;
  cursor: pointer;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #cccccc;
  font-size: 13px;
  color: #333333;
}

.woocommerce-ordering .current:after {
  display: inline;
  line-height: 21px;
  content: '\f107';
  font-family: FontAwesome, sans-serif;
  float: right;
  font-size: 18px;
}

.woocommerce-ordering .current:hover .block-holder {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.woocommerce-ordering .current .block-holder {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 3px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.woocommerce-ordering .current ul {
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
}

.woocommerce-ordering .current ul li {
  display: block;
}

.woocommerce-ordering .current ul li a {
  color: #666;
}

.woocommerce-ordering .current ul li a:hover {
  color: #222;
}

.toolbar-right {
  text-align: right;
}

/*Project list page*/
.projects-list-page .image-box {
  margin-bottom: 30px;
}

/*project single page*/
.projects-single-page .row-cs {
  margin: 0 -10px;
}

.projects-single-page .col-cs-4 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 479px) {
  .projects-single-page .col-cs-4 {
    width: 50%;
  }
}

.projects-single-page .page-toolbar {
  text-align: right;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .projects-single-page .pr-text {
    padding-bottom: 30px;
  }
}

/*About*/
.about-1 .article-content {
  padding-right: 20px;
}

@media (max-width: 991px) {
  .about-1 .article-content {
    margin-bottom: 30px;
  }
}

/*Our team */
@media (max-width: 991px) {
  .our-team .col-cs-3 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .our-team .col-cs-3 {
    width: 100%;
  }
}

/*Contact*/
.contact-map-section-1 .controls-map {
  background: #e6e6e6;
}

.contact-map-section-1 .google-map .gm-style-iw {
  padding: 20px 30px;
}

.contact-map-section-1 .google-map .gm-style-iw h3 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.contact-map-section-1 .google-map .gm-style-iw p {
  font-size: 15px;
  font-weight: 400;
}

.contact-map-section-1 .google-map .gm-style-iw ul {
  padding: 0;
  margin: 0;
}

.contact-map-section-1 .google-map .gm-style-iw ul li {
  line-height: 2;
  font-size: 15px;
  font-weight: 400;
}

.contact-map-section-1 .controls:after {
  content: "";
  display: table;
  clear: both;
}

.contact-map-section-1 .controls li:last-child a {
  border-right: 2px solid #cccccc;
}

.contact-map-section-1 .controls li {
  float: left;
  width: 25%;
  text-align: center;
}

.contact-map-section-1 .controls li a {
  border-left: 2px solid #cccccc;
  font-weight: 700;
  display: inline-block;
  padding: 20px 0 !important;
  color: #808080 !important;
  font-size: 18px !important;
}

.contact-map-section-1 .controls li a:hover {
  color: #333 !important;
}

.contact-map-section-1 .controls li.active a {
  color: #333 !important;
}

@media (max-width: 767px) {
  .contact-map-section-1 .row {
    margin: 0;
  }
  .contact-map-section-1 .container {
    padding: 0;
  }
  .contact-map-section-1 .heading {
    padding-left: 15px;
  }
  .contact-map-section-1 .controls li {
    width: 100%;
  }
  .contact-map-section-1 .controls li a {
    border: none;
    border-bottom: 2px solid #cccccc;
  }
  .contact-map-section-1 .controls li:last-child a {
    border: none;
  }
}

/*Contact form*/
/*blog list*/
.blog-page .image-box-7 {
  margin-bottom: 25px;
}

.blog-page .page-aside {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 20px;
}

.blog-page .page-content {
  padding-top: 85px;
  padding-bottom: 85px;
  padding-right: 50px;
  border-right: 1px solid #e5e5e5;
}

@media (max-width: 1199px) {
  .blog-page .page-aside {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .blog-page .page-content {
    padding-right: 0;
    border-right: none;
  }
}

/*Single product details*/
.single-product-detail .product-image-content:after {
  content: "";
  display: table;
  clear: both;
}

.single-product-detail .product-image-content .owl-item img {
  border: 1px solid #cccccc;
}

.single-product-detail .product-image-content .owl-dots {
  margin: 20px -8px 0 -8px;
}

.single-product-detail .product-image-content .owl-dots .owl-dot {
  display: inline-block;
  padding: 0 8px 10px;
}

.single-product-detail .product-image-content .owl-dots .owl-dot img {
  width: 80px;
}

.single-product-detail .product-image-content .owl-dots .owl-dot.active img {
  border: 1px solid #ff9000;
}

.single-product-detail .product-image-content .owl-next, .single-product-detail .product-image-content .owl-prev {
  position: absolute;
  top: 50%;
  margin-top: -55px;
  width: 30px;
  height: 30px;
  display: table;
  text-align: center;
}

.single-product-detail .product-image-content .owl-next i, .single-product-detail .product-image-content .owl-prev i {
  display: table-cell;
  vertical-align: middle;
  font-size: 24px;
  color: #999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-product-detail .product-image-content .owl-next:hover i, .single-product-detail .product-image-content .owl-prev:hover i {
  color: #222;
}

.single-product-detail .product-image-content .owl-next {
  right: -10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-product-detail .product-image-content .owl-prev {
  left: -10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-product-detail .product-image-content .owl-carousel:hover .owl-next {
  right: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-product-detail .product-image-content .owl-carousel:hover .owl-prev {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 10px;
}

.single-product-detail .product-image-content .owl-carousel:hover .owl-prev i, .single-product-detail .product-image-content .owl-carousel:hover .owl-next i {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-product-detail .product-summary .product-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.single-product-detail .product-summary .product-info-bar .product-price {
  display: inline-block;
  margin-right: 35px;
}

.single-product-detail .product-summary .product-info-bar .product-star-rating {
  display: inline-block;
  margin-right: 10px;
}

.single-product-detail .product-summary .product-info-bar .product-total-reviews {
  display: inline-block;
}

.single-product-detail .product-summary .product-star-rating {
  padding-left: 0;
}

.single-product-detail .product-summary .product-star-rating li {
  display: inline-block;
  margin-right: 3px;
}

.single-product-detail .product-summary .product-star-rating li a {
  font-size: 13px;
  color: #333;
}

.single-product-detail .product-summary .product-total-reviews {
  font-size: 13px;
}

.single-product-detail .product-summary .product-price {
  display: block;
  color: #ff9000;
  font-size: 24px;
  font-weight: 700;
}

.single-product-detail .product-summary .product-short-description .descriptions {
  padding: 0;
  margin: 0;
}

.single-product-detail .product-summary .product-short-description .descriptions li {
  font-size: 13px;
  margin-bottom: 10px;
}

.single-product-detail .product-summary .product-short-description .descriptions li:after {
  content: "";
  display: table;
  clear: both;
}

.single-product-detail .product-summary .product-short-description .descriptions li .title {
  float: left;
  width: 100px;
  display: block;
}

.single-product-detail .product-summary .product-short-description .descriptions li .content {
  float: left;
  display: block;
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
}

.single-product-detail .product-summary .product-select .text-block {
  color: #333;
  margin-bottom: 10px;
}

.single-product-detail .product-summary .quantity {
  padding: 7px;
  border: 1px solid #ccc;
  text-align: center;
  position: relative;
  background: #fff;
  width: 150px;
}

.single-product-detail .product-summary .quantity .au-input-number {
  display: inline-block;
  width: 80px;
  padding: 0;
  text-align: center;
  border: none;
  line-height: 30px;
  background: transparent;
}

.single-product-detail .product-summary .quantity span {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: absolute;
  right: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #aaa;
}

.single-product-detail .product-summary .quantity span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  line-height: 1;
}

.single-product-detail .product-summary .quantity span:hover {
  color: #000;
}

.single-product-detail .product-summary .quantity .increase {
  top: 50%;
  right: 20px;
  margin-top: -10px;
}

.single-product-detail .product-summary .quantity .increase:after {
  content: '\f067';
  font-family: FontAwesome, sans-serif;
}

.single-product-detail .product-summary .quantity .decrease {
  top: 50%;
  left: 20px;
  margin-top: -10px;
}

.single-product-detail .product-summary .quantity .decrease:after {
  content: '\f068';
  font-family: FontAwesome, sans-serif;
}

/*product tabs*/
.single-product-tabs .tabs {
  padding-left: 0;
  margin: 0 -20px;
  margin-bottom: 15px;
}

.single-product-tabs .tabs li {
  display: inline-block;
  padding: 0 20px;
}

.single-product-tabs .tabs li.active a {
  color: #ff9000;
}

.single-product-tabs .tabs li a {
  display: block;
  font-size: 15px;
  color: #777;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.single-product-tabs .tabs li a:hover {
  color: #333;
}

.single-product-tabs .tab-pane {
  padding: 40px 35px;
  border: 1px solid #cccccc;
  background: #fff;
}

@media (max-width: 767px) {
  .single-product-tabs .tabs li {
    margin-bottom: 5px;
  }
}

/*Product reviews*/
.single-product-reviews .title {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.single-product-reviews .product-star-rating {
  padding-left: 0;
  display: inline-block;
}

.single-product-reviews .product-star-rating li {
  display: inline-block;
  margin-right: 3px;
}

.single-product-reviews .product-star-rating li a {
  color: #b6b6b6;
}

@media (max-width: 479px) {
  .single-product-reviews .form-group {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/*Single product*/
.single-products {
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .shop-page .page-content {
    padding-bottom: 50px;
  }
  .shop-page .page-aside {
    padding-top: 0;
  }
}

.related-products .nav-style-1 .owl-nav .owl-next,
.related-products .nav-style-1 .owl-nav .owl-prev {
  top: 50%;
  margin-top: -50px;
}

/*.woo-shopping-cart*/
.woo-shopping-cart .woo-cart-form-content {
  width: 100%;
}

.woo-shopping-cart .woo-cart-form-content thead tr th {
  color: #fff;
  font-weight: 700;
  padding: 15px;
  background: #808080;
}

.woo-shopping-cart .woo-cart-form-content thead tr .blank {
  width: 45px;
}

.woo-shopping-cart .woo-cart-form-cart-item {
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  background: #fff;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-thumbnail a {
  display: block;
  width: 90px;
  height: 90px;
  position: relative;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-thumbnail a img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-thumbnail img {
  width: 80px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-name a {
  color: #333;
  font-size: 18px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity {
  padding: 7px;
  text-align: center;
  position: relative;
  background: #fff;
  width: 130px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity .au-input-number {
  display: inline-block;
  width: 80px;
  padding: 0;
  text-align: center;
  border: none;
  line-height: 30px;
  background: transparent;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity span {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: absolute;
  right: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #888;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  line-height: 1;
  font-size: 12px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity span:hover {
  color: #000;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity .increase {
  top: 50%;
  right: 20px;
  margin-top: -10px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity .increase:after {
  content: '\f067';
  font-family: FontAwesome, sans-serif;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity .decrease {
  top: 50%;
  left: 20px;
  margin-top: -10px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .quantity .decrease:after {
  content: '\f068';
  font-family: FontAwesome, sans-serif;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .add-to-cart {
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #ff9000;
  padding: 15px 30px;
  text-align: center;
  border-color: #ff9000;
  font-size: 18px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-quantity .add-to-cart:hover {
  background: #e58200;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-add a {
  color: #333;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-add a:hover {
  color: #ff9000;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-remove a {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #b0b0b0;
  position: relative;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-remove a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 1px;
  margin-top: -1px;
}

.woo-shopping-cart .woo-cart-form-cart-item .product-remove a:hover {
  background: #f15353;
  border-color: #f15353;
  color: #fff;
}

.woo-shopping-cart .woo-cart-form-cart-item td {
  padding: 50px 10px;
}

@media (max-width: 991px) {
  .woo-shopping-cart .woo-cart-form-content thead tr .blank {
    display: none;
  }
  .woo-shopping-cart .woo-cart-form-cart-item .blank {
    display: none;
  }
}

@media (max-width: 767px) {
  .woo-shopping-cart .woo-cart-form-content thead tr .product-quantity,
  .woo-shopping-cart .woo-cart-form-content thead tr .product-thumbnail {
    display: none;
  }
  .woo-shopping-cart .woo-cart-form-cart-item .product-quantity,
  .woo-shopping-cart .woo-cart-form-cart-item .product-thumbnail {
    display: none;
  }
}

.woo-shopping-cart .woo-cart-form-coupon {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 35px;
}

.woo-shopping-cart .woo-cart-form-coupon .text-block {
  margin-bottom: 15px;
}

.woo-shopping-cart .woo-cart-form-coupon .au-btn {
  border-color: #333333;
  background: #333;
  font-size: 18px;
  color: #fff;
}

.woo-shopping-cart .woo-cart-form-coupon .au-btn:hover {
  background: #000;
  border-color: #000;
}

.woo-shopping-cart .woo-cart-form-coupon .coupon-content:after {
  content: "";
  display: table;
  clear: both;
}

.woo-shopping-cart .woo-cart-form-coupon .coupon-content .au-input {
  padding: 12px 20px;
}

.woo-shopping-cart .woo-cart-form-coupon .coupon-content .form-group {
  padding-right: 30px;
  display: inline-block;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .woo-shopping-cart .woo-cart-form-coupon {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .woo-shopping-cart .woo-cart-form-coupon .block-left {
    float: none;
  }
  .woo-shopping-cart .woo-cart-form-coupon .block-right {
    float: none;
  }
  .woo-shopping-cart .woo-cart-form-coupon .block-right .au-btn {
    width: 100%;
    text-align: center;
  }
  .woo-shopping-cart .woo-cart-form-coupon .coupon-content .form-group {
    padding-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .woo-shopping-cart .woo-cart-form-coupon .coupon-content .au-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

.woo-cart-totals {
  width: 442px;
  background: #fff;
  padding: 40px 40px 40px 40px;
  border: 1px solid #e5e5e5;
}

.woo-cart-totals .block-title {
  margin-bottom: 30px;
  color: #333;
  font-weight: 700;
  font-size: 20px;
}

.woo-cart-totals .au-btn {
  border-color: #333333;
  background: #333;
  font-size: 18px;
  color: #fff;
}

.woo-cart-totals .au-btn:hover {
  border-color: #000000;
  background: #000;
}

.woo-cart-totals .woo-cart-totals-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #cccccc;
}

.woo-cart-totals .woo-cart-totals-item:after {
  content: "";
  display: table;
  clear: both;
}

.woo-cart-totals .woo-cart-totals-item .title {
  font-weight: 700;
  color: #333;
  width: 125px;
  float: left;
}

.woo-cart-totals .woo-cart-totals-item .content {
  width: -webkit-calc(100% - 125px);
  width: -moz-calc(100% - 125px);
  width: calc(100% - 125px);
  float: left;
}

.woo-cart-totals .woo-cart-totals-item .content span {
  font-size: 18px;
  color: #333333;
}

.woo-cart-totals .woo-cart-totals-item--noborder {
  border: none;
}

.woo-cart-totals .shipping .text-block {
  font-size: 13px;
  margin-bottom: 30px;
}

.woo-cart-totals .shipping .text-heading {
  color: #333;
}

.woo-cart-totals .shipping .content .chosen-container .chosen-single {
  padding: 7px 13px;
}

.woo-cart-totals .shipping .content .chosen-container .chosen-single span {
  font-size: 13px;
  color: #888;
}

.woo-cart-totals .shipping .content .chosen-container .chosen-single span:after {
  line-height: 28px;
}

.woo-cart-totals .shipping .content .au-select {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 13px;
  border-color: #cccccc;
}

.woo-cart-totals .shipping .content .au-select:focus {
  border-color: #ff9000;
  outline: none;
}

.woo-cart-totals .shipping .au-input {
  padding: 9px 13px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  font-size: 13px;
}

.woo-cart-totals .shipping .au-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}

.woo-cart-totals .shipping .au-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888;
  opacity: 1;
}

.woo-cart-totals .shipping .au-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888;
  opacity: 1;
}

.woo-cart-totals .shipping .au-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888;
}

.woo-cart-totals .shipping .au-input:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #888;
}

.woo-cart-totals .shipping .au-input:focus {
  border: 1px solid #ff9000;
}

.woo-cart-totals .shipping .btn-update {
  margin-top: 10px;
  margin-bottom: 10px;
}

.woo-cart-totals .btn-checkout {
  background: #ff9000;
  border-color: #ff9000;
}

.woo-cart-totals .btn-checkout:hover {
  border-color: #e58200;
  background: #e58200;
}

@media (max-width: 479px) {
  .woo-cart-totals {
    width: 100%;
  }
  .woo-cart-totals .au-btn {
    width: 100%;
    text-align: center;
  }
  .woo-cart-totals .btn-checkout {
    padding: 15px;
    font-size: 15px;
  }
  .woo-cart-totals .woo-cart-totals-item .title {
    width: auto;
    float: none;
  }
  .woo-cart-totals .woo-cart-totals-item .content {
    float: none;
    width: auto;
  }
}

/*Woo check out*/
.checkout-page {
  background: #f7f7f7;
}

@media (max-width: 991px) {
  .checkout-page .order-note {
    padding-left: 0;
  }
}

@media (max-width: 479px) {
  .checkout-page .paypal-image img {
    width: 100%;
  }
}

.woo-checkout .checkout-title {
  font-size: 20px;
  color: #333333;
  margin-top: 0;
  font-weight: 700;
}

.woo-checkout .checkout-badge {
  padding: 15px 25px;
  background: #f2f2f2;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.woo-checkout .checkout-badge p {
  margin-bottom: 0;
}

.woo-checkout .checkout-badge a {
  color: #333;
}

.woo-checkout .checkout-badge a:hover {
  color: #ff9000;
}

.woo-checkout .au-input {
  background: #fff;
  padding: 12px 15px;
}

.woo-checkout .au-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888888;
}

.woo-checkout .au-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #888888;
  opacity: 1;
}

.woo-checkout .au-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #888888;
  opacity: 1;
}

.woo-checkout .au-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888888;
}

.woo-checkout .au-input:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #888888;
}

.woo-checkout .chosen-container .chosen-single {
  background: #fff;
  padding: 12px 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.woo-checkout .chosen-container .chosen-single span:after {
  color: #333333;
}

.woo-checkout .au-textarea {
  padding: 12px 15px;
  background: #fff;
}

.woo-checkout .au-select {
  background: #fff;
  padding: 13.5px 13px;
  border: 1px solid #cccccc;
}

.woo-checkout .woo-order .woo-order-box {
  background: #fff;
  padding: 30px 40px 60px 40px;
  border: 1px solid #cccccc;
}

.woo-checkout .woo-order .woo-order-content {
  width: 100%;
}

.woo-checkout .woo-order .woo-order-content thead tr {
  border-bottom: 1px dashed #cccccc;
}

.woo-checkout .woo-order .woo-order-content thead tr th {
  padding-bottom: 10px;
  color: #333333;
}

.woo-checkout .woo-order .woo-order-content tbody .p-t td {
  padding-top: 20px;
}

.woo-checkout .woo-order .woo-order-content tbody .border {
  border-bottom: 1px dashed #cccccc;
}

.woo-checkout .woo-order .woo-order-content tbody .border td {
  padding-bottom: 20px;
}

.woo-checkout .woo-order .woo-order-content tbody tr td {
  color: #333333;
  padding: 5px 0;
}

.woo-checkout .woo-order .woo-order-content .total {
  text-align: right;
}

.woo-checkout .woo-order .text-grey {
  color: #808080;
}

/*404*/
.page-404 {
  background: #f7f7f7;
}

.page-404 .article-wrapper {
  border-right: 0;
}

.page-404 .aside-wrapper {
  border-left: 1px solid #cccccc;
}

.page-404 .box-404 .title {
  color: #333;
  font-size: 79px;
  font-weight: 700;
}

.page-404 .box-404 .content {
  font-size: 25px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 40px;
}

/*Coming soon*/
.page-coming-soon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-coming-soon .bg-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#up-to-top {
  position: fixed;
  text-align: center;
  right: 30px;
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  z-index: 10000;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.4) no-repeat center;
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}

#up-to-top:hover {
  background: black no-repeat center;
}

.typo-heading .heading-item {
  margin-bottom: 30px;
}

.typo-heading .heading-item h1, .typo-heading .heading-item h2, .typo-heading .heading-item h3, .typo-heading .heading-item h4, .typo-heading .heading-item h5, .typo-heading .heading-item h6 {
  font-weight: 700;
  color: #333;
}

.typo-heading .heading-item p {
  font-style: italic;
}

.typo-text .text-col-item {
  color: #333333;
}

.typo-text .text-col-item h3 {
  font-weight: 700;
}
