/*===========================================

Template Name: MotuMarket - Digital Marketplace
Author: Md Tahmidur Rahman
Author URL: http://snazzytheme.com/
Version: 1.0
    
---------------------------------------------

CSS INDEX
=========
01. Base Style
02. Preloader
03. Logo Area
04. Header Area
05. Menu Area
06. Mobile Menu
07. Banner Area
08. All Item Box
09. Feature Product
10. New Product
11. About Section
12. How Work Section
13. Testimonial Section
14. Home Blog
15. Pricing Table
16. Footer Section
17. Breadcrumb Area
18. About Page
19. Product Details
20. Author
21. Upload Product
22. Sign In
23. Sign up
24. Faq
25. 404
26. Coming Soon
27. Contact
28. Blog
29. Blog Details
30. Cart
31. Checkout
32. Helper Class

==============================================*/
/* ====================
01. Base style
==================== */
html {
  color: #222222;
  font-size: 14px;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

body {
  font-size: 14px;
  color: #555555;
  font-family: "Lato", sans-serif;
}

h1, h1 a {
  font-size: 40px;
}

h2, h2 a {
  font-size: 32px;
}

h3, h3 a {
  font-size: 28px;
}

h4, h4 a {
  font-size: 24px;
}

h5, h5 a {
  font-size: 20px;
}

h6, h6 a {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

p,
li,
a,
button {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  margin: 0;
  letter-spacing: 0.3px;
}

ul {
  padding: 0;
  margin: 0;
}

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

a,
button {
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
}

.padding-fix {
  padding-left: 0;
  padding-right: 0;
}

.padding-fix-r {
  padding-right: 0;
}

.padding-fix-l {
  padding-left: 0;
}

.margin-fix {
  margin-left: 0;
  margin-right: 0;
}

/* ====================
02. Preloader
==================== */
.preloader {
  background: #f7f7f7;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}

.preloader .load-list {
  width: 50px;
  height: 50px;
  position: relative;
  top: 50%;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.preloader .load-list .load {
  position: absolute;
  background: #4ca6d4;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.preloader .load-list .load2 {
  background: #3d87ad;
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ====================
03. Logo Area
==================== */
.logo-area {
  background-color: #232425;
  height: 68px;
  padding-top: 20px;
  border-bottom: 1px solid #444444;
}

.logo-area .logo a img {
  margin-top: 2px;
}

.logo-area .logo-menu {
  padding-top: 3px;
}

.logo-area .logo-menu ul li a {
  font-size: 13px;
  color: #cccccc;
  padding: 5px 0;
  margin: 0 10px;
}

.logo-area .logo-menu ul li a:hover {
  color: #4ca6d4;
}

.logo-area .cart-box {
  margin-top: 3px;
}

.logo-area .cart-box .shopping-cart {
  display: inline-block;
  padding: 0 20px 15px 8px;
  position: relative;
}

.logo-area .cart-box .shopping-cart .cart-btn a img {
  width: 21px;
}

.logo-area .cart-box .shopping-cart .cart-btn a span {
  font-size: 13px;
  color: #fff;
  background: #4ca6d4;
  width: 23px;
  height: 22px;
  text-align: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 2px;
  position: absolute;
  top: -8px;
  right: 8px;
}

.logo-area .cart-box .shopping-cart .cart-body {
  position: absolute;
  top: 50px;
  right: -15px;
  width: 350px;
  padding: 35px 25px 35px;
  background: #fff;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content {
  margin-bottom: 15px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .cart-disc h6 a {
  font-size: 14px;
  color: #444444;
  display: block;
  margin-bottom: 8px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .cart-disc h6 a:hover {
  color: #4ca6d4;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .cart-disc p {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #555555;
  margin-bottom: 3px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .cart-disc ul li {
  margin-right: 3px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .cart-disc ul li i {
  font-size: 13px;
  color: #FFA726;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .delete-btn a i {
  font-size: 18px;
  color: #777;
  margin-top: 25px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-content .delete-btn a i:hover {
  color: #e24545;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-total p {
  color: #444444;
  border-top: 1px solid #cccccc;
  padding-top: 20px;
  margin-top: 25px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-total p span {
  font-size: 18px;
  color: #333333;
  margin-left: 15px;
  font-weight: 600;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li a {
  font-size: 13px;
  border: 2px solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 120px;
  height: 38px;
  text-align: center;
  padding: 8px;
  display: block;
  letter-spacing: 1px;
  font-weight: 600;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) {
  margin-right: 10px;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) a {
  color: #4ca6d4;
  border-color: #4ca6d4;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) a:hover {
  color: #fff;
  background: #4ca6d4;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(2) a {
  color: #fff;
  background: #e24545;
  border-color: #e24545;
}

.logo-area .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(2) a:hover {
  color: #e24545;
  background: transparent;
}

.logo-area .cart-box .shopping-cart:hover .cart-body {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.comment .sign-btn {
  font-size: 13px;
  color: #fff;
  background: #4ca6d4;
  padding: 7px 15px 8px;
  margin-left: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.comment .sign-btn:hover {
  color: #fff;
  background-color: #333333;
}

.logo-area .cart-box .sign-btn {
  font-size: 13px;
  color: #cccccc;
  background: #333333;
  padding: 7px 15px 8px;
  margin-left: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.logo-area .cart-box .sign-btn:hover {
  background-color: #4ca6d4;
  color: #fff;
}

/* ====================
04. Header Area
==================== */
header {
  background: #232425;
  height: 78px;
  padding-top: 22px;
  position: absolute;
  z-index: 999;
  width: 100%;
}

header .logo a img {
  margin-top: 4px;
}

header .main-menu ul li {
  position: relative;
}

header .main-menu ul li a {
  font-size: 15px;
  color: #fff;
  display: block;
  padding: 5px 0 20px;
  margin: 0 10px;
  letter-spacing: 0.4px;
}

header .main-menu ul li a i {
  font-size: 14px;
  color: #dddddd;
  vertical-align: middle;
}

header .main-menu ul li a:hover {
  color: #4ca6d4;
}

header .main-menu ul li ul.pri-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  width: 200px;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

header .main-menu ul li ul.pri-dropdown li a {
  font-size: 14px;
  color: #555555;
  margin: 0;
  padding: 15px 25px;
  border-bottom: 1px solid #eeeeee;
}

header .main-menu ul li ul.pri-dropdown li a:hover {
  background: #4ca6d4;
  color: #fff;
}

header .main-menu ul li ul.pri-dropdown li:last-child a {
  border-bottom: none;
}

header .main-menu ul li:hover ul.pri-dropdown {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

header .main-menu ul li.dropdown-block {
  position: inherit;
}

header .main-menu ul li.dropdown-block ul.mega-menu {
  position: absolute;
  top: 130%;
  left: -270px;
  width: 195%;
  z-index: 999;
  background: #fff;
  padding: 40px 40px 38px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

header .main-menu ul li.dropdown-block ul.mega-menu li {
  width: 25%;
  float: left;
  padding: 0 25px;
  position: relative;
}

header .main-menu ul li.dropdown-block ul.mega-menu li:before {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

header .main-menu ul li.dropdown-block ul.mega-menu li a {
  font-size: 14px;
  margin: 0;
  padding: 12px 10px;
  color: #555555;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

header .main-menu ul li.dropdown-block ul.mega-menu li a:hover {
  background: #4ca6d4;
  color: #fff;
}

header .main-menu ul li.dropdown-block ul.mega-menu li:last-child:before {
  content: none;
}

header .main-menu ul li.dropdown-block:hover ul.mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

header .cart-box {
  margin-top: 5px;
}

header .cart-box .shopping-cart {
  display: inline-block;
  padding: 0 20px 15px 8px;
  position: relative;
}

header .cart-box .shopping-cart .cart-btn a img {
  width: 21px;
}

header .cart-box .shopping-cart .cart-btn a span {
  font-size: 13px;
  color: #fff;
  background: #4ca6d4;
  width: 23px;
  height: 22px;
  text-align: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 2px;
  position: absolute;
  top: -8px;
  right: -2px;
}

header .cart-box .shopping-cart .cart-body {
  position: absolute;
  top: 50px;
  right: -15px;
  width: 350px;
  padding: 35px 25px 35px;
  background: #fff;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

header .cart-box .shopping-cart .cart-body .cart-content {
  margin-bottom: 15px;
}

header .cart-box .shopping-cart .cart-body .cart-content .cart-disc h6 a {
  font-size: 14px;
  color: #444444;
  display: block;
  margin-bottom: 8px;
}

header .cart-box .shopping-cart .cart-body .cart-content .cart-disc h6 a:hover {
  color: #4ca6d4;
}

header .cart-box .shopping-cart .cart-body .cart-content .cart-disc p {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #555555;
  margin-bottom: 3px;
}

header .cart-box .shopping-cart .cart-body .cart-content .cart-disc ul li {
  margin-right: 3px;
}

header .cart-box .shopping-cart .cart-body .cart-content .cart-disc ul li i {
  font-size: 13px;
  color: #FFA726;
}

header .cart-box .shopping-cart .cart-body .cart-content .delete-btn a i {
  font-size: 18px;
  color: #969696;
  margin-top: 25px;
}

header .cart-box .shopping-cart .cart-body .cart-content .delete-btn a i:hover {
  color: #e24545;
}

header .cart-box .shopping-cart .cart-body .cart-total p {
  color: #444444;
  border-top: 1px solid #cccccc;
  padding-top: 20px;
  margin-top: 25px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

header .cart-box .shopping-cart .cart-body .cart-total p span {
  font-size: 18px;
  color: #333333;
  margin-left: 15px;
  font-weight: 600;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li a {
  font-size: 13px;
  border: 2px solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 120px;
  height: 38px;
  text-align: center;
  padding: 8px;
  display: block;
  letter-spacing: 1px;
  font-weight: 600;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) {
  margin-right: 10px;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) a {
  color: #4ca6d4;
  border-color: #4ca6d4;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(1) a:hover {
  color: #fff;
  background: #4ca6d4;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(2) a {
  color: #fff;
  background: #e24545;
  border-color: #e24545;
}

header .cart-box .shopping-cart .cart-body .cart-checkout-btn ul li:nth-child(2) a:hover {
  color: #e24545;
  background: transparent;
}

header .cart-box .shopping-cart:hover .cart-body {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

header .cart-box .sign-btn {
  font-size: 13px;
  color: #cccccc;
  background: #333333;
  padding: 7px 21px 8px;
  margin-left: 22px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

header .cart-box .sign-btn:hover {
  background-color: #4ca6d4;
  color: #fff;
}

header.sticky {
  -webkit-animation: 300ms ease-in-out 0s normal none 1 fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 fadeInDown;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 68px;
  padding-top: 18px;
  -webkit-box-shadow: 0 0 20px -10px #fff;
  box-shadow: 0 0 20px -10px #fff;
}

/* ====================
05. Menu Area
==================== */
.menu-area {
  background-color: #232425;
}

.menu-area .main-menu ul li {
  position: relative;
}

.menu-area .main-menu ul li a {
  font-size: 15px;
  color: #fff;
  display: block;
  padding: 18px 0 20px;
  margin-right: 15px;
  letter-spacing: 0.4px;
}

.menu-area .main-menu ul li a:hover {
  color: #4ca6d4;
}

.menu-area .main-menu ul li a i {
  font-size: 14px;
  color: #dddddd;
  vertical-align: middle;
}

.menu-area .main-menu ul li ul.pri-dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  width: 200px;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-area .main-menu ul li ul.pri-dropdown li a {
  font-size: 14px;
  color: #555555;
  margin: 0;
  padding: 15px 25px;
  border-bottom: 1px solid #eeeeee;
}

.menu-area .main-menu ul li ul.pri-dropdown li a:hover {
  background: #4ca6d4;
  color: #fff;
}

.menu-area .main-menu ul li ul.pri-dropdown li:last-child a {
  border-bottom: none;
}

.menu-area .main-menu ul li:hover ul.pri-dropdown {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.menu-area .main-menu ul li.dropdown-block {
  position: inherit;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu {
  position: absolute;
  top: 130%;
  left: 15px;
  width: 130%;
  z-index: 999;
  background: #fff;
  padding: 40px 40px 38px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu li {
  width: 25%;
  float: left;
  padding: 0 25px;
  position: relative;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu li:before {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu li a {
  font-size: 14px;
  margin: 0;
  padding: 12px 10px;
  color: #555555;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu li a:hover {
  background: #4ca6d4;
  color: #fff;
}

.menu-area .main-menu ul li.dropdown-block ul.mega-menu li:last-child:before {
  content: none;
}

.menu-area .main-menu ul li.dropdown-block:hover ul.mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.menu-area form.search-box {
  position: relative;
  margin-top: 12px;
}

.menu-area form.search-box input {
  width: 100%;
  height: 35px;
  padding-left: 13px;
  color: #fff;
  background: #333333;
  border: none;
  border-radius: 2px;
}

.menu-area form.search-box input:focus {
  outline: none;
}

.menu-area form.search-box button {
  position: absolute;
  color: #cccccc;
  background: transparent;
  border: none;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
}

/* ====================
06. Mobile Menu
==================== */
.mobile-menu-area {
  display: none;
}

@media (max-width: 767px) {
  .logo-area, .menu-area, header {
    display: none;
  }
}

.mean-container .mean-bar {
  background: #232425;
  float: none;
  z-index: 999;
  text-align: center;
  padding: 15px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.mean-container .mean-bar:after {
  content: "";
  clear: both;
  display: block;
}

.mean-container .mean-bar .meanmenu-reveal {
  color: #dddddd;
  position: absolute;
  left: 0 !important;
  right: inherit;
  top: 0;
  width: 25px;
  margin-top: 23px;
  margin-left: 45px;
}

.mean-container .mean-bar .meanmenu-reveal span {
  display: block;
  background: #dddddd;
  height: 2px;
  margin-top: 5px;
}

.mean-container .mean-bar .mean-nav {
  float: left;
  width: 100%;
  background: transparent;
  margin-top: 0;
}

.mean-container .mean-bar .mean-nav a img {
  margin-top: 8px;
  margin-right: -100px;
}

.mean-container .mean-bar .mean-nav a span {
  font-size: 13px;
  color: #cccccc;
  float: right;
  margin-top: 5px;
  margin-right: 50px;
  background: #333333;
  padding: 5px 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.mean-container .mean-bar .mean-nav a span:hover {
  color: #fff;
  background: #4ca6d4;
}

.mean-container .mean-bar .mean-nav ul {
  margin-top: 30px;
  text-align: left;
  padding: 0 50px;
}

.mean-container .mean-bar .mean-nav ul li {
  position: relative;
}

.mean-container .mean-bar .mean-nav ul li a {
  color: #eeeeee;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #555555;
  letter-spacing: 0.5px;
}

.mean-container .mean-bar .mean-nav ul li a:hover {
  color: #4ca6d4;
}

.mean-container .mean-bar .mean-nav ul li:nth-child(1) a {
  border-top: 1px solid #555555;
}

.mean-container .mean-bar .mean-nav ul li .mean-expand {
  font-size: 22px !important;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -6px;
  z-index: 2;
  background: transparent;
  border: none !important;
}

.mean-container .mean-bar .mean-nav ul li .mean-expand:hover {
  background: transparent;
}

.mean-container .mean-bar .mean-nav ul li ul {
  padding-left: 20px;
  margin-top: 10px;
}

.mean-container .mean-bar .mean-nav ul li ul li a {
  font-size: 13px;
  border: none !important;
}

/* ====================
07. Banner Area
==================== */
.banner {
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 568px;
  padding-top: 230px;
  position: relative;
}

.banner:before {
  position: absolute;
  content: '';
  background: rgba(225, 225, 225, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner .banner-content {
  margin-bottom: 125px;
}

.banner .banner-content h1 {
  font-size: 42px;
  color: #222222;
  margin-bottom: 25px;
  font-weight: 600;
}

.banner .banner-content h5 {
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.banner .banner-content a {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  padding: 15px 40px;
  border-radius: 2px;
}

.banner .banner-content a:hover {
  background: #3d87ad;
}

.banner .counter-number h5 {
  font-weight: 400;
}

.banner .counter-number h5 span {
  color: #3d87ad;
  font-weight: 500;
}

.banner2 {
  min-height: 700px;
  padding-top: 220px;
}

.banner2 .banner-content form {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.banner2 .banner-content form input {
  width: 100%;
  height: 58px;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-left: 20px;
  color: #555555;
  background: #fff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.banner2 .banner-content form input:focus {
  outline: none;
}

.banner2 .banner-content form button {
  font-size: 16px;
  color: #fff;
  background: #4ca6d4;
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ====================
08. Logo Area
==================== */
.gallery-box {
  background: #f7f7f7;
  padding: 100px 0 75px;
}

.gallery-box .gallery-top {
  margin-bottom: 65px;
}

.gallery-box .gallery-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-box .gallery-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.gallery-box ul.gallery-filter {
  margin-bottom: 75px;
}

.gallery-box ul.gallery-filter li {
  font-size: 16px;
  color: #222222;
  margin: 0 30px;
  padding: 5px 0;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
}

.gallery-box ul.gallery-filter li:hover {
  color: #4ca6d4;
}

.gallery-box ul.gallery-filter li:before {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  top: 2px;
  left: 0;
}

.gallery-box ul.gallery-filter li:after {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.gallery-box ul.gallery-filter li.active {
  color: #4ca6d4;
}

.gallery-box ul.gallery-filter li.active:before, .gallery-box ul.gallery-filter li.active:after {
  background: #4ca6d4;
}

.gallery-box .gallery-items .grid-item .gallery-content {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image {
  position: relative;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image .image-box {
  margin-bottom: 10px;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul {
  padding-top: 32%;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul li a img {
  background: #444444;
  padding: 12px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.gallery-box .gallery-items .grid-item .gallery-content .gallery-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item {
  margin-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 {
  margin-bottom: 2px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 a:hover {
  color: #4ca6d4;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading p {
  font-size: 13px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading p a {
  color: #4ca6d4;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item .box-item-price p {
  font-size: 20px;
  color: #fff;
  background: #4ca6d4;
  height: 40px;
  width: 55px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 10px;
  padding-top: 5px;
  margin-top: 8px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li i {
  color: #FFA726;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li {
  color: #555555;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li i {
  color: #FFA726;
}

.gallery-box .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.gallery-box .gallery-items .grid-item .gallery-content:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

/* ====================
09. Feature product
==================== */
.feature-item {
  background: #f7f7f7;
  padding: 100px 0 75px;
}

.feature-item .feature-top {
  margin-bottom: 80px;
}

.feature-item .feature-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-item .feature-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.feature-item .feature-box {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.feature-item .feature-box .feature-image {
  position: relative;
  margin-bottom: 10px;
}

.feature-item .feature-box .feature-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.feature-item .feature-box .feature-image .hover-box ul {
  padding-top: 32%;
}

.feature-item .feature-box .feature-image .hover-box ul li a img {
  background: #444444;
  padding: 12px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.feature-item .feature-box .feature-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.feature-item .feature-box .feature-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.feature-item .feature-box .box-item {
  margin-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.feature-item .feature-box .box-item .box-item-heading h4 {
  margin-bottom: 2px;
}

.feature-item .feature-box .box-item .box-item-heading h4 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.feature-item .feature-box .box-item .box-item-heading h4 a:hover {
  color: #4ca6d4;
}

.feature-item .feature-box .box-item .box-item-heading p {
  font-size: 13px;
}

.feature-item .feature-box .box-item .box-item-heading p a {
  color: #4ca6d4;
}

.feature-item .feature-box .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.feature-item .feature-box .box-item .box-item-price p {
  font-size: 20px;
  color: #fff;
  background: #4ca6d4;
  height: 40px;
  width: 55px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 5px;
  margin-top: 8px;
}

.feature-item .feature-box .box-item-btm {
  padding-bottom: 2px;
}

.feature-item .feature-box .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.feature-item .feature-box .box-item-btm .box-item-rating ul li i {
  color: #FFA726;
}

.feature-item .feature-box .box-item-btm .box-item-rating ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.feature-item .feature-box .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.feature-item .feature-box .box-item-btm .box-item-fev ul li i {
  color: #FFA726;
}

.feature-item .feature-box .box-item-btm .box-item-fev ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.feature-item .feature-box:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

/* ====================
10. New product
==================== */
.new-item {
  background: #f1f1f1;
  padding: 100px 0 185px;
}

.new-item .new-top {
  margin-bottom: 80px;
}

.new-item .new-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.new-item .new-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.new-item .slider-box {
  position: relative;
}

.new-item .slider-box .new-item-box {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 10px;
  margin-bottom: 20px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.new-item .slider-box .new-item-box .new-image {
  position: relative;
  margin-bottom: 10px;
}

.new-item .slider-box .new-item-box .new-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.new-item .slider-box .new-item-box .new-image .hover-box ul {
  padding-top: 32%;
}

.new-item .slider-box .new-item-box .new-image .hover-box ul li a img {
  background: #444444;
  padding: 12px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.new-item .slider-box .new-item-box .new-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.new-item .slider-box .new-item-box .new-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.new-item .slider-box .new-item-box .box-item {
  margin-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading h4 {
  margin-bottom: 2px;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading h4 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading h4 a:hover {
  color: #4ca6d4;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading p {
  font-size: 13px;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading p a {
  color: #4ca6d4;
}

.new-item .slider-box .new-item-box .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.new-item .slider-box .new-item-box .box-item .box-item-price p {
  font-size: 20px;
  color: #fff;
  background: #4ca6d4;
  height: 40px;
  width: 55px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 5px;
  margin-top: 8px;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-rating ul li i {
  color: #FFA726;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-rating ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-fev ul li i {
  color: #FFA726;
}

.new-item .slider-box .new-item-box .box-item-btm .box-item-fev ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.new-item .slider-box .new-item-box:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

.new-item .slider-box .owl-nav div {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -80px;
  margin-left: -50px;
  padding-top: 10px;
  background: rgba(70, 155, 199, 0.7);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 40px;
  height: 45px;
  text-align: center;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.new-item .slider-box .owl-nav div:hover {
  background: #FFA726;
}

.new-item .slider-box .owl-nav div.owl-next {
  left: auto;
  right: 50%;
  margin-right: -50px;
}

.owl-carousel .owl-item {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.owl-carousel .owl-item img {
  -webkit-transform-style: unset;
  transform-style: unset;
}

/* ====================
11. About Section
==================== */
.about {
  padding: 100px 0 50px;
}

.about .about-top {
  margin-bottom: 80px;
}

.about .about-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.about .about-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.about .about-content {
  margin-bottom: 50px;
}

.about .about-content img {
  max-width: 50px;
  margin-bottom: 25px;
}

.about .about-content h5 {
  color: #333333;
  margin-bottom: 12px;
}

.about .about-content p {
  font-size: 15px;
  line-height: 28px;
  max-width: 335px;
  margin: auto;
}

/* ====================
12. How Work Section
==================== */
.how-work {
  background: #f7f7f7;
  padding: 105px 0 90px;
}

.how-work .work-content h4 {
  color: #333333;
  margin-bottom: 20px;
}

.how-work .work-content p {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.how-work .work-content ul li {
  margin-bottom: 10px;
}

.how-work .work-content ul li i {
  color: #4ca6d4;
  margin-right: 8px;
}

.how-work .work-video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.how-work .work-video .video-content {
  background: rgba(70, 155, 199, 0.95);
  width: 100%;
  height: 100%;
  padding: 120px 0;
  border-radius: 15px;
}

.how-work .work-video .video-content h5 {
  color: #fff;
  letter-spacing: 0.5px;
  display: inline;
  margin-right: 10px;
}

.how-work .work-video .video-content a i {
  font-size: 20px;
  color: #fff;
  background: #222222;
  width: 55px;
  height: 55px;
  padding: 17px 0 0 3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.how-work .work-video .video-content a i:hover {
  color: #e24545;
}

/* ====================
13. Testimonial Section
==================== */
.testimonial {
  background-image: url(../images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0 105px;
  position: relative;
}

.testimonial:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial .testimonial-top {
  margin-bottom: 90px;
}

.testimonial .testimonial-top h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial .testimonial-top p {
  font-size: 16px;
  color: #cccccc;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.testimonial .testimonial-slider .testimonial-item {
  background: rgba(255, 255, 255, 0.91);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 3px solid #4ca6d4;
  padding: 30px 30px 50px;
}

.testimonial .testimonial-slider .testimonial-item p {
  font-size: 15px;
  color: #444444;
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 25px;
  margin-bottom: 15px;
}

.testimonial .testimonial-slider .testimonial-item p i {
  font-size: 20px;
  color: #4ca6d4;
  margin-right: 6px;
}

.testimonial .testimonial-slider .testimonial-item img {
  max-width: 75px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  float: left;
  margin-right: 12px;
}

.testimonial .testimonial-slider .testimonial-item h4 {
  font-size: 16px;
  color: #222222;
  margin-top: 25px;
  margin-bottom: 5px;
}

.testimonial .testimonial-slider .testimonial-item h6 {
  font-size: 12px;
  font-family: "Lato", sans-serif;
}

/* ====================
14. Home Blog
==================== */
.blog-home {
  padding: 100px 0;
}

.blog-home .blog-top {
  margin-bottom: 80px;
}

.blog-home .blog-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-home .blog-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.blog-home .blog-box .blog-image a img {
  margin-bottom: 20px;
}

.blog-home .blog-box .blog-content {
  margin-bottom: 15px;
}

.blog-home .blog-box .blog-content ul {
  margin-bottom: 15px;
}

.blog-home .blog-box .blog-content ul li {
  font-size: 13px;
  margin-right: 20px;
  position: relative;
}

.blog-home .blog-box .blog-content ul li a {
  font-size: 13px;
  color: #4ca6d4;
}

.blog-home .blog-box .blog-content ul li a:hover {
  text-decoration: underline;
}

.blog-home .blog-box .blog-content ul li:before {
  position: absolute;
  content: '';
  background: #cccccc;
  width: 1px;
  height: 13px;
  top: 0;
  right: 0;
  margin-right: -13px;
  margin-top: 4px;
}

.blog-home .blog-box .blog-content ul li:last-child:before {
  content: none;
}

.blog-home .blog-box .blog-content h5 {
  margin-bottom: 10px;
}

.blog-home .blog-box .blog-content h5 a {
  font-size: 17px;
  color: #222222;
}

.blog-home .blog-box .blog-content p {
  font-size: 15px;
  color: #969696;
  line-height: 26px;
  letter-spacing: 0.5px;
}

.blog-home .blog-box .blog-btn a {
  font-size: 15px;
  color: #444444;
}

.blog-home .blog-box .blog-btn a:hover {
  color: #4ca6d4;
}

/* ====================
15. Pricing Table
==================== */
.pricing {
  background: #f7f7f7;
  padding: 100px 0 105px;
}

.pricing .pricing-top {
  margin-bottom: 80px;
}

.pricing .pricing-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing .pricing-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.pricing .pricing-box {
  background: #fff;
  border: 1px solid #eeeeee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.pricing .pricing-box:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.13);
}

.pricing .pricing-box .pricing-price {
  background: #444444;
  padding: 40px 55px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.pricing .pricing-box .pricing-price h4 {
  font-weight: 600;
  color: #fff;
}

.pricing .pricing-box .pricing-price h1 {
  font-size: 56px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  margin-bottom: -8px;
}

.pricing .pricing-box .pricing-price h1 span {
  font-size: 24px;
}

.pricing .pricing-box .pricing-price p {
  font-size: 13px;
  color: #fff;
  padding-left: 2px;
  font-weight: 600;
}

.pricing .pricing-box .pricing-content {
  padding: 40px 57px 60px;
}

.pricing .pricing-box .pricing-content ul {
  margin-bottom: 45px;
}

.pricing .pricing-box .pricing-content ul li {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.pricing .pricing-box .pricing-content ul li i {
  color: #969696;
  margin-right: 10px;
  opacity: 0.6;
}

.pricing .pricing-box .pricing-content a {
  font-size: 14px;
  color: #fff;
  background: #444444;
  padding: 12px 25px;
  font-weight: 600;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.pricing .pricing-box .pricing-content a:hover {
  background: #FFA726;
}

.pricing .price-box-two .pricing-price {
  background: #3d87ad;
}

.pricing .price-box-two .pricing-content a {
  background: #3d87ad;
}

/* ====================
16. Footer
==================== */
footer {
  background: #232425;
  padding: 100px 0;
}

footer .footer-top {
  margin-bottom: 90px;
}

footer .footer-top .footer-products h5 {
  color: #fff;
  margin-bottom: 35px;
  font-weight: 400;
}

footer .footer-top .footer-products ul li {
  margin-bottom: 12px;
}

footer .footer-top .footer-products ul li a {
  font-size: 14px;
  color: #cccccc;
  letter-spacing: 0.5px;
}

footer .footer-top .footer-products ul li a:hover {
  color: #4ca6d4;
}

footer .footer-top .footer-links h5, footer .footer-top .footer-account h5 {
  color: #fff;
  margin-bottom: 35px;
  font-weight: 400;
}

footer .footer-top .footer-links ul li, footer .footer-top .footer-account ul li {
  margin-bottom: 12px;
}

footer .footer-top .footer-links ul li a, footer .footer-top .footer-account ul li a {
  font-size: 14px;
  color: #cccccc;
  letter-spacing: 0.5px;
}

footer .footer-top .footer-links ul li a:hover, footer .footer-top .footer-account ul li a:hover {
  color: #4ca6d4;
}

footer .footer-top .footer-links ul li a i, footer .footer-top .footer-account ul li a i {
  font-size: 13px;
  color: #555555;
  margin-right: 15px;
}

footer .footer-top .footer-contact h5 {
  color: #fff;
  margin-bottom: 35px;
  font-weight: 400;
}

footer .footer-top .footer-contact p {
  font-size: 14px;
  color: #cccccc;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

footer .footer-top .footer-contact form {
  position: relative;
  margin-bottom: 43px;
}

footer .footer-top .footer-contact form input {
  width: 100%;
  height: 38px;
  padding-left: 13px;
  color: #fff;
  background: #333333;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

footer .footer-top .footer-contact form input:focus {
  outline: none;
}

footer .footer-top .footer-contact form button {
  position: absolute;
  color: #dddddd;
  background: transparent;
  border: none;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
}

footer .footer-top .footer-contact .footer-social li {
  margin-right: 2px;
}

footer .footer-top .footer-contact .footer-social li a i {
  font-size: 14px;
  color: #cccccc;
  border: 1px solid #444444;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 7px;
  margin-right: 7px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

footer .footer-top .footer-contact .footer-social li a i:hover {
  background: #4ca6d4;
  color: #fff;
  border-color: #4ca6d4;
}

footer .footer-bottom .copyright-text p {
  font-size: 14px;
  color: #969696;
  padding-top: 12px;
  letter-spacing: 0.5px;
}

footer .footer-bottom .copyright-text p i {
  font-size: 15px;
  color: #4ca6d4;
  padding: 0 2px;
}

footer .footer-bottom .copyright-text p a {
  color: #4ca6d4;
}

footer .footer-bottom .copyright-text p a:hover {
  text-decoration: underline;
}

footer .footer-bottom .back-to-top {
  background: rgba(70, 155, 199, 0.7);
  position: fixed;
  width: 40px;
  height: 40px;
  cursor: pointer;
  bottom: 100px;
  right: 40px;
  padding-top: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  display: none;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 1;
}

footer .footer-bottom .back-to-top:hover {
  background: #3d87ad;
}

/* ====================
17. Breadcrumb Area
==================== */
.breadcrumb-area {
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 65px 0;
  position: relative;
}

.breadcrumb-area:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.breadcrumb-area h1 {
  font-size: 42px;
  color: #cccccc;
  margin-bottom: 10px;
  font-weight: 600;
}

.breadcrumb-area ul li {
  font-size: 13px;
  color: #969696;
}

.breadcrumb-area ul li a {
  color: #969696;
}

.breadcrumb-area ul li a:hover {
  text-decoration: underline;
}

.breadcrumb-area ul li i {
  margin-right: 10px;
}

/* ====================
18. About Page
==================== */
.about-page {
  background: #f7f7f7;
  padding: 100px 0 105px;
}

.about-page .aboutp-top {
  margin-bottom: 80px;
}

.about-page .aboutp-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-page .aboutp-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.about-page .about-who h4 {
  color: #333333;
  margin-bottom: 20px;
}

.about-page .about-who p {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.about-page .about-who ul li {
  margin-bottom: 10px;
}

.about-page .mission {
  margin-top: 90px;
}

.about-page .mission .mission-content h4 {
  color: #333333;
  margin-bottom: 20px;
}

.about-page .mission .mission-content p {
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.5px;
}

/* ====================
19. Team Area
==================== */
.team {
  padding: 100px 0 205px;
}

.team .team-top {
  margin-bottom: 80px;
}

.team .team-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.team .team-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.team .team-slider .team-item {
  position: relative;
}

.team .team-slider .team-item img {
  border: 1px solid #eeeeee;
}

.team .team-slider .team-item .team-overlay {
  position: absolute;
  background: rgba(26, 183, 68, 0.93);
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.team .team-slider .team-item .team-overlay .overlay-tbox {
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 25%;
}

.team .team-slider .team-item .team-overlay .overlay-tbox h6 {
  color: #fff;
  margin-bottom: 10px;
}

.team .team-slider .team-item .team-overlay .overlay-tbox p {
  font-size: 13px;
  color: #fff;
  margin-bottom: 25px;
}

.team .team-slider .team-item .team-overlay .overlay-tbox ul li a i {
  font-size: 13px;
  color: #fff;
  border: 1px solid #eeeeee;
  width: 26px;
  height: 26px;
  padding-top: 6px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.team .team-slider .team-item .team-overlay .overlay-tbox ul li a i:hover {
  background: #fff;
  color: #4ca6d4;
}

.team .team-slider .team-item:hover .team-overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.team .team-slider .owl-nav div {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -98px;
  margin-left: -50px;
  padding-top: 10px;
  background: rgba(70, 155, 199, 0.7);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 40px;
  height: 45px;
  text-align: center;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.team .team-slider .owl-nav div:hover {
  background: #FFA726;
}

.team .team-slider .owl-nav div.owl-next {
  left: auto;
  right: 50%;
  margin-right: -50px;
}

/* ====================
20. Product Grid One
==================== */
.product-grid-one {
  background: #f7f7f7;
  padding: 100px 0;
}

.product-grid-one ul.gallery-filter {
  margin-bottom: 75px;
}

.product-grid-one ul.gallery-filter li {
  font-size: 16px;
  color: #222222;
  margin: 0 30px;
  padding: 5px 0;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
}

.product-grid-one ul.gallery-filter li:hover {
  color: #4ca6d4;
}

.product-grid-one ul.gallery-filter li:before {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  top: 2px;
  left: 0;
}

.product-grid-one ul.gallery-filter li:after {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.product-grid-one ul.gallery-filter li.active {
  color: #4ca6d4;
}

.product-grid-one ul.gallery-filter li.active:before, .product-grid-one ul.gallery-filter li.active:after {
  background: #4ca6d4;
}

.product-grid-one .gallery-items .grid-item .gallery-content {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image {
  position: relative;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image .image-box {
  margin-bottom: 10px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul {
  padding-top: 32%;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul li a img {
  background: #444444;
  padding: 12px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.product-grid-one .gallery-items .grid-item .gallery-content .gallery-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item {
  margin-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 {
  margin-bottom: 2px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading h4 a:hover {
  color: #4ca6d4;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading p {
  font-size: 13px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading p a {
  color: #4ca6d4;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item .box-item-price p {
  font-size: 20px;
  color: #fff;
  background: #4ca6d4;
  height: 40px;
  width: 55px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 5px;
  margin-top: 8px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li i {
  color: #FFA726;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-rating ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li {
  color: #555555;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li i {
  color: #FFA726;
}

.product-grid-one .gallery-items .grid-item .gallery-content .box-item-btm .box-item-fev ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.product-grid-one .gallery-items .grid-item .gallery-content:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

.product-grid-one .pagination-box {
  margin-top: 60px;
}

.product-grid-one .pagination-box ul li a {
  font-size: 15px;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  color: #555555;
  background: #fff;
  display: block;
  padding: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.product-grid-one .pagination-box ul li a:hover {
  border-color: #FFA726;
  color: #FFA726;
}

.product-grid-one .pagination-box ul li.active a {
  background: #FFA726;
  border-color: #FFA726;
  color: #fff;
}

/* ====================
21. Product Grid Two
==================== */
.product-grid-two {
  background: #f7f7f7;
  padding: 100px 0;
}

.product-grid-two .product-filter {
  background: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-grid-two .product-filter h6 {
  font-size: 17px;
  color: #222222;
  padding: 20px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-grid-two .product-filter ul {
  padding: 25px 35px 12px;
}

.product-grid-two .product-filter ul li a {
  font-size: 14px;
  color: #555555;
  margin-bottom: 15px;
  display: block;
}

.product-grid-two .product-filter ul li a i {
  font-size: 13px;
  margin-right: 10px;
  color: #969696;
}

.product-grid-two .product-filter ul li a:hover {
  color: #4ca6d4;
}

.product-grid-two .product-category {
  background: #fff;
  border: 1px solid #eeeeee;
}

.product-grid-two .product-category h6 {
  font-size: 17px;
  color: #222222;
  padding: 20px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-grid-two .product-category ul {
  padding: 25px 35px 12px;
}

.product-grid-two .product-category ul li a {
  font-size: 14px;
  color: #555555;
  margin-bottom: 15px;
  display: block;
}

.product-grid-two .product-category ul li a i {
  font-size: 13px;
  margin-right: 10px;
  color: #969696;
}

.product-grid-two .product-category ul li a:hover {
  color: #4ca6d4;
}

.product-grid-two .gallery-content {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 8px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.product-grid-two .gallery-content .gallery-image {
  position: relative;
}

.product-grid-two .gallery-content .gallery-image .image-box {
  margin-bottom: 10px;
}

.product-grid-two .gallery-content .gallery-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.product-grid-two .gallery-content .gallery-image .hover-box ul {
  padding-top: 32%;
}

.product-grid-two .gallery-content .gallery-image .hover-box ul li a img {
  background: #444444;
  padding: 8px 11px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-grid-two .gallery-content .gallery-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.product-grid-two .gallery-content .gallery-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.product-grid-two .gallery-content .box-item {
  margin-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
}

.product-grid-two .gallery-content .box-item .box-item-heading h6 {
  margin-bottom: 2px;
}

.product-grid-two .gallery-content .box-item .box-item-heading h6 a {
  font-size: 15px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.product-grid-two .gallery-content .box-item .box-item-heading h6 a:hover {
  color: #4ca6d4;
}

.product-grid-two .gallery-content .box-item .box-item-heading p {
  font-size: 12px;
}

.product-grid-two .gallery-content .box-item .box-item-heading p a {
  font-size: 12px;
  color: #4ca6d4;
}

.product-grid-two .gallery-content .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.product-grid-two .gallery-content .box-item .box-item-price p {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  height: 35px;
  width: 50px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 6px;
  margin-top: 3px;
  font-weight: 600;
}

.product-grid-two .gallery-content .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.product-grid-two .gallery-content .box-item-btm .box-item-rating ul li i {
  font-size: 12px;
  color: #FFA726;
}

.product-grid-two .gallery-content .box-item-btm .box-item-rating ul li a {
  font-size: 12px;
  color: #555555;
  padding: 0 1px;
  font-weight: 600;
}

.product-grid-two .gallery-content .box-item-btm .box-item-fev ul li {
  color: #555555;
}

.product-grid-two .gallery-content .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.product-grid-two .gallery-content .box-item-btm .box-item-fev ul li i {
  font-size: 12px;
  color: #FFA726;
}

.product-grid-two .gallery-content .box-item-btm .box-item-fev ul li a {
  font-size: 12px;
  color: #555555;
  padding: 0 1px;
  font-weight: 600;
}

.product-grid-two .gallery-content:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

.product-grid-two .pagination-box {
  margin-top: 60px;
}

.product-grid-two .pagination-box ul li a {
  font-size: 15px;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  color: #555555;
  background: #fff;
  display: block;
  padding: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.product-grid-two .pagination-box ul li a:hover {
  border-color: #FFA726;
  color: #FFA726;
}

.product-grid-two .pagination-box ul li.active a {
  background: #FFA726;
  border-color: #FFA726;
  color: #fff;
}

/* ====================
22. Product Grid Three
==================== */
.product-grid-three {
  background: #f7f7f7;
  padding: 100px 0;
}

.product-grid-three .product-filter {
  background: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-grid-three .product-filter h6 {
  font-size: 17px;
  color: #222222;
  padding: 20px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-grid-three .product-filter ul {
  padding: 25px 35px 12px;
}

.product-grid-three .product-filter ul li a {
  font-size: 14px;
  color: #555555;
  margin-bottom: 15px;
  display: block;
}

.product-grid-three .product-filter ul li a i {
  font-size: 13px;
  margin-right: 10px;
  color: #969696;
}

.product-grid-three .product-filter ul li a:hover {
  color: #4ca6d4;
}

.product-grid-three .product-category {
  background: #fff;
  border: 1px solid #eeeeee;
}

.product-grid-three .product-category h6 {
  font-size: 17px;
  color: #222222;
  padding: 20px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-grid-three .product-category ul {
  padding: 25px 35px 12px;
}

.product-grid-three .product-category ul li a {
  font-size: 14px;
  color: #555555;
  margin-bottom: 15px;
  display: block;
}

.product-grid-three .product-category ul li a i {
  font-size: 13px;
  margin-right: 10px;
  color: #969696;
}

.product-grid-three .product-category ul li a:hover {
  color: #4ca6d4;
}

.product-grid-three .pro-box {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.product-grid-three .pro-box .pro-image {
  position: relative;
}

.product-grid-three .pro-box .pro-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.product-grid-three .pro-box .pro-image .hover-box ul {
  padding-top: 32%;
}

.product-grid-three .pro-box .pro-image .hover-box ul li a img {
  background: #444444;
  padding: 10px 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-grid-three .pro-box .pro-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.product-grid-three .pro-box .pro-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.product-grid-three .pro-box .pro-content {
  padding: 8px 18px 0 0;
}

.product-grid-three .pro-box .pro-content .pro-npr {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading h5 {
  margin-bottom: 10px;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading h5 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading h5 a:hover {
  color: #4ca6d4;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading span {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading span a {
  font-size: 13px;
  margin-left: 5px;
  color: #4ca6d4;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading span a:hover {
  text-decoration: underline;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-heading p {
  color: #969696;
  letter-spacing: 0.5px;
  line-height: 22px;
  max-width: 460px;
  padding-right: 15px;
}

.product-grid-three .pro-box .pro-content .pro-npr .box-item-price p {
  font-size: 22px;
  color: #fff;
  background: #4ca6d4;
  height: 45px;
  width: 60px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding-top: 5px;
  margin-top: 5px;
}

.product-grid-three .pro-box .pro-content .box-item-btm .box-item-rating, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-comment, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-fev {
  margin-right: 10px;
}
.product-grid-three .pro-box .pro-content .box-item-btm .box-item-rating, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-comment, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-help {
  margin-right: 10px;
}

.product-grid-three .pro-box .pro-content .box-item-btm .box-item-rating ul li, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-comment ul li, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-fev ul li {
  margin-right: 3px;
}

.product-grid-three .pro-box .pro-content .box-item-btm .box-item-rating ul li i, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-comment ul li i, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-fev ul li i {
  font-size: 13px;
  color: #FFA726;
}

.product-grid-three .pro-box .pro-content .box-item-btm .box-item-rating ul li a, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-comment ul li a, .product-grid-three .pro-box .pro-content .box-item-btm .box-item-fev ul li a {
  font-size: 13px;
  color: #555555;
  padding: 0 1px;
}

.product-grid-three .pro-box:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

.product-grid-three .pagination-box {
  margin-top: 60px;
}

.product-grid-three .pagination-box ul li a {
  font-size: 15px;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  color: #555555;
  background: #fff;
  display: block;
  padding: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.product-grid-three .pagination-box ul li a:hover {
  border-color: #FFA726;
  color: #FFA726;
}

.product-grid-three .pagination-box ul li.active a {
  background: #FFA726;
  border-color: #FFA726;
  color: #fff;
}

/* ====================
23. Product Details
==================== */
.product-details {
  background: #f7f7f7;
  padding: 100px 0 75px;
}

.product-details .pro-details-box .details-img-box a.details-image {
  display: block;
  margin-bottom: 25px;
}

.product-details .pro-details-box .details-img-box a.details-image img {
  background: #fff;
  padding: 10px;
  border: 1px solid #eeeeee;
}

.product-details .pro-details-box .details-img-box ul {
  margin-bottom: 65px;
}

.product-details .pro-details-box .details-img-box ul li {
  padding: 0 5px;
}

.product-details .pro-details-box .details-img-box ul li a {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  width: 165px;
  height: 50px;
  padding-top: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.product-details .pro-details-box .details-img-box ul li:nth-child(1) a {
  background: #4ca6d4;
}

.product-details .pro-details-box .details-img-box ul li:nth-child(1) a:hover {
  background: #3d87ad;
}

.product-details .pro-details-box .details-img-box ul li:nth-child(2) a {
  background: #FFA726;
}

.product-details .pro-details-box .details-img-box ul li:nth-child(2) a:hover {
  background: #E98F0C;
}

.product-details .pro-details-box .details-img-box h5 {
  margin-bottom: 50px;
}

.product-details .pro-details-box .details-img-box h5 a {
  color: #222222;
}

.product-details .product-tab ul.nav-tabs {
  border: none;
  margin-bottom: 40px;
}

.product-details .product-tab ul.nav-tabs li {
  margin-right: 75px;
}

.product-details .product-tab ul.nav-tabs li a {
  display: inline-block;
  padding: 5px 2px 6px;
  font-size: 15px;
  color: #444444;
  background: transparent;
  border: none;
  font-weight: 600;
  position: relative;
}

.product-details .product-tab ul.nav-tabs li a:before {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}

.product-details .product-tab ul.nav-tabs li a:after {
  position: absolute;
  content: '';
  background: #dddddd;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.product-details .product-tab ul.nav-tabs li a:hover {
  color: #4ca6d4;
}

.product-details .product-tab ul.nav-tabs li a.active {
  color: #4ca6d4;
}

.product-details .product-tab ul.nav-tabs li a.active:before, .product-details .product-tab ul.nav-tabs li a.active:after {
  background: #4ca6d4;
}

.product-details .product-tab .tab-content #item-details p {
  font-size: 15px;
  color: #444444;
  line-height: 32px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.product-details .product-tab .tab-content #item-details p span {
  font-weight: 600;
}

.product-details .product-tab .tab-content #item-details h6 {
  color: #444444;
  margin-bottom: 15px;
}

.product-details .product-tab .tab-content #item-details ul li {
  color: #444444;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin-left: 30px;
  padding-left: 12px;
  margin-bottom: 18px;
}

.product-details .product-tab .tab-content .comment {
  margin-top: 55px;
}

.product-details .product-tab .tab-content .comment .comment-box {
  margin-bottom: 25px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-img a {
  display: block;
  margin-right: 15px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-img a img {
  width: 75px;
  background: #fff;
  padding: 5px;
  border: 1px solid #eeeeee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 20px 25px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content ul li:nth-child(1) a {
  font-size: 15px;
  color: #444444;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  margin-right: 20px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content ul li:nth-child(1) a:hover {
  color: #4ca6d4;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content ul li:nth-child(2) a {
  font-size: 12px;
  color: #fff;
  background: #4ca6d4;
  padding: 4px 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content ul li:nth-child(2) a:hover {
  background: #3d87ad;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content span {
  font-size: 12px;
  color: #969696;
  display: block;
  margin-bottom: 5px;
}

.product-details .product-tab .tab-content .comment .comment-box .comment-content p {
  line-height: 25px;
  letter-spacing: 0.5px;
}

.product-details .product-tab .tab-content .comment .comment-box2 {
  margin-left: 55px;
}

.product-details .product-tab .tab-content .comment .comment-form {
  border-top: 1px solid #dddddd;
  padding-top: 50px;
  margin-top: 35px;  
}

.product-details .product-tab .tab-content .comment .comment-form h5 {
  color: #444444;
  margin-bottom: 45px;
}

.product-details .product-tab .tab-content .comment .comment-form form input {
  width: 100%;
  height: 48px;
  font-size: 15px;
  color: #222222;
  border: 1px solid #eeeeee;
  padding-left: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.product-details .product-tab .tab-content .comment .comment-form form textarea {
  width: 100%;
  height: 200px;
  font-size: 15px;
  color: #222222;
  border: 1px solid #eeeeee;
  padding: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.product-details .product-tab .tab-content .comment .comment-form form button {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  width: 200px;
  height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.product-details .product-tab .tab-content .comment .comment-form form button:hover {
  background: #3d87ad;
}

.product-details .product-tab .tab-content #review {
  margin-top: 55px;
}

.product-details .product-tab .tab-content #review .review-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-details .product-tab .tab-content #review .review-box .review-img img {
  display: block;
  margin-right: 20px;
  width: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;

}

.product-details .product-tab .tab-content #review .review-box .review-content {
  width: 70%;
}

.product-details .product-tab .tab-content #review .review-box .review-content span a {
  font-size: 15px;
  color: #444444;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.product-details .product-tab .tab-content #review .review-box .review-content span a:hover {
  color: #4ca6d4;
}

.product-details .product-tab .tab-content #review .review-box .review-content ul {
  margin-bottom: 5px;
}

.product-details .product-tab .tab-content #review .review-box .review-content ul li i {
  font-size: 15px;
  color: #FFA726;
}

.product-details .product-tab .tab-content #review .review-box .review-content p {
  letter-spacing: 0.5px;
}

.product-details .product-tab .tab-content #support p {
  font-size: 15px;
  color: #444444;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.product-details .product-price {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 40px 0 60px;
  margin-bottom: 35px;
}

.product-details .product-price p {
  font-size: 20px;
  color: #969696;
  margin-bottom: -10px;
  font-weight: 300;
}

.product-details .product-price span {
  font-size: 66px;
  color: #444444;
  display: block;
  margin-bottom: 15px;
  letter-spacing: -3px;
}

.product-details .product-price select.form-control {
  border: none;
  width: 65%;
  display: block;
  margin: auto;
  border-bottom: 1px solid #dddddd;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #969696;
  padding: 0;
  margin-bottom: 45px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.product-details .product-price select.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-details .product-price select.form-control option {
  color: #555555;
}

.product-details .product-price a {
  font-size: 16px;
  color: #fff;
  background: #4ca6d4;
  padding: 13px 35px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.product-details .product-price a:hover {
  background: #3d87ad;
}

.product-details .item-info {
  background: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-details .item-info h6 {
  color: #222222;
  padding: 25px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-details .item-info ul {
  padding: 25px 35px 15px;
}

.product-details .item-info ul li {
  margin-bottom: 12px;
}

.product-details .item-info ul li span.text {
  float: right;
  color: #969696;
}

.product-details .item-info ul li span.text-rating {
  float: right;
  color: #fde16d;
}

.product-details .item-saler {
  background: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-details .item-saler h6 {
  color: #222222;
  padding: 25px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-details .item-saler .saler-box {
  padding: 25px 35px;
}

.product-details .item-saler .saler-box .saler-img a img {
  width: 70px;
  display: block;
  margin-right: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.product-details .item-saler .saler-box .saler-info h5 a {
  font-size: 14px;
  color: #444444;
  display: block;
  margin-bottom: 5px;
  margin-top: 8px;
}

.product-details .item-saler .saler-box .saler-info h5 a:hover {
  color: #4ca6d4;
}

.product-details .item-saler .saler-box .saler-info p {
  font-size: 13px;
  color: #969696;
  margin-bottom: 15px;
}

.product-details .item-tag {
  background: #fff;
  border: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-details .item-tag h6 {
  color: #222222;
  padding: 25px 35px;
  border-bottom: 1px solid #eeeeee;
}

.product-details .item-tag .tag-box {
  padding: 25px 35px;
}

.product-details .item-tag .tag-box a {
  font-size: 13px;
  color: #969696;
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 12px;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 10px;
}

.product-details .item-tag .tag-box a:hover {
  color: #4ca6d4;
  border-color: #4ca6d4;
}

/* ====================
24. Author
==================== */
.profile {
  background: #f7f7f7;
  padding: 100px 0 70px;
}

.profile .author-profile {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 55px 0 40px;
  margin-bottom: 20px;
}

.profile .author-profile img {
  max-width: 115px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.profile .author-profile h6 {
  margin-bottom: 3px;
}

.profile .author-profile p {
  font-size: 13px;
  color: #969696;
  font-weight: 300;
  display: block;
  margin-bottom: 15px;
}

.profile .author-profile a {
  color: #4ca6d4;
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
}

.profile .author-profile a:hover {
  text-decoration: underline;
}

.profile .author-profile ul li a i {
  font-size: 14px;
  color: #969696;
  text-align: center;
  width: 25px;
  height: 25px;
  padding-top: 7px;
}

.profile .author-profile ul li a i:hover {
  color: #4ca6d4;
}

.profile .author-item {
  background: #fff;
  padding: 20px 35px;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.profile .author-item .item-num p {
  color: #969696;
}

.profile .author-item .item-count p {
  color: #4ca6d4;
}

.profile .author-sale {
  background: #fff;
  padding: 20px 35px;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.profile .author-sale .sale-num p {
  color: #969696;
}

.profile .author-sale .sale-count p {
  color: #4ca6d4;
}

.profile .author-rating {
  background: #fff;
  padding: 20px 35px;
  border: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.profile .author-rating .rating-num p {
  color: #969696;
}

.profile .author-rating .rating-count ul li {
  color: #969696;
  margin-right: 3px;
}

.profile .author-rating .rating-count ul li:last-child {
  margin-right: 0;
}

.profile .author-rating .rating-count ul li i {
  font-size: 13px;
  color: #FFA726;
}

.profile .author-rating .rating-count ul li span {
  color: #4ca6d4;
  padding: 0 1px;
}

.profile .author-msg {
  background: #fff;
  padding: 25px 33px 30px;
  border: 1px solid #eeeeee;
}

.profile .author-msg h6 {
  color: #444444;
  margin-bottom: 15px;
}

.profile .author-msg form textarea {
  color: #222222;
  background: #fff;
  width: 100%;
  height: 130px;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  margin-bottom: 15px;
}

.profile .author-msg form button {
  width: 120px;
  height: 40px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.profile .author-msg form button:hover {
  background: #3d87ad;
}

.profile .author-about {
  background: #fff;
  padding: 25px 35px;
  border: 1px solid #eeeeee;
  margin-bottom: 55px;
}

.profile .author-about h5 {
  color: #444444;
  margin-bottom: 10px;
}

.profile .author-about p {
  color: #969696;
  letter-spacing: 0.5px;
  line-height: 28px;
}

.profile .product-heading h5 {
  color: #222222;
  margin-bottom: 42px;
}

.profile .author-product {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.profile .author-product .product-image {
  position: relative;
  margin-bottom: 10px;
}

.profile .author-product .product-image .hover-box {
  position: absolute;
  background: rgba(225, 225, 225, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.profile .author-product .product-image .hover-box ul {
  padding-top: 32%;
}

.profile .author-product .product-image .hover-box ul li a img {
  background: #444444;
  padding: 12px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.profile .author-product .product-image .hover-box ul li a img:hover {
  background: #4ca6d4;
}

.profile .author-product .product-image:hover .hover-box {
  visibility: visible;
  opacity: 1;
}

.profile .author-product .box-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.profile .author-product .box-item .box-item-heading h4 {
  margin-bottom: 2px;
}

.profile .author-product .box-item .box-item-heading h4 a {
  font-size: 17px;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

.profile .author-product .box-item .box-item-heading h4 a:hover {
  color: #4ca6d4;
}

.profile .author-product .box-item .box-item-heading p {
  font-size: 13px;
}

.profile .author-product .box-item .box-item-heading p a {
  color: #4ca6d4;
}

.profile .author-product .box-item .box-item-heading p a:hover {
  text-decoration: underline;
}

.profile .author-product .box-item .box-item-price p {
  font-size: 20px;
  color: #fff;
  background: #4ca6d4;
  height: 40px;
  width: 55px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-top: 5px;
  margin-top: 8px;
}

.profile .author-product .box-item-btm {
  padding-bottom: 2px;
}

.profile .author-product .box-item-btm .box-item-rating ul li {
  margin-right: 3px;
}

.profile .author-product .box-item-btm .box-item-rating ul li i {
  color: #FFA726;
}

.profile .author-product .box-item-btm .box-item-rating ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.profile .author-product .box-item-btm .box-item-fev ul li:nth-child(1) {
  margin-right: 2px;
}

.profile .author-product .box-item-btm .box-item-fev ul li i {
  color: #FFA726;
}

.profile .author-product .box-item-btm .box-item-fev ul li a {
  color: #555555;
  font-weight: 600;
  padding: 0 1px;
}

.profile .author-product:hover {
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.13);
}

/* ====================
25. Upload Product
==================== */
.uplaod-item {
  background: #f7f7f7;
  padding: 100px 0;
}

.uplaod-item .upload-box {
  background: #fff;
  border: 1px solid #eeeeee;
  max-width: 800px;
  margin: auto;
  padding: 65px 65px 85px;
}

.uplaod-item .upload-box .pro-heading h4 {
  color: #444444;
  text-align: center;
  margin-bottom: 45px;
}

.uplaod-item .upload-box .pro-name label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-name input {
  width: 100%;
  height: 50px;
  font-size: 15px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .pro-cat label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-cat select {
  width: 100%;
  height: 50px;
  display: block;
  margin: auto;
  border: 1px solid #dddddd;
  letter-spacing: 0.5px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .pro-cat select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.uplaod-item .upload-box .pro-desc label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-desc textarea {
  width: 100%;
  height: 170px;
  font-size: 15px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .upload-file label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .upload-file .file-box {
  border: 5px dashed #eeeeee;
  padding: 25px 0 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .upload-file .file-box i {
  font-size: 56px;
  color: #969696;
  margin-bottom: 12px;
}

.uplaod-item .upload-box .upload-file .file-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.uplaod-item .upload-box .upload-file .file-box a {
  color: #fff;
  background: #4ca6d4;
  padding: 8px 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.uplaod-item .upload-box .upload-file .file-box a:hover {
  background: #3d87ad;
}

.uplaod-item .upload-box .image-file label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .image-file .file-box {
  border: 5px dashed #eeeeee;
  padding: 25px 0 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .image-file .file-box i {
  font-size: 56px;
  color: #969696;
  margin-bottom: 12px;
}

.uplaod-item .upload-box .image-file .file-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.uplaod-item .upload-box .image-file .file-box a {
  color: #fff;
  background: #4ca6d4;
  padding: 8px 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.uplaod-item .upload-box .image-file .file-box a:hover {
  background: #3d87ad;
}

.uplaod-item .upload-box .pro-ver label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-ver input {
  width: 100%;
  height: 50px;
  font-size: 14px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .pro-demo label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-demo input {
  width: 100%;
  height: 50px;
  font-size: 14px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .pro-browser {
  margin-bottom: 30px;
}

.uplaod-item .upload-box .pro-browser p {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-browser .checkbox label {
  font-size: 15px;
  color: #969696;
  cursor: pointer;
}

.uplaod-item .upload-box .pro-browser .checkbox label input {
  margin-right: 10px;
}

.uplaod-item .upload-box .pro-tags label {
  color: #444444;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-tags textarea {
  width: 100%;
  height: 100px;
  font-size: 15px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 35px;
}

.uplaod-item .upload-box .pro-price label {
  color: #4ca6d4;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
}

.uplaod-item .upload-box .pro-price input {
  width: 100%;
  height: 50px;
  font-size: 14px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 65px;
}

.uplaod-item .upload-box .sub-btn a {
  font-size: 16px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  padding: 15px 35px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* ====================
26. Sign In
==================== */
.signin {
  background: #f7f7f7;
  padding: 100px 0;
}

.signin .signin-box {
  background: #fff;
  max-width: 500px;
  border: 1px solid #eeeeee;
  margin: auto;
  padding: 50px 60px 60px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
}

.signin .signin-box h4 {
  text-align: center;
  color: #444444;
  margin-bottom: 50px;
  font-weight: 600;
}

.signin .signin-box input[type="text"] {
  width: 100%;
  height: 55px;
  font-size: 15px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}

.signin .signin-box input[type="text"]:focus {
  outline: none;
}

.signin .signin-box label {
  cursor: pointer;
  margin-bottom: 30px;
}

.signin .signin-box label input[type="checkbox"] {
  margin-right: 6px;
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}

.signin .signin-box button {
  font-size: 16px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  width: 100%;
  height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.signin .signin-box button:hover {
  background: #3d87ad;
}

.signin .signin-box .sign-btm a {
  color: #969696;
}

.signin .signin-box .sign-btm a:hover {
  color: #4ca6d4;
  text-decoration: underline;
}

/* ====================
27. Sign Up
==================== */
.signup {
  background: #f7f7f7;
  padding: 100px 0;
}

.signup .signup-box {
  background: #fff;
  max-width: 600px;
  border: 1px solid #eeeeee;
  margin: auto;
  padding: 50px 60px 65px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
}

.signup .signup-box h4 {
  text-align: center;
  color: #444444;
  margin-bottom: 50px;
  font-weight: 600;
}

.signup .signup-box form input {
  width: 100%;
  height: 55px;
  color: #222222;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.signup .signup-box form .signup-btn {
  margin-top: 15px;
}

.signup .signup-box form .signup-btn button {
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: block;
  background: #4ca6d4;
  border: none;
  width: 170px;
  height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.signup .signup-box form .signup-btn button:hover {
  background: #3d87ad;
}

.signup .signup-box form .signup-btn span {
  color: #969696;
  margin-top: 25px;
}

.signup .signup-box form .signup-btn span a {
  color: #4ca6d4;
  margin-left: 3px;
}

.signup .signup-box form .signup-btn span a:hover {
  text-decoration: underline;
}

/* ====================
28. Faq
==================== */
.faq {
  background: #f7f7f7;
  padding: 100px 0 60px;
}

.faq .faq-box {
  background: #fff;
  padding: 25px 30px;
  border: 1px solid #eeeeee;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.faq .faq-box h6 {
  font-size: 18px;
  color: #444444;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.faq .faq-box h6 i {
  font-size: 20px;
  color: #4ca6d4;
  vertical-align: top;
  margin-right: 8px;
}

.faq .faq-box p {
  font-size: 15px;
  color: #969696;
  line-height: 30px;
  letter-spacing: 0.5px;
}

/* ====================
29. 404
==================== */
.error {
  background: #f7f7f7;
  padding: 80px 0 100px;
}

.error .error-box {
  padding-top: 70px;
  padding-left: 60px;
}

.error .error-box h1 {
  font-size: 148px;
  color: #4ca6d4;
  font-weight: bold;
}

.error .error-box h2 {
  font-size: 46px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.error .error-box p {
  font-size: 15px;
  color: #969696;
  letter-spacing: 0.5px;
  max-width: 310px;
  margin-bottom: 45px;
}

.error .error-box a {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  padding: 15px 40px;
  font-weight: 600;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.error .error-box a:hover {
  background: #3d87ad;
}

/* ====================
30. Coming Soon
==================== */
.coming-soon {
  background: #f7f7f7;
  padding: 100px 0 105px;
}

.coming-soon .cs-content h2 {
  font-size: 30px;
  color: #222222;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.coming-soon .cs-content p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
  margin-bottom: 60px;
}

.coming-soon .cs-content .countdown-timer {
  margin-bottom: 65px;
}

.coming-soon .cs-content .countdown-timer #timer-wrapper .timer-body-block .table-cell {
  display: inline-block;
  margin: 12px;
  color: #fff;
  background: #4ca6d4;
  width: 110px;
  height: 110px;
  padding: 14px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.coming-soon .cs-content .countdown-timer #timer-wrapper .timer-body-block .table-cell .tab-val {
  font-size: 36px;
}

.coming-soon .cs-content .countdown-timer #timer-wrapper .timer-body-block .table-cell .tab-unit {
  text-transform: uppercase;
  color: #eeeeee;
}

.coming-soon .cs-content .count-subs h5 {
  color: #444444;
  margin-bottom: 25px;
}

.coming-soon .cs-content .count-subs form {
  width: 400px;
  margin: auto;
  position: relative;
}

.coming-soon .cs-content .count-subs form input {
  width: 100%;
  height: 45px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 15px;
}

.coming-soon .cs-content .count-subs form button {
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  right: 0;
  border: none;
  background: transparent;
}

.coming-soon .cs-content .count-subs form button:hover {
  color: #4ca6d4;
}

/* ====================
31. Contact
==================== */
.contact {
  background: #f7f7f7;
  padding: 100px 0 95px;
}

.contact .contact-top {
  margin-bottom: 100px;
}

.contact .contact-top h2 {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact .contact-top p {
  font-size: 16px;
  max-width: 730px;
  margin: auto;
  line-height: 28px;
}

.contact .contact-box {
  margin-bottom: 100px;
}

.contact .contact-box .con-img img {
  background: #4ca6d4;
  padding: 17px;
  margin-right: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.contact .contact-box .con-content h6 {
  color: #444444;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact .contact-box .con-content p {
  max-width: 190px;
}

.contact .contact-form h5 {
  color: #222222;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact .contact-form form p input {
  width: 100%;
  height: 45px;
  border: 1px solid #dddddd;
  padding-left: 15px;
  margin-bottom: 25px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.contact .contact-form form p input:focus {
  outline: none;
}

.contact .contact-form form p textarea {
  width: 100%;
  height: 185px;
  border: 1px solid #dddddd;
  padding: 15px;
  margin-bottom: 25px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.contact .contact-form form p textarea:focus {
  outline: none;
}

.contact .contact-form form button {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  padding: 10px 30px;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact .contact-form form button:hover {
  background: #3d87ad;
}

.contact .contact-form form #form-messages.error {
  color: #444444;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.contact .contact-map h5 {
  color: #222222;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact .contact-map #map {
  width: 100%;
  height: 325px;
}

/* ====================
32. Blog
==================== */
.blog {
  padding: 100px 0;
}

.blog .blog-box {
  margin-bottom: 45px;
}

.blog .blog-box .blog-image a img {
  margin-bottom: 20px;
}

.blog .blog-box .blog-content {
  margin-bottom: 15px;
}

.blog .blog-box .blog-content ul {
  margin-bottom: 15px;
}

.blog .blog-box .blog-content ul li {
  font-size: 13px;
  margin-right: 20px;
  position: relative;
}

.blog .blog-box .blog-content ul li a {
  font-size: 13px;
  color: #4ca6d4;
}

.blog .blog-box .blog-content ul li a:hover {
  text-decoration: underline;
}

.blog .blog-box .blog-content ul li:before {
  position: absolute;
  content: '';
  background: #cccccc;
  width: 1px;
  height: 13px;
  top: 0;
  right: 0;
  margin-right: -13px;
  margin-top: 4px;
}

.blog .blog-box .blog-content ul li:last-child:before {
  content: none;
}

.blog .blog-box .blog-content h5 {
  margin-bottom: 10px;
}

.blog .blog-box .blog-content h5 a {
  font-size: 17px;
  color: #222222;
}

.blog .blog-box .blog-content p {
  font-size: 14px;
  color: #969696;
  line-height: 26px;
  letter-spacing: 0.5px;
}

.blog .blog-box .blog-btn a {
  font-size: 15px;
  color: #444444;
}

.blog .blog-box .blog-btn a:hover {
  color: #4ca6d4;
}

.blog .pagination-box {
  margin-top: 35px;
}

.blog .pagination-box ul li a {
  font-size: 15px;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  color: #555555;
  background: #fff;
  display: block;
  padding: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.blog .pagination-box ul li a:hover {
  border-color: #FFA726;
  color: #FFA726;
}

.blog .pagination-box ul li.active a {
  background: #FFA726;
  border-color: #FFA726;
  color: #fff;
}

.blog-sbar {
  padding: 100px 0;
}

.blog-sbar .blog-s .blog-box {
  margin-bottom: 45px;
}

.blog-sbar .blog-s .blog-box .blog-image a img {
  margin-bottom: 20px;
}

.blog-sbar .blog-s .blog-box .blog-content {
  margin-bottom: 15px;
}

.blog-sbar .blog-s .blog-box .blog-content ul {
  margin-bottom: 15px;
}

.blog-sbar .blog-s .blog-box .blog-content ul li {
  font-size: 13px;
  margin-right: 20px;
  position: relative;
}

.blog-sbar .blog-s .blog-box .blog-content ul li a {
  font-size: 13px;
  color: #4ca6d4;
}

.blog-sbar .blog-s .blog-box .blog-content ul li a:hover {
  text-decoration: underline;
}

.blog-sbar .blog-s .blog-box .blog-content ul li:before {
  position: absolute;
  content: '';
  background: #cccccc;
  width: 1px;
  height: 13px;
  top: 0;
  right: 0;
  margin-right: -13px;
  margin-top: 4px;
}

.blog-sbar .blog-s .blog-box .blog-content ul li:last-child:before {
  content: none;
}

.blog-sbar .blog-s .blog-box .blog-content h5 {
  margin-bottom: 10px;
}

.blog-sbar .blog-s .blog-box .blog-content h5 a {
  font-size: 17px;
  color: #222222;
}

.blog-sbar .blog-s .blog-box .blog-content p {
  font-size: 14px;
  color: #969696;
  line-height: 26px;
  letter-spacing: 0.5px;
}

.blog-sbar .blog-s .blog-box .blog-btn a {
  font-size: 15px;
  color: #444444;
}

.blog-sbar .blog-s .blog-box .blog-btn a:hover {
  color: #4ca6d4;
}

.blog-sbar .blog-s .pagination-box {
  margin-top: 35px;
}

.blog-sbar .blog-s .pagination-box ul li a {
  font-size: 15px;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  color: #555555;
  background: #fff;
  display: block;
  padding: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.blog-sbar .blog-s .pagination-box ul li a:hover {
  border-color: #FFA726;
  color: #FFA726;
}

.blog-sbar .blog-s .pagination-box ul li.active a {
  background: #FFA726;
  border-color: #FFA726;
  color: #fff;
}

.blog-sbar .widget-search {
  margin-bottom: 45px;
}

.blog-sbar .widget-search h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-sbar .widget-search form {
  position: relative;
}

.blog-sbar .widget-search form input {
  width: 100%;
  height: 45px;
  border: 1px solid #dddddd;
  padding-left: 15px;
}

.blog-sbar .widget-search form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 100%;
  border: none;
  background: #555555;
  color: #fff;
}

.blog-sbar .widget-post {
  margin-bottom: 45px;
}

.blog-sbar .widget-post h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-sbar .widget-post ul li {
  margin-bottom: 8px;
}

.blog-sbar .widget-post ul li a {
  font-size: 14px;
  color: #555555;
  letter-spacing: 0.5px;
}

.blog-sbar .widget-post ul li a:hover {
  color: #4ca6d4;
}

.blog-sbar .widget-cat {
  margin-bottom: 45px;
}

.blog-sbar .widget-cat h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-sbar .widget-cat ul li {
  margin-bottom: 10px;
}

.blog-sbar .widget-cat ul li a {
  font-size: 14px;
  color: #555555;
  display: block;
  letter-spacing: 0.5px;
}

.blog-sbar .widget-cat ul li a span {
  float: right;
}

.blog-sbar .widget-cat ul li a:hover {
  color: #4ca6d4;
}

.blog-sbar .widget-tag h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-sbar .widget-tag .tag-box a {
  font-size: 13px;
  color: #555555;
  border: 1px solid #dddddd;
  padding: 6px 10px 5px;
  margin: 0 8px 13px 0;
  display: inline-block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.blog-sbar .widget-tag .tag-box a:hover {
  color: #4ca6d4;
  border-color: #4ca6d4;
}

/* ====================
33. Blog Details
==================== */
.blog-details {
  padding: 100px 0;
}

.blog-details .blog-d-box .image-box img {
  margin-bottom: 30px;
}

.blog-details .blog-d-box .image-content h4 {
  color: #222222;
  margin-bottom: 15px;
}

.blog-details .blog-d-box .image-content ul {
  margin-bottom: 20px;
}

.blog-details .blog-d-box .image-content ul li {
  margin-right: 25px;
  position: relative;
}

.blog-details .blog-d-box .image-content ul li:before {
  position: absolute;
  content: '';
  background: #cccccc;
  width: 1px;
  height: 15px;
  top: 0;
  right: 0;
  margin-top: 3px;
  margin-right: -15px;
}

.blog-details .blog-d-box .image-content ul li:last-child:before {
  content: none;
}

.blog-details .blog-d-box .image-content ul li a {
  color: #4ca6d4;
  margin: 0 2px;
  font-weight: 600;
}

.blog-details .blog-d-box .image-content ul li a:hover {
  text-decoration: underline;
}

.blog-details .blog-d-box .image-content p {
  font-size: 15px;
  color: #444444;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-bottom: 45px;
}

.blog-details .blog-d-box .image-content p span {
  font-size: 14px;
  background: #f1f1f1;
  display: block;
  padding: 20px 30px 25px;
  margin: 20px 0;
  color: #222222;
  border-left: 2px solid #4ca6d4;
  line-height: 28px;
}

.blog-details .blog-d-box .blog-btns .share-btn ul li:first-child {
  font-size: 15px;
  font-weight: 600;
}

.blog-details .blog-d-box .blog-btns .share-btn ul li a i {
  font-size: 13px;
  color: #555555;
  display: block;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 7px;
}

.blog-details .blog-d-box .blog-btns .share-btn ul li a i:hover {
  background: #4ca6d4;
  border-color: #4ca6d4;
  color: #fff;
}

.blog-details .blog-d-box .blog-btns .post-bfaf {
  margin-bottom: 50px;
}

.blog-details .blog-d-box .blog-btns .post-bfaf ul li a {
  color: #555555;
  display: block;
  width: 75px;
  height: 30px;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-align: center;
  padding-top: 3px;
}

.blog-details .blog-d-box .blog-btns .post-bfaf ul li a:hover {
  color: #fff;
  border-color: #4ca6d4;
  background: #4ca6d4;
}

.blog-details .blog-d-box .blog-btns .post-bfaf ul li:nth-child(1) i {
  padding-right: 5px;
}

.blog-details .blog-d-box .blog-btns .post-bfaf ul li:nth-child(2) i {
  padding-left: 5px;
}

.blog-details .blog-d-box .blog-comment h4 {
  color: #222222;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}

.blog-details .blog-d-box .blog-comment .comment-box {
  margin-bottom: 50px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-img a {
  margin-right: 30px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-img a img {
  width: 80px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con ul li:nth-child(1) a {
  font-size: 17px;
  color: #444444;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  margin-right: 20px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con ul li:nth-child(1) a:hover {
  color: #4ca6d4;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con ul li:nth-child(2) a {
  font-size: 12px;
  color: #fff;
  background: #4ca6d4;
  padding: 4px 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con ul li:nth-child(2) a:hover {
  background: #3d87ad;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con span {
  font-size: 13px;
  color: #969696;
  display: block;
  margin-bottom: 5px;
}

.blog-details .blog-d-box .blog-comment .comment-box .comment-con p {
  max-width: 700px;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.blog-details .blog-d-box .blog-comment .comment-box2 {
  margin-left: 45px;
}

.blog-details .blog-d-box .comment-form h5 {
  color: #444444;
  padding-top: 15px;
  margin-bottom: 40px;
}

.blog-details .blog-d-box .comment-form form input {
  width: 100%;
  height: 48px;
  font-size: 15px;
  color: #222222;
  border: 1px solid #dddddd;
  padding-left: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.blog-details .blog-d-box .comment-form form textarea {
  width: 100%;
  height: 200px;
  font-size: 15px;
  color: #222222;
  border: 1px solid #dddddd;
  padding: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.blog-details .blog-d-box .comment-form form button {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  width: 200px;
  height: 48px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.blog-details .blog-d-box .comment-form form button:hover {
  background: #3d87ad;
}

.blog-details .widget-search {
  margin-bottom: 45px;
}

.blog-details .widget-search h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-details .widget-search form {
  position: relative;
}

.blog-details .widget-search form input {
  width: 100%;
  height: 45px;
  border: 1px solid #dddddd;
  padding-left: 15px;
}

.blog-details .widget-search form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 100%;
  border: none;
  background: #555555;
  color: #fff;
}

.blog-details .widget-post {
  margin-bottom: 45px;
}

.blog-details .widget-post h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-details .widget-post ul li {
  margin-bottom: 8px;
}

.blog-details .widget-post ul li a {
  font-size: 14px;
  color: #555555;
  letter-spacing: 0.5px;
}

.blog-details .widget-post ul li a:hover {
  color: #4ca6d4;
}

.blog-details .widget-cat {
  margin-bottom: 45px;
}

.blog-details .widget-cat h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-details .widget-cat ul li {
  margin-bottom: 10px;
}

.blog-details .widget-cat ul li a {
  font-size: 14px;
  color: #555555;
  display: block;
  letter-spacing: 0.5px;
}

.blog-details .widget-cat ul li a span {
  float: right;
}

.blog-details .widget-cat ul li a:hover {
  color: #4ca6d4;
}

.blog-details .widget-tag h6 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 20px;
}

.blog-details .widget-tag .tag-box a {
  font-size: 13px;
  color: #555555;
  border: 1px solid #dddddd;
  padding: 6px 10px 5px;
  margin: 0 8px 13px 0;
  display: inline-block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.blog-details .widget-tag .tag-box a:hover {
  color: #4ca6d4;
  border-color: #4ca6d4;
}

/* ====================
34. Cart
==================== */
.cart {
  background: #f7f7f7;
  padding: 100px 0;
}

.cart .cart-box {
  background: #fff;
  margin-bottom: 40px;
}

.cart .cart-box table td {
  vertical-align: middle;
  letter-spacing: 0.5px;
}

.cart .cart-box table td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}

.cart .cart-box table thead tr td {
  font-size: 15px;
  color: #222222;
  font-weight: 600;
  border-bottom-width: 1px;
  height: 60px;
}

.cart .cart-box table thead tr td:nth-child(1) {
  width: 75%;
}

.cart .cart-box table thead tr td:nth-child(2) {
  width: 16%;
}

.cart .cart-box table tbody tr td .item-box {
  padding: 15px 0 35px;
}

.cart .cart-box table tbody tr td .item-box img {
  margin-right: 20px;
  float: left;
}

.cart .cart-box table tbody tr td .item-box h6 {
  padding-top: 10px;
  margin-bottom: 5px;
}

.cart .cart-box table tbody tr td .item-box h6 a {
  color: #444444;
  font-weight: 400;
}

.cart .cart-box table tbody tr td .item-box h6 a:hover {
  color: #4ca6d4;
}

.cart .cart-box table tbody tr td .item-box p {
  font-size: 13px;
  color: #969696;
  margin-bottom: 2px;
}

.cart .cart-box table tbody tr td .item-box p a {
  font-size: 13px;
  color: #4ca6d4;
  margin-left: 5px;
}

.cart .cart-box table tbody tr td .item-box p a:hover {
  text-decoration: underline;
}

.cart .cart-box table tbody tr td:nth-child(2) {
  font-size: 18px;
  color: #444444;
  font-weight: 600;
}

.cart .cart-box table tbody tr td:nth-child(3) a i {
  font-size: 17px;
  color: #969696;
}

.cart .cart-box table tbody tr td:nth-child(3) a i:hover {
  color: #e24545;
}

.cart .payment-method {
  background: #fff;
  border: 1px solid #dddddd;
  padding: 30px 35px 20px;
}

.cart .payment-method h5 {
  color: #222222;
  margin-bottom: 20px;
}

.cart .payment-method ul li {
  font-size: 15px;
  color: #444444;
  margin-bottom: 15px;
}

.cart .payment-method ul li i {
  font-size: 14px;
  color: #4ca6d4;
  margin-right: 5px;
}

.cart .cart-tbox {
  background: #fff;
  border: 1px solid #dddddd;
  padding: 30px 35px 50px;
}

.cart .cart-tbox h5 {
  color: #222222;
  margin-bottom: 20px;
}

.cart .cart-tbox ul.total-list {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.cart .cart-tbox ul.total-list li {
  font-size: 16px;
  color: #444444;
  margin-bottom: 10px;
}

.cart .cart-tbox ul.total-list li span {
  float: right;
}

.cart .cart-tbox h6 {
  text-align: right;
  color: #222222;
  margin-bottom: 40px;
}

.cart .cart-tbox h6 span {
  margin-left: 15px;
}

.cart .cart-tbox ul.total-btn li:nth-child(1) {
  margin-right: 15px;
}

.cart .cart-tbox ul.total-btn li:nth-child(1) a {
  font-size: 15px;
  color: #4ca6d4;
  border: 2px solid #4ca6d4;
  padding: 10px 18px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.cart .cart-tbox ul.total-btn li:nth-child(1) a:hover {
  background: #4ca6d4;
  color: #fff;
}

.cart .cart-tbox ul.total-btn li:nth-child(2) a {
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  border: 2px solid #4ca6d4;
  padding: 10px 18px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-weight: 600;
}

.cart .cart-tbox ul.total-btn li:nth-child(2) a:hover {
  background: #3d87ad;
  color: #fff;
  border-color: #3d87ad;
}

/* ====================
35. Checkout
==================== */
.checkout {
  padding: 100px 0 105px;
}

.checkout .check-meth {
  margin-bottom: 60px;
}

.checkout .check-meth h4 {
  color: #222222;
  margin-bottom: 35px;
  font-weight: 600;
}

.checkout .check-meth .guest-register h6 {
  font-size: 18px;
  color: #444444;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.checkout .check-meth .guest-register p {
  font-size: 15px;
  color: #969696;
  margin-bottom: 10px;
}

.checkout .check-meth .guest-register label {
  display: block;
  font-weight: 600;
  cursor: pointer;
}

.checkout .check-meth .guest-register label input {
  margin-right: 6px;
}

.checkout .check-meth .guest-register button {
  color: #fff;
  background: #4ca6d4;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 7px 15px;
  margin-top: 15px;
  font-weight: 600;
}

.checkout .check-meth .guest-register button:hover {
  background: #3d87ad;
}

.checkout .check-meth .registerd h6 {
  font-size: 18px;
  color: #444444;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.checkout .check-meth .registerd form input {
  width: 300px;
  height: 45px;
  color: #222222;
  display: block;
  border: 1px solid #cccccc;
  padding-left: 15px;
  margin-bottom: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.checkout .check-meth .registerd form button {
  color: #fff;
  background: #4ca6d4;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 7px 20px;
  font-weight: 600;
}

.checkout .check-meth .registerd form button:hover {
  background: #3d87ad;
}

.checkout .biling-det {
  margin-bottom: 50px;
}

.checkout .biling-det h4 {
  color: #222222;
  margin-bottom: 50px;
  font-weight: 600;
}

.checkout .biling-det form input {
  width: 100%;
  height: 45px;
  color: #222222;
  border: 1px solid #cccccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding-left: 15px;
  margin-bottom: 20px;
}

.checkout .biling-det form textarea {
  width: 100%;
  height: 175px;
  color: #222222;
  border: 1px solid #cccccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 15px;
}

.checkout .order-box h4 {
  color: #222222;
  margin-bottom: 50px;
  font-weight: 600;
}

.checkout .order-box .order-table {
  margin-bottom: 45px;
}

.checkout .order-box .order-table h6 {
  font-size: 17px;
  color: #444444;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 10px 10px 9px;
}

.checkout .order-box .order-table h6 span {
  float: right;
}

.checkout .order-box .order-table ul.order-item {
  margin: 20px 0;
  padding: 0 10px 12px;
  border-bottom: 1px solid #dddddd;
}

.checkout .order-box .order-table ul.order-item li {
  margin-bottom: 10px;
}

.checkout .order-box .order-table ul.order-item li a {
  font-size: 15px;
  color: #444444;
  font-weight: 400;
}

.checkout .order-box .order-table ul.order-item li a:hover {
  color: #4ca6d4;
}

.checkout .order-box .order-table ul.order-item li span {
  float: right;
  font-weight: 600;
}

.checkout .order-box .order-table ul.item-minu {
  margin: 20px 0;
  padding: 0 10px 12px;
  border-bottom: 1px solid #dddddd;
}

.checkout .order-box .order-table ul.item-minu li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444444;
  font-weight: 400;
}

.checkout .order-box .order-table ul.item-minu li span {
  float: right;
  font-weight: 600;
}

.checkout .order-box .order-table p {
  font-size: 15px;
  color: #222222;
  padding: 0 10px;
  font-weight: 600;
}

.checkout .order-box .order-table p span {
  float: right;
  color: #4ca6d4;
}

.checkout .pay-method p {
  margin-bottom: 20px;
}

.checkout .pay-method p label {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
}

.checkout .pay-method p label input {
  margin-right: 12px;
}

.checkout .pay-method p img {
  margin-left: 20px;
}

.checkout .pay-method p#bank {
  margin-bottom: 5px;
}

.checkout .pay-method span {
  font-size: 15px;
  color: #969696;
  display: block;
  max-width: 680px;
  margin-left: 25px;
  margin-bottom: 20px;
}

.checkout .pay-method button {
  display: block;
  font-size: 15px;
  color: #fff;
  background: #4ca6d4;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 12px 30px;
  margin-top: 50px;
  font-weight: 600;
}

.checkout .pay-method button:hover {
  background: #3d87ad;
}

/* ====================
36. Helper Classes
==================== */
.hidden {
  display: none !important;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.signup-emails {
    margin-bottom: 30px;
}

#search_button {
  position: absolute;
  top: 310px;
  left: 550px;
  border: 1px solid #dcdcdc;
  border-color: rgba(0, 0, 0, 0.1);
  color: #444!important;
  font-size: 11px;
  font-weight: bold;
  padding: 8px;
  background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
  border-radius: 2px;
}

#q {
  width: 680px;
  height: 30px;
  border: 2px solid #cdcdcd;
}

