/*-------------------------------------
[Master Stylesheet]
Project: Optima HTML

[Table of contents]

01. Typography;
02. Header style;
03. Common content styles;
04. Custom plugins styles;
05. Pages:
		
		05.01. Home page type 1;
		05.02. Home page type 2;
		05.03. Blog listing;
		05.04. Blog single post;
		05.05. Shortcodes;
		05.06. Page 404;
		05.07. FAQ;
		05.08. Contacts;
		05.08. Coming soon;
		05.09. Shop listing;
		05.10. Shop single item;
		05.11. Team;
		05.12. Team member;
		05.13. Gallery;
		05.14. Gallery single;
		05.15. Services;
		05.16. Services single;
		05.17. Counselling;
		05.18. About Us;
		05.19. About me;
		05.20. Appointment;
		
06. Footer style;
07. Indents;
08. Responsive style;
*/

/*============================================
//  Typography:
*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  font-family: 'Lato', 'Arial', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background-color: #fff;
  height: 100%;
}

::-moz-selection {
 color: #fff;
 background-color: #000;
}
::selection {
  color: #fff;
  background-color: #000;
}
 input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
 -webkit-appearance: none;
}
input[type='number'] {
  -moz-appearance: textfield;
}
h1 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 42px;
  line-height: 36px;
  font-weight: 300;
  color: #42474c;
  margin-top: 10px;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  color: #42474c;
  margin-top: 10px;
  margin-bottom: 19px;
}
h3 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
  color: #42474c;
  margin-top: 10px;
  margin-bottom: 15px;
}
h4 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  color: #42474c;
  margin-top: 10px;
  margin-bottom: 10px;
}
h5 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  color: #42474c;
  text-transform: uppercase;
  margin: 0;
}
h6 {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 12px;
  line-height: 36px;
  font-weight: 700;
  color: #42474c;
  text-transform: uppercase;
  margin: 6px 0 0;
  letter-spacing: 0.3px;
}
p {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 300;
  margin-bottom: 5px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  font-weight: 400;
  color: #000;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
a:hover {
  color: #aaaaaa;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  text-decoration: none;
}
a:active {
  color: inherit;
}
a:link, a:visited, a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}
button {
  cursor: pointer;
  padding: 0;
}
button:active, button:focus {
  outline: none;
}
strong {
  font-weight: 700;
}
.browserupgrade {
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  padding: 20px;
}
input[type="text"]:active, input[type="search"]:active, input[type="url"]:active, input[type="email"]:active, input[type="password"]:active, textarea:active, select:active {
  outline: none;
}
input[type="text"]:focus, input[type="search"]:focus, input[type="url"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  outline: none;
}
.select-text {
  background-color: #4eaac8;
  color: #fff;
}
.dropcap {
  font-size: 72px;
  line-height: 72px;
  color: #4eaac8;
  font-weight: 400;
  float: left;
  display: block;
  margin-top: -8px;
  margin-right: 18px;
  margin-bottom: 5px;
}
.blockquote-01 {
  padding: 0;
  border: none;
}
.blockquote-01__text {
  font-size: 30px;
  line-height: 42px;
  color: #42474c;
  font-weight: 400;
  margin: 0 0 17px;
  letter-spacing: 0.3px;
}
.blockquote-01__text::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/icon_01.png") no-repeat center center;
  width: 25px;
  height: 25px;
  margin-top: -20px;
  margin-right: 11px;
}
.blockquote-01__author {
  font-size: 18px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 400;
}
.blockquote-01__author span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
/*// List style //*/
ol {
  margin: 0;
  padding: 0;
}
ol li {
  font-size: 18px;
  line-height: 36px;
  color: #5c656d;
  font-weight: 300;
  list-style: none;
  position: relative;
  padding-left: 30px;
  counter-increment: li;
  margin-bottom: 7px;
}
ol li::before {
  content: "."counter(li);
  font-size: inherit;
  display: inline-block;
  text-align: right;
  direction: rtl;
  position: absolute;
  color: #4eaac8;
  font-weight: 400;
  top: 0;
  left: 0;
}
.list-01 {
  margin: 0;
  padding: 0;
}
.list-01 li {
  font-size: 18px;
  line-height: 36px;
  color: #5c656d;
  font-weight: 300;
  position: relative;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 7px;
}
.list-01 li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 17px;
  left: 5px;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #4eaac8;
}
.list-02 {
  margin: 0;
  padding: 0;
}
.list-02 li {
  font-size: 18px;
  line-height: 36px;
  color: #5c656d;
  font-weight: 300;
  position: relative;
  padding-left: 23px;
  list-style: none;
  margin-bottom: 7px;
}
.list-02 li::before {
  font-family: 'FontAwesome';
  content: '\f0da';
  color: #4eaac8;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 13px;
  left: 5px;
}
.list-03 {
  padding-bottom: 10px;
}
.list-03 li {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
  padding-left: 19px;
  margin-bottom: 18px;
}
.list-04 {
  padding-bottom: 10px;
  padding-left: 0;
  margin: 0;
}
.list-04 li {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
  padding-left: 26px;
  margin-bottom: 18px;
  list-style: none;
  position: relative;
  font-weight: 300;
}
.list-04 li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #4eaac8;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/*// Divider style //*/
.divider-01 {
  border-top: 1px solid #f4f6f7;
  margin-top: 30px;
  margin-bottom: 30px;
}
.divider-02 {
  border-top: 1px solid #eceff1;
  margin-top: 30px;
  margin-bottom: 30px;
}
.divider-03 {
  border-top: 1px solid #d9e0e4;
  margin-top: 30px;
  margin-bottom: 30px;
}
.wrapp-content {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}
.content-row {
  display: table-row;
  height: 100%;
  overflow-x: hidden;
  table-layout: fixed;
  border-collapse: collapse;
}
.align-left {
  float: left;
  margin-right: 50px;
  margin-top: 7px;
  margin-bottom: 22px;
}
/*// Align style //*/
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

@media only screen and (max-width:1199px) {
.text-md-center {
  text-align: center;
}
.text-md-left {
  text-align: left;
}
.text-md-right {
  text-align: right;
}
}

@media only screen and (max-width:991px) {
.text-sm-center {
  text-align: center;
}
.text-sm-left {
  text-align: left;
}
.text-sm-right {
  text-align: right;
}
}

@media only screen and (max-width:767px) {
.text-xs-center {
  text-align: center;
}
.text-xs-left {
  text-align: left;
}
.text-xs-right {
  text-align: right;
}
}
/*============================================
//  Header style:
*/

/*// Header info //*/
.info-block-01 {
  background-color: #f9f9f9;
}
.info-block-01__box-01 {
  float: right;
}
.visit-time {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #42474c;
  display: inline-block;
  vertical-align: middle;
  margin: 14px 0;
  opacity: 0.7;
}
.free-consultation-link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #766e9b;
  display: inline-block;
  vertical-align: middle;
  margin: 14px 0 14px 30px;
}
.email-info {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #231f20;
  display: inline-block;
  vertical-align: middle;
  margin: 14px 0 14px 40px;
  opacity: 0.7;
}
.email-info::before {
  font-family: 'FontAwesome';
  content: '\f0e0';
  font-size: 16px;
  color: #231f20;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.address-info {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #42474c;
  display: inline-block;
  vertical-align: middle;
  margin: 16px 0 12px;
  opacity: 0.7;
  padding-left: 24px;
  position: relative;
}
.address-info::before {
  content: '';
  background: url("../img/icons/location.png");
  width: 12px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}
/*// Header content //*/
.header-box-01 {
  padding: 20px 0 20px;
}
.header-box-02 {
  border-top: 1px solid #bbbdc0;
  border-bottom: 1px solid #bbbdc0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: #000;
}
.header-box-02::after {
  content: '';
  display: table;
  clear: both;
}
.header-box-03 {
  float: right;
}
.header-box-03::after {
  content: '';
  display: table;
  clear: both;
}
.logo {
  display: inline-block;
  vertical-align: middle;
}
.logo img {
  max-width: 100%;
}
.btn-app {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background-color: #3d3272;
  border: none;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-top: 4px;
  width: 100%;
  max-width: 220px;
  letter-spacing: 0.7px;
  margin-left: 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  text-align: center;
}
.btn-app:focus {
  color: #fff;
}
.btn-app:active {
  color: #fff;
}
.btn-app:hover {
  color: #fff;
  background-color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.phone-info {
  font-size: 26px;
  line-height: 32px;
  color: #bcbec0;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  margin: 18px 0 0 0;
}
.phone-info span {
  font-weight: 300;
}
/*/ Search block /*/
.search-box {
  display: inline-block;
  vertical-align: middle;
  margin: 12px 0;
  margin-left: 17px;
  position: relative;
}
.search-btn {
  position: relative;
  font-size: 0;
  line-height: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.search-btn::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/search_icon.png") no-repeat center center;
  width: 18px;
  height: 18px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.search-btn:hover::before {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.search-box__dropdown {
  position: absolute;
  width: 265px;
  top: 100%;
  right: -16px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(66, 71, 76, 0.06);
  box-shadow: 0 0 8px 0 rgba(66, 71, 76, 0.06);
  z-index: 20;
  margin-top: 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.search-box__dropdown.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.search-box__input {
  border: none;
  width: 100%;
  padding: 8px 20px;
  height: 50px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/*/ Shopping cart /*/
.shopping-cart {
  display: inline-block;
  vertical-align: middle;
  margin: 12px 0;
  position: relative;
}
.shopping-info {
  font-size: 9px;
  line-height: 15px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  background-color: #3d3272;
  position: absolute;
  top: 7px;
  left: -6px;
  min-width: 16px;
  min-height: 16px;
}
.shopping-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.shopping-btn::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/shop_img.png") no-repeat center center;
  width: 16px;
  height: 20px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shopping-btn:hover::before {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shopping-cart__dropdown {
  position: absolute;
  top: 100%;
  right: -15px;
  margin-top: 10px;
  width: 245px;
  -webkit-box-shadow: 0 0 8px 0 rgba(66, 71, 76, 0.06);
  box-shadow: 0 0 8px 0 rgba(66, 71, 76, 0.06);
  background-color: #fff;
  z-index: 100;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 26px 20px;
  display: none;
}
.shopping-cart__close {
  font-size: 0;
  line-height: 0;
  background: url("../img/icons/shop_close_img.png") no-repeat center center;
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shopping-cart__close:hover {
  opacity: 0.4;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shopping-cart__table {
  width: 100%;
}
.shopping-cart__table td {
  text-align: center;
  padding: 0 4px;
  vertical-align: middle;
}
.shopping-cart__img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.shopping-cart__img a {
  display: inline-block;
  vertical-align: middle;
}
.shopping-cart__img a img {
  display: block;
}
.shopping-cart__title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.shopping-cart__title a {
  color: #42474c;
  display: inline-block;
  vertical-align: middle;
}
.shopping-cart__text {
  font-size: 12px;
  line-height: 15px;
  color: #5c656d;
  font-weight: 400;
  margin: 0 0 9px;
  text-align: left;
}
.shopping-cart__price {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #4eaac8;
  margin: 0;
  text-align: left;
}
.shopping-cart__price span {
  color: #5c656d;
}
.shopping-cart__list {
  padding: 0;
  margin: 0 0 30px;
}
.shopping-cart__list li {
  display: block;
  margin-bottom: 26px;
}
.shopping-cart__list li:last-child {
  margin-bottom: 0;
}
.shopping-cart__subtotal {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #4eaac8;
  margin: 0 0 27px;
  text-align: center;
}
.shopping-cart__subtotal span {
  color: #42474c;
}
.shopping-cart__btn {
  text-align: center;
}
.shopping-cart__btn-01 {
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #4eaac8;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 13px 10px;
  width: 100%;
  max-width: 173px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.shopping-cart__btn-01:focus, .shopping-cart__btn-01:active, .shopping-cart__btn-01:hover {
  background-color: #3d3272;
  color: #fff;
}
.shopping-cart__btn-02 {
  font-size: 12px;
  line-height: 30px;
  font-weight: 700;
  color: #42474c;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 12px 10px;
  width: 100%;
  max-width: 173px;
  border: 1px solid #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.shopping-cart__btn-02:focus, .shopping-cart__btn-02:active, .shopping-cart__btn-02:hover {
  background-color: #3d3272;
  border: 1px solid #3d3272;
  color: #fff;
}
/*// Main navigation //*/
.main-nav {
  width: 100%;
}
.main-nav__btn {
  vertical-align: middle;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
  padding: 0;
  color: #000;
  position: relative;
  z-index: 1;
}
.main-nav__btn:hover .icon-left {
  background-color: #4eaac8;
}
.main-nav__btn:hover .icon-left::before {
  background-color: #4eaac8;
}
.main-nav__btn:hover .icon-left::after {
  background-color: #4eaac8;
}
.main-nav__btn:hover .icon-right {
  background-color: #4eaac8;
}
.main-nav__btn:hover .icon-right::before {
  background-color: #4eaac8;
}
.main-nav__btn:hover .icon-right::after {
  background-color: #4eaac8;
}
.main-nav__btn .icon-left {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  top: 23px;
  width: 15px;
  left: 11px;
  background-color: #303638;
}
.main-nav__btn .icon-left::before {
  content: "";
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #303638;
  top: -10px;
  left: 0;
}
.main-nav__btn .icon-left::after {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #303638;
  content: "";
  top: 10px;
  left: 0;
}
.main-nav__btn .icon-right {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  top: 23px;
  width: 15px;
  background-color: #303638;
  left: 15px;
  left: 25px;
}
.main-nav__btn .icon-right::before {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #303638;
  content: "";
  top: -10px;
  left: 0;
}
.main-nav__btn .icon-right::after {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 4px;
  background-color: #303638;
  content: "";
  top: 10px;
  left: 0;
}
.main-nav__btn.open .icon-left {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: transparent;
}
.main-nav__btn.open .icon-left::before {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
  -ms-transform: rotate(45deg) scaleX(1.4) translate(2px, 2px);
  transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
.main-nav__btn.open .icon-left::after {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
  -ms-transform: rotate(-45deg) scaleX(1.4) translate(2px, -2px);
  transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
.main-nav__btn.open .icon-right {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background-color: transparent;
}
.main-nav__btn.open .icon-right::before {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
  -ms-transform: rotate(-45deg) scaleX(1.4) translate(-2px, 2px);
  transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
}
.main-nav__btn.open .icon-right::after {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
  -ms-transform: rotate(45deg) scaleX(1.4) translate(-2px, -2px);
  transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
}
.main-nav__list {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.main-nav__list .active > a {
  color: #fff;
}
.main-nav__list .active > .sf-with-ul::after {
  color: #82c2d7;
}
.main-nav__list > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 42px 0 0;
}
.main-nav__list > li:last-child {
  margin-right: 0;
}
.main-nav__list > li > a {
  display: inline-block;
  vertical-align: middle;
  padding: 14px 0;
}
.main-nav__list li {
  list-style: none;
  position: relative;
}
.main-nav__list li a {
  font-size: 14px;
  line-height: 18px;
  color: #bbbebf;
  display: block;
  text-transform: uppercase;
}
.main-nav__list li a:hover {
  color: #82c2d7;
}
.main-nav__list li a:hover::after {
  color: #82c2d7;
}
.main-nav__list li .sf-with-ul {
  padding-right: 12px;
  position: relative;
}
.main-nav__list li .sf-with-ul::after {
  font-family: 'FontAwesome';
  content: '\f0d7';
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.main-nav__list li ul {
  width: 230px;
  position: absolute;
  top: 100%;
  left: -28px;
  padding: 26px 28px;
  border: 1px solid #eceff1;
  background-color: #fff;
  z-index: 100;
  display: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 0 rgba(66, 71, 76, 0.06);
  box-shadow: 0 0 5px 0 rgba(66, 71, 76, 0.06);
  margin-top: -1px;
}
.main-nav__list li ul li {
  display: block;
  margin-bottom: 10px;
}
.main-nav__list li ul li:last-child {
  margin-bottom: 0;
}
.main-nav__list li ul li .sf-with-ul::after {
  content: '\f0da';
  margin-top: -7px;
}
.main-nav__list li ul li ul {
  top: -26px;
  left: 125%;
}
/*============================================
//  Common content styles:
*/

/*// Content box //*/
.content-box-01 {
  padding: 20px 0 40px;
}
.content-box-01::after {
  content: '';
  display: table;
  clear: both;
}
.content-box-02 {
  padding: 20px 0 57px;
  background-color: #f6f8f9;
}
.content-box-02 .price-tables-01 {
  background-color: #fff;
}
.content-box-02 .tabs-horizontal-01 .tabs__caption li {
  background-color: #fff;
}
.content-box-03 {
  background-color: #4eaac8;
}
.content-box-03::after {
  content: '';
  display: table;
  clear: both;
}
/*// Custom titles: //*/
.title-01 {
  padding-bottom: 35px;
  margin-bottom: 36px;
  position: relative;
}
.title-01::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 1px;
  background-color: #d9e0e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.title-01 span {
  font-weight: 700;
}
.title-01--mr-01 {
  margin-top: 0;
  padding-top: 10px;
  margin-bottom: 32px;
}
.title-01--mr-02 {
  margin-top: 0;
  padding-top: 29px;
  margin-bottom: 33px;
}
.title-01--mr-03 {
  margin-top: 0;
  padding-top: 37px;
  margin-bottom: 32px;
}
.title-01--mr-04 {
  margin-top: 0;
  padding-top: 38px;
  margin-bottom: 16px;
}
.title-01--mr-05 {
  margin-top: 0;
  padding-top: 33px;
  margin-bottom: 33px;
}
.title-01--mr-06 {
  margin-top: 0;
  padding-top: 30px;
  margin-bottom: 39px;
}
.title-01--mr-07 {
  margin-top: 0;
  padding-top: 34px;
  margin-bottom: 20px;
}
.title-01--mr-08 {
  margin-top: 0;
  padding-top: 52px;
  margin-bottom: 8px;
}
.title-01--mr-09 {
  margin-top: 0;
  padding-top: 22px;
  margin-bottom: 40px;
}
.title-01--mr-10 {
  margin-top: 0;
  padding-top: 51px;
  margin-bottom: 40px;
}
.title-01--mr-11 {
  margin-top: 0;
  padding-top: 54px;
  margin-bottom: 30px;
}
.title-01--mr-12 {
  margin-top: 0;
  padding-top: 49px;
  margin-bottom: 0;
}
.title-01--mr-13 {
  margin-top: 0;
  padding-top: 30px;
  margin-bottom: 27px;
}
.title-02 {
  font-size: 28px;
  line-height: 28px;
  color: #42474c;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 20px;
}
.title-02::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 1px;
  background-color: #d9e0e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.title-02 span {
  font-weight: 700;
}
.title-02--mr-01 {
  margin-bottom: 49px;
}
.title-03 {
  font-size: 36px;
  line-height: 38px;
  color: #42474c;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 31px;
}
.title-03::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 1px;
  background-color: #d9e0e4;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
}
.title-03 span {
  font-weight: 700;
}
.title-03--mr-01 {
  margin-bottom: 49px;
}
.title-03--mr-02 {
  margin-bottom: 38px;
  padding-bottom: 36px;
}
.title-03--mr-03 {
  margin-bottom: 31px;
  padding-bottom: 36px;
}
.title-03--mr-04 {
  margin-bottom: 20px;
  padding-bottom: 27px;
}
.title-04 {
  font-size: 36px;
  line-height: 38px;
  color: #fff;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 20px;
}
.title-04::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 1px;
  background-color: #d9e0e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.title-04 span {
  font-weight: 700;
}
.title-05 {
  font-size: 36px;
  line-height: 38px;
  color: #42474c;
  margin-top: 4px;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
}
.title-05 span {
  font-weight: 700;
}
.title-06 {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 37px;
}
.title-06 span {
  font-weight: 700;
}
/*// Custom subtitles: //*/
.subtitle-01 {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 19px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.subtitle-02 {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 21px;
}
.subtitle-03 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 21px;
}
.subtitle-04 {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 18px;
}
.subtitle-05 {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 19px;
  margin-bottom: 20px;
}
.subtitle-06 {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 18px;
}
.subtitle-07 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
/*/ Page title /*/
.page-title-wrapp {
  text-align: center;
  padding: 47px 0 18px;
}
.page-title-01 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  color: #42474c;
  margin: 0 0 12px;
}
/*/ Breadcrumbs /*/
.breadcrumbs {
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  padding-right: 17px;
  position: relative;
}
.breadcrumbs li:last-child {
  padding-right: 0;
}
.breadcrumbs li:last-child::before {
  display: none;
}
.breadcrumbs li::before {
  font-family: 'FontAwesome';
  content: '\f0da';
  font-size: 11px;
  line-height: 14px;
  color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -7px;
}
.breadcrumbs li a {
  color: #42474c;
}
.breadcrumbs li a:hover {
  color: #4eaac8;
}
.breadcrumbs .active a {
  color: #5c656d;
  font-weight: 400;
}
/*/ Icon Boxes type 1 /*/
.icon-boxes-01 {
  margin-bottom: 30px;
}
.icon-boxes-01__icon {
  font-size: 60px;
  line-height: 30px;
  font-weight: 900;
  color: #4eaac8;
  margin-bottom: 33px;
}
.icon-boxes-01__title {
  font-size: 24px;
  line-height: 30px;
  color: #42474c;
  font-weight: 400;
  margin: 0 0 18px;
}
.icon-boxes-01__text p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.icon--01 {
  padding-top: 14px;
  margin-bottom: 63px;
}
/*/ Icon Boxes type 2 /*/
.icon-boxes-02 {
  margin-bottom: 5px;
}
.icon-boxes-02::after {
  content: '';
  display: table;
  clear: both;
}
.icon-boxes-02__icon {
  float: left;
  margin-right: 30px;
  margin-bottom: 40px;
  min-width: 50px;
}
.icon-boxes-02__title {
  line-height: 8px;
  margin: 0 0 15px 0;
}
.icon-boxes-02__text {
  font-size: 14px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 300;
}
.icon--02 {
  padding-bottom: 43px;
  margin-bottom: 0;
}
.icon-boxes-02--right {
  text-align: right;
}
.icon-boxes-02--right .icon-boxes-02__icon {
  float: right;
  margin-right: 0;
  margin-left: 40px;
}
/*/ Icon Boxes type 3 /*/
.icon-boxes-03 {
  text-align: center;
}
.icon-boxes-03__icon {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 25px;
}
.icon-boxes-03__title {
  margin: 0 0 15px;
}
.icon-boxes-03__text {
  font-size: 16px;
  line-height: 24px;
  color: #42474c;
}
.icon--03 {
  padding-top: 17px;
}
/*/ Icon Boxes type 4 /*/
.icon-boxes-04-wrapp {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.icon-boxes-04-row {
  display: table-row;
}
.icon-boxes-04 {
  display: table-cell;
  padding: 0 44px;
  border-right: 1px solid #e7ecee;
}
.icon-boxes-04:last-child {
  border-right: 0;
  padding-right: 0;
}
.icon-boxes-04:first-child {
  padding-left: 0;
  padding-right: 37px;
}
.icon-boxes-04__icon {
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
  color: #000;
  margin-bottom: 15px;
}
.icon-boxes-04__title {
  margin: 0 0 15px;
}
/*/ Icon Boxes type 5 /*/
.icon-boxes-in {
  display: table-cell;
  vertical-align: bottom;
}
.icon-boxes-in-wrapp {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.icon-boxes-in-wrapp-row {
  display: table-row;
}
/*/ Buttons /*/
.btn-01 {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 29px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  background-color: #000;
  letter-spacing: 0.5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.btn-01:hover {
  background-color: #333;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.btn-02 {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  background-color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 50px 22px;
  margin: 5px 7px;
  letter-spacing: 0.5px;
}
.btn-02:focus, .btn-02:active, .btn-02:hover {
  color: #fff;
  background-color: #3d3272;
}
.btn-03 {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  font-weight: 700;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 50px 22px;
  margin: 5px 7px;
  letter-spacing: 0.5px;
}
.btn-03:focus, .btn-03:active, .btn-03:hover {
  color: #fff;
  background-color: #3d3272;
}
.btn-04 {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  background-color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 50px 22px;
  margin: 5px 7px 5px 0;
  letter-spacing: 0.5px;
}
.btn-04:focus, .btn-04:active, .btn-04:hover {
  color: #fff;
  background-color: #3d3272;
}
.btn-05 {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  font-weight: 700;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 50px 22px;
  margin: 5px 7px;
  letter-spacing: 0.5px;
}
.btn-05:focus {
  color: #fff;
  background-color: #3d3272;
}
.btn-05:active {
  color: #fff;
  background-color: #3d3272;
}
.btn-05:hover {
  color: #fff;
  background-color: #3d3272;
}
/*============================================
//  Custom plugins styles:
*/

/*// Accordion //*/
.acc-theme-01 {
  margin-bottom: 40px;
}
.acc-theme-01 .accordion-01__title {
  font-size: 18px;
  line-height: 20px;
  background-color: #f6f8f9;
  color: #42474c;
  margin: 0 0 10px;
  padding: 16px 52px 16px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
.acc-theme-01 .accordion-01__title::before {
  font-family: 'FontAwesome';
  content: '\f0d7';
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -10px;
}
.acc-theme-01 .accordion-01__title.state-active {
  color: #4eaac8;
}
.acc-theme-01 .accordion-01__text {
  padding: 15px 23px;
}
.acc-theme-01 .accordion-01__text p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.acc-theme-01 .accordion-01__text p span {
  padding-right: 8px;
}
.acc-theme-01 .accordion-01__btn {
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  font-style: italic;
  margin-left: 0;
  display: inline-block;
  vertical-align: top;
}
.acc-theme-01 .accordion-01__body {
  display: none;
}
.acc-theme-02 {
  margin-bottom: 40px;
}
.acc-theme-02 .accordion-01__title {
  font-size: 18px;
  line-height: 20px;
  background-color: #f6f8f9;
  color: #42474c;
  margin: 0 0 10px;
  padding: 16px 52px 16px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.acc-theme-02 .accordion-01__title::before {
  font-family: 'FontAwesome';
  content: '\f0d7';
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -10px;
}
.acc-theme-02 .accordion-01__title.state-active {
  color: #fff;
  background-color: #4eaac8;
}
.acc-theme-02 .accordion-01__text {
  padding: 15px 23px;
}
.acc-theme-02 .accordion-01__text p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.acc-theme-02 .accordion-01__text p span {
  padding-right: 8px;
}
.acc-theme-02 .accordion-01__btn {
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  font-style: italic;
  margin-left: 0;
}
.acc-theme-02 .accordion-01__body {
  display: none;
}
.acc-theme-03 {
  margin-bottom: 40px;
}
.acc-theme-03 .accordion-01__title {
  font-size: 18px;
  line-height: 20px;
  background-color: #fff;
  color: #42474c;
  margin: 0 0 8px;
  padding: 16px 52px 16px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
.acc-theme-03 .accordion-01__title::before {
  font-family: 'FontAwesome';
  content: '\f0d7';
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -10px;
}
.acc-theme-03 .accordion-01__title.state-active {
  color: #4eaac8;
}
.acc-theme-03 .accordion-01__text {
  padding: 15px 23px;
}
.acc-theme-03 .accordion-01__text p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.acc-theme-03 .accordion-01__text p span {
  padding-right: 8px;
}
.acc-theme-03 .accordion-01__btn {
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  font-style: italic;
  margin-left: 0;
  display: inline-block;
  vertical-align: top;
}
.acc-theme-03 .accordion-01__body {
  display: none;
}
.acc--01 {
  margin-top: 5px;
}
.acc--02 {
  margin-top: 5px;
}
/*// Toggle //*/
.toggle-01 {
  display: block;
}
.toggle-theme-01 {
  margin: 0;
  padding: 0;
}
.toggle-theme-01 li {
  list-style: none;
  margin-bottom: 8px;
}
.toggle-theme-01__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  background-color: #f6f8f9;
  color: #42474c;
  margin: 0;
  padding: 16px 52px 16px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.toggle-theme-01__title::before {
  font-family: 'FontAwesome';
  font-size: 16px;
  line-height: 16px;
  content: '\f0d7';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -6px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.toggle-theme-01__title.active {
  color: #4eaac8;
}
.toggle-theme-01__title.active::before {
  color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.toggle-theme-01__content {
  display: none;
  padding: 20px 23px 15px;
}
.toggle-theme-01__content p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.toggle-theme-01__content p span {
  padding-right: 8px;
}
.toggle-02 {
  display: block;
}
.toggle-theme-02 {
  margin: 0;
  padding: 0;
}
.toggle-theme-02 li {
  list-style: none;
  margin-bottom: 8px;
}
.toggle-theme-02__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  background-color: #f6f8f9;
  color: #42474c;
  margin: 0;
  padding: 16px 52px 16px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.toggle-theme-02__title::before {
  font-family: 'FontAwesome';
  font-size: 16px;
  line-height: 16px;
  content: '\f0d7';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -6px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.toggle-theme-02__title.active {
  color: #fff;
  background-color: #4eaac8;
}
.toggle-theme-02__title.active::before {
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.toggle-theme-02__content {
  display: none;
  padding: 20px 23px 15px;
}
.toggle-theme-02__content p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.toggle-theme-02__content p span {
  padding-right: 8px;
}
.togg-01 {
  margin-top: 5px;
  margin-bottom: 35px;
}
.togg-02 {
  margin-top: 5px;
  margin-bottom: 35px;
}
/*// Skills //*/
.module_skills {
  padding-top: 20px;
}
.skills_list {
  padding: 0;
  margin: 0;
}
.skills_list li {
  display: block;
  list-style: none;
  position: relative;
  margin-bottom: 26px;
}
.skills_list li::before {
  display: none;
}
.skills_list li::after {
  display: none;
}
.skill_div-style {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#4eaac8), to(#3d3272));
  background: -webkit-linear-gradient(left, #4eaac8 0%, #3d3272 100%);
  background: linear-gradient(to right, #4eaac8 0%, #3d3272 100%);
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.skill-title {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  font-weight: 700;
  margin: 0 0 19px;
}
.skill_percent {
  font-size: 14px;
  line-height: 16px;
  color: #303638;
  font-weight: 700;
  text-align: right;
  width: 0;
  position: absolute;
  padding-left: 120px;
  margin: 0;
  z-index: 5;
  left: 0;
  top: 0;
}
.diagram_bar {
  background: #f6f8f9;
  height: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
/*// Circle progress bar type 1 //*/
.progress-circle-wrapp .progress-circle-item-01 {
  margin-right: 56px;
  margin-bottom: 30px;
  position: relative;
}
.progress-circle-wrapp .progress-circle-item-01:last-child {
  margin-right: 0;
}
.progress-circle-item-01 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  position: relative;
  z-index: 2;
}
.progress-circle-01 {
  display: inline-block;
  vertical-align: middle;
  width: 145px;
  height: 145px;
  margin-bottom: 17px;
  border: 8px solid #eeeff0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.progress-circle-01 canvas {
  position: absolute;
  top: -8px;
  left: -8px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.progress-circle-01__value {
  font-size: 24px;
  line-height: 90px;
  color: #42474c;
  font-weight: 700;
  text-align: center;
  position: absolute;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  margin-top: -56px;
  left: 50%;
  top: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.progress-circle-01__text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #42474c;
  margin-bottom: 0;
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  text-transform: uppercase;
}
.circle--01 {
  padding-top: 24px;
}
.circle--02 {
  padding-top: 16px;
}
.circle--02 .progress-circle-item-01 {
  margin-left: 10px;
  margin-right: 40px;
}
/*// Circle progress bar type 2 //*/
.progress-circle-item-02 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
}
.progress-circle-02 {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 200px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.progress-circle-02 canvas {
  position: absolute;
  top: -5px;
  left: -5px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.progress-circle-02__value {
  font-size: 30px;
  line-height: 90px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: absolute;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  margin-top: -56px;
  left: 50%;
  top: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.progress-circle-02__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  position: absolute;
  bottom: 73px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  text-transform: uppercase;
}
/*// Parallax //*/
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-01 {
  background-image: url("../img/shortcodes/parallax_img_01.jpg");
  background-size: cover;
  padding: 82px 0 68px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.parallax-01::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 29, 0.6);
  z-index: -1;
}
.parallax-02 {
  background-image: url("../img/team/parallax_img_02.jpg");
  background-size: cover;
  padding: 100px 0 68px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.parallax-02::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 29, 0.6);
  z-index: -1;
}
.parallax-02 .owl-theme-01__item-text p {
  color: #fff;
}
.parallax-02 .owl-theme-01__item-user-name {
  color: #fff;
}
.parallax-02 .owl-theme-01__item-user-subtitle {
  color: #fff;
}
/*// Counter type 1 //*/
.counter-01 {
  margin-bottom: 20px;
}
.counter-01::after {
  content: '';
  display: table;
  clear: both;
}
.counter-01 .shortcode-counter {
  float: left;
  text-align: left;
  padding-right: 72px;
}
.counter-01 .shortcode-counter:last-of-type {
  padding-right: 0;
}
.counter-01 .stat-count {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 11px;
  color: #4eaac8;
}
.counter-01 .stat-count.stat-count__dec {
  display: inline-block;
  vertical-align: middle;
}
.counter-01 .stat-count__dec {
  position: relative;
}
.counter-01 .stat-count__dec::after {
  color: #4eaac8;
  font-weight: 900;
  content: '+';
  display: inline-block;
  vertical-align: top;
}
.counter-01 .counter-title {
  font-size: 12px;
  line-height: 20px;
  color: #42474c;
  font-weight: 700;
  text-transform: uppercase;
}
/*// Counter type 2 //*/
.counter-02 {
  text-align: center;
}
.shortcode-counter {
  position: relative;
  z-index: 2;
}
.shortcode-counter.counter-02 .stat-count {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.shortcode-counter.counter-02 .stat-count.stat-count__dec {
  display: inline-block;
  vertical-align: middle;
}
.shortcode-counter.counter-02 .stat-count__dec {
  position: relative;
}
.shortcode-counter.counter-02 .stat-count__dec::after {
  color: #fff;
  font-weight: 900;
  content: '+';
  display: inline-block;
  vertical-align: top;
}
.shortcode-counter.counter-02 .counter-title {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.shortcode-counter.counter-02 .stat-count-icon {
  text-align: center;
  margin-bottom: 17px;
}
.shortcode-counter.counter-02 .stat-count-icon img {
  display: inline-block;
  vertical-align: middle;
}
.stat-temp {
  width: 0 !important;
  display: none !important;
}
/*// Horizontal tabs //*/
.tabs-horizontal-01 .tabs__caption {
  font-size: 0;
  margin-bottom: 25px;
}
.tabs-horizontal-01 .tabs__caption li {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  width: 100%;
  max-width: 180px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  background-color: #f6f8f9;
  padding: 20px 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-right: 7px;
  letter-spacing: 0.6px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.tabs-horizontal-01 .tabs__caption li.active {
  background-color: #3d3272;
  color: #fff;
}
.tabs-horizontal-01 .tabs__caption li:last-child {
  margin-right: 0;
}
.tabs-horizontal-01 .tabs__caption li:hover {
  background-color: #3d3272;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*// Vertical tabs //*/
.tabs-vertical-01::after {
  content: '';
  display: table;
  clear: both;
}
.tabs-vertical-01 .tabs__caption {
  width: 33%;
  float: left;
}
.tabs-vertical-01 .tabs__caption li {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  width: 100%;
  max-width: 180px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  background-color: #f6f8f9;
  padding: 20px 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 7px;
  letter-spacing: 0.6px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.tabs-vertical-01 .tabs__caption li.active {
  background-color: #3d3272;
  color: #fff;
}
.tabs-vertical-01 .tabs__caption li:last-child {
  margin-bottom: 0;
}
.tabs-vertical-01 .tabs__caption li:hover {
  background-color: #3d3272;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.tabs-vertical-01 .tabs__content {
  width: 67%;
  padding-left: 30px;
  margin-top: -6px;
  float: left;
}
.list-01--style-01 {
  margin-top: 12px;
  margin-left: -6px;
}
.list-01--style-01 li {
  font-weight: 400;
}
.tabs__caption {
  padding: 0;
  margin: 0;
}
.tabs__caption li {
  list-style: none;
  cursor: pointer;
}
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
}
/*// Testimonials //*/
.owl-stage-outer {
  position: relative;
  overflow: hidden;
}
.owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  text-align: center;
}
.owl-nav.disabled {
  display: none;
}
.owl-theme-01 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.owl-theme-01 .owl-dots {
  text-align: center;
}
.owl-theme-01 .owl-dot {
  text-align: center;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #dee0e2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-theme-01 .owl-dot.active {
  background-color: #9da3a7;
}
.owl-theme-01 .owl-dot:hover {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: #9da3a7;
}
.owl-theme-01__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 830px;
  padding-bottom: 55px;
}
.owl-theme-01__item-text {
  margin-bottom: 48px;
}
.owl-theme-01__item-text p {
  font-size: 24px;
  line-height: 36px;
  color: #5c656d;
  font-weight: 300;
  font-style: italic;
}
.owl-theme-01__item-user {
  text-align: center;
}
.owl-theme-01__item-user-img {
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 28px;
}
.owl-theme-01__item-user-name {
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  font-weight: 700;
  margin: 0 0 10px;
}
.owl-theme-01__item-user-subtitle {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  font-weight: bold;
}
.owl-theme-02 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.owl-theme-02 .owl-dots {
  text-align: center;
}
.owl-theme-02 .owl-dot {
  text-align: center;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #dee0e2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-theme-02 .owl-dot.active {
  background-color: #9da3a7;
}
.owl-theme-02 .owl-dot:hover {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: #9da3a7;
}
.owl-theme-02__item {
  text-align: left;
}
.owl-theme-02__item-cont p {
  font-size: 16px;
  line-height: 30px;
  font-style: italic;
  font-weight: 300;
}
.owl-theme-02__autor-block {
  padding-bottom: 24px;
}
.owl-theme-02__autor-block::after {
  content: '';
  display: table;
  clear: both;
}
.owl-theme-02__autor-img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.owl-theme-02__item-cont {
  margin-bottom: 20px;
}
.owl-theme-02__autor-info {
  display: inline-block;
  vertical-align: middle;
}
.owl-theme-02__autor-name {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #42474c;
  font-style: normal;
}
.owl-theme-02__autor-in {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #5c656d;
  font-style: normal;
}
/*// Pretty photo //*/
.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%;
}
.pp_close {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 0;
  line-height: 0;
}
.pp_close::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/close_icon.png") no-repeat center center;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.pp_close:hover::before {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.pp_expand {
  position: absolute;
  top: 0;
  right: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: rgba(48, 54, 56, 0.5);
  font-size: 0;
  line-height: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.pp_expand::before {
  font-family: 'FontAwesome';
  content: '\f065';
  font-size: 20px;
  line-height: 40px;
  color: #fff;
  width: 40px;
  height: 40px;
}
.pp_expand:hover {
  background: #303638;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.pp_overlay {
  background: #000;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9500;
  cursor: pointer;
}
.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10000;
}
.pp_description {
  display: none;
  margin: 0;
}
.pp_social {
  float: left;
  margin: 0;
}
.pp_social .facebook {
  display: none;
}
.pp_social .twitter {
  display: none;
}
.pp_nav {
  clear: right;
  float: left;
  margin: 3px 10px 0 0;
}
.pp_arrow_previous, .pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px;
}
.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000;
}
.pp_gallery {
  display: none;
  left: 50%;
  margin-top: -50px;
  position: absolute;
  z-index: 10000;
}
.pp_gallery div {
  float: left;
  overflow: hidden;
  position: relative;
}
.pp_gallery ul {
  float: left;
  height: 35px;
  position: relative;
  white-space: nowrap;
  margin: 0 0 0 5px;
  padding: 0;
}
.pp_fade, .pp_gallery li.default a img {
  display: none;
}
.pp_loaderIcon {
  display: block;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  position: absolute;
  top: 50%;
  width: 50px;
  background: url("../img/circles_loader.svg") center center no-repeat;
  background-size: cover;
}
/*// Swipebox //*/
#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  padding: 70px;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide::before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}
#swipebox-overlay {
  background: rgba(0, 0, 0, 0.8);
}
#swipebox-close {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 30px;
  height: 30px;
}
#swipebox-close::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/gallery/close_icon.png") no-repeat center center;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#swipebox-close:hover::before {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#swipebox-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -25px;
  width: 20px;
  height: 50px;
  z-index: 1000;
}
#swipebox-prev::before {
  font-family: 'FontAwesome';
  content: '\f104';
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 0.5;
}
#swipebox-prev:hover::before {
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#swipebox-next {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -25px;
  width: 20px;
  height: 50px;
  z-index: 1000;
}
#swipebox-next::before {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#swipebox-next:hover::before {
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#swipebox-prev.disabled, #swipebox-next.disabled {
  opacity: 1;
}
#swipebox-bottom-bar, #swipebox-top-bar {
  background: none;
  width: 98%;
  height: 100%;
  position: fixed;
  left: 0;
  display: block;
  text-align: right;
}
.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}
.slide-loading {
  background: url("../img/gallery/loader.svg") no-repeat center center;
}
 @-webkit-keyframes rightSpring {
0% {
left: 0;
}
 50% {
left: -30px;
}
 100% {
left: 0;
}
}
 @keyframes rightSpring {
0% {
left: 0;
}
 50% {
left: -30px;
}
 100% {
left: 0;
}
}
 @-webkit-keyframes leftSpring {
0% {
left: 0;
}
 50% {
left: 30px;
}
 100% {
left: 0;
}
}
 @keyframes leftSpring {
0% {
left: 0;
}
 50% {
left: 30px;
}
 100% {
left: 0;
}
}
/*// Back to top //*/
.back2top {
  position: fixed;
  z-index: 999;
  width: 45px;
  height: 45px;
  background: #000;
  display: none;
  bottom: 30px;
  right: 30px;
  text-indent: -9999px;
  -webkit-transition: background-color 300ms, bottom 400ms;
  transition: background-color 300ms, bottom 400ms;
  text-align: center;
}
.back2top::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 7px;
  background: url("../img/icons/back2top__img.png") no-repeat center center;
}
.back2top:hover {
  background-color: #b8b8b8;
}
/*============================================
//  Pages:
*/

/*/=== Home page type 1 ===/*/
.img-box-02 {
  background: url("../img/home_page/img_box_04.jpg") no-repeat top center;
  padding: 188px 0 184px;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.img-box-02::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1925;
  opacity: 0.3;
  z-index: -1;
}
.img-box-03 {
  background: url("../img/banner-smizmaul.jpg") no-repeat top center;
  padding: 188px 0 184px;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.img-box-03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1925;
  opacity: 0.3;
  z-index: -1;
}
.banners-promo-wrapp {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.banners-promo-wrapp-row {
  display: table-row;
}
.banners-promo-01 {
  display: table-cell;
  vertical-align: top;
  padding: 36px 80px 38px;
  background-color: #000;
}
.banners-promo-01__title {
  font-size: 32px;
  line-height: 35px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}
.banners-promo-01__text {
  margin-bottom: 13px;
}
.banners-promo-01__text p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.banners-promo-01__list {
  padding: 0;
  margin: 0;
}
.banners-promo-01__list li {
  font-size: 14px;
  line-height: 36px;
  font-weight: 700;
  list-style: none;
  display: block;
  color: #a8a0cc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.banners-promo-02 {
  display: table-cell;
  vertical-align: top;
  padding: 56px 80px 68px;
  background-color: #a8a8a8;
}
.banners-promo-02__title {
  font-size: 42px;
  line-height: 44px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
}
.banners-promo-02__text {
  margin-bottom: 13px;
}
.banners-promo-02__text p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.banners-promo-02__list {
  padding: 0;
  margin: 0;
}
.banners-promo-02__list li {
  font-size: 14px;
  line-height: 36px;
  font-weight: 700;
  list-style: none;
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.banners-promo-03 {
  display: table-cell;
  vertical-align: top;
  padding: 56px 80px 68px;
  background-color: #f6f8f9;
}
.banners-promo-03__title {
  font-size: 42px;
  line-height: 44px;
  font-weight: 700;
  color: #42474c;
  margin: 0 0 18px;
}
.banners-promo-03__text {
  margin-bottom: 13px;
}
.banners-promo-03__text p {
  font-size: 16px;
  line-height: 24px;
  color: #42474c;
}
.banners-promo-03__list {
  padding: 0;
  margin: 0;
}
.banners-promo-03__list li {
  font-size: 14px;
  line-height: 36px;
  font-weight: 700;
  list-style: none;
  display: block;
  color: #42474c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.home-bg-wrapp {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
  box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
}
/*/=== Home page type 2 ===/*/
.img-box-01 {
  background: url("../img/home_page/img_box_01.jpg") no-repeat top center;
  padding: 188px 0 184px;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.img-box-01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1925;
  opacity: 0.3;
  z-index: -1;
}
.banners-wrapp {
  overflow: hidden;
}
.banners-wrapp-cont {
  margin-left: -5px;
  margin-right: -5px;
}
.banners-wrapp-cont::after {
  content: '';
  display: table;
  clear: both;
}
.banners-box-01 {
  width: 33.33%;
  float: left;
  padding: 5px;
  position: relative;
}
.banners-box-01:hover .banners-box-01__img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}
.banners-box-01__img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banners-box-01__img img {
  width: 100%;
  -webkit-transition: 0.8s all;
  transition: 0.8s all;
}
.banners-box-01__img::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 29, 0.6);
  z-index: 2;
}
.banners-box-01__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 15px;
}
.banners-box-01-table {
  display: table;
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
.banners-box-01-table__row {
  display: table-row;
}
.banners-box-01-table__cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.banners-box-01-title {
  font-size: 36px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 32px;
  margin-top: 0;
}
.banners-box-01-title::before {
  content: '';
  width: 70px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
}
.banners-box-01-text {
  display: inline-block;
  vertical-align: middle;
  max-width: 380px;
}
.banners-box-01-text p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.img-wrapp-01 {
  text-align: center;
  padding: 0 10px;
}
.img-wrapp-01 img {
  display: inline-block;
  vertical-align: middle;
}
/*/=== Blog listing ===/*/
.blog-listing.right {
  width: 100%;
  max-width: 800px;
  float: left;
}
.blog-listing.left {
  width: 100%;
  max-width: 800px;
  float: right;
}
.blog-listing.fullwidth {
  width: 100%;
}
.blog-listing.fullwidth .blog-post__img a {
  display: block;
}
.blog-listing.fullwidth .blog-post__img a img {
  width: 100%;
  max-width: none;
}
.blog-post {
  margin-bottom: 70px;
}
.blog-post:last-child {
  margin-bottom: 0;
}
.blog-post__img {
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 31px;
}
.blog-post__img a {
  display: inline-block;
  vertical-align: middle;
}
.blog-post__title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  margin: 0 0 8px;
  font-weight: 700;
}
.blog-post__title a {
  display: inline-block;
  vertical-align: middle;
  color: #42474c;
  font-weight: 700;
}
.blog-post__title a:hover {
  color: #4eaac8;
}
.blog-post__meta-info {
  margin: 0 0 21px;
  padding: 0;
}
.blog-post__meta-info li {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  padding-right: 16px;
  position: relative;
}
.blog-post__meta-info li:last-child {
  padding-right: 0;
}
.blog-post__meta-info li:last-child::after {
  display: none;
}
.blog-post__meta-info li::after {
  font-family: 'FontAwesome';
  content: '\f0da';
  font-size: 11px;
  line-height: 14px;
  color: #4eaac8;
  position: absolute;
  top: 1px;
  right: 4px;
}
.blog-post__meta-info li a {
  color: #5c656d;
  display: inline-block;
  vertical-align: top;
}
.blog-post__meta-info li a:hover {
  color: #4eaac8;
}
.blog-post__content {
  margin-bottom: 23px;
}
.blog-post__content p {
  margin-bottom: 17px;
}
.blog-post__btn-wrapp::after {
  content: '';
  display: table;
  clear: both;
}
.blog-post__btn {
  font-size: 12px;
  line-height: 14px;
  color: #4eaac8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: middle;
  float: left;
}
.blog-post__btn::after {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  vertical-align: top;
  color: #4eaac8;
  margin-left: 9px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.blog-post__btn:hover {
  color: #3d3272;
}
.blog-post__btn:hover::after {
  color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.blog-post__likes {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #5c656d;
  float: right;
}
.blog-post__likes::before {
  font-family: 'FontAwesome';
  content: '\f08a';
  font-size: 13px;
  display: inline-block;
  vertical-align: top;
  color: #fe3f4c;
  margin-right: 7px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.blog-post__likes:hover {
  color: #3d3272;
}
.blog-post__likes:hover::before {
  color: #3d3272;
}
.blockquote-post {
  background-color: #f6f8f9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 30px 40px;
}
.blockquote-post .blockquote-01 {
  margin-bottom: 24px;
}
.blockquote-post .blockquote-01__text {
  margin: 0 0 13px;
}
.blockquote-post .blockquote-01__text::before {
  margin-right: 2px;
}
.post-width-img {
  padding: 32px 42px 32px;
  background-color: #f6f8f9;
}
.music-post {
  background-color: #f6f8f9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 30px 40px 40px;
}
.music-post iframe {
  width: 100%;
  border: none;
}
.music-post__iframe {
  margin-bottom: 20px;
}
.blog-slider-01 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  margin-bottom: 32px;
}
.blog-slider-01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  vertical-align: top;
  display: block;
}
.blog-slider-01 .nivo-imageLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 6;
  display: none;
}
.blog-slider-01 .nivo-prevNav, .blog-slider-01 .nivo-nextNav {
  font-size: 0;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 20;
  margin-top: -20px;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
}
.blog-slider-01 .nivo-prevNav::before, .blog-slider-01 .nivo-nextNav::before {
  font-family: 'FontAwesome';
  font-size: 24px;
  line-height: 45px;
  color: #42474c;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.blog-slider-01 .nivo-prevNav:hover, .blog-slider-01 .nivo-nextNav:hover {
  background-color: #4eaac8;
}
.blog-slider-01 .nivo-prevNav:hover::before, .blog-slider-01 .nivo-nextNav:hover::before {
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.blog-slider-01 .nivo-prevNav {
  left: 20px;
}
.blog-slider-01 .nivo-prevNav::before {
  content: '\f104';
}
.blog-slider-01 .nivo-nextNav {
  right: 20px;
}
.blog-slider-01 .nivo-nextNav::before {
  content: '\f105';
}
.blog-slider-01 .nivo-main-image {
  display: block;
  position: relative !important;
  width: 100% !important;
}
.blog-slider-01 .nivo-slice {
  display: block;
  position: absolute;
  z-index: 5;
  height: 100%;
  top: 0;
}
.blog-slider-01 .nivo-box {
  display: block;
  position: absolute;
  z-index: 5;
  overflow: hidden;
}
.blog-slider-01 .nivo-box img {
  display: block;
}
.blog-slider-01 .nivo-caption {
  position: absolute;
  overflow: hidden;
  display: none;
}
.blog-slider-01 .nivo-html-caption {
  display: none;
}
.video_frame {
  width: 100%;
  border: none;
  display: block;
}
.video_bg {
  position: relative;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.video_bg iframe {
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  position: relative;
  z-index: 9;
}
.video_img-01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  z-index: 11;
  background-image: url("../img/blog/blog_post_02.jpg");
}
.video_img-02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  z-index: 11;
  background-image: url("../img/home_page/img_box_05.jpg");
}
.play-video {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  width: 65px;
  height: 65px;
  margin: -33px 0 0 -33px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: rgba(8, 3, 31, 0.76);
  text-indent: -9999px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.play-video::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 23px;
  width: 20px;
  height: 20px;
  background: url("../img/icons/blog_icon_play.png");
}
.play-video:hover {
  background: #08031f;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.show_video_now .video_img-01 {
  opacity: 0;
  z-index: 9;
}
.show_video_now .play-video {
  opacity: 0;
  z-index: -1;
}
.show_video_now.video_bg iframe {
  opacity: 1;
  z-index: 11;
}
.custom-img {
  width: 100%;
}
.link-post {
  background-color: #f6f8f9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 33px 40px 37px;
}
.link-post__title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  position: relative;
  padding-left: 33px;
  font-weight: 400;
  margin: 0 0 23px;
}
.link-post__title::before {
  font-family: 'FontAwesome';
  content: '\f0c1';
  font-size: 30px;
  color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  left: -5px;
}
.link-post__title a {
  color: #42474c;
}
.link-post__title a:hover {
  color: #4eaac8;
}
.link-post__subtitle {
  font-size: 18px;
  line-height: 20px;
  color: #5c656d;
  font-weight: 400;
}
.link-post__title-wrap {
  margin-bottom: 28px;
}
.blog-pagination-wrapp {
  margin-top: -20px;
  padding-bottom: 18px;
}
.pagination-01 {
  padding: 0;
  margin: 0;
  font-size: 0;
}
.pagination-01 li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 3px;
  margin-bottom: 3px;
}
.pagination-01 li:last-child {
  margin-right: 0;
}
.pagination-01 li span, .pagination-01 li a {
  font-size: 12px;
  line-height: 39px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  min-width: 39px;
  min-height: 39px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.pagination-01 li a {
  color: #a6aaad;
  background-color: #f9f9f9;
}
.pagination-01 li a:hover {
  color: #fff;
  background-color: #4eaac8;
}
.pagination-01 li.active span {
  color: #fff;
  background-color: #4eaac8;
}
.img-align-left {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
  margin-right: 29px;
  margin-bottom: 15px;
  margin-top: 6px;
}
.blog-post__tags-wrapp {
  text-align: center;
  font-size: 0;
  padding-top: 26px;
  padding-bottom: 8px;
}
.blog-post__tags-wrapp a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e7e8e9;
  padding: 6px 12px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 0 2px 4px;
}
.blog-post__tags-wrapp a:hover {
  background-color: #4eaac8;
  color: #fff;
  border: 1px solid #4eaac8;
}
/* Audio player */
.audio-player {
  margin-bottom: 29px;
}
.audio-player__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #42474c;
  margin-bottom: 4px;
}
.mejs__offscreen {
  display: none;
}
.mejs__container {
  position: relative;
  text-align: left;
  text-indent: 0;
  vertical-align: top;
  background-color: transparent;
}
.mejs__container:focus {
  outline: none;
}
.mejs__time-slider:hover .mejs__time-handle {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.mejs__controls {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  left: 0;
  list-style-type: none;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}
.mejs__button {
  margin-right: 10px;
}
.mejs__button > button {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 1px solid #b8bdc1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mejs__play > button {
  background: url("../img/audio/play_gr.png") no-repeat 0 0;
}
.mejs__pause > button {
  background: url("../img/audio/play_gr.png") no-repeat -1px -24px;
}
.mejs__replay > button {
  background: url("../img/audio/play_gr.png") no-repeat 8px 7px;
  background-size: 10px;
}
.mejs__volume-button > button {
  border: none;
  width: 30px;
  height: 26px;
}
.mejs__mute > button {
  background: url("../img/audio/play_sl.png") no-repeat left top;
  background-size: inherit;
}
.mejs__unmute > button {
  background: url("../img/audio/play_sl.png") no-repeat left bottom;
  background-size: inherit;
}
.mejs__volume-button {
  position: relative;
  margin-left: 15px;
}
.mejs__volume-button > .mejs__volume-slider {
  -webkit-border-radius: 0;
  border-radius: 0;
  bottom: 100%;
  display: none;
  height: 115px;
  left: 50%;
  margin: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 25px;
  z-index: 1;
}
.mejs__time {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  padding: 16px 6px 0;
  text-align: center;
  width: auto;
}
.mejs__time-rail {
  direction: ltr;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 28px;
  position: relative;
}
.mejs__time-rail:hover .mejs__time-handle-content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mejs__time-rail:focus {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mejs__time-rail:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mejs__time-marker {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
}
.mejs__time-hovered {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
}
.mejs__time-float {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  background: #babec2;
  border: solid 1px #babec2;
  bottom: 100%;
  color: #fff;
  display: none;
  height: 24px;
  margin-bottom: 9px;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  text-align: center;
}
.mejs__time-buffering {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
  -webkit-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%;
}
.mejs__time-total {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  position: absolute;
  background: #e6e9eb;
  margin: 12px 0;
  width: 100%;
  height: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}
.mejs__time-total:focus {
  outline: none;
}
.mejs__time-total:active {
  outline: none;
}
.mejs__time-loaded {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
  background: rgba(78, 170, 200, 0.3);
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%;
}
.mejs__time-float-corner {
  cursor: pointer;
  display: block;
  position: absolute;
  border: solid 5px #babec2;
  border-color: #babec2 transparent transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 0;
  left: 50%;
  line-height: 0;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
}
.mejs__time-current {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  position: absolute;
  background: #4eaac8;
  height: 2px;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%;
}
.mejs__time-current:active {
  outline: none;
}
.mejs__time-current:focus {
  outline: none;
}
.mejs__time-handle-content {
  background: #4eaac8;
  height: 2px;
}
 @-webkit-keyframes buffering-stripes {
 from {
 background-position: 0 0;
}
 to {
 background-position: 30px 0;
}
}
 @keyframes buffering-stripes {
 from {
 background-position: 0 0;
}
 to {
 background-position: 30px 0;
}
}
.mejs__time-hovered.negative {
  background: rgba(0, 0, 0, 0.3);
}
.mejs__time-hovered.no-hover {
  -webkit-transform: scaleX(0) !important;
  -ms-transform: scaleX(0) !important;
  transform: scaleX(0) !important;
}
.mejs__time-hovered {
  background: rgba(78, 170, 200, 0.4);
  z-index: 10;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
  transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
}
.mejs__time-handle {
  cursor: pointer;
  left: -4px;
  top: 0;
  position: absolute;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 11;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #4eaac8;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.mejs__time-float-current {
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  vertical-align: middle;
  left: 0;
  margin: 2px;
  text-align: center;
}
.mejs__broadcast {
  color: #fff;
  height: 10px;
  position: absolute;
  top: 15px;
  width: 100%;
}
.mejs__volume-total {
  background: rgba(255, 255, 255, 0.5);
  height: 100px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 8px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
}
.mejs__volume-current {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}
.mejs__volume-handle {
  background: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 1px;
  border-radius: 1px;
  cursor: ns-resize;
  height: 6px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 16px;
}
.mejs__horizontal-volume-slider {
  display: block;
  height: 28px;
  position: relative;
  vertical-align: middle;
  width: 56px;
}
.mejs__horizontal-volume-total {
  background: #e6e9eb;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-size: 1px;
  height: 2px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 50px;
}
.mejs__horizontal-volume-current {
  background: #4eaac8;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mejs__horizontal-volume-handle {
  display: none;
}
.mejs__overlay-error {
  position: relative;
}
.mejs__cannotplay {
  color: #fff;
  font-size: 0.8em;
  position: relative;
}
.mejs__cannotplay p {
  display: inline-block;
  padding: 0 15px;
  width: 100%;
}
.mejs__cannotplay a {
  display: inline-block;
  padding: 0 15px;
  width: 100%;
  color: #fff;
  font-size: 0.8em;
}
/*/=== Blog single post ===/*/
.single-post .blog-post {
  margin-bottom: 24px;
  border-bottom: 1px solid #eceff1;
}
.single-post .blog-post__img img {
  width: 100%;
  max-width: none;
}
.single-post__soc-list {
  margin: 0 0 40px;
  padding-left: 0;
}
.single-post__soc-list li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}
.single-post__soc-list li:last-child {
  margin-right: 0;
}
.single-post__soc-list li a {
  font-size: 14px;
  line-height: 16px;
  color: #c8cacd;
  display: inline-block;
  vertical-align: middle;
}
.single-post__soc-list li a:hover {
  color: #4eaac8;
}
.single-post__links-wrapp {
  margin-bottom: 70px;
}
.single-post__links-wrapp::after {
  content: '';
  display: table;
  clear: both;
}
.single-post__links-next {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  float: left;
  position: relative;
}
.single-post__links-next::before {
  font-family: 'FontAwesome';
  content: '\f104';
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  margin-right: 9px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-post__links-next:hover {
  color: #4eaac8;
}
.single-post__links-next:hover::before {
  color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-post__links-prev {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  float: right;
  position: relative;
}
.single-post__links-prev::after {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  margin-left: 9px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-post__links-prev:hover {
  color: #4eaac8;
}
.single-post__links-prev:hover::after {
  color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-post__featured-title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  font-weight: 300;
  margin: 0 0 35px;
}
.single-post__featured-title span {
  font-weight: 700;
}
.single-post__featured-box {
  margin-bottom: 75px;
}
/*/ User info /*/
.user-info {
  background-color: #f6f8f9;
  padding: 48px;
  margin-bottom: 26px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.user-info__img {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.user-info__content {
  display: inline-block;
  vertical-align: top;
}
.user-info__title {
  font-size: 24px;
  line-height: 21px;
  color: #42474c;
  font-weight: 700;
  margin: 0 0 21px;
}
.user-info__text {
  padding-bottom: 13px;
}
.user-info__text p {
  font-size: 16px;
  line-height: 24px;
}
.user-info__soc-list {
  padding: 0;
  margin: 0;
}
.user-info__soc-list li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
}
.user-info__soc-list li:last-child {
  margin-right: 0;
}
.user-info__soc-list li a {
  font-size: 15px;
  line-height: 17px;
  color: #c2c6c9;
  display: inline-block;
  vertical-align: middle;
}
.user-info__soc-list li a:hover {
  color: #4eaac8;
}
.user-info-tbl {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.user-info-tbl__row {
  display: table-row;
}
.user-info-tbl__col {
  display: table-cell;
  vertical-align: top;
}
.user-info-tbl__col:first-child {
  width: 85px;
}
.user-info-tbl__col:last-child {
  padding-left: 35px;
}
/*/ Reply /*/
.reply-title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 32px;
}
.reply-title span {
  font-weight: 700;
}
.reply-box {
  padding-bottom: 22px;
}
.reply-box__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 26px;
}
.reply-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
}
.reply-box__list li {
  border-top: 1px solid #eceff1;
}
.reply-box__list li:first-child {
  border-top: none;
}
.reply-box__table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 19px;
  margin-top: 26px;
}
.reply-box__table-row {
  display: table-row;
}
.reply-box__table-cell {
  display: table-cell;
  vertical-align: top;
}
.reply-box__table-cell:first-child {
  width: 85px;
}
.reply-box__img {
  overflow: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}
.reply-box__img img {
  display: block;
}
.reply-box__content {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  position: relative;
}
.reply-box__user {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px;
  padding-right: 70px;
}
.reply-box__date-post {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  margin-bottom: 12px;
}
.reply-box__re-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
}
.reply-box__re-btn::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/icon_07.png");
  width: 11px;
  height: 11px;
  margin-right: 10px;
}
.reply-box__child {
  padding: 0 0 0 103px;
  margin: 0;
  border-top: 1px solid #eceff1;
}
.reply-box__child li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
}
.reply-box__child li:last-child {
  padding-bottom: 0;
}
.reply-box__comments-box-01, .reply-box__comments-box-02 {
  width: 50%;
  float: left;
  display: block;
  margin-bottom: 11px;
}
.reply-box__comments-box-01 {
  padding-right: 5px;
}
.reply-box__comments-box-02 {
  padding-left: 5px;
}
.reply-box__comments-box-03 {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 11px;
}
.reply-box__comments-box-04 {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 7px;
}
.reply-box__input-text-01 {
  width: 100%;
  border: 1px solid #e7e8e9;
  height: 50px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 400;
}
.reply-box__comments-title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  margin: 0 0 36px;
  font-weight: 300;
}
.reply-box__comments-title span {
  font-weight: 700;
}
.reply-box__textarea-01 {
  width: 100%;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  resize: none;
  height: 120px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 400;
}
.reply-box__btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  background-color: #4eaac8;
  padding: 18px 31px;
  border: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  letter-spacing: 0.5px;
}
.reply-box__btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
 .reply-01::-webkit-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .reply-01::-moz-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .reply-01:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .reply-01:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
/*// Sidebar //*/
.blog-listing-sidebar {
  width: 100%;
  max-width: 340px;
}
.blog-listing-sidebar.right {
  float: right;
  padding-left: 30px;
}
.blog-listing-sidebar.left {
  float: left;
  padding-right: 30px;
}
/*// Widgets //*/
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
}
.widget-title {
  font-size: 24px;
  line-height: 26px;
  color: #42474c;
  font-weight: 400;
  margin: 0 0 25px;
}
.widget-search {
  margin-bottom: 46px;
}
.widget-search__form-label {
  display: block;
  width: 100%;
  position: relative;
}
.widget-search__form-text {
  display: block;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 10px 60px 10px 20px;
}
 .widget-search__form-text::-webkit-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #5c656d;
opacity: 1;
}
 .widget-search__form-text::-moz-placeholder {
font-size: 14px;
font-weight: 400;
color: #5c656d;
opacity: 1;
}
 .widget-search__form-text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #5c656d;
opacity: 1;
}
 .widget-search__form-text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #5c656d;
opacity: 1;
}
.widget-search__form-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: none;
  background-color: #4eaac8;
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  font-size: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-search__form-btn::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/page_404_search.png");
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -9px;
  margin-right: -9px;
}
.widget-search__form-btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-categories {
  margin-bottom: 30px;
}
.widget-categories .widget-title {
  margin-bottom: 5px;
}
.widget-categories__list li {
  display: block;
  border-bottom: 1px solid #eceff1;
  padding: 15px 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  position: relative;
}
.widget-categories__list li:last-child {
  border-bottom: none;
}
.widget-categories__list li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background-color: #4eaac8;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -1px;
  -webkit-transition: 0.5s all;
  visibility: collapse;
  opacity: 0;
  transition: 0.5s all;
}
.widget-categories__list li a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}
.widget-categories__list li.active {
  padding-left: 25px;
  position: relative;
}
.widget-categories__list li.active::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  left: 0;
}
.widget-categories__list li.active a {
  color: #4eaac8;
}
.widget-categories__list li:hover {
  padding-left: 25px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-categories__list li:hover a {
  color: #4eaac8;
}
.widget-categories__list li:hover::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  left: 0;
}
.widget-contact-us {
  padding: 25px 28px 30px;
  background-color: #f6f8f9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 45px;
}
.widget-contact-us__form-text {
  width: 100%;
  border: 1px solid #dfe2e4;
  background-color: #fff;
  height: 39px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 18px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #303638;
  font-weight: 400;
}
.widget-contact-us__form-area {
  border: 1px solid #dfe2e4;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 12px 19px;
  width: 100%;
  height: 70px;
  resize: none;
  font-size: 13px;
  line-height: 15px;
  color: #303638;
  margin-bottom: 9px;
}
.widget-contact-us__form-btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  background-color: #4eaac8;
  padding: 13px 31px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-contact-us__form-btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-latest-news {
  margin-bottom: 51px;
}
.widget-latest-news__list li {
  margin-bottom: 20px;
}
.widget-latest-news__list li:last-child {
  margin-bottom: 0;
}
.widget-latest-news__list li::after {
  content: '';
  display: table;
  clear: both;
}
.widget-latest-news__list-img {
  float: left;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 24px;
}
.widget-latest-news__list-img a {
  display: inline-block;
  vertical-align: middle;
}
.widget-latest-news__title {
  font-size: 16px;
  line-height: 22px;
  color: #42474c;
  margin: 0 0 2px;
  padding-top: 3px;
}
.widget-latest-news__title a {
  color: #42474c;
}
.widget-latest-news__title a:hover {
  color: #4eaac8;
}
.widget-latest-news__meta {
  display: inline-block;
  vertical-align: middle;
}
.widget-latest-news__meta li {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  padding-right: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
}
.widget-latest-news__meta li::before {
  font-family: 'FontAwesome';
  content: '\f0da';
  font-size: 10px;
  line-height: 12px;
  color: #4eaac8;
  position: absolute;
  top: 2px;
  right: 4px;
}
.widget-latest-news__meta li:last-child {
  padding-right: 0;
}
.widget-latest-news__meta li:last-child::before {
  display: none;
}
.widget-latest-news__meta li a {
  color: #5c656d;
}
.widget-latest-news__meta li a:hover {
  color: #4eaac8;
}
.widget-banner {
  margin-bottom: 45px;
}
.widget-banner__box {
  background-color: #3d3272;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 19px 28px 21px;
}
.widget-banner__box-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 29px;
}
.widget-banner__box-subtitle {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.widget-banner__box-phone {
  font-size: 30px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
}
.widget-testimonials {
  background-color: #f6f8f9;
  padding: 20px 28px 25px;
}
.widget-testimonials .widget-title {
  margin-bottom: 25px;
}
.widget-tags-cloud {
  margin-bottom: 50px;
}
.widget-tags-cloud-box {
  font-size: 0;
}
.widget-tags-cloud-box a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  border: 1px solid #e7e8e9;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 6px 12px;
  margin: 0 5px 5px 0;
}
.widget-tags-cloud-box a:hover {
  color: #fff;
  border: 1px solid #4eaac8;
  background-color: #4eaac8;
}
.widget-text p {
  font-size: 14px;
  line-height: 24px;
  color: #5c656d;
}
.widget-contacts__list li {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #5c656d;
  margin-bottom: 8px;
}
.widget-contacts__list .contacts-email {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
}
.widget-contacts__list .work-time {
  font-size: 14px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 300;
  margin: 0;
  padding-top: 10px;
}
.widget-contacts__list .work-time span {
  font-style: italic;
  font-weight: 400;
}
.widget-quick-links__list li {
  display: block;
  margin-bottom: 10px;
}
.widget-quick-links__list li a {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
}
.widget-quick-links__list li a:hover {
  color: #766e9b;
}
.widget-shop-categories {
  margin-bottom: 50px;
}
.widget-shop-categories .widget-title {
  margin-bottom: 7px;
}
.widget-shop-categories__list li {
  display: block;
  border-bottom: 1px solid #eceff1;
  padding: 12px 0 18px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  position: relative;
}
.widget-shop-categories__list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 24px;
  left: 0;
  margin-top: -1px;
  background-color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  visibility: collapse;
  opacity: 0;
}
.widget-shop-categories__list li a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.widget-shop-categories__list li a:hover {
  color: #4eaac8;
}
.widget-shop-categories__list li ul li a {
  text-transform: capitalize;
  font-style: italic;
  color: #5c656d;
}
.widget-shop-categories__list li:hover {
  padding-left: 25px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-shop-categories__list li:hover a {
  color: #4eaac8;
}
.widget-shop-categories__list li:hover::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  left: 0;
}
.widget-shop-categories__list .active {
  position: relative;
  padding-bottom: 5px;
  padding-left: 25px;
}
.widget-shop-categories__list .active::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-shop-categories__list .active a {
  color: #4eaac8;
}
.widget-shop-categories__list .active ul {
  padding-left: 2px;
  margin-top: 17px;
  border-top: 1px solid #eceff1;
  padding-top: 16px;
  padding-bottom: 18px;
}
.widget-shop-categories__list .active ul li {
  border: none;
  padding: 5px 0;
}
.widget-shop-categories__list .active ul li::before {
  display: none;
}
.widget-shop-categories__list .active ul li a {
  color: #5c656d;
  letter-spacing: 0.4px;
}
.widget-shop-categories__list .active ul li a:hover {
  color: #4eaac8;
}
.widget-format {
  margin-bottom: 47px;
}
.widget-format .widget-title {
  margin-bottom: 5px;
}
.widget-format_list li {
  display: block;
  border-bottom: 1px solid #eceff1;
  padding: 15px 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  position: relative;
}
.widget-format_list li:last-child {
  border-bottom: none;
}
.widget-format_list li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background-color: #4eaac8;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -1px;
  -webkit-transition: 0.5s all;
  visibility: collapse;
  opacity: 0;
  transition: 0.5s all;
}
.widget-format_list li a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}
.widget-format_list li.active {
  padding-left: 25px;
  position: relative;
}
.widget-format_list li.active::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  left: 0;
}
.widget-format_list li.active a {
  color: #4eaac8;
}
.widget-format_list li:hover {
  padding-left: 25px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.widget-format_list li:hover a {
  color: #4eaac8;
}
.widget-format_list li:hover::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  left: 0;
}
.widget-popular-products {
  margin-bottom: 47px;
}
.widget-popular-products__list li {
  margin-bottom: 20px;
}
.widget-popular-products__list li::after {
  content: '';
  display: table;
  clear: both;
}
.widget-popular-products__img {
  float: left;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 26px;
}
.widget-popular-products__title {
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  margin: 0 0 3px;
  font-weight: 700;
  padding-top: 6px;
}
.widget-popular-products__title a {
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  font-weight: 700;
}
.widget-popular-products__title a:hover {
  color: #4eaac8;
}
.widget-popular-products__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  font-weight: 400;
  margin: 0 0 10px;
}
.widget-popular-products__price {
  font-size: 14px;
  line-height: 16px;
  color: #4eaac8;
  font-weight: 400;
}
.widget-popular-products__price .dl {
  text-decoration: line-through;
  color: #bfc4c8;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.widget-popular-products__price .oml {
  display: inline-block;
  vertical-align: middle;
}
.price-slider-wrapp {
  position: relative;
  margin-bottom: 23px;
}
.widget-price-filter {
  margin-bottom: 45px;
  background-color: #f6f8f9;
  padding: 23px 29px 30px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.widget-price-filter .widget-title {
  margin-bottom: 32px;
}
.price-slider-title {
  font-size: 16px;
  line-height: 28px;
  color: #42474c;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.price-slider-vall {
  font-size: 16px;
  line-height: 24px;
  color: #4eaac8;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  padding-left: 54px;
  width: 100%;
  border: none;
  background-color: transparent;
}
.price-filter-btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  background-color: #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  border: none;
  padding: 13px 31px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.price-filter-btn:hover {
  background-color: #3d3272;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.ui-slider {
  position: relative;
  text-align: left;
  background-color: #fff;
  margin-bottom: 16px;
}
.ui-slider-handle {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  -ms-touch-action: none;
  touch-action: none;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #4eaac8;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -6px;
}
.ui-slider-handle:active, .ui-slider-handle:focus {
  outline: none;
}
.ui-slider-range {
  top: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
  background-color: #4eaac8;
}
.ui-slider-horizontal {
  height: 4px;
}
.ui-slider-range-min {
  left: 0;
}
.ui-slider-range-max {
  right: 0;
}
.latest-news-title {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 10px;
  font-weight: 300;
}
.latest-news-title a {
  color: #42474c;
}
.latest-news-title a:hover {
  color: #4eaac8;
}
.latest-news-date {
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #5c656d;
}
 .wid-con::-webkit-input-placeholder {
font-size: 12px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .wid-con::-moz-placeholder {
font-size: 12px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .wid-con:-ms-input-placeholder {
font-size: 12px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .wid-con:-ms-input-placeholder {
font-size: 12px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
/*/=== Shortcodes ===/*/
.price-tables-01 {
  background-color: #f6f8f9;
  text-align: center;
  padding: 32px 20px 40px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 20px 0;
}
.price-tables-01.price-tables-01-selected {
  padding: 50px 20px 60px;
  margin: 0;
  -webkit-box-shadow: 0 0 40px 0 rgba(15, 8, 49, 0.1);
  box-shadow: 0 0 40px 0 rgba(15, 8, 49, 0.1);
}
.price-tables-01.price-tables-01-selected .price-tables-01__icon {
  margin-bottom: 27px;
}
.price-tables-01__icon {
  margin-bottom: 24px;
}
.price-tables-01__icon img {
  display: inline-block;
  vertical-align: middle;
}
.price-tables-01__title {
  font-size: 16px;
  line-height: 18px;
  color: #83c3d8;
  margin-top: 0;
  margin-bottom: 23px;
  text-transform: uppercase;
  font-weight: 700;
}
.price-tables-01__price {
  color: #42474c;
  letter-spacing: -0.4px;
  font-size: 0;
  margin-bottom: 30px;
}
.price-tables-01__price-cont {
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
}
.price-tables-01__price-icon {
  font-size: 24px;
  line-height: 26px;
}
.price-tables__content {
  max-width: 270px;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 27px;
}
.price-tables__content p {
  font-size: 16px;
  line-height: 24px;
  color: #5c656d;
}
.price-tables-btn {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  background-color: #4eaac8;
  color: #fff;
  width: 100%;
  max-width: 140px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 18px 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.price-tables-btn:active, .price-tables-btn:focus, .price-tables-btn:hover {
  color: #fff;
  background-color: #3d3272;
}
/*// Team box //*/
.team-item-01 {
  position: relative;
  max-width: 370px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.team-item-01:hover .team-item-01__img::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-01:hover .team-item-01__soc-list {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  bottom: 40px;
}
.team-item-01:hover .team-item-01__content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  top: 50%;
}
.team-item-01__img {
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
.team-item-01__img::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: rgba(4, 18, 29, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-01__img img {
  display: block;
  max-width: 100%;
}
.team-item-01__content {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: -37px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-01__title {
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 13px;
}
.team-item-01__title a {
  color: #fff;
  font-weight: 700;
}
.team-item-01__title a:hover {
  color: #ddd;
}
.team-item-01__subtitle {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}
.team-item-01__soc-list {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.7s all;
  transition: 0.7s all;
  opacity: 0;
  visibility: collapse;
}
.team-item-01__soc-list li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0 10px;
}
.team-item-01__soc-list li a {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.team-item-01__soc-list li a:hover {
  color: #ddd;
}
.team-block-wrapp {
  padding-left: 28px;
}
.team-block-wrapp .subtitle-06 {
  margin-top: 33px;
}
/*// Message box //*/
.message-box-01 {
  background-color: #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
  margin-bottom: 20px;
}
.message-box-01::before {
  font-family: 'FontAwesome';
  content: '\f05a';
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 30px;
}
.message-box-01 p {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  margin: 0;
}
.message-box-02 {
  background-color: #4ec868;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
}
.message-box-02::before {
  font-family: 'FontAwesome';
  content: '\f058';
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 30px;
}
.message-box-02 p {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  margin: 0;
}
.message-box-03 {
  background-color: #e14949;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
  margin-bottom: 20px;
}
.message-box-03::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 30px;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/message_box_icon_01.png");
  width: 15px;
  height: 15px;
}
.message-box-03 p {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  margin: 0;
}
.message-box-04 {
  background-color: #fbaf2a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
}
.message-box-04::before {
  font-family: 'FontAwesome';
  content: '\f071';
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 30px;
}
.message-box-04 p {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  margin: 0;
}
.message-box-close {
  width: 11px;
  height: 11px;
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 0;
  background: url("../img/icons/message_box_close.png");
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.message-box-close:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*// Featured post //*/
.featured-post-01 {
  background-color: #fafbfc;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.featured-post-01__img {
  overflow: hidden;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.featured-post-01__img a {
  display: inline-block;
  vertical-align: middle;
}
.featured-post-01__img img {
  max-width: 100%;
  display: block;
}
.featured-post-01__content {
  padding: 22px 30px 45px;
}
.featured-post-01__content-title {
  font-size: 24px;
  line-height: 30px;
  color: #42474c;
  margin: 0 0 7px;
}
.featured-post-01__content-title a {
  color: #42474c;
}
.featured-post-01__content-title a:hover {
  color: #4eaac8;
}
.featured-post-01__content-list {
  padding: 0;
  margin: 0 0 11px 0;
}
.featured-post-01__content-list li {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  padding-right: 17px;
  position: relative;
}
.featured-post-01__content-list li::before {
  font-family: 'FontAwesome';
  content: '\f0da';
  display: inline-block;
  vertical-align: middle;
  color: #4eaac8;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -6px;
}
.featured-post-01__content-list li:last-child {
  padding-right: 0;
}
.featured-post-01__content-list li:last-child::before {
  display: none;
}
.featured-post-01__content-list li a {
  color: #5c656d;
}
.featured-post-01__content-list li a:hover {
  color: #c8c8c8;
}
.featured-post-01__content-text {
  margin-bottom: 26px;
}
.featured-post-01__content-btn {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  position: relative;
}
.featured-post-01__content-btn::after {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 12px;
  line-height: 14px;
  color: #000;
  margin-left: 9px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.featured-post-01__content-btn:hover {
  color: #bababa;
}
.featured-post-01__content-btn:hover::after {
  color: #bababa;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*// Action box 01 //*/
.action-box-01 {
  padding: 66px 0 70px;
  background-color: #4eaac8;
}
.action-box-01__title {
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 9px;
  font-weight: 300;
  color: #fff;
}
.action-box-01__title span {
  font-weight: 700;
}
.action-box-01__subtitle {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.99px;
}
.action-box-01__wrapp {
  width: 80%;
  float: left;
}
.action-box-01__btn-wrapp {
  width: 20%;
  float: left;
  text-align: right;
}
.action-box-01__btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  background-color: #3d3272;
  max-width: 220px;
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-top: 6px;
}
.action-box-01__btn:focus {
  color: #fff;
}
.action-box-01__btn:active {
  color: #fff;
}
.action-box-01__btn:hover {
  background-color: #fff;
  color: #3d3272;
}
/*// Service box 01 //*/
.service-box-01 {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  height: 300px;
  margin-bottom: 11px;
}
.service-box-01:hover .service-box-01__front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.service-box-01:hover .service-box-01__back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.service-box-01__wrapp {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}
.service-box-01__front {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.service-box-01__back {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}
.service-box-01__back td {
  vertical-align: middle;
  text-align: center;
  padding: 10px;
}
.service-box-01__back td span {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  max-width: 270px;
}
.service-box-01__img {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.service-box-01__img::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 29, 0.55);
}
.service-box-01__title {
  font-size: 36px;
  line-height: 38px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 10px;
  margin-top: -9px;
  text-align: center;
  margin-bottom: 0;
}
.service-box-01__title::before {
  font-size: 126px;
  line-height: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  margin-top: -66px;
  left: 0;
  right: 0;
}
.service-box-01__title span {
  font-weight: 700;
}
.serv--01 .service-box-01__title::before {
  content: '01';
}
.serv--02 .service-box-01__title::before {
  content: '02';
}
.serv--03 .service-box-01__title::before {
  content: '03';
}
/*// Partners box 01 //*/
.partners-box-01 {
  float: left;
  width: 25%;
  text-align: center;
  border-right: 1px solid #dde0e2;
  border-bottom: 1px solid #dde0e2;
  padding: 40px 20px 50px;
}
.partners-box-01:nth-child(4n) {
  border-right: none;
}
.partners-box-01:nth-child(5), .partners-box-01:nth-child(6), .partners-box-01:nth-child(7), .partners-box-01:nth-child(8) {
  border-bottom: none;
}
.partners-box-01 a {
  display: inline-block;
  vertical-align: middle;
  max-width: 240px;
  width: 100%;
  height: 60px;
}
.partners-box-01 a:hover {
  background-position: center bottom;
}
.partners--dec-01 {
  border-right: 1px solid #dde0e2;
  border-bottom: 1px solid #dde0e2;
}
.part--01 a {
  background: url("../img/shortcodes/partners/partners_01.png") no-repeat center top;
  background-size: cover;
}
.part--02 a {
  background: url("../img/shortcodes/partners/partners_02.png") no-repeat center top;
  background-size: cover;
}
.part--03 a {
  background: url("../img/shortcodes/partners/partners_03.png") no-repeat center top;
  background-size: cover;
}
.part--04 a {
  background: url("../img/shortcodes/partners/partners_04.png") no-repeat center top;
  background-size: cover;
}
.part--05 {
  padding-bottom: 40px;
}
.part--05 a {
  background: url("../img/shortcodes/partners/partners_05.png") no-repeat center top;
  background-size: cover;
}
.part--06 {
  padding-bottom: 40px;
}
.part--06 a {
  background: url("../img/shortcodes/partners/partners_06.png") no-repeat center top;
  background-size: cover;
}
.part--07 {
  padding-bottom: 40px;
}
.part--07 a {
  background: url("../img/shortcodes/partners/partners_07.png") no-repeat center top;
  background-size: cover;
}
.part--08 {
  padding-bottom: 40px;
}
.part--08 a {
  background: url("../img/shortcodes/partners/partners_08.png") no-repeat center top;
  background-size: cover;
}
/*/=== Page 404 ===/*/
.page-404 {
  background: url("../img/page_404/page_404_bg.jpg") no-repeat top center;
  background-size: cover;
}
.page-404-wrapp {
  padding-top: 95px;
  padding-bottom: 135px;
}
.page-404-title {
  font-size: 200px;
  line-height: 150px;
  font-weight: 700;
  color: #fff;
  margin: 30px 0 37px;
}
.page-404-subtitle {
  font-size: 36px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 17px;
}
.page-404-text {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
}
.page-404-btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  background-color: #4eaac8;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 32px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.3px;
}
.page-404-btn:focus, .page-404-btn:active, .page-404-btn:hover {
  color: #fff;
  background-color: #3d3272;
}
.page-404-form {
  padding-top: 36px;
  padding-bottom: 25px;
}
.page-404-form div {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  max-width: 300px;
}
.page-404-form__text {
  border: 1px solid #6e777d;
  background-color: transparent;
  width: 100%;
  max-width: 300px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 50px;
  padding: 8px 45px 8px 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
 .page-404-form__text::-webkit-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .page-404-form__text::-moz-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .page-404-form__text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .page-404-form__text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
.page-404-form__btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 45px;
  height: 50px;
}
.page-404-form__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-right: -8px;
  right: 50%;
  margin-top: -8px;
  background: url("../img/icons/page_404_search.png") no-repeat center center;
  width: 17px;
  height: 17px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.page-404-form__btn:hover {
  opacity: 0.6;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*/=== FAQ ===/*/
.faq-content-01 p {
  font-size: 18px;
  line-height: 30px;
  color: #5c656d;
}
.faq-content-02 {
  width: 50%;
  float: left;
}
.faq-content-02__wrapp {
  max-width: 585px;
  float: right;
  text-align: left;
  width: 100%;
  padding: 126px 15px 30px 15px;
}
.faq-content-02__text {
  margin-bottom: 40px;
}
.faq-content-02__text p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.faq-content-02__location {
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  padding-left: 35px;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
  position: relative;
}
.faq-content-02__location::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 1px;
  left: 0;
  background: url("../img/icons/icon_02.png") no-repeat center center;
  width: 15px;
  height: 20px;
}
.faq-content-02__email {
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  padding-left: 40px;
  letter-spacing: 0.2px;
  position: relative;
  margin-bottom: 35px;
  display: inline-block;
  vertical-align: middle;
}
.faq-content-02__email::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 9px;
  left: 0;
  background: url("../img/icons/icon_03.png");
  width: 20px;
  height: 16px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.faq-content-02__email:focus {
  color: #fff;
}
.faq-content-02__email:active {
  color: #fff;
}
.faq-content-02__email:hover {
  opacity: 0.7;
  color: #fff;
}
.faq-content-02__email:hover::before {
  opacity: 0.7;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.faq-content-02__phone {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
}
.faq-content-02__phone span {
  font-weight: 700;
}
.faq-content-03 {
  width: 50%;
  float: left;
}
.faq-content-03 .contacts_map {
  margin-bottom: 0;
}
.faq-content-03 #map-canvas {
  height: 650px;
}
.faq-img-01 {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
/*/=== Contacts ===/*/
.contacts-block-wrapp {
  padding-left: 10px;
}
.contacts-block-wrapp::after {
  content: '';
  display: table;
  clear: both;
}
.contacts-block-01 {
  padding-top: 5px;
  margin-bottom: 40px;
}
.contact-location {
  font-size: 20px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 400;
  padding-left: 36px;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}
.contact-location::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 3px;
  left: 0;
  background: url("../img/icons/icon_04.png") no-repeat center center;
  width: 15px;
  height: 20px;
}
.contact-mail {
  font-size: 20px;
  line-height: 24px;
  color: #5c656d;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  padding-left: 41px;
  letter-spacing: 0.2px;
  position: relative;
  margin-bottom: 35px;
}
.contact-mail::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 8px;
  left: 0;
  background: url("../img/icons/icon_05.png") no-repeat center center;
  width: 20px;
  height: 16px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.contact-mail:focus {
  color: #5c656d;
}
.contact-mail:hover {
  color: #5c656d;
  opacity: 0.7;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.contact-phone {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
  color: #4eaac8;
  margin-bottom: 36px;
}
.contact-phone span {
  font-weight: 700;
}
.reply-form::after {
  content: '';
  display: table;
  clear: both;
}
.reply-form__box-01 {
  width: 50%;
  float: left;
  padding-right: 5px;
  margin-bottom: 10px;
}
.reply-form__box-02 {
  width: 50%;
  float: left;
  padding-left: 6px;
  margin-bottom: 10px;
}
.reply-form__box-03 {
  width: 100%;
  float: left;
  margin-bottom: 8px;
}
.reply-form__box-04 {
  float: left;
  width: 100%;
}
.reply-form__name, .reply-form__email {
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 20px;
}
.reply-form__message {
  width: 100%;
  resize: none;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 13px 20px;
  height: 120px;
}
/* Form Valid Style */
.notification_ok {
  background-color: #4ec868;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.notification_ok::before {
  font-family: 'FontAwesome';
  content: '\f058';
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 30px;
}
.notification_error {
  background-color: #e14949;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 21px 60px 21px 63px;
  position: relative;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.notification_error::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 30px;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/message_box_icon_01.png");
  width: 15px;
  height: 15px;
}
.contacts-map-wrapp {
  margin-top: 10px;
  -webkit-box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
  box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
  -webkit-border-radius: 7px;
  border-radius: 7px;
  overflow: hidden;
}
.contacts_map {
  margin-bottom: 0;
}
#map-canvas {
  height: 400px;
}
/*/=== Coming soon ===/*/
.coming-soon {
  background: url("../img/coming_soon_bg.jpg") no-repeat center center;
  background-size: cover;
}
.coming-soon__box {
  padding: 170px 0 185px;
}
.coming-soon__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.coming-soon__title {
  font-size: 42px;
  line-height: 42px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-top: 0;
  margin-bottom: 120px;
  position: relative;
  padding-top: 43px;
}
.coming-soon__title::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  left: 50%;
  top: 9px;
  margin-left: -35px;
}
.coming-soon__title span {
  font-weight: 700;
}
.coming-soon__form {
  text-align: center;
}
.coming-soon__form-text {
  width: 100%;
  max-width: 300px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px 20px;
  color: #fff;
}
 .coming-soon__form-text::-webkit-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .coming-soon__form-text::-moz-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .coming-soon__form-text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
 .coming-soon__form-text:-ms-input-placeholder {
font-size: 14px;
font-weight: 400;
color: #fff;
opacity: 1;
}
.coming-soon__btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  background: #4eaac8;
  padding: 18px 31px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.coming-soon__btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.is-countdown {
  text-align: center;
}
.countdown-wrapper {
  margin-bottom: 111px;
}
.countdown-row {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.countdown-row::after {
  content: '';
  display: table;
  clear: both;
}
.countdown-section {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  width: 20%;
  text-align: right;
  position: relative;
  padding: 16px 45px 16px 0;
}
.countdown-section:last-child::before {
  display: none;
}
.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.6);
  width: 1px;
}
.countdown-amount {
  font-size: 112px;
  line-height: 100px;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.countdown-period {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  position: absolute;
  top: 0;
  right: 50px;
}
.coming-soon__box-01 {
  text-align: center;
  padding: 0 15px;
}
.coming-soon__box-02 {
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -250px;
}
/*/=== Shop listing ===/*/
.sort-box {
  background-color: #f6f8f9;
  padding: 16px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.shop-filter {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.shop-filter__form-label {
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  padding: 10px;
  margin: 0;
}
.shop-filter__form-sel-01 {
  cursor: pointer;
  border: none;
  background-color: #fff;
  font-size: 14px;
  font-weight: 300;
  color: #5c656d;
  width: 120px;
}
.shop-filter__form-sel-02 {
  cursor: pointer;
  border: none;
  background-color: #fff;
  font-size: 14px;
  font-weight: 300;
  color: #5c656d;
  width: 120px;
}
.shop-filter__form-label {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  text-transform: uppercase;
  padding: 10px 10px 10px 20px;
}
.shop-btn-sort {
  float: right;
  margin: 9px 0;
}
.shop-btn-sort__hor {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/shop/btn_sort_01.png") no-repeat center top;
  width: 16px;
  height: 16px;
}
.shop-btn-sort__hor.active {
  background: url("../img/shop/btn_sort_02.png") no-repeat center bottom;
}
.shop-btn-sort__list {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/shop/btn_sort_02.png") no-repeat center top;
  width: 16px;
  height: 16px;
  margin-left: 16px;
}
.shop-btn-sort__list.active {
  background: url("../img/shop/btn_sort_02.png") no-repeat center bottom;
}
.shop-listing {
  padding: 0;
  margin: 50px 0 0;
  font-size: 0;
  text-align: center;
}
.shop-listing-item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 262px;
  position: relative;
  overflow: hidden;
  list-style: none;
  margin-right: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.shop-listing-item:nth-child(3n) {
  margin-right: 0;
}
.shop-listing-item:last-child {
  margin-right: 0;
}
.shop-listing-item:hover .shop-listing-item__btn-wrapp {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  top: 50%;
  margin-top: -25px;
}
.shop-listing-item:hover .shop-listing-item__img-wrapp::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-listing-item__img {
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.shop-listing-item__img-wrapp {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.shop-listing-item__img-wrapp::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 29, 0.4);
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 1;
}
.shop-listing-item__img-wrapp img {
  display: block;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-listing-item__title {
  font-size: 18px;
  line-height: 20px;
  color: #42474c;
  font-weight: 700;
  margin: 0 0 3px;
}
.shop-listing-item__title a {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #42474c;
}
.shop-listing-item__title a:hover {
  color: #4eaac8;
}
.shop-listing-item__subtitle {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  font-weight: 400;
  margin-bottom: 10px;
}
.shop-listing-item__price {
  font-size: 16px;
  line-height: 18px;
  color: #4eaac8;
  font-weight: 400;
}
.shop-listing-item__price .dl {
  color: #bfc4c8;
  text-decoration: line-through;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.shop-listing-item__price .oml {
  display: inline-block;
  vertical-align: middle;
}
.shop-listing-item__btn-wrapp {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -60px;
  text-align: center;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 5;
}
.shop-listing-item__sale {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 24px;
  left: 21px;
  display: inline-block;
  vertical-align: middle;
  background-color: #a22078;
  padding: 2px 7px 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
}
.shop-listing-item__out-stock {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 24px;
  left: 21px;
  display: inline-block;
  vertical-align: middle;
  background-color: #7b858d;
  padding: 2px 7px 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
}
.shop-listing-item__hot {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 24px;
  left: 21px;
  display: inline-block;
  vertical-align: middle;
  background-color: #3d3272;
  padding: 2px 7px 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
}
.shop-listing-item__new {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 24px;
  left: 21px;
  display: inline-block;
  vertical-align: middle;
  background-color: #4eaac8;
  padding: 2px 7px 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 4px 3px 10px 0 rgba(0, 0, 0, 0.35);
}
.shop-listing__pagination {
  padding-top: 10px;
}
.shop-listing--home {
  margin-top: 0;
}
.shop-listing--home li {
  max-width: 360px;
}
.add-to-cart-btn {
  font-size: 11px;
  line-height: 13px;
  color: #fff;
  font-weight: 700;
  padding: 14px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  background-color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 5px 0;
}
.add-to-cart-btn:focus {
  color: #fff;
}
.add-to-cart-btn:active {
  color: #fff;
}
.add-to-cart-btn:hover {
  background-color: #766e9b;
  color: #fff;
}
.learn-more-btn {
  font-size: 11px;
  line-height: 13px;
  color: #42474c;
  font-weight: 700;
  padding: 14px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 5px 0;
}
.learn-more-btn:focus {
  color: #42474c;
}
.learn-more-btn:active {
  color: #42474c;
}
.learn-more-btn:hover {
  background-color: #766e9b;
  color: #fff;
}
/*/=== Shop single item ===/*/
.shop-item {
  position: relative;
}
.shop-item::after {
  content: '';
  display: table;
  clear: both;
}
.shop-item__su {
  background-color: #f6f8f9;
  padding: 11px 17px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 50px;
}
.shop-item__su::after {
  content: '';
  display: table;
  clear: both;
}
.shop-item__su-text {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  font-weight: 400;
  float: left;
  margin: 7px 0;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.shop-item__su-text::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 6px;
  left: 0;
  background: url("../img/icons/icon_06.png");
  width: 13px;
  height: 10px;
}
.shop-item__su-btn {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 21px;
  background-color: #4eaac8;
  float: right;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.shop-item__su-btn:active {
  color: #fff;
}
.shop-item__su-btn:focus {
  color: #fff;
}
.shop-item__su-btn:hover {
  background-color: #3d3272;
  color: #fff;
}
.shop-item__slider-wrapp {
  max-width: 370px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.shop-item__slider .slides {
  margin: 0;
  padding: 0;
}
.shop-item__slider .slides::after {
  content: '';
  display: table;
  clear: both;
}
.shop-item__slider .slides li {
  list-style: none;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.shop-item__carousel {
  max-width: 375px;
  display: inline-block;
  vertical-align: middle;
}
.shop-item__carousel .slides {
  margin: 0;
  padding: 0;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  max-width: 390px;
}
.shop-item__carousel .slides::after {
  content: '';
  display: table;
  clear: both;
}
.shop-item__carousel .slides li {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  width: auto !important;
  margin-bottom: 17px;
}
.shop-item__carousel .flex-direction-nav {
  margin: 0;
  padding: 0;
  text-align: center;
}
.shop-item__carousel .flex-direction-nav li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 10px;
  font-size: 0;
  line-height: 0;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-prev .flex-prev {
  display: inline-block;
  vertical-align: middle;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-prev .flex-prev::before {
  font-family: 'FontAwesome';
  content: '\f104';
  font-size: 26px;
  line-height: 28px;
  color: #303638;
  display: inline-block;
  vertical-align: middle;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-prev .flex-disabled {
  color: #ccc;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-prev .flex-disabled::before {
  color: #ccc;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-next .flex-next {
  display: inline-block;
  vertical-align: middle;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-next .flex-next::before {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 26px;
  line-height: 28px;
  color: #303638;
  display: inline-block;
  vertical-align: middle;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-next .flex-disabled {
  color: #ccc;
}
.shop-item__carousel .flex-direction-nav li.flex-nav-next .flex-disabled::before {
  color: #ccc;
}
.shop-item__carousel .flex-active-slide a img {
  opacity: 0.3;
}
.shop-item__info {
  max-width: 475px;
  width: 100%;
  float: left;
  padding-left: 30px;
}
.shop-item__info-title {
  font-size: 30px;
  line-height: 32px;
  color: #42474c;
  font-weight: 700;
  margin: -4px 0 11px 0;
  padding: 0;
}
.shop-item__info-rating {
  margin: 0 3px 0 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.shop-item__info-rating li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.shop-item__info-rating li a {
  display: inline-block;
  vertical-align: middle;
  margin: 3px 0;
}
.shop-item__info-rew {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0 0;
  font-weight: 400;
}
.shop-item__info-subtitle {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  color: #5c656d;
  margin-bottom: 10px;
}
.shop-item__info-price {
  font-size: 18px;
  line-height: 20px;
  color: #4eaac8;
  font-weight: 400;
  margin-bottom: 21px;
}
.shop-item__info-text {
  margin-bottom: 17px;
}
.shop-item__info-meta {
  margin: 0 0 30px;
  padding: 0;
}
.shop-item__info-meta li {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  list-style: none;
  margin-bottom: 6px;
  font-weight: 300;
}
.shop-item__info-meta li a {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  font-weight: 300;
}
.shop-item__info-meta li a:hover {
  color: #4eaac8;
}
.shop-item__info-box-01 {
  margin-bottom: 24px;
}
.shop-item__controls {
  margin-bottom: 20px;
}
.shop-item__controls .quantity {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 15px;
}
.shop-item__controls .quantity .plus {
  position: absolute;
  top: 13px;
  right: 22px;
  border: none;
  background: transparent;
  width: 10px;
  height: 10px;
}
.shop-item__controls .quantity .plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #bdbec0;
  border-left: 5px solid transparent;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__controls .quantity .plus:hover::before {
  border-bottom: 5px solid #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__controls .quantity .minus {
  position: absolute;
  bottom: 13px;
  right: 22px;
  border: none;
  background: transparent;
  width: 10px;
  height: 10px;
}
.shop-item__controls .quantity .minus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  border-top: 5px solid #bdbec0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__controls .quantity .minus:hover::before {
  border-top: 5px solid #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  background-color: #4eaac8;
  display: inline-block;
  vertical-align: middle;
  border: none;
  text-transform: uppercase;
  padding: 20px 51px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__control-btn {
  border: none;
  width: 80px;
  height: 53px;
  background: #f7f7f7;
  padding: 19px;
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  font-weight: 400;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.shop-item__wishlist-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  padding-left: 22px;
  position: relative;
  margin-bottom: 17px;
}
.shop-item__wishlist-btn::before {
  font-family: 'FontAwesome';
  content: '\f08a';
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
  color: #fe3f4c;
  position: absolute;
  left: 0;
  top: 0;
}
.shop-item__share {
  margin: 0;
  padding: 0;
}
.shop-item__share li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin-right: 24px;
}
.shop-item__share li:last-child {
  margin-right: 0;
}
.shop-item__share li a {
  font-size: 16px;
  color: #c8cacd;
  display: inline-block;
  vertical-align: middle;
}
.shop-item__share li a:hover {
  color: #4eaac8;
}
.shop-item__wrapper::after {
  content: '';
  display: table;
  clear: both;
}
.shop-item__related-list {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.shop-item__related-list .shop-listing-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  max-width: 262px;
  position: relative;
}
.shop-item__related-list .shop-listing-item:last-child {
  margin-right: 0;
}
.shop-item__related-list .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  top: 50%;
  margin-top: -25px;
}
.shop-item__related-list .shop-listing-item:hover .shop-listing-item__img-wrapp::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-item__related-title {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
  margin: 0 0 34px;
  color: #42474c;
}
.shop-item__related-title span {
  font-weight: 700;
}
.shop-item__total {
  font-size: 16px;
  line-height: 18px;
  color: #4eaac8;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}
.shop-item-related-post .shop-listing-item__subtitle {
  margin-bottom: 10px;
}
.reviews-user {
  width: 100%;
  border-collapse: collapse;
  margin-top: 42px;
}
.reviews-user td:first-child {
  width: 90px;
  vertical-align: top;
}
.reviews-user td:last-child {
  padding-left: 27px;
}
.reviews-user td .reviews-user__date {
  margin-bottom: 12px;
}
.reviews-user__img {
  overflow: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}
.reviews-user__img img {
  display: block;
}
.reviews-user__title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -4px;
  margin-bottom: 5px;
}
.reviews-user__date {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
}
.reviews-user-title {
  font-size: 24px;
  line-height: 26px;
  color: #42474c;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 22px;
}
.reviews-user-info {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  margin-bottom: 6px;
  display: block;
}
.rate-it-wrapp {
  margin-bottom: 15px;
}
.rate-it-text {
  font-size: 14px;
  line-height: 16px;
  color: #303638;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px 0 0;
}
.rate-it-list {
  padding: 0;
  margin: 3px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.rate-it-list .star-active a {
  color: #ffd865;
}
.rate-it-list li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.rate-it-list li a {
  font-size: 16px;
  line-height: 16px;
  color: #adb3b9;
  display: block;
}
.rate-it-form::after {
  content: '';
  display: table;
  clear: both;
}
.rate-it-form__box-01 {
  width: 50%;
  float: left;
  padding-right: 5px;
  margin-bottom: 10px;
}
.rate-it-form__box-02 {
  width: 50%;
  float: left;
  padding-left: 5px;
  margin-bottom: 10px;
}
.rate-it-form__text {
  width: 100%;
  height: 50px;
  border: 1px solid #e7e8e9;
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}
 .rate-it-form__text::-webkit-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__text::-moz-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__text:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__text:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
.rate-it-form__message {
  width: 100%;
  height: 120px;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  resize: none;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 9px;
}
 .rate-it-form__message::-webkit-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__message::-moz-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__message:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
 .rate-it-form__message:-ms-input-placeholder {
font-size: 14px;
color: #5c656d;
font-weight: 400;
opacity: 1;
}
.rate-it-form__btn {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 18px 33px;
  text-transform: uppercase;
  border: none;
  font-weight: 700;
  background-color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.rate-it-form__btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart {
  width: 100%;
  border-collapse: collapse;
}
.shop-cart th {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  text-transform: uppercase;
  background-color: #f6f8f9;
  padding: 25px 10px;
  letter-spacing: 0.4px;
  text-align: center;
}
.shop-cart th:first-child {
  width: 30px;
}
.shop-cart th:nth-child(2) {
  text-align: left;
}
.shop-cart td {
  padding: 31px 10px;
  text-align: center;
  border-bottom: 1px solid #eceff1;
}
.shop-cart td .shop-item__controls {
  margin-bottom: 0;
}
.shop-cart td:first-child {
  padding-left: 0;
}
.shop-cart td:nth-child(2) {
  text-align: left;
}
.shop-cart__close {
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/shop_cart_close.png");
  width: 12px;
  height: 12px;
  font-size: 0;
  line-height: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart__close:hover {
  opacity: 0.4;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart__img {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-right: 25px;
}
.shop-cart__img a {
  display: inline-block;
  vertical-align: middle;
}
.shop-cart__content {
  display: inline-block;
  vertical-align: middle;
}
.shop-cart__title {
  font-size: 18px;
  line-height: 20px;
  color: #42474c;
  font-weight: 700;
  margin: 2px 0 11px;
}
.shop-cart__title a {
  font-weight: 700;
  color: #42474c;
}
.shop-cart__title a:hover {
  color: #4eaac8;
}
.shop-cart__subtitle {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  font-weight: 400;
  margin: 0;
}
.shop-cart__price {
  font-size: 16px;
  line-height: 18px;
  color: #4eaac8;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}
.shop-cart-coupon {
  padding: 30px 0;
  border-bottom: 1px solid #eceff1;
}
.shop-cart-coupon::after {
  content: '';
  display: table;
  clear: both;
}
.shop-cart-coupon__form::after {
  content: '';
  display: table;
  clear: both;
}
.shop-cart-coupon__text {
  border: 1px solid #e7e8e9;
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 50px;
  width: 100%;
  max-width: 270px;
  margin-right: 10px;
  float: left;
}
 .shop-cart-coupon__text::-webkit-input-placeholder {
color: #5c656d;
font-size: 14px;
font-weight: 400;
opacity: 1;
}
 .shop-cart-coupon__text::-moz-placeholder {
color: #5c656d;
font-size: 14px;
font-weight: 400;
opacity: 1;
}
 .shop-cart-coupon__text:-ms-input-placeholder {
color: #5c656d;
font-size: 14px;
font-weight: 400;
opacity: 1;
}
 .shop-cart-coupon__text:-ms-input-placeholder {
color: #5c656d;
font-size: 14px;
font-weight: 400;
opacity: 1;
}
.shop-cart-coupon__btn {
  float: left;
  border: none;
  background-color: #4eaac8;
  padding: 16px 33px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart-coupon__btn:hover {
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart-total-info {
  text-align: right;
  padding-top: 28px;
}
.shop-cart-total-text {
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  font-weight: 400;
  margin-bottom: 13px;
}
.shop-cart-total-text span {
  color: #4eaac8;
  font-weight: 400;
}
.shop-cart-subtotal {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  color: #42474c;
  margin-bottom: 26px;
}
.shop-cart-subtotal span {
  color: #4eaac8;
}
.shop-cart-btn {
  padding: 20px 50px;
  background-color: #fff;
  border: 1px solid #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #42474c;
  font-weight: 700;
  letter-spacing: 0.5px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-cart-btn:hover {
  background-color: #3d3272;
  border: 1px solid #3d3272;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.update-cart-btn {
  background-color: #fff;
  border: 1px solid #4eaac8;
  float: right;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 9px 15px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-top: 4px;
  margin-left: 10px;
}
.update-cart-btn:hover {
  border: 1px solid #3d3272;
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #fff;
}
.star-ac {
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/star_icon.png") no-repeat center top;
  width: 10px;
  height: 10px;
}
.star-dl {
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/star_icon.png") no-repeat center bottom;
  width: 10px;
  height: 10px;
}
.tabs-box-01 {
  padding-top: 57px;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.tabs-box-01 .tabs__caption {
  margin-bottom: 34px;
}
.tabs-box-01 .tabs__content p {
  margin-bottom: 17px;
}
.shop-cart-wrapp {
  overflow: auto;
}
.chart-in {
  padding-top: 10px;
}
/*/=== Team ===/*/
.team-img-wrapper {
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 16px 16px 30px 0 rgba(15, 8, 49, 0.2);
  box-shadow: 16px 16px 30px 0 rgba(15, 8, 49, 0.2);
}
.team-content-text {
  margin-bottom: 34px;
}
.team-content-text p {
  font-size: 18px;
  line-height: 30px;
}
.team-content-text-btn {
  display: inline-block;
  vertical-align: middle;
  padding: 20px 48px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  background-color: #4eaac8;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.team-content-text-btn:focus {
  background-color: #3d3272;
  color: #fff;
}
.team-content-text-btn:active {
  background-color: #3d3272;
  color: #fff;
}
.team-content-text-btn:hover {
  background-color: #3d3272;
  color: #fff;
}
.team-item-box {
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.team-item-box:hover .team-item-box__img-link::before {
  visibility: visible;
  opacity: 0.4;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-box:hover .team-item-box__img-link::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.team-item-box:hover .team-item-box__soc-list {
  bottom: 40px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.team-sort {
  margin-top: 20px;
  float: right;
}
.team-sort .sort-item {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5c656d;
  margin: 0 17px;
  display: inline-block;
  vertical-align: middle;
}
.team-sort .sort-item.is-checked {
  color: #4eaac8;
}
.team-sort .sort-item:hover {
  color: #4eaac8;
}
.team-grid {
  padding-top: 57px;
}
.team-item-box__img {
  position: relative;
  overflow: hidden;
}
.team-item-box__img-link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.team-item-box__img-link::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #04121d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-box__img-link::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../img/team/team_more.png") no-repeat center center;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.team-item-box__soc-list {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.team-item-box__soc-list li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 0 11px;
}
.team-item-box__soc-list li a {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.team-item-box__soc-list li a:hover {
  color: #4eaac8;
}
.team-item-box__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  color: #42474c;
  margin-top: 26px;
  margin-bottom: 13px;
}
.team-item-box__title a {
  color: #42474c;
  font-weight: 700;
}
.team-item-box__title a:hover {
  color: #4eaac8;
}
.team-item-box__subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #5c656d;
}
.testimonials__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.testimonials__title {
  font-size: 36px;
  line-height: 38px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 40px;
  text-align: center;
  padding-bottom: 26px;
  position: relative;
}
.testimonials__title::before {
  content: '';
  width: 70px;
  height: 1px;
  background: #81878a;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
}
.testimonials__title span {
  font-weight: 700;
}
/*/=== Team member ===/*/
.team-member-wrapp {
  padding-left: 18px;
}
.team-member-img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.team-member-list {
  padding: 0;
  margin: 0 0 20px;
}
.team-member-list li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
}
.team-member-list li:last-child {
  margin-right: 0;
}
.team-member-list li a {
  font-size: 16px;
  color: #c8cacd;
  display: inline-block;
  vertical-align: middle;
}
.team-member-list li a:hover {
  color: #4eaac8;
}
.team-member-title {
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  margin: 14px 0 22px;
}
.team-member-table {
  width: 100%;
  border-collapse: collapse;
}
.team-member-table td {
  vertical-align: top;
  padding: 9px 0;
}
.team-member-table td:first-child {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #42474c;
  text-transform: uppercase;
}
.team-member-table td:last-child {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #5c656d;
  text-align: right;
}
.team-member-table td a {
  color: #5c656d;
  font-weight: 300;
}
.team-member-table td a:hover {
  color: #4eaac8;
}
.team-member-page p {
  margin-bottom: 16px;
}
.team-member-skills {
  padding-top: 13px;
}
.contact-block-title {
  margin-top: 6px;
  margin-bottom: 20px;
}
/*/=== Gallery ===/*/
.gallery-box {
  padding-top: 20px;
}
.gallery-filter {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 40px;
}
.gallery-sort-item {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  margin: 0 18px 9px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.gallery-sort-item:hover {
  color: #4eaac8;
}
.gallery-sort-item.is-checked {
  color: #4eaac8;
}
.gallery-grid {
  margin-bottom: -1px;
}
.gallery-grid::after {
  content: '';
  display: block;
  clear: both;
}
.gallery-sizer, .gallery-item {
  width: 25%;
}
.gallery-item {
  float: left;
  position: relative;
}
.gallery-item__box {
  position: relative;
  overflow: hidden;
}
.gallery-item__box:hover .gallery-item__box-img::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__box:hover .gallery-item__subtitle {
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__box:hover .gallery-item__title {
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__box:hover .gallery-item__btn-more {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gallery-item__box:hover .gallery-item__btn-link {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.gallery-item__box-img {
  position: relative;
  overflow: hidden;
}
.gallery-item__box-img::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 29, 0.4);
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__box-img img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.gallery-item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-item__tbl {
  display: table;
  border-collapse: collapse;
  width: 100%;
  height: 100%;
}
.gallery-item__row {
  display: table-row;
}
.gallery-item__cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 15px;
}
.gallery-item__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
  position: relative;
  top: -30px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__title {
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 30px;
  position: relative;
  top: -20px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__btn-more {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 5px;
  position: relative;
  bottom: -30px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gallery-item__btn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../img/gallery/more_icon.png") no-repeat center center rgba(66, 71, 76, 0.4);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.gallery-item__btn-more:hover::before {
  background: url("../img/gallery/more_icon.png") no-repeat center center #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-item__btn-link {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 5px;
  position: relative;
  bottom: -30px;
  visibility: collapse;
  opacity: 0;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.gallery-item__btn-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../img/gallery/more_icon_02.png") no-repeat center center rgba(66, 71, 76, 0.4);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.gallery-item__btn-link:hover::before {
  background: url("../img/gallery/more_icon_02.png") no-repeat center center #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*/=== Gallery single ===/*/
.gallery-single__img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
.gallery-single__title {
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}
.gallery-single__list {
  margin: 0 0 23px;
  padding: 0;
}
.gallery-single__list li {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  padding-right: 16px;
  position: relative;
}
.gallery-single__list li::before {
  font-family: 'FontAwesome';
  font-size: 12px;
  line-height: 14px;
  color: #4eaac8;
  content: '\f0da';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 1px;
  right: 3px;
}
.gallery-single__list li:last-child {
  padding-right: 0;
}
.gallery-single__list li:last-child::before {
  display: none;
}
.gallery-single__list li a {
  color: #5c656d;
}
.gallery-single__list li a:hover {
  color: #4eaac8;
}
.gallery-single__content {
  margin-bottom: 42px;
}
.gallery-single__content p {
  margin-bottom: 10px;
}
.gallery-single__content .list-03 {
  padding-bottom: 0;
}
.gallery-single__content .blockquote-01__text {
  margin-bottom: 13px;
}
.gallery-single__tags {
  text-align: center;
  font-size: 0;
  border-bottom: 1px solid #eceff1;
  padding-bottom: 28px;
}
.gallery-single__tags a {
  font-size: 14px;
  line-height: 16px;
  color: #5c656d;
  display: inline-block;
  vertical-align: middle;
  padding: 6px 12px;
  border: 1px solid #e7e8e9;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 2px;
}
.gallery-single__tags a:hover {
  background-color: #4eaac8;
  color: #fff;
  border: 1px solid #4eaac8;
}
.gallery-single__meta {
  padding: 23px 0 20px;
  margin-bottom: 50px;
}
.gallery-single__meta::after {
  content: '';
  display: table;
  clear: both;
}
.gallery-single__soc-list {
  margin: 0;
  padding: 0;
  float: left;
}
.gallery-single__soc-list li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}
.gallery-single__soc-list li:last-child {
  margin-right: 0;
}
.gallery-single__soc-list li a {
  color: #c8cacd;
  font-size: 15px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.gallery-single__soc-list li a:hover {
  color: #4eaac8;
}
.gallery-likes {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  font-weight: 400;
  float: right;
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
}
.gallery-likes::before {
  font-family: 'FontAwesome';
  content: '\f08a';
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
  color: #fe3f4c;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
/*/=== Services ===/*/
.serv-content-01 {
  margin-bottom: 45px;
}
.serv-content-01 p {
  font-size: 18px;
  line-height: 30px;
  color: #5c656d;
}
.serv-content-02 {
  margin-bottom: 33px;
}
.serv-content-02 p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.serv-content-03 {
  margin-bottom: 20px;
}
.serv-content-03 p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.treatments-box {
  text-align: center;
  margin-bottom: 43px;
}
.treatments-box__img {
  margin-bottom: 25px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.treatments-box__img a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.treatments-box__img a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 29, 0);
  visibility: collapse;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.treatments-box__img a:hover::before {
  visibility: visible;
  background-color: rgba(4, 18, 29, 0.4);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.treatments-box__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #42474c;
  font-weight: 400;
}
.treatments-box__title a {
  color: #42474c;
}
.treatments-box__title a:hover {
  color: #4eaac8;
}
.treatments-box__text {
  margin-bottom: 16px;
}
.treatments-box__btn {
  font-size: 12px;
  line-height: 14px;
  color: #4eaac8;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.treatments-box__btn::after {
  font-family: 'FontAwesome';
  content: '\f105';
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 14px;
  color: #4eaac8;
  margin-left: 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  font-weight: 400;
  margin-bottom: 3px;
}
.treatments-box__btn:focus {
  color: #4eaac8;
}
.treatments-box__btn:active {
  color: #4eaac8;
}
.treatments-box__btn:hover {
  color: #5c656d;
}
.treatments-box__btn:hover::after {
  color: #5c656d;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.services-in {
  margin-bottom: 40px;
  text-align: left;
}
.services-in__img {
  float: left;
  margin-right: 37px;
  margin-bottom: 30px;
  margin-top: 3px;
}
.services-in__title {
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  margin: -2px 0 10px;
  font-weight: 700;
}
.services-in__text {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  opacity: 0.75;
}
/*/=== Services single ===/*/
.single-service-sidebar {
  width: 100%;
  max-width: 340px;
}
.single-service-sidebar.right {
  float: right;
  padding-left: 30px;
}
.single-service {
  width: 100%;
  max-width: 800px;
}
.single-service.right {
  float: left;
}
.single-service p {
  margin-bottom: 25px;
}
.single-service .single-service-in__text {
  margin-bottom: 16px;
}
.single-service .shop-item__related-list .shop-listing-item {
  max-width: 246px;
}
.single-service .tabs {
  width: 100%;
}
.single-service__img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 33px;
}
.single-service-in {
  margin-bottom: 30px;
}
.single-service-in__img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
.single-service-in__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 13px 0;
  padding-top: 25px;
}
.single-service-in__subtitle {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 0 24px;
}
.single-service-in__info {
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 11px;
}
.single-service-in__btn {
  font-size: 12px;
  line-height: 14px;
  color: #4eaac8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.single-service-in__btn::after {
  font-family: 'FontAwesome';
  content: '\f105';
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 14px;
  margin-left: 10px;
  margin-bottom: 3px;
}
.single-service__nav {
  border-top: 1px solid #eceff1;
  padding-top: 25px;
  margin-bottom: 68px;
}
.single-service__nav::after {
  content: '';
  display: table;
  clear: both;
}
.single-service__prev {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  float: left;
  margin-bottom: 10px;
}
.single-service__prev:focus {
  color: #5c656d;
}
.single-service__prev:active {
  color: #5c656d;
}
.single-service__prev::before {
  font-family: 'FontAwesome';
  content: '\f104';
  font-size: 16px;
  line-height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
  margin-bottom: 2px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-service__prev:hover {
  color: #4eaac8;
}
.single-service__prev:hover::before {
  color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-service__next {
  font-size: 16px;
  line-height: 18px;
  color: #5c656d;
  float: right;
  margin-bottom: 10px;
}
.single-service__next:focus {
  color: #5c656d;
}
.single-service__next:active {
  color: #5c656d;
}
.single-service__next::after {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 16px;
  line-height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
  margin-bottom: 2px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.single-service__next:hover {
  color: #4eaac8;
}
.single-service__next:hover::after {
  color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*/=== Counselling ===/*/
.counselling-text-01 {
  margin-bottom: 42px;
}
.counselling-text-01 p {
  font-size: 16px;
  line-height: 22px;
}
.counselling-text-02 {
  margin-bottom: 20px;
}
.counselling-text-02 p {
  font-size: 15px;
  line-height: 22px;
}
.counselling-btn {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  padding: 15px 25px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
.counselling-btn:focus {
  color: #fff;
  background-color: #333;
}
.counselling-btn:hover {
  color: #fff;
  background-color: #333;
}
.counselling-img-01 {
  padding-top: 40px;
}
.list-01--style-02 {
  margin-left: 14px;
}
/*/=== About Us ===/*/
.about-us-img-01 {
  overflow: hidden;
  -webkit-box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
  box-shadow: 0 22px 30px 0 rgba(15, 8, 49, 0.2);
  display: inline-block;
  vertical-align: middle;
}
.about-us-content-01 {
  padding-top: 2px;
  padding-left: 32px;
}
.about-us-content-01 .subtitle-01 {
  margin-top: 10px;
}
.about-us-text-01 p {
  font-size: 18px;
  line-height: 30px;
}
.owl-carousel-03 {
  padding: 0 28px;
  overflow: hidden;
}
.owl-carousel-03 .owl-prev {
  left: 21px;
}
.owl-carousel-03 .owl-prev::before {
  content: '\f104';
}
.owl-carousel-03 .owl-next {
  right: 21px;
}
.owl-carousel-03 .owl-next::before {
  content: '\f105';
}
.owl-carousel-03 .owl-prev, .owl-carousel-03 .owl-next {
  position: absolute;
  top: 50%;
  font-size: 0;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -100px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
}
.owl-carousel-03 .owl-prev::before, .owl-carousel-03 .owl-next::before {
  font-family: 'FontAwesome';
  color: #42474c;
  font-size: 24px;
  line-height: 45px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-carousel-03 .owl-prev:hover, .owl-carousel-03 .owl-next:hover {
  background-color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-carousel-03 .owl-prev:hover::before, .owl-carousel-03 .owl-next:hover::before {
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-treatments {
  text-align: center;
}
.owl-treatments__img {
  overflow: hidden;
  margin-bottom: 19px;
}
.owl-treatments__img a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.owl-treatments__img a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 29, 0);
  visibility: collapse;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-treatments__img a:hover::before {
  visibility: visible;
  background-color: rgba(4, 18, 29, 0.4);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-treatments__title {
  font-size: 24px;
  line-height: 26px;
  color: #42474c;
  margin: 0 0 19px;
}
.owl-treatments__title a {
  color: #42474c;
}
.owl-treatments__title a:hover {
  color: #4eaac8;
}
.owl-treatments__text {
  margin-bottom: 16px;
}
.owl-treatments__btn {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.owl-treatments__btn::after {
  font-family: 'FontAwesome';
  content: '\f105';
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-weight: 400;
  margin-left: 10px;
  margin-bottom: 2px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.owl-treatments__btn:hover {
  color: #c8c8c8;
}
.owl-treatments__btn:hover::after {
  color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.video-block-01 {
  padding: 0;
  background: url("../img/about_us/video_block.jpg") no-repeat top center;
  position: relative;
  text-align: center;
}
.video-block-01::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 29, 0.6);
}
.video-block-01__box {
  background: url("../img/about_us/about_us_02.png") no-repeat center center;
  width: 100%;
  max-width: 650px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.video-block-01__box-text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding: 205px 0;
  margin-bottom: 0;
}
.video-block-01__btn {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(78, 170, 200, 0.76);
  font-size: 0;
  text-align: center;
  margin: 0 17px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.video-block-01__btn::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/blog_icon_play.png");
  width: 20px;
  height: 20px;
  margin: 25px 0;
  margin-right: -6px;
}
.video-block-01__btn:hover {
  background-color: #4eaac8;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.video-block-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(4, 18, 29, 0.8);
  z-index: 100;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  cursor: pointer;
}
.video-block-bg.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.video-block-popup {
  display: none;
  vertical-align: middle;
  position: fixed;
  z-index: 120;
  top: 50%;
  left: 50%;
}
.video-block-video {
  position: relative;
}
.video-block-video__frame {
  width: 800px;
  height: 500px;
  border: none;
}
.video-block-close {
  position: absolute;
  top: -15px;
  right: -40px;
  width: 30px;
  height: 30px;
  background: url("../img/icons/close_icon.png");
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.video-block-close:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.about-us-text-02 {
  max-width: 850px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 87px;
}
.about-us-text-02 p {
  font-size: 18px;
  line-height: 30px;
}
.trust-us-01 {
  text-align: center;
}
.trust-us-01__img {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
}
.trust-us-01__title {
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 19px;
}
.gallery-about-box__item {
  float: left;
  width: 25%;
  position: relative;
  overflow: hidden;
}
.gallery-about-box__item:hover .gallery-about-box-img::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-about-box__item:hover .gallery-item__subtitle {
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-about-box__item:hover .gallery-item__title {
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-about-box__item:hover .gallery-item__btn-more {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gallery-about-box__item:hover .gallery-item__btn-link {
  bottom: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.gallery-about-box::after {
  content: '';
  display: table;
  clear: both;
}
.gallery-about-box-img {
  position: relative;
  overflow: hidden;
}
.gallery-about-box-img::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 29, 0.4);
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.gallery-about-box-img img {
  display: block;
  max-width: 100%;
  width: 100%;
}
/*/=== About me ===/*/
.about-me-cont {
  padding-top: 40px;
  text-align: left;
  margin-bottom: 60px;
}
.about-me-cont-02 {
  padding-top: 12px;
  text-align: center;
  margin-bottom: 60px;
}
.about-me-text-01 {
  margin-bottom: 25px;
}
.about-me-text-01 p {
  font-size: 18px;
  line-height: 30px;
}
.about-me-meta {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #42474c;
  margin-bottom: 21px;
}
.about-me-meta a {
  text-decoration: underline;
}
.about-me-phone {
  font-size: 18px;
  line-height: 20px;
  color: #acb2b7;
  font-weight: 400;
}
.about-me-phone span {
  font-size: 30px;
  line-height: 32px;
  color: #3d3272;
  font-weight: 700;
}
.about-me-author {
  text-align: center;
  padding-top: 33px;
}
.about-me-author__img {
  display: inline-block;
  vertical-align: middle;
  padding-right: 25px;
}
.about-me-author__text {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-left: 25px;
}
.about-me-author__text span {
  display: block;
}
.about-me-p-01 {
  margin-right: 9px;
}
.about-me-p-02 {
  margin-left: 9px;
}
.about-me-serv {
  margin-bottom: 37px;
}
.about-me-serv::after {
  content: '';
  display: table;
  clear: both;
}
.about-me-serv__icon {
  float: left;
  margin-bottom: 40px;
  margin-right: 32px;
  margin-top: 3px;
  min-width: 50px;
}
.about-me-serv__title {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  margin: 0 0 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-me-serv__text {
  font-size: 14px;
  line-height: 24px;
}
.about-me-text-02 {
  max-width: 830px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 37px;
}
.about-me-text-02 p {
  font-size: 18px;
  line-height: 30px;
}
.education-block-01 {
  text-align: center;
  padding-bottom: 50px;
}
.education-block-01::after {
  content: '';
  display: table;
  clear: both;
}
.education-block-01:last-child {
  padding-bottom: 0;
}
.education-block-01:last-child .education-block__box-02::before {
  display: none;
}
.education-block-01:last-child .education-block__box-04::before {
  display: none;
}
.education-block-02 {
  text-align: center;
  padding-bottom: 24px;
}
.education-block-02::after {
  content: '';
  display: table;
  clear: both;
}
.education-block-02:last-child {
  padding-bottom: 0;
}
.education-block-02:last-child .education-block__box-02::before {
  display: none;
}
.education-block-02:last-child .education-block__box-04::before {
  display: none;
}
.education-block__box-01 {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  padding-right: 29px;
  padding-top: 7px;
  max-width: 320px;
  position: relative;
}
.education-block__box-01::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 9px;
  right: -9px;
  width: 20px;
  height: 20px;
  background: rgba(131, 195, 216, 0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
.education-block__box-01::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #83c3d8;
  position: absolute;
  top: 13px;
  right: -5px;
  z-index: 2;
}
.education-block__box-02 {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 26px;
  max-width: 320px;
  position: relative;
}
.education-block__box-02::before {
  content: '';
  width: 1px;
  position: absolute;
  top: 19px;
  left: -4px;
  bottom: -65px;
  background-color: #dde0e2;
}
.education-block__box-03 {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  padding-right: 27px;
  max-width: 321px;
  position: relative;
}
.education-block__box-03::before {
  content: '';
  width: 1px;
  position: absolute;
  top: 19px;
  right: 1px;
  bottom: -45px;
  background-color: #dde0e2;
}
.education-block__box-04 {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 26px;
  max-width: 320px;
  position: relative;
  padding-top: 6px;
}
.education-block__box-04::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 9px;
  left: -13px;
  width: 20px;
  height: 20px;
  background: rgba(131, 195, 216, 0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
.education-block__box-04::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #83c3d8;
  position: absolute;
  top: 13px;
  left: -9px;
  z-index: 2;
}
.education-block-date {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #83c3d8;
  letter-spacing: 0.5px;
}
.education-block-title {
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  margin: 0 0 9px;
}
/*/=== Appointment ===/*/
.appointment-box__header {
  text-align: center;
  background-color: #4eaac8;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  padding: 30px 0;
  margin-right: 1px;
}
.appointment-box__header::after {
  content: '';
  display: table;
  clear: both;
}
.appointment-btn-prev, .appointment-btn-next {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 0;
  border: 1px solid #fff;
}
.appointment-btn-prev::before, .appointment-btn-next::before {
  font-family: 'FontAwesome';
  font-size: 22px;
  line-height: 37px;
  color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.appointment-btn-prev:hover, .appointment-btn-next:hover {
  background-color: #fff;
}
.appointment-btn-prev:hover::before, .appointment-btn-next:hover::before {
  color: #303638;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.appointment-btn-prev::before {
  content: '\f104';
}
.appointment-btn-next::before {
  content: '\f105';
}
.appointment-in {
  font-size: 30px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
}
.app-box-01 {
  width: 33%;
  float: left;
}
.app-box-02 {
  width: 33%;
  float: left;
}
.app-box-03 {
  width: 33%;
  float: left;
}
.appointment-box__table {
  width: 100%;
  table-layout: fixed;
}
.appointment-box__table th {
  font-size: 16px;
  line-height: 18px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background-color: #3d3272;
  font-weight: normal;
  padding: 10px;
}
.appointment-box__table td {
  text-align: center;
  border: 1px solid #d9e0e4;
  height: 167px;
  font-size: 24px;
  line-height: 26px;
  color: rgba(92, 101, 109, 0.3);
  background-color: #fcfdfd;
}
.appointment-box__table .ap-01 {
  background-color: #fff;
}
.appointment-box__table .ap-02 {
  background-color: #f6f8f9;
  border-bottom: 1px solid #f6f8f9;
}
.appointment-box__table .ap-03 {
  background-color: #fff;
  color: #42474c;
}
.appointment-box__table .ap-04 {
  background-color: #f6f8f9;
  height: auto;
  padding: 44px 10px 51px;
  color: #42474c;
  text-align: center;
}
.ap-01-cont__01 {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #51acc9;
  line-height: 60px;
  color: #42474c;
  text-align: center;
}
.ap-01-cont__02 {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  line-height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  background-color: #51acc9;
  position: relative;
}
.ap-02-cont__01 {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  line-height: 60px;
  color: #42474c;
}
.ap-tooltip {
  position: absolute;
  top: -42px;
  left: 50%;
  margin-left: -39px;
  display: inline-block;
  vertical-align: middle;
  background-color: #f6f8f9;
  width: 80px;
  border: 1px solid #d9e0e4;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 5px 4px;
  line-height: 15px;
}
.ap-tooltip::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -9px;
  border-top: 9px solid #e3e8eb;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
}
.ap-tooltip::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -9px;
  border-top: 9px solid #f6f8f9;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
}
.ap-tooltip-text {
  font-size: 13px;
  line-height: 15px;
  display: inline-block;
  vertical-align: middle;
  color: #5c656d;
  font-weight: 400;
}
.ap-04-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  margin-bottom: 40px;
}
.available-appoinment {
  max-width: 970px;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.available-appoinment:last-child .available-appoinment-row {
  border-bottom: none;
}
.available-appoinment-row {
  padding: 18px 20px 21px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border-bottom: 1px solid #d9e0e4;
}
.available-appoinment-row::after {
  content: '';
  display: table;
  clear: both;
}
.available-appoinment-row:hover {
  background-color: #fff;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.available-appoinment-box-01 {
  width: 50%;
  float: left;
  text-align: left;
  padding-top: 2px;
}
.available-appoinment-box-02 {
  width: 50%;
  float: left;
  text-align: right;
}
.available-appoinment-time {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  font-weight: 700;
  display: block;
  padding-left: 22px;
  position: relative;
  margin-bottom: 5px;
}
.available-appoinment-time::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  left: 0;
  background: url("../img/icons/clock_icon.png");
  width: 14px;
  height: 14px;
}
.available-appoinment-text {
  font-size: 12px;
  line-height: 14px;
  color: #5c656d;
  font-weight: 300;
  display: block;
  padding-left: 22px;
}
.available-appoinment-btn {
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 13px 23px;
  letter-spacing: 0.5px;
}
.available-appoinment-btn:focus {
  background-color: #3d3272;
  color: #fff;
}
.available-appoinment-btn:active {
  background-color: #3d3272;
  color: #fff;
}
.available-appoinment-btn:hover {
  background-color: #3d3272;
  color: #fff;
}
.appointment-popup-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 100;
  visibility: collapse;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.appointment-popup-body.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
  cursor: pointer;
}
.appointment-popup {
  display: none;
  background-color: #fafbfc;
  width: 430px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  min-height: 620px;
}
.appointment-popup__header {
  background-color: #3d3272;
  position: relative;
  padding: 18px 28px 20px;
}
.appointment-popup-title {
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  font-weight: 300;
  margin: 0;
}
.appointment-popup-title span {
  font-weight: 700;
}
.appointment-popup-close {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/close_icon_02.png");
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.appointment-popup-close:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.appointment-popup-form input[type="radio"] {
  display: none;
}
.appointment-popup-form input[type="radio"] + label {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  color: #5c656d;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 11px;
}
.appointment-popup-form input[type="radio"] + label::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #eaebec;
}
.appointment-popup-form input[type="radio"]:checked + label::after {
  content: '';
  width: 7px;
  height: 7px;
  background: #4eaac8;
  position: absolute;
  top: 5px;
  left: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.appointment-popup-form input[type="radio"] {
  display: none;
}
.appointment-popup-form input[type="radio"] + label {
  padding-left: 30px;
  margin-bottom: 9px;
  cursor: pointer;
}
.appointment-popup-form input[type="radio"] + label:last-child {
  margin-bottom: 0;
}
.appointment-popup-form__box-01 {
  padding: 28px 20px 18px;
  text-align: center;
  border-bottom: 1px solid #e9edf0;
}
.appointment-popup-form__box-02 {
  padding: 25px 31px 20px;
}
.appointment-text-01 {
  margin-bottom: 24px;
}
.appointment-text-02 {
  font-size: 16px;
  line-height: 18px;
  color: #42474c;
  font-weight: 700;
  margin-bottom: 13px;
  margin-top: 0;
}
.appointment-text-02 span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.appointment-text-02 span::before {
  content: '*';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  color: #fe3f4c;
  top: 0;
  right: -10px;
}
.appointment-text-03 {
  margin-bottom: 24px;
}
.appointment-calendar {
  border: 1px solid #e2e5e7;
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 16px 20px 14px;
  margin-bottom: 35px;
}
.appointment-calendar__title {
  font-size: 14px;
  line-height: 16px;
  color: #4eaac8;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.appointment-calendar__in {
  font-size: 14px;
  line-height: 16px;
  color: #42474c;
  padding-left: 23px;
  font-weight: 400;
  position: relative;
}
.appointment-calendar__in::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icons/calendar_icon.png");
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.appointment-input {
  border: 1px solid #e2e5e7;
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  padding: 10px 17px;
}
 .appointment-input::-webkit-input-placeholder {
opacity: 1;
color: #5c656d;
}
 .appointment-input::-moz-placeholder {
opacity: 1;
color: #5c656d;
}
 .appointment-input:-ms-input-placeholder {
opacity: 1;
color: #5c656d;
}
 .appointment-input:-ms-input-placeholder {
opacity: 1;
color: #5c656d;
}
.appointment-input-wrapp::after {
  content: '';
  display: table;
  clear: both;
}
.appointment-input-box-01, .appointment-input-box-02 {
  width: 50%;
  float: left;
  padding-top: 10px;
  margin-bottom: 10px;
}
.appointment-input-box-01 {
  padding-right: 5px;
}
.appointment-input-box-02 {
  padding-left: 5px;
}
.appointment-btn-01 {
  font-size: 11px;
  line-height: 12px;
  font-weight: 700;
  background-color: #4eaac8;
  border: none;
  color: #fff;
  padding: 14px 20px;
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 7px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-bottom: 10px;
}
.appointment-btn-01:hover {
  color: #fff;
  background-color: #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.appointment-btn-02 {
  font-size: 11px;
  line-height: 13px;
  color: #42474c;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #4eaac8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 12px 20px;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-bottom: 10px;
}
.appointment-btn-02:hover {
  color: #fff;
  background-color: #3d3272;
  border: 1px solid #3d3272;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
/*============================================
//  Footer:
*/
.wrapp-footer {
  background-color: #e8e8e8;
  padding-top: 60px;
}
.wrapp-footer .social-list-01 {
  padding-top: 31px;
}
.wrapp-footer .widget-text {
  max-width: 290px;
}
.wrapp-footer .widget-title {
  font-size: 12px;
  line-height: 14px;
  color: #42474c;
  margin: 20px 0 24px;
  text-transform: uppercase;
  font-weight: 700;
}
.wrapp-footer .widget-latest-news__list li {
  margin-bottom: 26px;
}
.wrapp-footer .widget-latest-news {
  margin-bottom: 0;
}
.copy-footer-01 {
  background-color: #f0f3f4;
}
.copy-footer-01__text {
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  color: #42474c;
  padding: 23px 0;
  margin: 0;
}
.footer-logo {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 25px;
}
.footer-logo img {
  max-width: 100%;
}
.footer-box-01 {
  padding-bottom: 17px;
}
/*// Social list //*/
.social-list-01 {
  padding: 0;
  margin: 0;
}
.social-list-01 li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
.social-list-01 li:last-child {
  margin-right: 0;
}
.social-list-01 li a {
  font-size: 25px;
  color: #c2c6c9;
  display: inline-block;
  vertical-align: middle;
}
.social-list-01 li a:hover {
  color: #4eaac8;
}
/*============================================
//  Indents:
*/
.pad-top-27 {
  padding-top: 27px;
}
.pad-top-38 {
  padding-top: 38px;
}
.pad-top-40 {
  padding-top: 40px;
}
.pad-top-50 {
  padding-top: 50px;
}
.pad-top-57 {
  padding-top: 57px;
}
.pad-top-60 {
  padding-top: 60px;
}
.pad-top-64 {
  padding-top: 64px;
}
.pad-top-70 {
  padding-top: 70px;
}
.pad-top-72 {
  padding-top: 72px;
}
.pad-top-75 {
  padding-top: 75px;
}
.pad-top-78 {
  padding-top: 78px;
}
.pad-top-80 {
  padding-top: 80px;
}
.pad-top-81 {
  padding-top: 81px;
}
.pad-top-85 {
  padding-top: 85px;
}
.pad-top-87 {
  padding-top: 87px;
}
.pad-top-90 {
  padding-top: 90px;
}
.pad-top-95 {
  padding-top: 95px;
}
.pad-top-100 {
  padding-top: 100px;
}
.pad-bt-0 {
  padding-bottom: 0;
}
.pad-bt-20 {
  padding-bottom: 20px;
}
.pad-bt-23 {
  padding-bottom: 23px;
}
.pad-bt-26 {
  padding-bottom: 26px;
}
.pad-bt-35 {
  padding-bottom: 35px;
}
.pad-bt-40 {
  padding-bottom: 40px;
}
.pad-bt-50 {
  padding-bottom: 50px;
}
.pad-bt-57 {
  padding-bottom: 57px;
}
.pad-bt-60 {
  padding-bottom: 60px;
}
.pad-bt-70 {
  padding-bottom: 70px;
}
.pad-bt-75 {
  padding-bottom: 75px;
}
.pad-bt-78 {
  padding-bottom: 78px;
}
.pad-bt-80 {
  padding-bottom: 80px;
}
.pad-bt-85 {
  padding-bottom: 85px;
}
.pad-bt-90 {
  padding-bottom: 90px;
}
.pad-bt-95 {
  padding-bottom: 95px;
}
.pad-bt-100 {
  padding-bottom: 100px;
}
.pad-bt-110 {
  padding-bottom: 110px;
}
.pad-bt-113 {
  padding-bottom: 113px;
}
.pad-bt-147 {
  padding-bottom: 147px;
}
.mar-top-10 {
  margin-top: 10px;
}
.mar-top-20 {
  margin-top: 20px;
}
.mar-top-26 {
  margin-top: 26px;
}
.mar-top-28 {
  margin-top: 28px;
}
.mar-top-30 {
  margin-top: 30px;
}
.mar-top-38 {
  margin-top: 38px;
}
.mar-top-42 {
  margin-top: 42px;
}
.mar-top-83 {
  margin-top: 83px;
}
.mar-top-93 {
  margin-top: 93px;
}
.mar-bt-15 {
  margin-bottom: 15px;
}
.mar-bt-18 {
  margin-bottom: 18px;
}
.mar-bt-21 {
  margin-bottom: 21px;
}
.mar-bt-27 {
  margin-bottom: 27px;
}
.mar-bt-32 {
  margin-bottom: 32px;
}
.mar-bt-35 {
  margin-bottom: 35px;
}
.mar-bt-50 {
  margin-bottom: 50px;
}
.overflow-01 {
  overflow-x: hidden;
}

/*============================================
//  Responsive:
*/
@media only screen and (max-width:1199px) {
/*/ Header content /*/
.free-consultation-link {
  margin-left: 20px;
}
.email-info {
  margin-left: 20px;
}
/*// Page: Shortcodes //*/
.progress-circle-wrapp .progress-circle-item-01 {
  margin-right: 30px;
}
.acc--01 {
  margin-left: 0;
}
.togg-01 {
  margin-left: 0;
}
.tabs-horizontal-01 .tabs__caption li {
  max-width: 140px;
}
.service-box-01 {
  height: 230px;
}
.service-box-01__back {
  height: 230px;
}
.service-box-01__front {
  height: 230px;
}
.service-box-01__title {
  font-size: 30px;
}
.action-box-01__title {
  font-size: 30px;
}
.action-box-01__subtitle {
  font-size: 12px;
}
/*// Page: Blog Listing //*/
.blog-listing.right {
  max-width: 600px;
}
.blog-listing.left {
  max-width: 600px;
}
.featured-post-01__content {
  padding: 20px 20px 30px;
}
.user-info {
  padding: 30px 20px;
}
.user-info-tbl__col:last-child {
  padding-left: 20px;
}
.circle--02 .progress-circle-item-01 {
  margin-left: 0;
  margin-right: 6px;
}
.faq-content-02__wrapp {
  max-width: 480px;
}
.countdown-amount {
  font-size: 90px;
  line-height: 90px;
}
.shop-listing-item {
  max-width: 212px;
}
.shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: -45px;
}
.shop-item__related-list .shop-listing-item {
  max-width: 212px;
}
.shop-item__related-list .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: -45px;
}
.shop-listing--home .shop-listing-item {
  max-width: 290px;
}
.shop-listing--home .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: -25px;
}
.shop-item__slider-wrapp {
  max-width: 275px;
}
.shop-item__info {
  max-width: 420px;
  padding-left: 15px;
}
.widget-popular-products__img {
  margin-right: 15px;
}
.team-sort {
  width: 100%;
  text-align: center;
  float: none;
  margin-top: 50px;
}
.subtitle-06 {
  margin-top: 0;
}
.counter-01 .shortcode-counter {
  padding-right: 30px;
}
.mar-md-top-0 {
  margin-top: 0;
}
.serv-img-01 {
  margin-top: 50px;
  text-align: center;
}
.serv-img-01 img {
  display: inline-block;
  vertical-align: middle;
}
.single-service {
  max-width: 600px;
}
.single-service .shop-item__related-list .shop-listing-item {
  max-width: 180px;
}
.single-service .shop-item__related-list .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: -45px;
}
.counselling-img-02 {
  position: relative;
  text-align: center;
  padding-top: 50px;
  z-index: 1;
}
.counselling-img-02::before {
  content: '';
  background-color: #eceff1;
  width: 1000%;
  height: 100%;
  margin-left: -100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.counselling-img-02 img {
  display: inline-block;
  vertical-align: middle;
}
.list-01--style-02 {
  margin-bottom: 80px;
}
.pad-md-top-0 {
  padding-top: 0;
}
.about-me-img {
  text-align: center;
}
.about-me-img img {
  display: inline-block;
  vertical-align: middle;
}
.appointment-box__table td {
  height: 130px;
}
.banners-box-01-title {
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.banners-box-01-text p {
  font-size: 16px;
  line-height: 24px;
}
.banners-box-01__content {
  padding-left: 20px;
  padding-right: 20px;
}
.banners-promo-01, .banners-promo-02, .banners-promo-03 {
  padding: 56px 40px 68px;
}
.align-left {
  margin-right: 40px;
}
.partners-box-01 a {
  height: 50px;
}
.team-member-wrapp {
  padding-left: 0;
}
}

@media only screen and (max-width:991px) {
/*/ Header content /*/
.visit-time {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.info-block-01__box-01 {
  float: none;
  width: 100%;
  text-align: center;
}
.phone-info {
  font-size: 25px;
}
.btn-app {
  margin-top: 0;
  padding: 17px 10px;
}
/*/ Main navigation /*/
.main-nav__list > li {
  margin: 0 30px 0 0;
}
.main-nav__list li ul {
  width: 200px;
}
/*// Page: Shortcodes //*/
.partners-box-01 a {
  height: 30px;
}
.progress-circle-wrapp .progress-circle-item-01 {
  margin-right: 10px;
}
.progress-circle-item-02 {
  margin-bottom: 40px;
}
.progress-circle-02 {
  width: 150px;
  height: 150px;
}
.progress-circle-02__text {
  font-size: 12px;
  line-height: 14px;
  bottom: 55px;
}
.featured-post-01__content {
  padding: 20px 20px 45px;
}
.featured-post-01__content-title {
  font-size: 18px;
  line-height: 26px;
}
.action-box-01__wrapp {
  width: 60%;
}
.action-box-01__btn-wrapp {
  width: 40%;
}
.service-box-01 {
  height: 175px;
  max-width: 290px;
  display: inline-block;
  vertical-align: middle;
}
.service-box-01__wrapp {
  height: 175px;
}
.service-box-01__front {
  height: 175px;
}
.service-box-01__back {
  height: 175px;
}
.service-box-01__back td span {
  font-size: 16px;
  line-height: 28px;
}
.service-box-01__title {
  font-size: 23px;
}
.service-box-01__title::before {
  font-size: 100px;
}
/*// Page: Blog Listing //*/
.blog-listing.right {
  max-width: 420px;
}
.blog-listing.left {
  max-width: 420px;
}
.blog-listing-sidebar {
  width: 300px;
}
.owl-theme-02__autor-img {
  margin-right: 10px;
}
.img-align-left {
  width: 100%;
  margin-right: 0;
}
.blog-listing.single-post .list-03 {
  margin-bottom: 0;
}
.blog-listing.single-post.fullwidth .img-align-left {
  margin-right: 29px;
  width: inherit;
}
.circle--02 {
  text-align: center;
  padding-top: 30px;
}
.contacts-map-wrapp #map-canvas {
  height: 400px;
}
.countdown-amount {
  font-size: 60px;
  line-height: 60px;
}
.countdown-section {
  padding: 16px 10px;
  text-align: center;
  width: 18%;
}
.countdown-section::before {
  right: -20px;
}
.countdown-period {
  right: 0;
  text-align: center;
}
.coming-soon__box {
  padding: 150px 0 150px;
}
.coming-soon__title {
  margin-bottom: 60px;
}
.countdown-wrapper {
  margin-bottom: 60px;
}
.shop-listing-item {
  max-width: 143px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: 0;
}
.shop-listing-item__btn-wrapp {
  position: static;
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}
.shop-listing--home .shop-listing-item {
  max-width: 225px;
}
.shop-listing--home .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: 0;
}
.learn-more-btn {
  background-color: #4eaac8;
  color: #fff;
  padding: 10px 15px;
}
.add-to-cart-btn {
  padding: 10px 15px;
}
.shop-listing-item__img a::before {
  display: none;
}
.shop-listing-item__img a img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-listing-item__img a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.shop-btn-sort {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.shop-filter {
  margin-right: 15px;
}
.shop-filter__form-label {
  padding: 10px;
}
.shop-btn-sort {
  margin: 10px 0;
}
.shop-filter__form-sel-01 {
  width: 92px;
}
.shop-filter__form-sel-02 {
  width: 50px;
}
.shop-listing-item__price {
  margin-bottom: 15px;
}
.shop-item__slider-wrapp {
  max-width: none;
  text-align: center;
  margin-bottom: 60px;
}
.shop-item__info {
  padding-left: 0;
  max-width: none;
}
.shop-item__slider li a {
  display: block;
}
.shop-item__slider li a img {
  width: 100%;
}
.shop-item__carousel {
  text-align: center;
}
.shop-listing-item__btn-wrapp {
  visibility: visible;
  opacity: 1;
}
.shop-item__related-list .shop-listing-item {
  margin-right: 20px;
  max-width: 140px;
}
.shop-item__related-list .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: 0;
}
.gallery-sizer, .gallery-item {
  width: 50%;
}
.single-service {
  max-width: 420px;
}
.single-service .shop-item__related-list .shop-listing-item {
  max-width: 125px;
}
.single-service .shop-item__related-list .shop-listing-item:hover .shop-listing-item__btn-wrapp {
  margin-top: 0;
}
.single-service-sidebar {
  max-width: 300px;
}
.single-service-in__img {
  margin-right: 0;
  width: 100%;
  margin-bottom: 30px;
}
.single-service-in__img img {
  width: 100%;
}
.about-us-content-01 {
  padding: 0;
}
.about-us-img-01 {
  margin-bottom: 60px;
}
.about-us-img-01 img {
  width: 100%;
}
.owl-carousel-03 .owl-prev, .owl-carousel-03 .owl-next {
  margin-top: -130px;
}
.about-me-img {
  margin-bottom: 20px;
}
.subtitle-07 {
  margin-bottom: 20px;
}
.title-06 {
  font-size: 55px;
  line-height: 68px;
}
.why-choose-me-box {
  margin-bottom: 60px;
}
.icon-boxes-04 {
  padding: 0 30px;
}
.icon-boxes-in {
  display: block;
  width: 100%;
}
.img-wrapp-01 {
  position: relative;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 40px;
  z-index: 1;
}
.img-wrapp-01::before {
  content: '';
  background-color: #fff;
  width: 1000%;
  height: 100%;
  margin-left: -100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.img-wrapp-01 img {
  display: inline-block;
  vertical-align: middle;
}
.banners-promo-01, .banners-promo-02, .banners-promo-03 {
  display: block;
}
.icon-boxes-02--right {
  text-align: left;
}
.icon-boxes-02--right .icon-boxes-02__icon {
  float: left;
  margin-left: 0;
  margin-right: 30px;
}
.icon-boxes-02--right:first-child {
  padding-top: 50px;
}
.align-left {
  margin-right: 0;
  float: none;
  margin-bottom: 20px;
  text-align: center;
}
.align-left img {
  display: inline-block;
  vertical-align: middle;
}
.widget-price-filter {
  padding: 15px;
}
.shop-listing-item__img-wrapp {
  margin-bottom: 15px;
}
.chart-wrapp {
  padding-top: 50px;
}
.video-block-popup {
  margin-left: -300px !important;
}
.video-block-video__frame {
  width: 600px;
  height: 400px;
}
}

@media only screen and (max-width:980px) {
.banners-wrapp-cont {
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}
.banners-box-01 {
  width: 60%;
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}
}

@media only screen and (max-width:767px) {
/*/ Header content /*/
.logo {
  margin-bottom: 30px;
}
.header-box-03 {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}
.btn-app {
  margin: 0 10px;
}
.shopping-cart__dropdown {
  right: -105px;
}
/*/ Main navigation /*/
.main-nav {
  text-align: center;
  padding-top: 17px;
}
.main-nav__btn {
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}
.main-nav__list {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin: 0;
}
.main-nav__list li {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #eceff1;
}
.main-nav__list li:first-child {
  padding-top: 0;
}
.main-nav__list li:last-child {
  border-bottom: none;
}
.main-nav__list li ul {
  position: static;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding-right: 0;
  border: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.main-nav__list li ul li {
  padding-bottom: 15px;
  margin-bottom: 13px;
}
.main-nav__list li ul li:last-child {
  padding-bottom: 4px;
}
.main-nav__list li ul li > .sf-with-ul {
  padding-left: 0;
  padding-top: 0;
}
.main-nav__list li ul li ul {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 23px;
}
.main-nav__list li ul li ul li:last-child {
  padding-bottom: 0;
}
.main-nav__list.open {
  max-height: 7000px;
  margin-bottom: 25px;
}
/*// Page: Shortcodes //*/
ol {
  margin-bottom: 30px;
}
.list-01, .list-02 {
  margin-bottom: 30px;
}
.acc--01 {
  margin-left: 0;
}
.progress-circle-wrapp {
  text-align: center;
}
.stat-count-wrapper {
  margin-bottom: 50px;
}
.team-item-01 {
  margin-bottom: 40px;
}
.message-box-02, .message-box-03 {
  margin-bottom: 20px;
}
.featured-post-01 {
  max-width: 370px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 40px;
  text-align: left;
}
.partners-box-01 {
  padding-left: 10px;
  padding-right: 10px;
}
/*// Page: Blog Listing //*/
.blog-listing.right {
  max-width: none;
}
.blog-listing.left {
  max-width: none;
}
.blog-listing-sidebar {
  width: 100%;
  max-width: none;
}
.blog-listing-sidebar.right {
  padding-left: 0;
}
.blog-listing-sidebar.left {
  padding-right: 0;
}
.blog-listing-sidebar .widget-testimonials {
  padding: 20px 19px 25px;
}
.img-align-left {
  width: auto;
  margin-right: 29px;
}
.single-post__featured-box {
  text-align: center;
}
.faq-content-02 {
  width: 100%;
}
.faq-content-02__wrapp {
  max-width: none;
  padding-top: 100px;
  padding-bottom: 80px;
}
.faq-content-03 {
  width: 100%;
}
.faq-content-03 #map-canvas {
  height: 400px;
}
.shop-listing-item {
  width: 31%;
  max-width: none;
}
.add-to-cart-btn {
  padding: 10px 12px;
}
.learn-more-btn {
  padding: 10px 12px;
}
.shop-btn-sort {
  float: right;
}
.shop-item__slider {
  max-width: 400px;
  display: inline-block;
  vertical-align: top;
}
.shop-item__related-list {
  text-align: center;
}
.shop-item__related-list .shop-listing-item {
  max-width: none;
  width: 31%;
  text-align: left;
}
.team-item-box__img {
  text-align: center;
}
.team-img-wrapper {
  margin-bottom: 60px;
}
.team-img-wrapper img {
  width: 100%;
}
.team-member-img {
  margin-bottom: 40px;
}
.gallery-sort-item {
  margin: 9px;
}
.single-service {
  max-width: none;
  margin-bottom: 60px;
}
.single-service .shop-item__related-list .shop-listing-item {
  width: 31%;
  max-width: none;
}
.single-service-in__img {
  width: auto;
  margin-right: 30px;
}
.single-service-in__img img {
  width: auto;
}
.single-service-sidebar {
  max-width: none;
}
.single-service-sidebar.right {
  padding-left: 0;
}
.counselling-img-01 {
  padding-top: 60px;
}
.video-block-01__box-text {
  padding: 100px 0;
}
.gallery-about-box__item {
  width: 50%;
}
.owl-carousel-03 .owl-prev, .owl-carousel-03 .owl-next {
  margin-top: -100px;
}
.trust-us-01 {
  margin-bottom: 70px;
}
.education-block__box-01, .education-block__box-02, .education-block__box-03, .education-block__box-04 {
  width: 50%;
  float: left;
}
.education-block__box-01::before {
  right: -11px;
}
.education-block__box-01::after {
  right: -7px;
}
.education-block__box-02::before {
  left: 0;
}
.education-block__box-03::before {
  right: -1px;
}
.education-block__box-04::before {
  left: -10px;
}
.education-block__box-04::after {
  left: -6px;
}
.appointment-box-wrapp {
  max-width: 767px;
  width: 100%;
  overflow: auto;
}
.appointment-box {
  width: 766px;
}
.banners-box-01 {
  width: 100%;
}
.home-bg-wrapp {
  margin-bottom: 60px;
}
.align-left {
  float: left;
  margin-right: 20px;
}
.about-us-img-01 {
  width: 100%;
  text-align: center;
}
.img-box-02 {
  padding: 90px 0;
}
.video-block-popup {
  margin-left: -190px !important;
}
.video-block-video__frame {
  width: 380px;
  height: 300px;
}
.sticky-wrapper {
  height: auto !important;
}
.sticky-wrapper .header-box-02 {
  position: static !important;
}
}

@media only screen and (max-width:640px) {
/*/ Header content /*/
.info-block-01 {
  padding-top: 14px;
  padding-bottom: 5px;
}
.visit-time {
  margin-top: 0;
  margin-bottom: 14px;
}
.address-info, .email-info, .free-consultation-link {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0;
}
/*// Page: Shortcodes //*/
.progress-circle-wrapp .progress-circle-item-01 {
  margin-right: 5px;
}
.counter-01 .shortcode-counter {
  padding-right: 25px;
}
.owl-theme-01__item-text p {
  font-size: 20px;
  line-height: 30px;
}
.action-box-01__wrapp {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.action-box-01__wrapp .action-box-01__title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.action-box-01__btn-wrapp {
  width: 100%;
  text-align: center;
}
.partners-box-01 {
  width: 50%;
  border: none;
}
.partners-box-01 a {
  height: 50px;
}
.img-align-left {
  width: 100%;
  margin-right: 0;
}
.blog-listing.single-post.fullwidth .img-align-left {
  width: 100%;
  margin-right: 0;
}
.countdown-amount {
  font-size: 40px;
}
.countdown-section {
  padding: 16px 0;
  width: 15%;
}
.countdown-section::before {
  display: none;
}
.countdown-period {
  font-size: 12px;
  line-height: 16px;
}
.shop-listing-item {
  width: 30.3%;
  max-width: none;
}
.sort-box {
  padding: 10px;
}
.shop-filter {
  margin-right: 10px;
}
.shop-item__related-list .shop-listing-item {
  width: 30%;
}
.shop-cart {
  width: 620px;
}
.shop-cart-wrapp {
  overflow: auto;
}
.shop-cart-coupon__btn {
  padding: 16px;
}
.shop-cart-coupon__text {
  max-width: 165px;
}
.team-sort .sort-item {
  margin: 5px 10px;
}
.single-service .shop-item__related-list .shop-listing-item {
  width: 30%;
}
.img-box-01 {
  padding: 130px 0;
}
.title-06 {
  font-size: 35px;
  line-height: 50px;
}
.icon-boxes-04 {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  margin-bottom: 30px;
}
.icon-boxes-04:first-child {
  padding: 0;
}
}

@media only screen and (max-width:480px) {
/*/ Header content /*/
.search-box__dropdown {
  right: -77px;
}
/*// Page: Shortcodes //*/
.acc-theme-01 .accordion-01__title {
  padding: 16px 35px 16px 20px;
  font-size: 16px;
}
.acc-theme-01 .accordion-01__title::before {
  right: 15px;
}
.acc-theme-02 .accordion-01__title {
  padding: 16px 35px 16px 20px;
  font-size: 16px;
}
.acc-theme-02 .accordion-01__title::before {
  right: 15px;
}
.toggle-theme-01__title {
  padding: 16px 35px 16px 20px;
  font-size: 16px;
}
.toggle-theme-01__title::before {
  right: 15px;
}
.toggle-theme-02__title {
  padding: 16px 35px 16px 20px;
  font-size: 16px;
}
.toggle-theme-02__title::before {
  right: 15px;
}
.progress-circle-wrapp .progress-circle-item-01 {
  width: 100%;
  margin-right: 0;
}
.counter-01 .shortcode-counter {
  padding-right: 0;
  width: 100%;
  text-align: center;
}
.tabs-horizontal-01 {
  margin-bottom: 80px;
}
.tabs-horizontal-01 .tabs__caption li {
  max-width: none;
  margin-right: 0;
  margin-bottom: 5px;
}
.tabs-vertical-01 .tabs__caption {
  width: 100%;
  margin-bottom: 30px;
}
.tabs-vertical-01 .tabs__caption li {
  max-width: none;
}
.tabs-vertical-01 .tabs__content {
  padding-left: 0;
  width: 100%;
}
.message-box-01, .message-box-02, .message-box-03, .message-box-04 {
  padding-left: 50px;
  padding-right: 40px;
}
.message-box-01::before, .message-box-02::before, .message-box-03::before, .message-box-04::before {
  left: 20px;
}
.message-box-close {
  right: 18px;
}
.owl-theme-01__item-text p {
  font-size: 18px;
  line-height: 26px;
}
.partners-box-01 {
  width: 100%;
}
.partners-box-01 a {
  height: 60px;
}
/*// Page: 404 //*/
.page-404-wrapp {
  padding-top: 60px;
}
.page-404-title {
  font-size: 167px;
  margin-top: 0;
}
.page-404-subtitle {
  font-size: 25px;
  line-height: 28px;
}
.page-404-text {
  line-height: 26px;
}
.user-info-tbl {
  display: block;
}
.user-info-tbl__row {
  display: block;
  width: 100%;
}
.user-info-tbl__col {
  display: block;
  padding: 0;
  width: 100%;
}
.user-info-tbl__col:first-child {
  width: auto;
  padding-bottom: 30px;
  text-align: center;
}
.user-info-tbl__col:last-child {
  padding: 0;
}
.post-width-img {
  padding: 20px;
}
.blockquote-post {
  padding: 20px;
}
.music-post {
  padding: 20px;
}
.link-post {
  padding: 20px;
}
.blog-post__title {
  line-height: 36px;
}
.reply-box__child {
  padding-left: 20px;
}
.reply-box__comments-box-01, .reply-box__comments-box-02 {
  width: 100%;
  padding: 0;
}
.faq-content-02__wrapp {
  padding-top: 70px;
  padding-bottom: 70px;
}
.faq-content-02__email {
  font-size: 21px;
}
.faq-content-02__email::before {
  top: 6px;
}
.faq-content-02__location::before {
  top: 5px;
}
.reply-box__re-btn {
  position: static;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
}
.reply-box__user {
  padding: 0;
}
.reply-form__box-01 {
  width: 100%;
  padding-right: 0;
}
.reply-form__box-02 {
  padding-left: 0;
  width: 100%;
}
.contact-mail {
  padding-left: 30px;
  font-size: 21px;
}
.countdown-section {
  width: 30%;
}
.countdown-amount {
  font-size: 52px;
}
.coming-soon__box {
  padding: 120px 0 120px;
}
.shop-listing-item {
  width: 100%;
  margin-right: 0;
  max-width: 270px;
  margin-bottom: 40px;
}
.shop-filter {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}
.shop-filter__form-label {
  width: 100%;
}
.shop-btn-sort {
  float: none;
}
.sort-box {
  text-align: center;
}
.shop-filter__form-sel-01, .shop-filter__form-sel-02 {
  width: 120px;
}
.shop-item__su-text {
  display: inline-block;
  vertical-align: middle;
  float: none;
  padding-right: 10px;
  margin: 10px 0;
  text-align: center;
}
.shop-item__su {
  text-align: center;
}
.shop-item__su-btn {
  float: none;
  display: inline-block;
  vertical-align: middle;
}
.rate-it-form__box-01, .rate-it-form__box-02 {
  width: 100%;
  padding: 0;
}
.shop-item__related-list .shop-listing-item {
  width: 100%;
  max-width: 270px;
  margin-right: 0;
  margin-bottom: 40px;
  text-align: left;
}
.shop-item__related-list .shop-listing-item:last-child {
  margin-bottom: 0;
}
.shop-listing--home .shop-listing-item {
  max-width: 270px;
}
.shop-cart-coupon__text {
  max-width: none;
  margin-bottom: 10px;
}
.shop-cart-coupon__btn {
  padding: 16px 20px;
}
.update-cart-btn {
  font-size: 12px;
  line-height: 14px;
  padding: 16px 20px;
  margin-top: 0;
}
.shop-cart-total-info {
  text-align: center;
}
.gallery-sizer, .gallery-item {
  width: 100%;
}
.single-service .shop-item__related-list .shop-listing-item {
  width: 100%;
  max-width: 270px;
  margin-bottom: 40px;
  text-align: left;
  margin-right: 0;
}
.counselling-img-02 img {
  max-width: 300px;
}
.gallery-about-box__item {
  width: 100%;
}
.owl-carousel-03 .owl-prev, .owl-carousel-03 .owl-next {
  margin-top: -105px;
}
.video-block-01__box-text span {
  display: block;
  margin-bottom: 20px;
}
.video-block-01__btn {
  margin-bottom: 20px;
}
.education-block-title {
  font-size: 18px;
  line-height: 28px;
}
.about-me-phone span {
  font-size: 19px;
}
.btn-02 {
  padding: 15px 25px;
}
.btn-03 {
  padding: 15px 25px;
}
.btn-04 {
  padding: 20px 30px 22px;
}
.btn-05 {
  padding: 20px 30px 22px;
}
.title-06 {
  line-height: 45px;
}
.img-box-01 {
  padding: 100px 0;
}
.banners-promo-01, .banners-promo-02, .banners-promo-03 {
  padding: 30px 15px;
}
.align-left {
  float: none;
  text-align: center;
}
.video-block-popup {
  margin-left: -150px !important;
}
.video-block-video__frame {
  width: 300px;
  height: 300px;
}
.video-block-close {
  right: 0;
  top: -35px;
}
}

@media only screen and (max-width:460px) {
.appointment-popup {
  width: 300px;
  margin-left: -150px !important;
}
.appointment-popup-form input[type="radio"] + label {
  font-size: 14px;
  padding-left: 20px;
}
.appointment-popup-form__box-01, .appointment-popup-form__box-02 {
  padding: 15px;
}
.appointment-popup-form__box-01 .appointment-calendar {
  margin-bottom: 25px;
}
.appointment-popup {
  min-height: auto;
}
.appointment-text-01 {
  font-size: 14px;
  margin-bottom: 15px;
}
.appointment-calendar {
  margin-bottom: 20px;
}
.appointment-text-02 {
  margin-bottom: 5px;
}
.appointment-text-03 {
  font-size: 14px;
  margin-bottom: 5px;
}
}

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