@charset "IBM437";
/*
 * Title:   Deliver | Responsive Multi-Purpose WordPress Theme - Main Style file
 * Author:  http://themeforest.net/user/soaptheme
 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[Table of contents]

1. Base Styles
  1.1. Reset
  1.2. Layout
2. Header
  2.1. Main Header
  2.2. Main Menu
  2.3. Sticky Header
  2.4. Mobile Menu
  2.5. Sub Header
3. Gloal Styles
  3.1. General Styles
  3.2. Form Elements
4. Footer
5. Shortcode
  5.1. Typography
  5.2. Buttons
  5.3. Accordion & Toggles
  5.4. Tabs
  5.5. Team Member
  5.6. Progress & Counter
  5.7. Icon Box
  5.8. Image Box
  5.9. Image Gallery
  5.10. Testimonial
  5.11. Pricing Table
  5.12. Alert box
  5.13. Call to action
  5.14. Twitter
6. Main Content
  6.1. Blog Posts
  6.2. Single Post
  6.3. Portfolio Page
  6.4. Single Portfolio
  6.5. Widgets
  6.6. Wordpress Styles
  6.7. Pages
  6.8. jQuery plugins

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* 1. Base Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 1.1. Reset ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-tap-highlight-color: transparent;
  zoom: 1;
  outline: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*html { min-height: 100%; }*/
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.8em;
  color: #9c9c9c;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: scrollbar;
}

iframe, img {
  border: 0;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

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

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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

.display-none {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  color: #181818;
  line-height: 1.6em;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.8571em;
  letter-spacing: 0.04em;
}

.text {
  font-size: 14px;
  line-height: 1.8571em;
  letter-spacing: 0.04em;
}

.gray-bg {
  background: #f9f9f9;
}

.section {
  padding-top: 120px;
  padding-bottom: 90px;
}

.section-lg {
  padding-top: 150px;
  padding-bottom: 120px;
}

.section-sm {
  padding-top: 80px;
  padding-bottom: 50px;
}

.skin-color, .hover-skin-color:hover {
  color: #ea088c !important;
}

.title {
  color: #4b4b4b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.skin-bg, .hover-skin-bg:hover {
  background-color: #ea088c !important;
}

.color-white {
  color: #fff !important;
}

.color-title {
  color: #4b4b4b !important;
}

.letterspace-normal {
  letter-spacing: 0.04em !important;
}

.letterspace-title {
  letter-spacing: 0.16em !important;
}

.overflow-hidden {
  overflow: hidden;
}

.no-margin {
  margin: 0 !important;
}

.no-bmargin {
  margin-bottom: 0 !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.bg-white {
  background-color: #fff;
}

.inline-block {
  display: inline-block !important;
}

.bg-none {
  background: none !important;
}

.vertical-middle {
  vertical-align: middle;
}

strong, b {
  font-weight: 700;
}

a {
  /*color: $theme-color; font-weight: 600;*/
  -moz-transition: color 0.25s ease, background-color 0.25s ease;
  -o-transition: color 0.25s ease, background-color 0.25s ease;
  -webkit-transition: color 0.25s ease, background-color 0.25s ease;
  -ms-transition: color 0.25s ease, background-color 0.25s ease;
  transition: color 0.25s ease, background-color 0.25s ease;
}

a:hover {
  /*text-decoration: underline;*/
  color: rgba(234, 8, 140, 0.85);
}

a, a:visited, a:focus {
  outline: none;
}

em {
  font-weight: 600;
  font-style: italic;
  color: #4b4b4b;
}

del {
  font-weight: bold;
}

ul, ol {
  padding-left: 0;
}
ul ul, ul ol, ol ul, ol ol {
  padding-left: 15px;
}

ul[class], ol[class] {
  list-style: none;
}

small {
  font-size: 85%;
}

/* 1.2. Layout ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body {
  background: #fff;
}

.container {
  max-width: 1170px;
  padding-left: 0;
  padding-right: 0;
  width: 90%;
}

#content .container .container {
  max-width: none;
  width: auto;
}

.half-container {
  max-width: 585px;
  width: 45%;
}

.half-in-container {
  max-width: 585px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#page-wrapper {
  position: relative;
  overflow: hidden;
  /*background: #fff;*/
}

#content {
  padding-top: 0px;
  min-height: 200px;
}

#main, .sidebar {
  float: left;
}

#main {
  width: 75%;
  padding-right: 15px;
}

#main:not(:last-child) {
  margin-bottom: 50px;
}

#main > .section:first-child {
  padding-top: 20px;
}

.sidebar {
  width: 25%;
  padding-left: 15px;
  margin-bottom: 50px;
}

.content-wrapper.full #main {
  width: auto;
  float: none;
  padding-right: 0;
}
.content-wrapper.sidebar-left #main {
  float: right;
}

.sidebar-left #main {
  padding-left: 15px;
  padding-right: 0;
}
.sidebar-left .sidebar {
  padding-right: 15px;
  padding-left: 0;
}

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

.row [class^="col-"]:not([class*=" box-"]), .row [class*=" col-"]:not([class*=" box-"]) {
  margin-bottom: 30px;
}

.vc_row.inner-container {
  margin-left: 0;
  margin-right: 0;
}

.row.no-padding {
  margin-left: 0;
  margin-right: 0;
}

.row.no-padding > [class^="col-"], .row.no-padding > [class*=" col-"] {
  padding-left: 0;
  padding-right: 0;
}

.box-sm {
  margin-bottom: 20px;
}

.box-md, .box {
  margin-bottom: 30px;
}

.box-lg {
  margin-bottom: 40px;
}

.box-xl, .block {
  margin-bottom: 60px;
}

.menu {
  margin: 0;
  padding: 0;
}

.page-info-inner {
  padding-left: 30px;
  padding-right: 30px;
}

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

/* 2. Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 2.1. Main Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header ul {
  list-style: none;
  margin: 0;
}
#header .header-inner {
  display: table;
  width: 100%;
  position: relative;
  height: 100px;
}
#header .header-inner > * {
  display: table-cell;
  vertical-align: middle;
}
#header .menu-wrapper {
  text-align: right;
}
#header .button {
  margin-bottom: 0;
}
#header .top-search-bar {
  background: #181818;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45px;
  z-index: 999;
}
#header .top-search-bar form {
  font-size: 14px;
  position: relative;
}
#header .top-search-bar form i {
  color: #ea088c;
}
#header .top-search-bar form button {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 43px;
  height: 45px;
  background: none;
  border: none;
}
#header .top-search-bar form button:hover i {
  color: #fff;
}
#header .top-search-bar form input[type=text] {
  display: inline-block;
  background: none;
  width: 100%;
  height: 45px;
  line-height: normal;
  border: none;
  padding-left: 30px;
}
#header .top-search-bar .toggle-close {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 45px;
}
#header .top-search-bar .toggle-close i {
  color: #fff;
}
#header .top-search-bar .toggle-close:hover i {
  color: #ea088c;
}
#header .top-action-bar {
  background: #ea088c;
  color: #fff;
  font-size: 12px;
}
#header .top-action-bar i {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.25);
}
#header .top-action-bar .contact-details li, #header .top-action-bar .social-links a {
  display: inline-block;
  line-height: 20px;
  padding: 8px 0;
  margin-right: 20px;
}
#header .top-action-bar .contact-details li:last-child, #header .top-action-bar .social-links a:last-child {
  margin-right: 0;
}
#header .top-action-bar .contact-details {
  float: left;
}
#header .top-action-bar .contact-details a:hover {
  text-decoration: underline;
  color: inherit;
}
#header .top-action-bar .contact-details i {
  margin-right: 5px;
}
#header .top-action-bar .social-links {
  float: right;
}
#header .top-action-bar .social-links i {
  -moz-transition: color 0.25s ease 0s;
  -o-transition: color 0.25s ease 0s;
  -webkit-transition: color 0.25s ease 0s;
  -ms-transition: color 0.25s ease 0s;
  transition: color 0.25s ease 0s;
}
#header .top-action-bar .social-links a {
  padding: 8px 5px;
  margin-right: 10px;
}
#header .top-action-bar .social-links a:hover i {
  color: #fff;
}
#header .top-action-bar .slogan {
  line-height: 20px;
  font-size: 12px;
  margin: 8px 0;
  float: left;
  color: inherit;
}
#header .top-bar {
  background: none;
}
#header .logo {
  text-align: left;
  padding-right: 10px;
}
#header .logo img {
  max-height: 100px;
}
#header .logo > a {
  display: inline-block;
  max-width: 100%;
}
#header .header-btn-navbar {
  font-size: 32px;
  line-height: 30px;
  display: block;
  position: absolute;
  height: 30px;
  right: 0;
  top: 50%;
  color: #181818;
  text-decoration: none;
  margin-top: -15px;
}
#header .header-btn-navbar:hover {
  color: #ea088c;
}
#header .wpml-languages {
  position: relative;
}
#header .wpml-languages a {
  text-decoration: none;
  text-align: left;
  text-transform: uppercase;
  font-size: 10px;
  color: inherit;
}
#header .wpml-languages.enabled > a:hover {
  color: #181818;
}
#header .wpml-languages img {
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
#header .wpml-languages .wpml-lang-dropdown {
  position: absolute;
  background: #181818;
  left: 0;
  top: 100%;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  padding: 5px 0;
}
#header .wpml-languages .wpml-lang-dropdown a {
  line-height: 30px;
  height: 30px;
  display: block;
  color: inherit;
}
#header .wpml-languages .wpml-lang-dropdown a:hover {
  color: #fff;
}
#header .wpml-languages:hover .wpml-lang-dropdown,
#header .wpml-languages a.active.hover ~ .wpml-lang-dropdown {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-animation: fadeInUp 0.3s ease;
  -moz-animation: fadeInUp 0.3s ease;
  animation: fadeInUp 0.3s ease;
}

#header .menu, #header .ubermenu {
  display: inline-block;
}

#header .header-top-nav .wpml-languages > a,
#header .header-top-nav .header-mini-cart > a {
  height: 48px;
  line-height: 48px;
}

.header-top-nav .header-mini-cart {
  position: relative;
}

.header-top-nav .header-mini-cart .cart-content {
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  background: #181818;
  right: 0;
  padding: 25px;
  text-align: left;
}

.header-top-nav .header-mini-cart .cart_list {
  padding: 0;
}

.header-top-nav .header-mini-cart:hover .cart-content {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-animation: fadeInUp 0.3s ease;
  -moz-animation: fadeInUp 0.3s ease;
  animation: fadeInUp 0.3s ease;
}

/* 2.2. Main Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.nav > li > a:focus, .nav > li > a:hover {
  text-decoration: inherit;
  background-color: transparent;
}

#header {
  /*.header-top-nav { margin: ($menubar-top-height - 48) / 2 0; }*/
}
#header .deliver-menu, #header .header-top-nav {
  display: inline-block;
}
#header .menu > li, #header .header-top-nav > * {
  display: inline-block;
}
#header .menu > li > a, #header .header-top-nav > * > a {
  padding: 0 18px;
  display: block;
  font-size: 11px;
  -moz-transition: color 0.25s ease 0s;
  -o-transition: color 0.25s ease 0s;
  -webkit-transition: color 0.25s ease 0s;
  -ms-transition: color 0.25s ease 0s;
  transition: color 0.25s ease 0s;
  color: inherit;
}
#header .menu > li > a {
  height: 48px;
  line-height: 48px;
}
#header .header-top-nav a {
  height: 48px;
  line-height: 48px;
}

#header .header-top-nav {
  white-space: nowrap;
}
#header .header-top-nav a {
  padding: 0 10px;
}
#header .header-top-nav a i {
  color: #ea088c;
  font-size: 14px;
}

#header .menu > li {
  position: relative;
}
#header .menu > li > a {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}
#header .menu > li:hover > a, #header .menu > li.current-menu-item > a, #header .menu > li.active > a {
  text-decoration: none;
  color: #181818;
}

/* Sub menu */
#header .menu .menu-item-has-children:hover > .sub-menu {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-animation: fadeInUp 0.3s forwards;
  -moz-animation: fadeInUp 0.3s forwards;
  animation: fadeInUp 0.3s forwards;
}

#header .menu .sub-menu {
  background: #181818;
  position: absolute;
  left: -7px;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  width: 200px;
  padding: 20px 0;
  z-index: 1;
  font-size: 13px;
}
#header .menu .sub-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  height: 20px;
  width: 100%;
}
#header .menu .sub-menu li {
  padding: 0 25px;
  line-height: 2em;
  text-align: left;
  letter-spacing: 0.04em;
}
#header .menu .sub-menu li a {
  padding: 7px 0;
  display: block;
}
#header .menu .sub-menu li.menu-item-has-children {
  position: relative;
}
#header .menu .sub-menu li:hover > a {
  color: #fff;
}
#header .menu .sub-menu.position-left {
  right: 0;
  left: auto;
}

.header-two-rows2 #header .menu > li:first-child > .sub-menu, .header-standard3 #header .menu > li:first-child > .sub-menu {
  left: -25px;
}

#header .menu .sub-menu .sub-menu {
  top: -20px;
  left: 100%;
}
#header .menu .sub-menu .sub-menu.position-left {
  left: -100%;
}

/* Header Style: Standard 2 */
.header-standard2 #header .menu > li > a {
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 0;
  padding-top: 30px;
  padding-left: 2px;
  padding-right: 3px;
}
.header-standard2 #header .menu > li > a span {
  display: block;
  padding: 0 15px;
  height: 40px;
  line-height: 36px;
  border: 2px solid transparent;
  padding-left: 16px;
  padding-right: 16px;
}
.header-standard2 #header .menu > li:hover > a, .header-standard2 #header .menu > li.current-menu-item > a, .header-standard2 #header .menu > li.active > a {
  text-decoration: none;
  color: #181818;
}
.header-standard2 #header .menu > li:hover > a > span, .header-standard2 #header .menu > li.current-menu-item > a > span, .header-standard2 #header .menu > li.active > a > span {
  border-color: #ea088c;
}

/* Header Style: Transparent */
.header-transparent #header:not(.header-sticky) {
  background-color: transparent;
}

.header-transparent #header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.header-transparent #header .menu > li > a {
  letter-spacing: 0;
  font-weight: 400;
}
.header-transparent #header .header-top-nav {
  margin-left: 15px;
}
.header-transparent #header .header-top-nav .button {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  height: 40px;
  line-height: 36px;
  border: 2px solid;
  border-color: inherit;
  vertical-align: middle;
  margin: 4px 0;
}
.header-transparent #header .header-top-nav .button > span {
  padding: 0 16px;
}
.header-transparent #header .header-top-nav .button:hover {
  color: #ea088c;
  border-color: #ea088c;
}

.header-transparent #header .menu > li > a, .header-transparent .ubermenu-skin-deliver-style .ubermenu-item-level-0 > .ubermenu-target, .header-transparent #header .header-top-nav .wpml-languages > a, .header-transparent #header .header-top-nav .header-mini-cart > a {
  height: 48px;
  line-height: 48px;
}

/* Header Style: Empty */
.header-empty #header:not(.header-sticky) {
  background-color: transparent;
}

.header-empty #header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.header-empty #header .menu-wrapper {
  position: absolute;
  right: -280px;
  top: 0;
  width: 280px;
  background: rgba(234, 8, 140, 0.9);
  padding: 50px 30px 100px 40px;
  z-index: 1;
  -moz-transition: right 0.8s ease 0s;
  -o-transition: right 0.8s ease 0s;
  -webkit-transition: right 0.8s ease 0s;
  -ms-transition: right 0.8s ease 0s;
  transition: right 0.8s ease 0s;
  text-align: left;
}
.header-empty #header .menu-wrapper.active {
  right: 0;
}
.header-empty #header .menu {
  padding-left: 0;
}
.header-empty #header .menu, .header-empty #header .header-top-nav {
  display: block;
  text-align: left;
  margin-bottom: 30px;
}
.header-empty #header .menu > li, .header-empty #header .header-top-nav > * {
  float: none;
  display: block;
}
.header-empty #header .menu > li > a, .header-empty #header .header-top-nav > * > a {
  height: 40px;
  line-height: 40px;
  letter-spacing: 0.16em;
  font-weight: 400;
  padding: 0;
}
.header-empty #header .menu > li:hover > a {
  text-decoration: underline;
}
.header-empty #header .header-top-nav {
  float: none;
}
.header-empty #header .header-top-nav .social-links {
  margin-bottom: 30px;
}
.header-empty #header .header-top-nav .social-links > a {
  display: inline-block;
  color: #fff;
  margin-right: 15px;
}
.header-empty #header .header-top-nav .social-links > a i {
  color: #fff;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.header-empty #header .header-top-nav .social-links > a:hover i {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.header-empty #header .header-top-nav .button {
  background: #fff;
  color: #ea088c;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
}
.header-empty #header .header-top-nav .button > span {
  padding: 0 25px;
}
.header-empty #header .header-top-nav .button:hover {
  background: #f1f1f1;
}
.header-empty #header .header-btn-navbar {
  color: #4b4b4b;
}
.header-empty #header .header-btn-navbar .fa {
  font-size: 20px;
}
.header-empty #header .sub-menu {
  right: 100%;
  top: 0;
  left: auto;
  margin-right: 40px;
  width: 200px;
}
.header-empty #header .sub-menu:before {
  height: 100%;
  top: 0;
  width: 40px;
  left: 100%;
}
.header-empty #header .sub-menu.position-left {
  right: 0;
  left: auto;
}
.header-empty #header .sub-menu .sub-menu {
  right: 100;
  left: auto;
  margin-right: 0;
}
.header-empty #header .sub-menu .sub-menu:before {
  display: none;
}

/* header Style: Two Rows */
.header-two-rows1 #header {
  /*.menu, .ubermenu-nav {
    > li:first-child > a { padding-left: 0; }
  }*/
}
.header-two-rows1 #header .top-bar {
  /*.header-inner { height: $top-bar-height; }*/
}
.header-two-rows1 #header .top-bar .contact-details {
  float: none;
  text-align: right;
  padding: 5px 0;
}
.header-two-rows1 #header .top-bar .contact-details > * {
  font-size: 20px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
}
.header-two-rows1 #header .top-bar .contact-details i {
  color: #ea088c;
  font-size: 20px;
}
.header-two-rows1 #header .top-bar .contact-details .button {
  background: #ea088c;
  line-height: 26px;
  color: #181818;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 900;
  float: right;
  margin-left: 20px;
  margin-bottom: 0;
  white-space: nowrap;
}
.header-two-rows1 #header .top-bar .contact-details .button > span {
  padding: 7px 25px;
}
.header-two-rows1 #header .menu, .header-two-rows1 #header .ubermenu {
  float: left;
}
.header-two-rows1 #header .header-top-nav .social-links > a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}
.header-two-rows1 #header .header-top-nav .social-links > a i {
  color: inherit;
}
.header-two-rows1 #header .header-top-nav .social-links > a:hover i {
  color: #ffffff;
}
.header-two-rows1 #header .header-btn-navbar {
  color: inherit;
}
.header-two-rows1 #header .header-btn-navbar:hover {
  color: #ffffff;
}

/* header Style: Two Rows 2 */
.header-two-rows2 #header .logo img {
  max-height: 40px;
}
.header-two-rows2 #header .top-bar .header-inner {
  height: 40px;
}
.header-two-rows2 #header .top-bar .top-search-box {
  width: 270px;
  position: relative;
}
.header-two-rows2 #header .top-bar .top-search-box input[type=text] {
  width: 100%;
  color: #fff;
  height: 50px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  letter-spacing: 0.04em;
}
.header-two-rows2 #header .top-bar .top-search-box button[type=submit] {
  background: none;
  border: none;
  position: absolute;
  height: 30px;
  line-height: 30px;
  right: 15px;
  top: 50%;
  margin-top: -15px;
}
.header-two-rows2 #header .top-bar .top-search-box button[type=submit] i {
  color: #fff;
  font-size: 12px;
}
.header-two-rows2 #header .top-bar .top-search-box button[type=submit]:hover i {
  color: #eee;
}
.header-two-rows2 #header .top-bar .top-menu {
  text-align: right;
}
.header-two-rows2 #header .top-bar .top-menu ul ul {
  display: none;
}
.header-two-rows2 #header .top-bar .menu {
  display: inline-block;
  float: none;
}
.header-two-rows2 #header .top-bar .menu > li {
  margin-right: 25px;
}
.header-two-rows2 #header .top-bar .menu > li > a {
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  height: 50px;
  line-height: 50px;
  padding: 0;
}
.header-two-rows2 #header .top-bar .menu > li:hover > a {
  text-decoration: underline;
}
.header-two-rows2 #header .menu, .header-two-rows2 #header .ubermenu {
  float: left;
}
.header-two-rows2 #header .menu > li {
  position: relative;
}
.header-two-rows2 #header .menu > li > a {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.header-two-rows2 #header .menu > li:first-child > a {
  padding-left: 0;
}
.header-two-rows2 #header .header-top-nav .social-links > a {
  display: inline-block;
  margin-right: 0px;
  font-size: 16px;
}
.header-two-rows2 #header .header-top-nav .social-links > a i {
  color: #e5e5e5;
}
.header-two-rows2 #header .header-top-nav .social-links > a:hover i {
  color: #ea088c;
}

/* header Style: Standard 3 */
.header-standard3 #header .top-action-bar {
  color: inherit;
  font-family: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: none;
}
.header-standard3 #header .top-action-bar i {
  color: #c4c4c4;
  font-size: 14px;
}
.header-standard3 #header .top-action-bar .social-links a:hover i {
  color: #ea088c;
}
.header-standard3 #header .menu > li > a {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.header-standard3 #header .menu > li:first-child > a {
  padding-left: 0;
}
.header-standard3 #header .header-top-nav .contact-phone {
  white-space: nowrap;
  color: #4b4b4b;
  font-size: 16px;
  font-weight: bold;
  line-height: 48px;
  height: 48px;
}
.header-standard3 #header .header-top-nav .contact-phone i {
  font-size: 12px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-top: 8px;
  text-align: center;
  background: #ea088c;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  float: left;
  margin-right: 10px;
  color: #cc0000;
}

/* header Style: Modern */
.header-modern #header .menu-wrapper {
  width: 100%;
}
.header-modern #header .logo {
  position: relative;
  z-index: 1;
}
.header-modern #header .call-to-action {
  padding-left: 25px;
  position: relative;
}
.header-modern #header .call-to-action .button {
  height: 60px;
  border: 5px solid #fff;
  line-height: 50px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: #f37936;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  vertical-align: middle;
}
.header-modern #header .call-to-action .button > span {
  padding: 0 25px;
  -moz-transition: background 0.25s ease 0s;
  -o-transition: background 0.25s ease 0s;
  -webkit-transition: background 0.25s ease 0s;
  -ms-transition: background 0.25s ease 0s;
  transition: background 0.25s ease 0s;
}
.header-modern #header .call-to-action .button:hover > span {
  background: rgba(0, 0, 0, 0.1);
}
.header-modern #header .call-to-action:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  bottom: 0;
  right: 65%;
  width: 1000px;
  background: #ea088c;
}
.header-modern #header .menu > li > a {
  letter-spacing: 0;
}
.header-modern #header .header-top-nav a {
  font-size: 11px;
  padding: 0;
  margin-left: 20px;
}
.header-modern #header .header-top-nav a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  color: #fff;
  background: #ea088c;
  -moz-transition: background 0.25s ease 0s;
  -o-transition: background 0.25s ease 0s;
  -webkit-transition: background 0.25s ease 0s;
  -ms-transition: background 0.25s ease 0s;
  transition: background 0.25s ease 0s;
}
.header-modern #header .header-top-nav a:hover i {
  background: #f37936;
}

/* header Style: Split Menu */
.header-split #header .header-inner {
  display: block;
}
.header-split #header .header-inner > * {
  display: block;
}
.header-split #header .logo {
  position: absolute;
  width: 20%;
  left: 40%;
  top: 0;
  bottom: 0;
}
.header-split #header .logo:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.header-split #header .logo > a {
  display: inline-block;
  width: 96%;
  text-align: center;
  vertical-align: middle;
}
.header-split #header .menu {
  width: 40%;
  margin-top: 20px;
}
.header-split #header .menu > li > a {
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  letter-spacing: 0.16em;
}
.header-split #header .menu-left {
  float: left;
  text-align: left;
}
.header-split #header .menu-right {
  float: right;
}

/* header Style: Overlay */
.header-overlay #header .header-inner {
  position: static;
  padding-right: 0;
}
.header-overlay #header .menu > li > a {
  letter-spacing: 0.04em;
  font-weight: 400;
  color: inherit;
}
.header-overlay #header .header-btn {
  text-align: right;
  line-height: 0;
}
.header-overlay #header .header-btn-navbar {
  width: 20px;
  height: 13px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #181818;
  margin: 0;
  position: relative;
  top: auto;
  display: inline-block;
  line-height: 0;
}
.header-overlay #header .header-btn-navbar:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 1px solid;
  border-color: inherit;
}
.header-overlay #header .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9;
  display: none;
}
.header-overlay #header .overlay .container {
  position: relative;
  min-height: 100%;
  text-align: center;
  padding: 50px 0;
  height: 100%;
}
.header-overlay #header .overlay .container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.header-overlay #header .overlay-close {
  position: fixed;
  right: 30px;
  top: 40px;
  display: block;
  height: 20px;
  width: 20px;
  color: #fff;
}
.header-overlay #header .overlay-close:before, .header-overlay #header .overlay-close:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: #fff;
  width: 100%;
}
.header-overlay #header .overlay-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.header-overlay #header .overlay-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.header-overlay #header .menu-wrapper {
  display: inline-block;
  width: 96%;
  vertical-align: middle;
  text-align: center;
}
.header-overlay #header .menu {
  display: block;
}
.header-overlay #header .menu li {
  display: block;
}
.header-overlay #header .menu li a {
  display: inline-block;
  line-height: 60px;
  height: auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-overlay #header .menu .sub-menu {
  position: static;
  background: none;
  width: auto;
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  font-size: 11px;
  padding: 0;
}
.header-overlay #header .menu .sub-menu li {
  text-align: center;
}
.header-overlay #header .menu .sub-menu li:hover > a {
  color: inherit;
}
.header-overlay #header .menu .sub-menu li a {
  padding: 0;
}
.header-overlay #header .menu .menu-item-has-children:hover > .sub-menu {
  -webkit-animation: none 1s ease-in-out;
  -moz-animation: none 1s ease-in-out;
  animation: none 1s ease-in-out;
}

.admin-bar.header-overlay #header .overlay-close {
  margin-top: 32px;
}

/* Uber Menu */
.ubermenu .ubermenu-item-level-0 > .ubermenu-target {
  line-height: 18px;
  font-size: 11px;
}
.ubermenu .ubermenu-item-level-0 > .ubermenu-target > span {
  display: block;
}

#header .ubermenu {
  clear: none;
  position: static;
}

/* 2.3. Sticky Header ~~~~~~~~~~~~~~~~~~~~~~~~~ */
.header-placeholder {
  display: none;
}

#header.header-sticky {
  position: fixed;
  width: 100%;
  left: 0;
  min-height: 60px;
  top: 0;
  z-index: 1001;
  filter: alpha(opacity=95);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  -moz-opacity: 0.95;
  -khtml-opacity: 0.95;
  opacity: 0.95;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

#header.header-sticky .menu > li > a, .header-sticky .ubermenu-skin-deliver-style .ubermenu-item-level-0 > .ubermenu-target, #header.header-sticky .header-top-nav .wpml-languages > a, #header.header-sticky .header-top-nav .header-mini-cart > a {
  height: 60px;
  line-height: 60px;
}

#header.header-sticky .top-action-bar {
  display: none;
}

#header.header-sticky .logo {
  padding: 5px 0;
}

#header.header-sticky .header-inner {
  min-height: 0;
  height: 60px;
}

#header.header-sticky .menu > li > a,
.header-split .header-sticky .ubermenu-skin-deliver-style .ubermenu-item-level-0 > .ubermenu-target {
  line-height: 48px;
  height: 48px;
}

#header.header-sticky .logo img {
  max-height: 48px;
}

#header.header-sticky + .header-placeholder {
  display: block;
}

.header-transparent #header + .header-placeholder, .header-empty #header + .header-placeholder {
  display: none;
}

.header-split #header.header-sticky .menu, .header-split #header.header-sticky .ubermenu-skin-deliver-style {
  margin-top: 6px;
}

.header-two-rows1 #header.header-sticky .top-bar .header-inner {
  height: auto;
}

.header-two-rows1 #header.header-sticky .contact-details {
  display: none;
}

.header-two-rows1 #header.header-sticky .logo,
.header-two-rows2 #header.header-sticky .logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  line-height: 50px;
  z-index: 2;
}

.header-two-rows1 #header.header-sticky .logo > a,
.header-two-rows2 #header.header-sticky .logo > a {
  max-width: 200px;
}

.header-two-rows1 #header.header-sticky .logo img,
.header-two-rows2 #header.header-sticky .logo img {
  vertical-align: middle;
}

.header-two-rows1 #header.header-sticky .menu-wrapper,
.header-two-rows2 #header.header-sticky .menu-wrapper {
  padding-left: 220px;
}

.header-two-rows2 #header.header-sticky .top-bar .header-inner > * {
  display: none;
}

.header-two-rows2 #header.header-sticky .top-bar .header-inner > .logo {
  display: block;
}

.header-two-rows2 #header.header-sticky .top-bar .header-inner {
  min-height: 0;
  height: auto;
}

#header .logo .sticky-logo {
  display: none !important;
}

#header .logo .normal-logo {
  display: inline-block !important;
}

#header.header-sticky .logo .sticky-logo {
  display: inline-block !important;
}

#header.header-sticky .logo .normal-logo {
  display: none !important;
}

/* 2.4. Mobile Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header {
  position: relative;
  z-index: 21;
}

.mobile-menu-wrapper {
  background: #ffffff;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 30px 0 40px;
  z-index: 999;
}

.mobile-menu-wrapper form[role="search"] {
  position: relative;
  margin-bottom: 10px;
}

.mobile-menu-wrapper form[role="search"] input[type="text"] {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-wrapper form[role="search"] [type="submit"] {
  position: absolute;
  height: 30px;
  width: 30px;
  line-height: 30px;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  background: none;
  border: none;
  font-size: 14px;
  -moz-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.mobile-menu-wrapper form[role="search"] [type="submit"]:hover {
  color: #fff;
}

.menu-mobile {
  padding: 0;
}
.menu-mobile a {
  text-decoration: none;
}
.menu-mobile a:hover, .menu-mobile li.current-menu-item > a, .menu-mobile li.active > a {
  color: #fff;
}
.menu-mobile li > a {
  display: block;
}
.menu-mobile > li > a {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  line-height: 2em;
  padding: 1.2em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.menu-mobile > li > a:hover, .menu-mobile > li.current-menu-item > a, .menu-mobile > li.active > a {
  color: #ffffff;
}
.menu-mobile > .menu-item-has-children.opened > a {
  border-bottom: none;
}
.menu-mobile .menu-item-has-children {
  position: relative;
}
.menu-mobile .menu-item-has-children .open-submenu {
  position: absolute;
  right: 0;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: 10px;
  font-size: 9px;
  z-index: 2;
}
.menu-mobile .menu-item-has-children .open-submenu:before {
  font-family: FontAwesome;
  content: "\f078";
}
.menu-mobile .menu-item-has-children.opened > .open-submenu, .menu-mobile .menu-item-has-children > .open-submenu:hover {
  color: #ea088c;
}
.menu-mobile .menu-item-has-children.opened > .open-submenu:before {
  content: "\f077";
}
.menu-mobile .sub-menu {
  padding-left: 10px;
  display: none;
  letter-spacing: 0.04em;
}
.menu-mobile .sub-menu a {
  line-height: 2em;
  padding: 0.5em 0 0.5em 10px;
  position: relative;
}
.menu-mobile .sub-menu > li > a:before {
  font-family: FontAwesome;
  content: "\f111";
  display: block;
  font-size: 4px;
  position: absolute;
  left: 0;
  height: 4px;
  line-height: 4px;
  top: 50%;
  margin-top: -1px;
  -moz-transition: color 0.25s ease 0s;
  -o-transition: color 0.25s ease 0s;
  -webkit-transition: color 0.25s ease 0s;
  -ms-transition: color 0.25s ease 0s;
  transition: color 0.25s ease 0s;
}
.menu-mobile .sub-menu > li:hover > a:before {
  color: #ea088c;
}
.menu-mobile .sub-menu .open-submenu {
  top: 4px;
}
.menu-mobile .sub-menu .opened > a {
  color: #fff;
}
.menu-mobile .sub-menu .sub-menu > li > a:before {
  display: none;
}
.menu-mobile .sub-menu.wpml-lang-dropdown > li > a:before {
  display: none;
}
.menu-mobile .sub-menu.wpml-lang-dropdown > li > a {
  padding-left: 0;
}
.menu-mobile .sub-menu.wpml-lang-dropdown img {
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 10px;
}
.menu-mobile .header-mini-cart .cart_list {
  padding: 10px;
}

.mobile-top-bar i {
  color: #ea088c;
  margin-right: 12px;
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: 1px;
}

/* 2.5. Sub Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#sub-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 40px 0;
  padding-top: 1px !important;
}
#sub-header > .container {
  height: 100%;
}
#sub-header > .container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#sub-header .page-title-container {
  display: inline-block;
  width: 96%;
  vertical-align: middle;
}
#sub-header .page-title-container img {
  margin-bottom: 25px;
}
#sub-header .page-title h1, #sub-header .sub-title {
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
#sub-header .page-title h1 {
  font-size: 30px;
  margin-bottom: 12px;
}
#sub-header .sub-title {
  font-size: 16px;
  /*font-family: $page-subtitle-font;*/
  margin-top: 10px;
}
#sub-header .breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  line-height: 1;
  letter-spacing: 0;
}
#sub-header .breadcrumbs li {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}
#sub-header .breadcrumbs li a, #sub-header .breadcrumbs li span {
  color: white;
}
#sub-header .breadcrumbs li a + span {
  margin: 0 10px;
}
#sub-header .breadcrumbs li a + span.paged, #sub-header .breadcrumbs li span + span.paged {
  margin-right: 0;
  font-weight: 400;
  font-size: 0.9em;
  margin-left: 10px;
}
#sub-header .breadcrumbs li a:hover {
  color: #ea088c;
}
#sub-header .page-title > *:last-child {
  margin-bottom: 0;
}

.header-transparent #sub-header .page-title-container, .header-empty #sub-header .page-title-container {
  margin-top: 100px;
}

/* Title style */
.subheader-title-left #sub-header .page-title-container {
  text-align: left;
}

/* Breadcrumbs style */
.subheader-breadcrumb-bottom #sub-header {
  position: relative;
  padding: 0;
}
.subheader-breadcrumb-bottom #sub-header > .container:before {
  display: none;
}
.subheader-breadcrumb-bottom #sub-header .page-title-container {
  height: 100%;
  padding: 42px 0 0;
  display: block;
  width: auto;
}
.subheader-breadcrumb-bottom #sub-header .page-title-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.subheader-breadcrumb-bottom #sub-header .page-title {
  display: inline-block;
  width: 98%;
  vertical-align: middle;
}
.subheader-breadcrumb-bottom #sub-header .breadcrumbs {
  display: inline-block;
  background: #fff;
  position: relative;
  top: 21px;
  padding: 10px 35px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  border-radius: 21px;
  margin: 0 20px;
  z-index: 3;
}
.subheader-breadcrumb-bottom #sub-header .breadcrumbs li {
  line-height: 16px;
  padding: 3px 0;
  font-size: 11px;
  text-transform: none;
  vertical-align: middle;
}

.subheader-breadcrumb-right #sub-header > .container:before {
  display: none;
}
.subheader-breadcrumb-right #sub-header .page-title-container {
  display: table;
  width: 100%;
  height: 100%;
}
.subheader-breadcrumb-right #sub-header .page-title-container > * {
  display: table-cell;
  vertical-align: middle;
}
.subheader-breadcrumb-right #sub-header .page-title h1 {
  text-transform: none;
}
.subheader-breadcrumb-right #sub-header .breadcrumbs {
  text-align: right;
}
.subheader-breadcrumb-right #sub-header .breadcrumbs li {
  text-transform: none;
}
.subheader-breadcrumb-right #sub-header .breadcrumbs li a + span {
  margin: 0 15px;
}

.subheader-breadcrumb-bottom-right #sub-header {
  position: relative;
  padding: 0;
}
.subheader-breadcrumb-bottom-right #sub-header > .container:before {
  display: none;
}
.subheader-breadcrumb-bottom-right #sub-header .page-title-container {
  height: 100%;
  padding: 42px 0 0;
  display: block;
  width: auto;
}
.subheader-breadcrumb-bottom-right #sub-header .page-title-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.subheader-breadcrumb-bottom-right #sub-header .page-title {
  display: inline-block;
  width: 98%;
  vertical-align: middle;
}
.subheader-breadcrumb-bottom-right #sub-header .page-title h1 {
  text-transform: none;
}
.subheader-breadcrumb-bottom-right #sub-header .breadcrumbs {
  background: none;
  float: right;
  padding: 0 40px;
  margin: 0;
}
.subheader-breadcrumb-bottom-right #sub-header .breadcrumbs li {
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  display: block;
  float: left;
}
.subheader-breadcrumb-bottom-right #sub-header .breadcrumbs li a + span {
  margin: 0 15px;
}
.subheader-breadcrumb-bottom-right #sub-header .breadcrumbs:after {
  content: "";
  display: table;
  clear: both;
}

/* Sub header style: Top border on title */
.subheader-top-border #sub-header .page-title-container {
  width: auto;
  max-width: 96%;
  position: relative;
  margin-top: 20px;
}
.subheader-top-border #sub-header .page-title-container:before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  left: 25%;
  top: -20px;
}

/* 3. Global Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 3.1. General Styles ~~~~~~~~~~~~~~~~~~~~~~~~ */
.st-table {
  display: table;
  width: 100%;
}

.st-td, .related-posts .related-post .post-image, .related-posts .related-post .details {
  display: table-cell;
  vertical-align: middle;
}

.social-links a {
  display: inline-block;
  margin-right: 20px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  color: #c4c4c4;
}
.social-links a i {
  /*@include transition(color, 0.25s, ease);*/
  width: 100%;
  height: 100%;
  line-height: inherit;
}

.social-links a:hover {
  color: #ea088c;
}

.social-links a:not([data-toggle="tooltip"]):last-child {
  margin-right: 0 !important;
}

.social-links.style1 a {
  width: 36px;
  height: 36px;
  color: #c4c4c4;
  border: 1px solid #c4c4c4;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  text-align: center;
  line-height: 34px;
  margin-right: 5px;
}

.social-links.style1 a:hover {
  color: #fff;
  border-color: #ea088c;
  background-color: #ea088c;
}

.social-links.style2 a {
  width: 40px;
  height: 40px;
  color: #c4c4c4;
  background: #f9f9f9;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  margin-right: 8px;
}

.social-links.style2 a:hover {
  color: #fff;
  border-color: #ea088c;
  background-color: #ea088c;
}

.image-container {
  margin-bottom: 20px;
}
.image-container img {
  width: 100%;
  height: auto;
}

.blog-posts a, .pager a, .portfolio-filters a, .portfolio a, .post a, #footer a, .menu a, #sub-header a {
  text-decoration: none;
}

.portfolio-filters ul {
  list-style: none;
  padding: 0;
}

.parallax {
  position: relative;
  background-attachment: fixed;
  /*-webkit-background-size: cover; */
  background-size: cover;
  background-position: 50% 0;
  background-repeat: repeat-y;
}

.image {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: block;
  -webkit-backface-visibility: hidden;
  float: left;
  max-width: 100%;
}
.image img {
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  width: 100%;
  -webkit-backface-visibility: hidden;
}
.image .image-extras {
  position: absolute;
  width: 101%;
  height: 101%;
  left: 0;
  top: 0;
  background: rgba(234, 8, 140, 0.85);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 1;
}
.image .image-extras {
  text-align: center;
}
.image .image-extras:before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 20px;
  position: absolute;
  height: 20px;
  width: 20px;
  line-height: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  color: #fff;
  font-weight: 400;
}
.image .caption-wrapper {
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.image .caption-wrapper *:last-child {
  margin-bottom: 0;
}
.image:hover:not(.hover-style3) img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.image:hover:not(.hover-style3) .image-extras {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.image.hover-default .image-extras {
  -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
  -moz-transform: rotateY(180deg) scale(0.5, 0.5);
  -ms-transform: rotateY(180deg) scale(0.5, 0.5);
  -o-transform: rotateY(180deg) scale(0.5, 0.5);
  transform: rotateY(180deg) scale(0.5, 0.5);
}
.image.hover-default:hover .image-extras {
  -webkit-transform: rotateY(0deg) scale(1, 1);
  -moz-transform: rotateY(0deg) scale(1, 1);
  -ms-transform: rotateY(0deg) scale(1, 1);
  -o-transform: rotateY(0deg) scale(1, 1);
  transform: rotateY(0deg) scale(1, 1);
}
.image.hover-style1 .image-extras, .image.hover-style1 .caption-wrapper {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.image.hover-style1:hover .image-extras, .image.hover-style1:hover .caption-wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.image.hover-style2 .image-extras {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.image.hover-style2:hover .image-extras {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.image.hover-style3 img {
  -webkit-backface-visibility: visible;
}
.image.hover-style3 .image-extras {
  width: 100%;
  height: 100%;
  top: 100%;
  left: auto;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  overflow: hidden;
  -moz-transition: none 0s ease 0s;
  -o-transition: none 0s ease 0s;
  -webkit-transition: none 0s ease 0s;
  -ms-transition: none 0s ease 0s;
  transition: none 0s ease 0s;
}
.image.hover-layout1 .image-extras:before {
  content: "";
  width: 70px;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  top: 50%;
  margin-top: 0;
}
.image.hover-layout1 .image-extras:after {
  content: "";
  height: 70px;
  width: 0;
  border-left: 1px solid #fff;
  position: absolute;
  left: 50%;
  margin-left: 0;
  top: 50%;
  margin-top: -35px;
}
.image.hover-layout2 .image-extras:before {
  content: "";
  width: 40px;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: 0;
}
.image.hover-layout2 .image-extras:after {
  content: "";
  height: 40px;
  width: 0;
  border-left: 1px solid #fff;
  position: absolute;
  left: 50%;
  margin-left: 0;
  top: 50%;
  margin-top: -20px;
}

.entry-content table, .comment-text table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 24px;
}

.page .comment-respond {
  margin-top: 30px;
}

/* animated */
.animated {
  visibility: hidden;
}

.no-cssanimations .animated {
  visibility: visible;
}

.iso-container {
  overflow: hidden;
  webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.iso-container {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.iso-container {
  position: relative;
  z-index: 20;
}
.iso-container:after {
  content: "";
  display: table;
  clear: both;
}
.iso-container.iso-col-2 .iso-item {
  width: 50%;
}
.iso-container.iso-col-2 .iso-item.double-width {
  width: 100%;
}
.iso-container.iso-col-3 .iso-item {
  width: 33.3333%;
}
.iso-container.iso-col-3 .iso-item.double-width {
  width: 66.66666%;
}
.iso-container.iso-col-4 .iso-item {
  width: 25%;
}
.iso-container.iso-col-4 .iso-item.double-width {
  width: 50%;
}
.iso-container.iso-col-5 .iso-item {
  width: 20%;
}
.iso-container.iso-col-5 .iso-item.double-width {
  width: 40%;
}
.iso-container.iso-col-6 .iso-item {
  width: 16.6666%;
}
.iso-container.iso-col-6 .iso-item.double-width {
  width: 33.3333%;
}
.iso-container.iso-col-7 .iso-item {
  width: 14.2857%;
}
.iso-container.iso-col-7 .iso-item.double-width {
  width: 28.5714%;
}
.iso-container.iso-col-8 .iso-item {
  width: 12.5%;
}
.iso-container.iso-col-8 .iso-item.double-width {
  width: 25%;
}
.iso-container .iso-item {
  float: left;
  /*img { width: 100%; }*/
}
.iso-container.iso-masonry, .iso-container.iso-grid {
  /*overflow: hidden;*/
  margin-top: -3px;
  margin-left: -3px;
  margin-right: -3px;
}
.iso-container.iso-masonry .iso-item, .iso-container.iso-grid .iso-item {
  padding: 3px;
  float: left;
  clear: none;
}
.iso-container.iso-masonry .iso-item article, .iso-container.iso-grid .iso-item article {
  margin-bottom: 0;
}

.iso-container.iso-nospace {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.iso-container.iso-nospace .iso-item {
  padding: 0;
}

.iso-container.column-width-30 {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

.iso-container.column-width-30 .iso-item {
  padding: 15px;
}

.iso-container .iso-item {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  /* @include transition(opacity, 0.8s, ease);*/
}

.isotope-active .iso-container .iso-item {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* columns */
[class^="st-columns-"] > *, [class*=" st-columns-"] > * {
  float: left;
}
[class^="st-columns-"]:after, [class*=" st-columns-"]:after {
  content: "";
  display: table;
  clear: both;
}

.st-columns-2 > * {
  width: 50%;
}

.st-columns-3 > * {
  width: 33.3333%;
}

.st-columns-4 > * {
  width: 25%;
}

.st-columns-5 > * {
  width: 20%;
}

.st-columns-6 > * {
  width: 16.6666%;
}

.star-rating {
  font-family: FontAwesome;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  position: relative;
  line-height: 1;
  white-space: nowrap;
}
.star-rating:before {
  content: "\f006\f006\f006\f006\f006";
  color: #c4c4c4;
}
.star-rating > span, .star-rating .ui-slider-range {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  text-indent: -9999px;
}
.star-rating > span:before, .star-rating .ui-slider-range:before {
  content: "\f005\f005\f005\f005\f005";
  color: #e7ad12;
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 2px;
  text-indent: 0;
}
.star-rating > span .rating, .star-rating .ui-slider-range .rating {
  display: none;
}
.star-rating.input-star-rating.ui-slider {
  background: none;
  cursor: default;
}
.star-rating.input-star-rating.ui-slider .ui-slider-handle {
  visibility: hidden;
  width: 0;
  height: 0;
  padding: 0;
  top: 0;
}
.star-rating.size-md {
  font-size: 14px;
  letter-spacing: 6px;
}
.star-rating.size-md > span:before {
  right: 3px;
}

.input-star-rating {
  letter-spacing: 0;
}
.input-star-rating .radio {
  display: inline-block;
  color: #c4c4c4;
  margin-right: 10px;
}
.input-star-rating .radio:before {
  font-family: FontAwesome;
  font-size: 14px;
  letter-spacing: 0.5em;
  border: none;
  position: static;
  display: inline;
  width: auto;
  height: auto;
}
.input-star-rating .radio:nth-child(1):before {
  content: "\f006";
}
.input-star-rating .radio:nth-child(2):before {
  content: "\f006\f006";
}
.input-star-rating .radio:nth-child(3):before {
  content: "\f006\f006\f006";
}
.input-star-rating .radio:nth-child(4):before {
  content: "\f006\f006\f006\f006";
}
.input-star-rating .radio:nth-child(5):before {
  content: "\f006\f006\f006\f006\f006";
}
.input-star-rating .radio:after {
  content: "\\";
  margin-left: 15px;
}
.input-star-rating .radio:last-child:after {
  content: "";
}
.input-star-rating .radio.checked:before {
  color: #ea088c;
}

.mfp-container {
  padding: 15px;
}

.soap-quick-view-lightbox {
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.soap-quick-view-lightbox .mfp-content {
  max-width: 1110px;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 4% 4% 0;
}
.soap-quick-view-lightbox.mfp-removing {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

/* Video */
.video-container .mejs-container {
  position: relative;
}

.video-container video {
  max-width: 100%;
}

.video-container .mejs-offscreen {
  display: none;
}

.video-container .mejs-mediaelement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container .mejs-poster {
  background-size: cover;
}

.video-container .mejs-controls {
  display: none !important;
}

.video-container .mejs-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.video-container .mejs-poster {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-container .mejs-poster img {
  display: none;
}

.video-container .mejs-overlay-button {
  background: none;
  cursor: pointer;
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  margin-top: -35px;
  margin-left: -35px;
  background: rgba(234, 8, 140, 0.9);
}

.video-container .mejs-overlay-button:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 28px;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.video-container .mejs-container .mejs-overlay-loading {
  display: none !important;
}

.video-container .mejs-controls .mejs-fullscreen-button button {
  font-family: FontAwesome;
  font-size: 12px;
  color: #fff;
  background: none;
}

.video-container .mejs-controls .mejs-fullscreen-button button:before {
  content: "\f065";
}

.video-container .mejs-mediaelement iframe.me-plugin {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* Audio */
.audio-container {
  position: relative;
}

.audio-container .mejs-container {
  width: 100% !important;
  height: 40px !important;
}

.audio-container audio, .audio-container object {
  width: 100%;
}

.audio-container .mejs-container {
  background: none;
}

.audio-container .mejs-container .mejs-controls {
  display: table !important;
  width: 100%;
  background: none;
  table-layout: fixed;
  height: auto;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
}

.audio-container .mejs-container .mejs-controls {
  padding-right: 20px;
}

.audio-container .mejs-container .mejs-controls {
  visibility: visible !important;
}

.deliver-ajax-post .audio-container .mejs-container .mejs-controls {
  visibility: hidden !important;
}

.audio-container .mejs-container .mejs-controls > * {
  display: table-cell !important;
  float: none !important;
  height: 40px !important;
  padding: 0 !important;
  vertical-align: middle;
}

.audio-container .mejs-container .mejs-controls .mejs-playpause-button button {
  font-size: 12px;
  color: #fff;
  background: none;
  font-family: FontAwesome;
}

.audio-container .mejs-container .mejs-controls .mejs-play button:before {
  content: "\f04b";
}

.audio-container .mejs-container .mejs-controls .mejs-pause button:before {
  content: "\f04c";
}

.audio-container .mejs-container .mejs-controls .mejs-button button {
  position: static;
  outline: none;
}

.audio-container .mejs-container .mejs-controls .mejs-time {
  width: 30px;
  font-size: 11px;
  color: #c8c8c8;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail {
  width: 100% !important;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-total,
.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded,
.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
  top: 50%;
  margin-top: -4px;
  background: rgba(200, 200, 200, 0.3);
  overflow: hidden;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: none;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #fff;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail .mejs-time-float {
  display: none !important;
}

.audio-container .mejs-container .mejs-controls .mejs-time-rail span,
.audio-container .mejs-container .mejs-controls .mejs-time-rail a {
  height: 8px;
}

.audio-container .mejs-container .mejs-controls .mejs-time {
  width: 30px;
}

.audio-container .mejs-container .mejs-controls .mejs-time span {
  display: inline-block;
  line-height: 40px;
}

.audio-container .mejs-container .mejs-controls .mejs-volume-button button {
  text-align: left;
  background: none;
  font-family: FontAwesome;
  color: #fff;
  font-size: 14px;
}

.audio-container .mejs-container .mejs-controls .mejs-volume-button.mejs-mute button:before {
  content: "\f028";
}

.audio-container .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute button:before {
  content: "\f026";
}

.audio-container .mejs-container .mejs-controls .mejs-horizontal-volume-slider {
  width: 50px;
  position: relative;
}

.audio-container .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.audio-container .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  top: 16px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -ms-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}

.audio-container .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(200, 200, 200, 0.3);
}

.audio-container .mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #fff;
}

.audio-container.style-colored .mejs-container .mejs-controls {
  background: #ea088c;
}

.audio-container.style-colored .mejs-controls .mejs-time {
  color: #fff;
}

.audio-container.style-colored .mejs-controls .mejs-time-rail .mejs-time-total,
.audio-container.style-colored .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pager {
  text-align: center;
  margin: 40px 0;
}

.section .pager {
  margin-bottom: 10px;
}

.pager .page-links {
  display: inline-block;
  margin: 0 8px;
}

.pager .nav-prev, .pager .nav-next, .pager .page-links .page {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  vertical-align: middle;
}

.pager .nav-prev, .pager .nav-next {
  font-family: FontAwesome;
  font-size: 16px;
}

.pager .page-links .page {
  font-size: 15px;
}

.pager .page-links .page + .page {
  margin-left: 8px;
}

.pager .page-links .page.active,
.pager .page-links > span.page,
.pager .nav-prev:hover,
.pager .nav-next:hover,
.pager .page-links .page:hover {
  border-color: #ea088c;
  background: #ea088c;
  color: #fff;
}

ul.page-numbers {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
ul.page-numbers > li {
  float: left;
  margin-right: 10px;
}
ul.page-numbers:after {
  content: "";
  display: table;
  clear: both;
}
ul.page-numbers > li > .current {
  color: #ea088c;
}

/* ajax loading */
.deliver-ajax-post {
  visibility: hidden;
  opacity: 0;
}

.deliver-ajax-loading {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
}

.deliver-ajax-loading:before, .yith-wcan-loading:before, .product.loading .product-image:before, .easyzoom-notice:before, .iso-container:before {
  content: "";
  display: inline-block !important;
  border-width: 3px 5px 2px 0;
  width: 32px;
  height: 32px;
  -webkit-animation: spin 0.8s infinite linear;
  -moz-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
  border-radius: 20px;
  border-style: solid;
  border-bottom-color: transparent !important;
  vertical-align: middle;
  position: absolute;
  margin-left: -16px;
  margin-top: -16px;
  left: 50%;
  top: 50%;
  border-color: #ea088c;
}

.iso-container.active:before {
  display: none !important;
}

.go-to-content {
  opacity: 0.75 !important;
  -moz-transition: opacity 0.5s ease 0s;
  -o-transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s;
  -ms-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
  color: #fff;
}

.go-to-content:hover {
  opacity: 1 !important;
}

.fa.fa-googleplus:before {
  content: "\f0d5";
}

/* 3.2. Form Elements ~~~~~~~~~~~~~~~~~~~~~~~~~ */
form [class^="col-"] > input, form [class^="col-"] > select, form [class^="col-"] > textarea, form [class^="col-"] > .btn, form [class^="col-"] > button, form [class*=" col-"] > input, form [class*=" col-"] > select, form [class*=" col-"] > textarea, form [class*=" col-"] > .btn, form [class*=" col-"] > button {
  width: 100%;
}

form.form-bordered {
  padding: 25px 30px;
  border: 1px solid #f9f9f9;
}
form label {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.form-group:not(.box) {
  margin-bottom: 20px;
}

input.input-text, select, textarea, .customSelect {
  background: #f9f9f9;
  border: none;
  line-height: normal;
}

input.input-text, textarea, .customSelect, select {
  padding-left: 20px;
  padding-right: 20px;
  height: 42px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
input.input-text.input-lg, textarea.input-lg, .customSelect.input-lg, select.input-lg {
  height: 48px;
  font-size: 14px;
}
input.input-text.input-md, textarea.input-md, .customSelect.input-md, select.input-md {
  height: 42px;
  font-size: 13px;
}
input.input-text.input-sm, textarea.input-sm, .customSelect.input-sm, select.input-sm {
  height: 34px;
  font-size: 13px;
}
input.input-text.input-xs, textarea.input-xs, .customSelect.input-xs, select.input-xs {
  height: 28px;
  font-size: 12px;
}
input.input-text.white, textarea.white, .customSelect.white, select.white {
  background: #fff;
}

textarea[class*=" input-"] {
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

input.input-text, textarea {
  -moz-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  -o-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  -ms-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  border: 1px solid transparent;
  cursor: text;
}
input.input-text:focus, textarea:focus {
  outline: none;
  border: 1px solid #ea088c;
  box-shadow: 0 0 8px rgba(234, 8, 140, 0.6);
}

textarea {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Select Box */
select {
  padding: 10px 10px 10px 15px;
  max-width: 100% !important;
  display: inline-block;
  -webkit-appearance: none;
  border: 1px solid #f1f1f1;
  height: auto;
}
select option {
  padding: 2px 10px 2px 18px;
}

@-moz-document url-prefix() {
  select {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.customSelect, select {
  padding-left: 15px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /*select { padding-right: 18px; }*/
}
.selector {
  position: relative;
  z-index: 1;
}

select.selector {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-appearance: menulist-button;
}

.customSelect {
  line-height: 42px;
  position: relative;
  z-index: 0;
  white-space: nowrap;
  overflow: hidden;
}
.customSelect.input-lg {
  line-height: 48px;
}
.customSelect.input-md {
  line-height: 42px;
}
.customSelect.input-sm {
  line-height: 34px;
}
.customSelect.input-xs {
  line-height: 28px;
}

.customSelectInner {
  max-width: 100% !important;
}
.customSelectInner:before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2.5px;
  border-top: 5px solid;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

/* Checkbox and Radio */
.checkbox, .radio {
  position: relative;
  margin-top: 0;
  line-height: 20px;
}
.checkbox:before, .radio:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border: 1px solid #c4c4c4;
  color: #c4c4c4;
  z-index: 0;
  font-family: FontAwesome;
  line-height: 13px;
  text-align: center;
  font-size: 8px;
}
.checkbox.checked:before, .radio.checked:before {
  content: "\f00c";
}
.checkbox label, .radio label {
  display: inline-block;
}

label.checkbox, label.radio, .checkbox label, .radio label, .checkbox-inline, .radio-inline {
  padding-left: 22px;
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  margin-left: -22px;
}

.checkbox label, .checkbox.checkbox-inline {
  font-size: 1.0833em;
  line-height: 20px;
}
.checkbox input[type="checkbox"] {
  position: absolute;
  z-index: 1;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.radio input[type="radio"] {
  position: absolute;
  z-index: 1;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.radio:before {
  /*@include border-radius(50%, 50%, 50%, 50%);*/
  font-size: 8px;
  line-height: 13px;
}
.radio.radio-square:before {
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.radio.checked:before {
  content: "\f00c";
}

label.radio, .radio label {
  line-height: 20px;
  cursor: pointer;
}

label.radio input[type="radio"], .radio label input[type="radio"] {
  cursor: pointer;
}

.padding-box {
  padding: 45px 45px 40px !important;
}

/* 4. Footer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer {
  background-color: #181818;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
  color: white;
}
#footer a {
  color: inherit;
}
#footer a:hover {
  color: white;
}
#footer .menu-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .menu-footer-menu > li {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 40px;
}
#footer .menu-footer-menu > li a {
  display: block;
  height: 40px;
  line-height: 40px;
  -moz-transition: color 0.25s ease 0s;
  -o-transition: color 0.25s ease 0s;
  -webkit-transition: color 0.25s ease 0s;
  -ms-transition: color 0.25s ease 0s;
  transition: color 0.25s ease 0s;
  color: inherit;
}
#footer .menu-footer-menu > li:hover > a {
  color: white;
}
#footer .menu-footer-menu li li {
  display: none;
}
#footer .widget-wrapper > .container {
  padding-top: 50px;
  padding-bottom: 20px;
}
#footer .logo {
  padding: 10px 0;
}
#footer .logo > a {
  width: 268px;
  display: block;
  max-width: 100%;
}
#footer .footer-bottom {
  line-height: 30px;
  padding: 10px 0;
  /*a:hover { color: $theme-color; }*/
}
#footer .copyright {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
#footer ul[class^="list-"] li, #footer ul[class*=" list-"] li {
  padding-left: 20px;
  font-size: inherit;
}
#footer ul.list-caret li:before {
  color: inherit;
}
#footer ul.list-caret li:hover:before {
  color: #ea088c;
}

footer p {
  font-size: inherit;
}

.widget-wrapper ul {
  padding-left: 0;
  list-style: none;
}

/* Footer style: Default */
.footer-default #footer {
  position: relative;
}
.footer-default #footer .footer-top .footer-top-wrapper, .footer-default #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
}
.footer-default #footer .footer-top .footer-top-wrapper > *, .footer-default #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
}
.footer-default #footer .footer-top .footer-top-wrapper:before, .footer-default #footer .footer-top .footer-top-wrapper:after, .footer-default #footer .footer-bottom .footer-bottom-wrapper:before, .footer-default #footer .footer-bottom .footer-bottom-wrapper:after {
  display: none;
}
.footer-default #footer .footer-top > .container {
  border-bottom: 1px solid #242424;
}
.footer-default #footer .footer-top .footer-menu {
  text-align: right;
  padding: 40px 0;
}
.footer-default #footer .logo {
  padding: 20px 0;
}
.footer-default #footer .menu-footer-menu > li.current-menu-item > a {
  color: #fff;
  position: relative;
}
.footer-default #footer .menu-footer-menu > li.current-menu-item > a:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 5px;
  width: 12px;
  height: 1px;
  background: #ea088c;
}
.footer-default #footer .widget-wrapper > .container {
  border-bottom: 1px solid #242424;
}
.footer-default #footer .social-links {
  text-align: right;
}
.footer-default #footer .social-links > a {
  font-size: 16px;
}
.footer-default #footer .widget .widget-title {
  position: relative;
}
.footer-default #footer .widget .widget-title:after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: #ea088c;
  left: 0;
  position: absolute;
  bottom: -5px;
}
.footer-default #footer .deliver-back-to-top {
  line-height: 40px;
  float: right;
  color: #ea088c;
  font-size: 12px;
}
.footer-default #footer .deliver-back-to-top:before {
  content: "\f077";
  font-family: FontAwesome;
}
.footer-default #footer .deliver-back-to-top.collapsed:before {
  content: "\f078";
}
.footer-default #footer .deliver-footer-collapse {
  position: absolute;
  right: 50px;
  top: 45px;
}
.footer-default #footer .deliver-footer-collapse > a {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  border: 1px solid;
}
.footer-default #footer .deliver-footer-collapse > a.active {
  border-color: white;
}
.footer-default #footer .deliver-footer-collapse .collapse {
  height: 12px;
  margin-right: 7px;
}
.footer-default #footer .deliver-footer-collapse .expand {
  height: 23px;
}

/* Footer Style: style1 */
.footer-style1 #footer {
  text-align: center;
}
.footer-style1 #footer .widget {
  margin-bottom: 10px;
  text-align: left;
}
.footer-style1 #footer .widget-wrapper > .container {
  padding-bottom: 0;
  padding-top: 50px;
}
.footer-style1 #footer .footer-bottom {
  padding-top: 0;
  padding-bottom: 50px;
}

/* Footer Style: style2 */
.footer-style2 #footer {
  border-top: 5px solid #ea088c;
}
.footer-style2 #footer .widget-wrapper > .container {
  padding-top: 100px;
  padding-bottom: 80px;
}
.footer-style2 #footer .widget {
  text-align: center;
}
.footer-style2 #footer .widget-title {
  font-size: 30px;
}
.footer-style2 #footer .footer-bottom {
  background: #ea088c;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
}
.footer-style2 #footer .footer-bottom .container > * {
  display: inline-block;
}
.footer-style2 #footer .footer-bottom .container > *:not(:first-child):before {
  content: "•";
  margin: 0 15px;
  display: inline-block;
}

/* Footer Style: style3 */
.footer-style3 #footer .footer-bottom {
  padding: 0;
  text-align: center;
}
.footer-style3 #footer .social-links {
  background: rgba(255, 255, 255, 0.1);
  line-height: 40px;
  padding: 20px 0;
  font-size: 24px;
}
.footer-style3 #footer .social-links a {
  margin-left: 20px;
  margin-right: 20px;
}
.footer-style3 #footer .social-links a:last-child {
  margin-right: 20px !important;
}
.footer-style3 #footer .social-links a:hover {
  color: #fff;
}
.footer-style3 #footer .copyright {
  line-height: 30px;
  padding: 15px 0;
}
.footer-style3 #footer .contact {
  padding: 80px 0 40px;
}
.footer-style3 #footer .contact .icon-box {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.footer-style3 #footer .contact .icon-box > i {
  width: 64px;
  height: 64px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  line-height: 64px;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.footer-style3 #footer .contact .icon-box p {
  margin-bottom: 0;
  line-height: 1.8em;
}
.footer-style3 #footer .contact-title {
  font-size: 40px;
  letter-spacing: 0;
  margin-bottom: 50px;
}
.footer-style3 #footer .contact-title small {
  color: white;
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.16em;
}

/* Footer Style: style4 */
.footer-style4 #footer .footer-bottom {
  padding: 28px 0;
}
.footer-style4 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
}
.footer-style4 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
}
.footer-style4 #footer .footer-bottom .footer-bottom-wrapper:before, .footer-style4 #footer .footer-bottom .footer-bottom-wrapper:after {
  display: none;
}
.footer-style4 #footer .menu-footer-menu > li {
  letter-spacing: 0.1em;
}
.footer-style4 #footer .menu-footer-menu > li:hover a {
  color: #ea088c;
}
.footer-style4 #footer .copyright {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0;
}
.footer-style4 #footer .copyright a:hover {
  color: #ea088c;
}
.footer-style4 #footer .widget-wrapper > .container {
  padding-top: 80px;
  padding-bottom: 50px;
}

/* Footer Style: style5 */
.footer-style5 #footer {
  padding: 80px 0 70px;
}
.footer-style5 #footer .widget-wrapper > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-style5 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.footer-style5 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
}
.footer-style5 #footer .footer-bottom .footer-bottom-wrapper:before, .footer-style5 #footer .footer-bottom .footer-bottom-wrapper:after {
  display: none;
}
.footer-style5 #footer .footer-bottom .footer-bottom-wrapper .social-links {
  text-align: center;
  width: 40%;
}
.footer-style5 #footer .footer-bottom .footer-bottom-wrapper .copyright {
  text-align: right;
  font-weight: bold;
}
.footer-style5 #footer .social-links a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -webkit-border-radius: 23px 23px 23px 23px;
  -moz-border-radius: 23px 23px 23px 23px;
  -ms-border-radius: 23px 23px 23px 23px;
  border-radius: 23px 23px 23px 23px;
  background: #000;
  font-size: 16px;
  margin-right: 10px;
  color: inherit;
}
.footer-style5 #footer .social-links a:hover {
  background: #ea088c;
  color: white;
}
.footer-style5 #footer .copyright {
  font-size: 14px;
  letter-spacing: 0.04em;
}
.footer-style5 #footer .copyright a:hover {
  color: #ea088c;
}

/* Footer Style: style6 */
.footer-style6 #footer {
  position: relative;
}
.footer-style6 #footer .widget-wrapper > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-style6 #footer .widget-wrapper .row {
  margin-left: 0;
  margin-right: 0;
  display: table;
  width: 100%;
}
.footer-style6 #footer .widget-wrapper [class^="col-"], .footer-style6 #footer .widget-wrapper [class*=" col-"] {
  display: table-cell;
  padding: 80px 40px;
  border-right: 1px solid #3c3c3c;
  float: none;
}
.footer-style6 #footer .widget-wrapper [class^="col-"]:first-child, .footer-style6 #footer .widget-wrapper [class*=" col-"]:first-child {
  padding-left: 0;
}
.footer-style6 #footer .widget-wrapper [class^="col-"]:last-child, .footer-style6 #footer .widget-wrapper [class*=" col-"]:last-child {
  border-right: none;
  padding-right: 0;
}
.footer-style6 #footer .footer-bottom {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  width: 100%;
  padding: 30px 0;
}

/* Footer Style: style7 */
.footer-style7 #footer .widget-wrapper > .container {
  padding-bottom: 0;
  padding-top: 70px;
}
.footer-style7 #footer .footer-bottom {
  padding: 70px 0;
  line-height: 1.5;
}
.footer-style7 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  text-align: right;
  width: 100%;
}
.footer-style7 #footer .footer-bottom .social-links {
  text-align: left;
}
.footer-style7 #footer .footer-bottom .social-links a {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #181818;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}
.footer-style7 #footer .footer-bottom .social-links a:hover {
  background: #ea088c;
}
.footer-style7 #footer .footer-bottom .contact-phone {
  color: #fff;
  letter-spacing: 0;
  font-size: 30px;
}
.footer-style7 #footer .footer-bottom .copyright {
  font-size: 12px;
  letter-spacing: 0;
}

/* Footer Style: style8 */
.footer-style8 #footer {
  background: none;
}
.footer-style8 #footer .widget-wrapper > .container {
  padding-bottom: 10px;
}
.footer-style8 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #e5e5e5;
  /*&:before, &:after { display: none; }*/
}
.footer-style8 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
}
.footer-style8 #footer .footer-bottom .footer-bottom-wrapper .social-links {
  width: 40%;
  text-align: center;
}
.footer-style8 #footer .footer-bottom .footer-bottom-wrapper .copyright {
  text-align: right;
}
.footer-style8 #footer .footer-bottom .social-links a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  background: #e5e5e5;
  color: #fff;
  font-size: 14px;
  margin-right: 8px;
}
.footer-style8 #footer .footer-bottom .social-links a:hover {
  background: #ea088c;
}
.footer-style8 #footer .footer-bottom .phone-number {
  color: #ea088c;
}
.footer-style8 #footer .footer-bottom .contact-phone {
  letter-spacing: 0.16em;
  font-size: 12px;
}
.footer-style8 #footer .footer-bottom .copyright {
  font-size: 12px;
}

/* Footer Style: style9 */
.footer-style9 #footer .widget-wrapper > .container {
  padding-bottom: 0;
}
.footer-style9 #footer .footer-bottom {
  padding: 50px 0;
}
.footer-style9 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
  /*&:before, &:after { display: none; }*/
}
.footer-style9 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
}
.footer-style9 #footer .footer-bottom .social-links {
  text-align: right;
}
.footer-style9 #footer .footer-bottom .social-links a {
  font-size: 20px;
  color: #c4c4c4;
  margin-right: 35px;
}
.footer-style9 #footer .footer-bottom .social-links a:hover {
  color: #ea088c;
}
.footer-style9 #footer .footer-bottom .copyright {
  letter-spacing: 0.16em;
  font-size: 12px;
}

/* Footer Style: style10 */
.footer-style10 #footer {
  padding: 80px 0;
}
.footer-style10 #footer .widget-wrapper {
  padding-bottom: 40px;
}
.footer-style10 #footer .widget-wrapper > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-style10 #footer .footer-bottom {
  text-align: center;
  padding: 0;
}
.footer-style10 #footer .footer-bottom .social-links {
  margin-bottom: 20px;
}
.footer-style10 #footer .footer-bottom .social-links a {
  font-size: 16px;
  width: 42px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #4b4b4b;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  border-radius: 21px;
  margin-right: 7px;
}
.footer-style10 #footer .footer-bottom .social-links a:hover {
  border-color: #ea088c;
  background: #ea088c;
  color: #fff;
}
.footer-style10 #footer .footer-bottom .copyright {
  color: #fff;
}

/* Footer Style: style11 */
.footer-style11 #footer {
  padding: 80px 0;
}
.footer-style11 #footer .widget-wrapper {
  padding-bottom: 40px;
}
.footer-style11 #footer .widget-wrapper > .container {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-style11 #footer .logo {
  padding: 0;
}
.footer-style11 #footer .footer-bottom {
  padding: 0;
}
.footer-style11 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
  /*&:before, &:after { display: none; }*/
}
.footer-style11 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
}
.footer-style11 #footer .footer-bottom .copyright {
  text-align: right;
  font-size: 12px;
}

/* Footer Style: style12 */
.footer-style12 #footer .widget-wrapper > .container {
  padding-top: 20px;
}
.footer-style12 #footer .logo {
  text-align: center;
  padding: 50px 0 40px;
}
.footer-style12 #footer .logo a {
  display: inline-block;
}
.footer-style12 #footer .footer-bottom {
  padding: 0;
}
.footer-style12 #footer .footer-bottom .footer-bottom-wrapper {
  display: table;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #242424;
  /*&:before, &:after { display: none; }*/
}
.footer-style12 #footer .footer-bottom .footer-bottom-wrapper > * {
  display: table-cell;
  vertical-align: middle;
}
.footer-style12 #footer .footer-bottom .social-links {
  text-align: right;
}
.footer-style12 #footer .footer-bottom .social-links a {
  color: #3c3c3c;
  font-size: 16px;
}
.footer-style12 #footer .footer-bottom .social-links a:hover {
  color: #ea088c;
}

/* Footer Style: style13 */
.footer-style13 #footer {
  display: table;
  width: 100%;
  padding: 50px 0;
}
.footer-style13 #footer .footer-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.footer-style13 #footer .footer-bottom .callout {
  margin-bottom: 30px;
}
.footer-style13 #footer .footer-bottom .copyright {
  font-size: 12px;
}
.footer-style13 #footer .footer-bottom .social-links {
  margin-bottom: 20px;
}
.footer-style13 #footer .footer-bottom .social-links a {
  margin-right: 7px;
  margin-bottom: 10px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
}
.footer-style13 #footer .footer-bottom .social-links a:hover {
  background: #fff;
  color: #4b4b4b;
}

body:not(.footer-default) .deliver-back-to-top {
  position: fixed;
  z-index: 1001;
  bottom: -36px;
  width: 36px;
  height: 36px;
  color: #717171;
  border: 2px solid;
  right: 15px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -moz-transition: bottom 0.6s ease, opacity 0.3s ease;
  -o-transition: bottom 0.6s ease, opacity 0.3s ease;
  -webkit-transition: bottom 0.6s ease, opacity 0.3s ease;
  -ms-transition: bottom 0.6s ease, opacity 0.3s ease;
  transition: bottom 0.6s ease, opacity 0.3s ease;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  font-family: FontAwesome;
}

body:not(.footer-default) .deliver-back-to-top.in {
  bottom: 15px;
}

body:not(.footer-default) .deliver-back-to-top:before {
  content: "\f106";
}

body:not(.footer-default) .deliver-back-to-top:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #717171;
}

/* 5. Shortcode ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 5.1. Typography ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.dropcap {
  float: left;
  display: block;
  background: #ea088c;
  margin: 5px 20px 5px 0;
  text-align: center;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}
.dropcap.style-square-circle {
  -webkit-border-radius: 0 0 25px 25px;
  -moz-border-radius: 0 0 25px 25px;
  -ms-border-radius: 0 0 25px 25px;
  border-radius: 0 0 25px 25px;
  width: 50px;
  height: 66px;
  font-family: inherit;
  line-height: 64px;
  font-weight: 600;
}
.dropcap.style-circle {
  width: 64px;
  height: 64px;
  line-height: 64px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  border-radius: 32px;
}
.dropcap.style-square {
  width: 50px;
  height: 60px;
  line-height: 60px;
}
.dropcap.style-rounded-square {
  width: 60px;
  height: 64px;
  line-height: 64px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.dropcap.style-blank-lg, .dropcap.style-blank-sm {
  font-size: 80px;
  background: none;
  color: #181818;
  line-height: 0.8em;
}
.dropcap.style-blank-sm {
  font-size: 40px;
  line-height: 60px;
  padding: 0 8px;
}
.dropcap.color-black {
  color: #181818;
}
.dropcap.bg-black {
  background: #181818;
}

q, blockquote {
  quotes: '\201C' '\201D' '\2018' '\2019';
}

blockquote {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.04em;
  padding-left: 50px;
  position: relative;
  color: #4b4b4b;
  min-height: 50px;
  margin-bottom: 20px;
  /* Medical */
  /* Fitness */
}
blockquote:before {
  font-family: FontAwesome;
  font-size: 2.5em;
  vertical-align: middle;
}
blockquote:before {
  content: "\f10d";
  margin-right: 4px;
  position: absolute;
  top: 10px;
  left: 0;
  color: #efefef;
}
blockquote cite {
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-top: 30px;
  color: #ea088c;
  font-weight: bold;
}
blockquote cite:before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
  -webkit-transform: scaleX(1.5);
  -moz-transform: scaleX(1.5);
  -ms-transform: scaleX(1.5);
  -o-transform: scaleX(1.5);
  transform: scaleX(1.5);
}
blockquote.style1, blockquote.style2 {
  padding: 35px 30px 30px 120px;
  min-height: 128px;
}
blockquote.style1:before, blockquote.style2:before {
  font-size: 20px;
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  border-radius: 32px;
  top: 36px;
  left: 35px;
}
blockquote.style1 {
  background: #ea088c;
  color: #fff;
}
blockquote.style1:before {
  background: #fff;
  color: #ea088c;
}
blockquote.style1 cite {
  color: #fff;
}
blockquote.style2 {
  border: 1px solid #f1f1f1;
  border-top: none;
}
blockquote.style2:before {
  background: #ea088c;
}
blockquote.style2:after {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  right: -1px;
  height: 4px;
  background: #ea088c;
}
blockquote.style3 {
  background: #f9f9f9;
  padding: 35px 30px 30px 120px;
}
blockquote.style3:before {
  font-size: 60px;
  left: 0;
  top: 0;
  line-height: 0.9em;
}
blockquote.style4 {
  border: 1px solid #f1f1f1;
  font-family: inherit;
  font-style: italic;
  line-height: 30px;
  color: inherit;
  padding: 30px 30px 75px 35px;
  position: relative;
}
blockquote.style4:before {
  display: none;
}
blockquote.style4 cite {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #f9f9f9;
  text-align: center;
  font-style: normal;
  font-size: 11px;
  color: #4b4b4b;
  line-height: 48px;
  letter-spacing: 0.16em;
}
blockquote.style4 cite:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 14px;
  color: #ea088c;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
blockquote.style5 {
  font-family: inherit;
  font-style: italic;
  line-height: 30px;
  color: #fff;
  padding: 35px 30px 40px 35px;
  background: #ea088c;
}
blockquote.style5:before {
  display: none;
}
blockquote.style5 cite {
  color: #fff;
  letter-spacing: 0.16em;
  font-style: normal;
}
blockquote.style6 {
  font-size: 14px;
  line-height: 2em;
  padding: 36px 40px 36px 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
blockquote.style6:before {
  content: "\f10e";
  font-family: FontAwesome;
  font-size: 20px;
  color: #fff;
  top: 50%;
  left: 20px;
  margin: -10px 0 0;
  line-height: 20px;
  z-index: 2;
}
blockquote.style6:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  bottom: 0;
  background: #ea088c;
}
blockquote.style7 {
  font-size: 16px;
  line-height: 34px;
  padding: 40px;
  background: #ea088c;
  color: #fff;
}
blockquote.style7:before {
  display: none;
}

blockquote.style8 {
  padding-left: 20px;
}

blockquote.style8 {
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: #ea088c;
  font-style: italic;
}
blockquote.style8:before, blockquote.style8:after {
  font-family: FontAwesome;
  font-size: 1em;
  color: inherit;
  position: static;
}
blockquote.style8:before {
  content: "\f10d";
  margin-right: 10px;
}
blockquote.style8:after {
  content: "\f10e";
  margin-left: 10px;
}

ul[class^="list-"], ul[class*=" list-"] {
  padding: 0;
}
ul[class^="list-"] li, ul[class*=" list-"] li {
  list-style: none;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  padding-left: 34px;
}
ul[class^="list-"] li:before, ul[class*=" list-"] li:before {
  content: "";
  display: block;
  font-family: FontAwesome;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 0;
}
ul[class^="list-"] ul, ul[class*=" list-"] ul {
  margin-top: 10px;
}
ul[class^="list-"].list-sm li, ul[class*=" list-"].list-sm li {
  margin-bottom: 10px;
}

ul.list-arrow-circle li:before, ul.list-check-circle li:before, ul.list-decimal-circle li:before {
  content: "\f105";
  font-size: 0.8333em;
  width: 24px;
  height: 24px;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  background: #fff;
  color: #c4c4c4;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
ul.list-arrow-circle.hover-effect li:hover:before, ul.list-arrow-circle li.active:before, ul.list-check-circle.hover-effect li:hover:before, ul.list-check-circle li.active:before, ul.list-decimal-circle.hover-effect li:hover:before, ul.list-decimal-circle li.active:before {
  color: #fff;
  background: #ea088c;
}

ul.list-caret li:before {
  content: "\f0da";
  color: #ea088c;
}

ul.list-star li:before {
  content: "\f005";
  color: #ea088c;
}

ul.list-disc li:before {
  content: "\f111";
  color: #ea088c;
  font-size: 10px;
}

ul.list-check-circle li:before {
  content: "\f00c";
  font-size: 8px;
  color: inherit;
}

ul.list-arrow li:before {
  content: "\f178";
  color: #ea088c;
}

ul.list-alpha {
  counter-reset: index;
}
ul.list-alpha li:before {
  content: counter(index,upper-alpha) ".";
  counter-increment: index;
  color: #ea088c;
}

ul.list-decimal-circle {
  counter-reset: index;
}
ul.list-decimal-circle li {
  position: relative;
  padding-left: 40px;
}
ul.list-decimal-circle li:before {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  content: counter(index,decimal-leading-zero);
  counter-increment: index;
  color: inherit;
  font-size: 10px;
  font-weight: bold;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  top: -3px;
}

ul.list-minus li:before {
  content: "\e041";
  color: #ea088c;
  font-family: "linea-arrows-10";
  font-size: 20px;
}

ul.list-decimal-dot {
  counter-reset: index;
}
ul.list-decimal-dot li:before {
  content: "." counter(index,decimal);
  counter-increment: index;
  color: #ea088c;
}

ul.list-sun li:before {
  content: "\f185";
  color: #ea088c;
}

.highlight {
  background: #ea088c;
  display: inline-block;
  padding: 0 10px;
  margin: 0 4px;
  color: #fff;
}
.highlight.bg-dark {
  background: #4b4b4b;
}

.divider {
  border-top: 1px solid #f1f1f1;
  margin: 30px 0;
}

/* 5.2. Buttons ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.button {
  display: inline-block;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.16em;
  list-style: none;
  margin-bottom: 20px;
  max-width: 100%;
  padding: 0;
  margin-right: 7px;
  font-weight: bold;
  /* style */
}
.button i {
  margin-right: 5px;
}
.button:last-child {
  margin-right: 0;
}
.button:focus, .button:active:focus, .button.active:focus {
  outline: none;
}
.button:hover {
  text-decoration: none;
}
.button > span {
  display: block;
  /*float: left;*/
  position: relative;
  z-index: 1;
  padding: 0 20px;
  -moz-transition: background-color 0.25s ease 0s;
  -o-transition: background-color 0.25s ease 0s;
  -webkit-transition: background-color 0.25s ease 0s;
  -ms-transition: background-color 0.25s ease 0s;
  transition: background-color 0.25s ease 0s;
}
.button.full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.button.style-border {
  border: 2px solid;
  background: none;
  /*&.color-light:hover { background: #f1f1f1; color: #fff; }*/
  /*&.color-gray:hover { background: $theme-color; color: #fff; border-color: $theme-color; }*/
  /*&.color-dark:hover { background: #4b4b4b; color: #fff; }*/
  /*&.color-skin:hover { background: $theme-color; color: #fff; }*/
}
.button.style-border.color-light {
  border-color: #f1f1f1;
  color: #e5e5e5;
}
.button.style-border.color-gray {
  border-color: #c4c4c4;
  color: #c4c4c4;
}
.button.style-border.color-dark {
  border-color: #4b4b4b;
  color: #4b4b4b;
}
.button.style-border.color-skin {
  border-color: #ea088c;
  color: #ea088c;
}
.button.style-border.color-light:hover, .button.style-border.color-gray:hover, .button.style-border.color-dark:hover, .button.style-border.color-skin:hover {
  border-color: #ea088c;
  background: #ea088c;
  color: #fff;
}
.button.style-border.hover-white:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #181818 !important;
}
.button.style-fill {
  border: 2px solid transparent;
}
.button.style-fill.color-light {
  background-color: #f1f1f1;
  color: #c4c4c4;
}
.button.style-fill.color-gray {
  background-color: #c4c4c4;
  color: #fff;
}
.button.style-fill.color-dark {
  background-color: #4b4b4b;
  color: #fff;
}
.button.style-fill.color-skin {
  background-color: #ea088c;
  color: #fff;
}
.button.style-fill.color-light:hover > span, .button.style-fill.color-gray:hover > span, .button.style-fill.color-dark:hover > span, .button.style-fill.color-skin:hover > span {
  background: rgba(0, 0, 0, 0.05);
}
.button.style-fill.color-light:hover, .button.style-fill.color-gray:hover, .button.style-fill.color-dark:hover, .button.style-fill.color-skin:hover {
  border-color: rgba(0, 0, 0, 0.05);
}

.button {
  /* size */
}
.button[type="submit"].button-xl, .button.button-xl > span {
  font-size: 16px;
  padding: 1.5625em 2.8em;
}
.button[type="submit"].button-lg, .button.button-lg > span {
  font-size: 14px;
  padding: 1.0742em 2.5714em;
}
.button[type="submit"].button-md, .button.button-md > span {
  font-size: 12px;
  padding: 0.8333em 2.4em;
}
.button[type="submit"].button-sm, .button.button-sm > span {
  font-size: 10px;
  padding: 0.5em 2.4em;
}
.button[type="submit"].button-xs, .button.button-xs > span {
  font-size: 10px;
  padding: 0.2em 2em;
}
.button[type="submit"].full-width, .button.full-width > span {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

/* 5.3. Accordion & Toggles ~~~~~~~~~~~~~~~~~~~ */
.st-panel-group .st-panel-title {
  background-color: #fff;
  line-height: 24px;
  padding: 12px 0;
  border: none;
  color: #4b4b4b;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
.st-panel-group .st-panel-title:before {
  font-family: FontAwesome;
  font-size: 11px;
  text-align: center;
}
.st-panel-group .st-panel-content {
  border: none;
  display: none;
  background-color: #fff;
  padding: 25px;
}
.st-panel-group .st-panel-content img {
  margin-right: 20px;
}
.st-panel-group .st-panel-content p:last-child {
  margin-bottom: 0;
}
.st-panel-group .st-panel-content:after {
  content: "";
  display: table;
  clear: both;
}
.st-panel-group.style1 {
  border-bottom: 1px solid #f1f1f1;
}
.st-panel-group.style1 .st-panel-title {
  border: 1px solid #f1f1f1;
  padding-left: 60px;
  padding-right: 20px;
  border-bottom: none;
}
.st-panel-group.style1 .st-panel-title:before {
  content: "\f067";
  background: #f9f9f9;
  color: #c4c4c4;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 36px;
  padding-top: 12px;
}
.st-panel-group.style1 .st-panel-content {
  padding-left: 36px;
  border: 1px solid #f1f1f1;
  border-bottom: none;
}
.st-panel-group.style1 .st-panel.active .st-panel-title:before {
  content: "\f068";
}
.st-panel-group.style2 .st-panel {
  margin-bottom: 20px;
}
.st-panel-group.style2 .st-panel:last-child {
  margin-bottom: 0;
}
.st-panel-group.style2 .st-panel-title {
  background: #f9f9f9;
  padding-left: 20px;
  padding-right: 20px;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.st-panel-group.style2 .st-panel-title:before {
  content: "\f067";
  display: block;
  border: 2px solid #c4c4c4;
  color: #c4c4c4;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  line-height: 27px;
}
.st-panel-group.style2 .st-panel-content {
  padding: 15px 20px 0;
}
.st-panel-group.style2 .st-panel.active .st-panel-title, .st-panel-group.style2 .st-panel:hover .st-panel-title {
  background: #ea088c;
  color: #fff;
}
.st-panel-group.style2 .st-panel.active .st-panel-title:before, .st-panel-group.style2 .st-panel:hover .st-panel-title:before {
  border-color: #fff;
  color: #fff;
}
.st-panel-group.style2 .st-panel.active .st-panel-title:before {
  content: "\f068";
}
.st-panel-group.style3 {
  background-color: #f9f9f9;
}
.st-panel-group.style3 .st-panel-title {
  padding-left: 30px;
  padding-right: 30px;
}
.st-panel-group.style3 .st-panel-title:before {
  display: none;
}
.st-panel-group.style3 .st-panel {
  margin-bottom: 2px;
}
.st-panel-group.style3 .st-panel:last-child {
  margin-bottom: 0;
}
.st-panel-group.style3 .st-panel.active .st-panel-title, .st-panel-group.style3 .st-panel:hover .st-panel-title {
  color: #ea088c;
}
.st-panel-group.style3 .st-panel-content {
  padding-top: 10px;
  padding-left: 30px;
}
.st-panel-group.style4 {
  background-color: #f9f9f9;
}
.st-panel-group.style4 .st-panel-title {
  padding-left: 66px;
  padding-right: 30px;
  margin-bottom: 1px;
}
.st-panel-group.style4 .st-panel-title i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: #f1f1f1;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #c4c4c4;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.st-panel-group.style4 .st-panel-title:before {
  content: "\f107";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  line-height: 22px;
  right: 10px;
  top: 50%;
  margin-top: -12.5px;
  border: 2px solid #c4c4c4;
  color: #c4c4c4;
  font-size: 13px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.st-panel-group.style4 .st-panel {
  margin-bottom: 10px;
}
.st-panel-group.style4 .st-panel.active .st-panel-title i {
  background: #ea088c;
  color: #fff;
}
.st-panel-group.style4 .st-panel.active .st-panel-title:before {
  content: "\f106";
  border-color: #ea088c;
  color: #ea088c;
}
.st-panel-group.style4 .st-panel-content {
  padding-left: 66px;
  padding-top: 20px;
}
.st-panel-group.style5 .st-panel-title {
  padding: 15px 20px 15px 50px;
}
.st-panel-group.style5 .st-panel-title:before {
  content: "\f067";
  width: 32px;
  height: 32px;
  background: none;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  line-height: 31px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
  color: #c4c4c4;
}
.st-panel-group.style5 .st-panel-title:after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #f1f1f1;
}
.st-panel-group.style5 .st-panel:last-child .st-panel-title:after, .st-panel-group.style5 .st-panel.active .st-panel-title:after {
  display: none;
}
.st-panel-group.style5 .st-panel.active {
  color: #ea088c;
}
.st-panel-group.style5 .st-panel.active .st-panel-title:before {
  background: #ea088c;
  border-color: #ea088c;
  color: #fff;
}
.st-panel-group.style5 .st-panel.active .st-panel-title, .st-panel-group.style5 .st-panel:hover .st-panel-title {
  color: #ea088c;
}
.st-panel-group.style5 .st-panel-content {
  padding: 10px 20px 10px 50px;
  word-break: break-all;
}
.st-panel-group.style6 .st-panel-title {
  padding-left: 66px;
  padding-right: 20px;
  background: #f9f9f9;
}
.st-panel-group.style6 .st-panel-title:before {
  content: "+";
  font-family: inherit;
  width: 20px;
  height: 20px;
  line-height: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #c4c4c4;
  color: #fff;
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  font-size: 14px;
}
.st-panel-group.style6 .st-panel {
  margin-bottom: 10px;
}
.st-panel-group.style6 .st-panel.active .st-panel-title, .st-panel-group.style6 .st-panel.active .st-panel-content {
  background: #ea088c;
  color: #fff;
}
.st-panel-group.style6 .st-panel.active .st-panel-title:before {
  content: "\e041";
  color: #ea088c;
  font-family: "linea-arrows-10";
  font-size: 13px;
  background: #fff;
}
.st-panel-group.style6 .st-panel:last-child {
  margin-bottom: 0;
}
.st-panel-group.style6 .st-panel-content {
  padding-left: 66px;
  padding-top: 15px;
}

/* 5.4. Tabs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tab-container {
  /* wedding */
}
.tab-container ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-container ul.tabs a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tab-container .tab-pane > img {
  margin: 0 20px 10px 0;
}
.tab-container .tab-pane p:last-child {
  margin-bottom: 0;
}
.tab-container .tab-pane:after {
  content: "";
  display: table;
  clear: both;
}
.tab-container[class^="tab-horizontal-"] ul.tabs, .tab-container[class*=" tab-horizontal-"] ul.tabs {
  display: table;
}
.tab-container[class^="tab-horizontal-"] ul.tabs li, .tab-container[class*=" tab-horizontal-"] ul.tabs li {
  display: table-cell;
}
.tab-container[class^="tab-horizontal-"] ul.tabs li a, .tab-container[class*=" tab-horizontal-"] ul.tabs li a {
  line-height: 16px;
  word-break: break-all;
}
.tab-container .tab-content {
  background: #fff;
}
.tab-container.tab-horizontal-1 ul.tabs {
  border-collapse: collapse;
}
.tab-container.tab-horizontal-1 ul.tabs li {
  border: 1px solid #f1f1f1;
  border-bottom: none;
}
.tab-container.tab-horizontal-1 ul.tabs li a {
  padding: 16px 25px;
  color: #4b4b4b;
  background: #fff;
}
.tab-container.tab-horizontal-1 ul.tabs li.active {
  position: relative;
}
.tab-container.tab-horizontal-1 ul.tabs li.active:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  bottom: -1px;
  background: #fff;
}
.tab-container.tab-horizontal-1 .tab-content {
  border: 1px solid #f1f1f1;
}
.tab-container.tab-horizontal-1 .tab-pane {
  padding: 35px 35px 40px;
}
.tab-container.tab-horizontal-2 ul.tabs {
  border: 1px solid #f1f1f1;
  border-bottom: none;
  border-collapse: separate;
  border-spacing: 9px 9px;
}
.tab-container.tab-horizontal-2 ul.tabs li a {
  padding: 12px 20px;
  color: #c4c4c4;
  background: #f1f1f1;
  font-size: 11px;
}
.tab-container.tab-horizontal-2 ul.tabs li.active a {
  background: #ea088c;
  color: #fff;
}
.tab-container.tab-horizontal-2 .tab-content {
  border: 1px solid #f1f1f1;
}
.tab-container.tab-horizontal-2 .tab-pane {
  padding: 25px;
}
.tab-container.tab-horizontal-3 ul.tabs, .tab-container.tab-horizontal-5 ul.tabs {
  border-collapse: collapse;
}
.tab-container.tab-horizontal-3 ul.tabs li + li, .tab-container.tab-horizontal-5 ul.tabs li + li {
  border-left: 10px solid transparent;
}
.tab-container.tab-horizontal-3 ul.tabs li a, .tab-container.tab-horizontal-5 ul.tabs li a {
  padding: 16px 22px;
  color: #c4c4c4;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #c4c4c4;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.tab-container.tab-horizontal-3 ul.tabs li.active a, .tab-container.tab-horizontal-5 ul.tabs li.active a {
  color: #fff;
  background: #ea088c;
  border-color: #ea088c;
}
.tab-container.tab-horizontal-3 .tab-content, .tab-container.tab-horizontal-5 .tab-content {
  background: none;
}
.tab-container.tab-horizontal-3 .tab-pane, .tab-container.tab-horizontal-5 .tab-pane {
  padding: 30px 0 20px;
}
.tab-container.tab-horizontal-4 ul.tabs li a {
  padding: 18px 22px;
  font-size: 13px;
  color: #4b4b4b;
}
.tab-container.tab-horizontal-4 ul.tabs li span {
  display: inline-block;
}
.tab-container.tab-horizontal-4 ul.tabs li.active span {
  position: relative;
}
.tab-container.tab-horizontal-4 ul.tabs li.active span:after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -20px;
  height: 2px;
  background: #ea088c;
}
.tab-container.tab-horizontal-4 .tab-content {
  border-top: 2px solid #e5e5e5;
  background: none;
}
.tab-container.tab-horizontal-4 .tab-pane {
  padding: 30px 0 20px;
}
.tab-container[class^="tab-horizontal-"] ul.tabs.full-width, .tab-container[class*=" tab-horizontal-"] ul.tabs.full-width {
  width: 100%;
}
.tab-container[class^="tab-horizontal-"] ul.tabs.full-width li, .tab-container[class*=" tab-horizontal-"] ul.tabs.full-width li {
  text-align: center;
}
.tab-container[class^="tab-horizontal-"] ul.tabs.full-width li a, .tab-container[class*=" tab-horizontal-"] ul.tabs.full-width li a {
  padding-left: 0;
  padding-right: 0;
}
.tab-container[class^="tab-vertical-"] ul.tabs, .tab-container[class^="tab-vertical-"] .tab-content, .tab-container[class*=" tab-vertical-"] ul.tabs, .tab-container[class*=" tab-vertical-"] .tab-content {
  float: left;
}
.tab-container[class^="tab-vertical-"] ul.tabs, .tab-container[class*=" tab-vertical-"] ul.tabs {
  width: 35%;
}
.tab-container[class^="tab-vertical-"] .tab-content, .tab-container[class*=" tab-vertical-"] .tab-content {
  width: 64.7%;
}
.tab-container[class^="tab-vertical-"]:after, .tab-container[class*=" tab-vertical-"]:after {
  content: "";
  display: table;
  clear: both;
}
.tab-container.tab-vertical-1 .tab-content {
  background: #f9f9f9;
}
.tab-container.tab-vertical-1 ul.tabs li {
  margin-bottom: 1px;
  display: block;
}
.tab-container.tab-vertical-1 ul.tabs li a {
  background: #4b4b4b;
  color: #fff;
  display: block;
  word-break: break-all;
  line-height: 20px;
  padding: 25px 10px 25px 20px;
  font-size: 12px;
}
.tab-container.tab-vertical-1 ul.tabs li i {
  margin-right: 10px;
  font-size: 20px;
  float: left;
}
.tab-container.tab-vertical-1 ul.tabs li.active a {
  background: #f9f9f9;
  color: #ea088c;
}
.tab-container.tab-vertical-1 .tab-pane {
  padding: 35px;
}
.tab-container.tab-vertical-2 ul.tabs {
  display: table;
  border-collapse: collapse;
}
.tab-container.tab-vertical-2 ul.tabs li {
  display: table-row;
}
.tab-container.tab-vertical-2 ul.tabs li a {
  display: table-cell;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: inherit;
  border: 1px solid #f1f1f1;
  line-height: 20px;
  padding: 20px 20px 20px 30px;
}
.tab-container.tab-vertical-2 ul.tabs li.active a {
  color: #ea088c;
  position: relative;
}
.tab-container.tab-vertical-2 ul.tabs li.active a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  width: 1px;
  background: #fff;
}
.tab-container.tab-vertical-2 .tab-content {
  background: #fff;
}
.tab-container.tab-vertical-2 .tab-pane {
  padding: 0 0 0 20px;
}
.tab-container.tab-horizontal-5 ul.tabs li a {
  border: none;
  background: #f9f9f9;
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.tab-container.tab-horizontal-5 ul.tabs li.active a {
  background: #f9f9f9;
  color: #4b4b4b;
}
.tab-container.tab-horizontal-5 .tab-content {
  background: #f9f9f9;
  margin-top: 1px;
}
.tab-container.tab-horizontal-5 .tab-pane {
  padding: 25px 30px;
}

/* 5.5. Team Member ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.team-member .team-member-name {
  color: #4b4b4b;
  margin-bottom: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 20px;
  margin-bottom: 2px;
  font-weight: 700;
}
.team-member .image-container {
  position: relative;
  margin-bottom: 0;
}
.team-member .team-member-desc p:last-child {
  margin-bottom: 0;
}
.team-member .team-member-job {
  line-height: 1.25em;
}
.team-member.team-normal {
  text-align: center;
}
.team-member.team-normal .social-links {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  top: 50%;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.team-member.team-normal .social-links a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  background: #fff;
  color: inherit;
  margin-right: 5px;
  font-size: 12px;
}
.team-member.team-normal .social-links a:hover {
  background: #ea088c;
  color: #fff;
}
.team-member.team-normal .team-member-job {
  font-size: inherit;
  margin-bottom: 0;
}
.team-member.team-normal .team-member-desc {
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
}
.team-member.team-normal .team-member-desc:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0%;
  -moz-transition: width 0.5s linear 0s;
  -o-transition: width 0.5s linear 0s;
  -webkit-transition: width 0.5s linear 0s;
  -ms-transition: width 0.5s linear 0s;
  transition: width 0.5s linear 0s;
  background: #ea088c;
}
.team-member.team-normal .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -moz-transition: background 0.3s ease 0s;
  -o-transition: background 0.3s ease 0s;
  -webkit-transition: background 0.3s ease 0s;
  -ms-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.team-member.team-normal:hover .social-links {
  margin-top: -15px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.team-member.team-normal:hover .team-member-desc:after {
  width: 100%;
}
.team-member.team-normal:hover .image-container:before {
  background: rgba(255, 255, 255, 0.5);
}
.team-member.team-square {
  background: #fff;
  -moz-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  -webkit-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  transition: background 0.2s ease 0s;
}
.team-member.team-square .image-container {
  padding: 10px;
}
.team-member.team-square .team-member-name {
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease 0s;
  -ms-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}
.team-member.team-square .team-member-desc {
  padding: 35px 40px;
}
.team-member.team-square .team-member-job {
  font-size: inherit;
  margin-bottom: 30px;
}
.team-member.team-square .social-links {
  padding: 15px 40px 5px;
  border-top: 1px solid #f9f9f9;
  -moz-transition: border 0.2s ease 0s;
  -o-transition: border 0.2s ease 0s;
  -webkit-transition: border 0.2s ease 0s;
  -ms-transition: border 0.2s ease 0s;
  transition: border 0.2s ease 0s;
}
.team-member.team-square .social-links a {
  color: #c4c4c4;
  font-size: 16px;
  margin-right: 25px;
  margin-bottom: 10px;
}
.team-member.team-square .social-links a:hover {
  color: #ea088c;
}
.team-member.team-square:hover {
  background: #4b4b4b;
}
.team-member.team-square:hover .team-member-name {
  color: #fff;
}
.team-member.team-square:hover .social-links {
  border-top-color: #545454;
}
.team-member.team-circle {
  border: 1px solid #e5e5e5;
  text-align: center;
  -moz-transition: border 0.25s ease 0s;
  -o-transition: border 0.25s ease 0s;
  -webkit-transition: border 0.25s ease 0s;
  -ms-transition: border 0.25s ease 0s;
  transition: border 0.25s ease 0s;
}
.team-member.team-circle .image-container {
  width: 192px;
  height: 192px;
  -webkit-border-radius: 96px;
  -moz-border-radius: 96px;
  -ms-border-radius: 96px;
  border-radius: 96px;
  max-width: 80%;
  margin: 35px auto 25px;
}
.team-member.team-circle .image-container img {
  -webkit-border-radius: 96px;
  -moz-border-radius: 96px;
  -ms-border-radius: 96px;
  border-radius: 96px;
}
.team-member.team-circle .team-member-desc {
  padding: 0 25px 25px;
}
.team-member.team-circle .team-member-job {
  font-size: inherit;
}
.team-member.team-circle .social-links {
  padding: 8px 20px;
  background: #f9f9f9;
}
.team-member.team-circle .social-links a {
  color: #c4c4c4;
  font-size: 14px;
}
.team-member.team-circle .social-links a:hover {
  color: #ea088c;
}
.team-member.team-circle:hover {
  border-color: #ea088c;
}

/* Fitness */
.team-member.team-social {
  text-align: center;
}

.team-member.team-social .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  background: rgba(234, 8, 140, 0.8);
  z-index: 2;
}

.team-member.team-social .social-links a {
  font-size: 12px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  color: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  margin-right: 5px;
  overflow: hidden;
  vertical-align: middle;
}

.team-member.team-social .social-links a:hover i {
  -webkit-animation: fadeInUp 0.5s ease;
  -moz-animation: fadeInUp 0.5s ease;
  animation: fadeInUp 0.5s ease;
}

.team-member.team-social .team-member-desc {
  background: #f9f9f9;
  padding: 20px 10px;
}

.team-member.team-social .team-member-name {
  color: #4b4b4b;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

/* Cupcake */
.team-member.team-rounded {
  text-align: center;
}

.team-member.team-rounded .image-container img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.team-member.team-rounded .team-member-desc {
  padding: 30px;
}

.team-member.team-rounded .team-member-job {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  color: #4b4b4b;
}

.team-member.team-rounded .team-member-name {
  font-size: 24px;
  color: #ea088c;
  margin-bottom: 7px;
  letter-spacing: 0;
  text-transform: none;
}

/* Fashion */
.team-member.team-vertical {
  overflow: hidden;
  padding-bottom: 115px;
  position: relative;
}

.team-member.team-vertical .team-member-desc {
  padding: 35px 40px;
  background: #181818;
  color: #717171;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 115px;
  width: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -moz-transition: -moz-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  transition: transform 0.5s ease;
}

.team-member.team-vertical .team-member-desc p {
  font-size: 12px;
}

.team-member.team-vertical .team-member-name {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  white-space: nowrap;
}

.team-member.team-vertical .team-member-job {
  font-size: 12px;
  text-transform: uppercase;
  color: #ea088c;
  margin-bottom: 30px;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
}

.team-member.team-vertical .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member.team-vertical .social-links a {
  font-size: 16px;
  color: #3c3c3c;
}

.team-member.team-vertical .social-links a:hover {
  color: #fff;
}

.team-member.team-vertical:hover .team-member-desc {
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(115px);
  -moz-transform: translateY(115px);
  -ms-transform: translateY(115px);
  -o-transform: translateY(115px);
  transform: translateY(115px);
}

/* Animal */
.team-member.team-sep {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.team-member.team-sep .image-container {
  width: 210px;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 105px;
  -moz-border-radius: 105px;
  -ms-border-radius: 105px;
  border-radius: 105px;
  max-width: 90%;
  margin-bottom: 30px;
  overflow: hidden;
}

.team-member.team-sep .image-container .image {
  -webkit-border-radius: 105px;
  -moz-border-radius: 105px;
  -ms-border-radius: 105px;
  border-radius: 105px;
}

.team-member.team-sep .image-container img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 105px;
  -moz-border-radius: 105px;
  -ms-border-radius: 105px;
  border-radius: 105px;
}

.team-member.team-sep .team-member-name {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 7px;
}

.team-member.team-sep .team-member-job {
  font-size: 14px;
}

.team-member.team-sep .team-member-desc {
  margin-bottom: 30px;
}

.team-member.team-sep .social-links a {
  background: #e5e5e5;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  line-height: 36px;
  color: #fff;
  margin-right: 5px;
}

.team-member.team-sep .social-links a:hover {
  background: #ea088c;
}

/* Children */
.team-member.team-horizontal .image-container {
  float: left;
  width: 45%;
}

.team-member.team-horizontal .team-member-desc {
  float: left;
  width: 55%;
  padding-left: 30px;
}

.team-member.team-horizontal:after {
  content: "";
  display: table;
  clear: both;
}

.team-member.team-horizontal .team-member-name {
  text-transform: none;
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.team-member.team-horizontal .team-member-job {
  font-size: inherit;
}

.team-member.team-horizontal .button {
  margin-top: 15px;
}

.team-member.team-horizontal .button > span {
  padding-left: 30px;
  padding-right: 30px;
}

/* Flat */
.team-member.team-grayscale {
  text-align: center;
}

.team-member.team-grayscale .image-container img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.team-member.team-grayscale:hover .image-container img {
  -webkit-filter: none;
  filter: none;
}

.team-member.team-grayscale {
  border-bottom: 2px solid #ea088c;
}

.team-member.team-grayscale .team-member-desc {
  padding: 25px;
}

.team-member.team-grayscale .team-member-name {
  font-size: 14px;
}

.team-member.team-grayscale .team-member-job {
  color: #4b4b4b;
  font-size: 13px;
}

.team-member.team-grayscale .social-links a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  margin-right: 5px;
  background: #ea088c;
  font-size: 14px;
}

.team-member.team-grayscale .social-links a:nth-child(3n+1) {
  background-color: #28b2e9;
}

.team-member.team-grayscale .social-links a:nth-child(3n+2) {
  background-color: #da4537;
}

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

.team.team-slider .team-member-thumbnails {
  position: absolute;
  left: 50%;
  margin-left: -40px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.team.team-slider .team-member-thumbnails > a {
  display: block;
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  margin-bottom: 10px;
  background: #fff;
}

.team.team-slider .team-member-thumbnails > a img {
  filter: alpha(opacity=40);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
  -moz-transition: opacity 1s ease 0s;
  -o-transition: opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s;
  -ms-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
}

.team.team-slider .team-member-thumbnails > a:last-child {
  margin-bottom: 0;
}

.team.team-slider .team-member-thumbnails > a.active {
  border-color: #ea088c;
}

.team.team-slider .team-member-thumbnails > a.active img,
.team.team-slider .team-member-thumbnails > a:hover img {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.team.team-slider .team-member {
  display: none;
}

.team.team-slider .team-member.active {
  display: block;
  /*@include animation(fadeInUp, 1s, ease);*/
}

.team.team-slider .team-member.active .image-container {
  -webkit-animation: fadeInRight 1s ease;
  -moz-animation: fadeInRight 1s ease;
  animation: fadeInRight 1s ease;
}

.team.team-slider .team-member.active .team-member-desc {
  -webkit-animation: fadeInLeft 1s ease;
  -moz-animation: fadeInLeft 1s ease;
  animation: fadeInLeft 1s ease;
}

.team.team-slider .team-member .image-container {
  float: right;
  width: 50%;
}

.team.team-slider .team-member .team-member-desc {
  width: 44%;
  display: inline-block;
  vertical-align: middle;
  padding: 60px 0;
}

.team.team-slider .team-member > .container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.team.team-slider .team-member .team-member-name {
  font-size: 30px;
  margin-bottom: 20px;
  color: #181818;
  text-transform: none;
  letter-spacing: 0.04em;
}

.team.team-slider .team-member .social-links a {
  font-size: 20px;
  color: #c4c4c4;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border: 1px solid #c4c4c4;
  text-align: center;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  margin-right: 7px;
}

.team.team-slider .team-member .social-links a:hover {
  border-color: #ea088c;
  color: #fff;
  background-color: #ea088c;
}

.team-member.team-simple {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-member.team-simple .team-member-desc {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 30px;
  right: 30px;
  padding: 25px 20px;
  background: #fff;
}

.team-member.team-simple .social-links {
  position: absolute;
  z-index: 2;
  top: -50px;
  left: 0;
  width: 100%;
  text-align: center;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.team-member.team-simple .social-links a {
  color: #717171;
  font-size: 30px;
  margin-right: 30px;
}

.team-member.team-simple .social-links a:hover {
  color: #fff;
}

.team-member.team-simple:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 1;
  -moz-transition: background 0.3s ease 0s;
  -o-transition: background 0.3s ease 0s;
  -webkit-transition: background 0.3s ease 0s;
  -ms-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.team-member.team-simple:hover:before {
  background: rgba(0, 0, 0, 0.8);
}

.team-member.team-simple:hover .team-member-desc {
  background: #ea088c;
  -moz-transition: background 0.3s ease 0s;
  -o-transition: background 0.3s ease 0s;
  -webkit-transition: background 0.3s ease 0s;
  -ms-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.team-member.team-simple:hover .team-member-desc > * {
  color: #fff;
}

.team-member.team-simple:hover .social-links {
  top: 36%;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.team.style-couple .team-member.team-circle {
  border: none;
  float: left;
  width: 50%;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.team.style-couple .team-member.team-circle .team-member-name {
  font-size: 30px;
  line-height: 1.25em;
  color: #ea088c;
  letter-spacing: 0;
  margin-bottom: 30px;
  text-transform: none;
}

.team.style-couple .team-member.team-circle .image-container,
.team.style-couple .team-member.team-circle .image-container img {
  width: 240px;
  height: 240px;
  -webkit-border-radius: 120px;
  -moz-border-radius: 120px;
  -ms-border-radius: 120px;
  border-radius: 120px;
}

.team.style-couple .team-member.team-circle .social-links {
  padding: 0;
  background: none;
}

.team.style-couple .team-member.team-circle .social-links a {
  width: 36px;
  height: 36px;
  background: #fff;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  line-height: 36px;
  margin-right: 5px;
}

.team.style-couple .team-member.team-circle .social-links a:hover {
  background: #ea088c;
  color: #fff;
}

.team.style-couple .team-member.team-circle:first-child:after {
  content: "\f004";
  font-family: FontAwesome;
  position: absolute;
  font-size: 14px;
  color: #ea088c;
  top: 148px;
  right: -14px;
  width: 28px;
  line-height: 14px;
  text-align: center;
}

.team.style-couple .team-member.team-circle:first-child:before,
.team.style-couple .team-member.team-circle:last-child:before {
  content: "";
  border-top: 1px solid #e5e5e5;
  width: 15px;
  position: absolute;
  right: 20px;
  top: 155px;
}

.team.style-couple .team-member.team-circle:last-child:before {
  left: 20px;
}

.team.style-couple:after {
  content: "";
  display: table;
  clear: both;
}

/* 5.6. Progress & Counter ~~~~~~~~~~~~~~~~~~~~ */
.progress-bar {
  width: 100%;
  background: none;
  float: none;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
  box-shadow: none;
  margin-bottom: 30px;
}

.progress-bar .progress-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4b4b4b;
  line-height: 1;
  margin-bottom: 6px;
}

.progress-bar .progress {
  height: 11px;
  background: #f9f9f9;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.gray-bg .progress-bar .progress {
  background: #fff;
}

.bg-white .progress-bar .progress {
  background: #f9f9f9;
}

.progress-bar .progress-inner {
  height: 100%;
  background: #ea088c;
  position: relative;
}

.progress-bar .progress-percent {
  position: absolute;
  bottom: 100%;
  left: 100%;
  margin-bottom: 8px;
  padding: 6px 8px;
  background: #4b4b4b;
  -webkit-border-radius: 3px 3px 3px 0;
  -moz-border-radius: 3px 3px 3px 0;
  -ms-border-radius: 3px 3px 3px 0;
  border-radius: 3px 3px 3px 0;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}

.progress-bar .progress-percent:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-top: 3px solid #4b4b4b;
  border-right: 5px solid transparent;
}

.progress-bar.progress-bar-gradient .progress-inner {
  background: -webkit-linear-gradient(left, #20abd0, #ea088c);
  background: -o-linear-gradient(right, #20abd0, #ea088c);
  background: -moz-linear-gradient(right, #20abd0, #ea088c);
  background: linear-gradient(to right, #20abd0, #ea088c);
}

.progress-bar.progress-bar-colored-1 {
  position: relative;
  margin-bottom: 20px;
}

.progress-bar.progress-bar-colored-1 .progress {
  height: 40px;
  background: #f9f9f9;
}

.progress-bar.progress-bar-colored-1 .progress-label {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  margin-bottom: 0;
  color: #fff;
  z-index: 2;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.progress-bar.progress-bar-colored-1 .progress-inner {
  background-image: url(../images/icon/progress-texture.png);
  background-repeat: repeat-x;
}

.progress-bar.progress-bar-colored-1 .progress-percent {
  bottom: 50%;
  left: auto;
  right: 10px;
  margin-bottom: -10px;
  height: 20px;
  line-height: 20px;
  padding: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.progress-bar.progress-bar-colored-1 .progress-percent:before {
  display: none;
}

.progress-bar.progress-bar-colored-2 {
  position: relative;
  margin-bottom: 20px;
  height: 40px;
  display: table-row;
  background: #ea088c;
}

.progress-bar.progress-bar-colored-2 > * {
  display: table-cell;
  vertical-align: middle;
}

.progress-bar.progress-bar-colored-2 .progress-wrap {
  padding-right: 20px;
}

.progress-bar.progress-bar-colored-2 .progress {
  height: 8px;
  background: rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.progress-bar.progress-bar-colored-2 .progress-label {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  padding: 0 20px;
  width: 1%;
  white-space: nowrap;
}

.progress-bar.progress-bar-colored-2 .progress-inner {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.progress-bar.progress-bar-colored-2 .progress-percent {
  position: static;
  text-align: center;
  width: 45px;
  padding: 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  visibility: visible !important;
  background: rgba(0, 0, 0, 0.12);
}

.progress-bar.progress-bar-colored-2 .progress-percent:before {
  display: none;
}

.progress-bar-list {
  display: table;
  width: 100%;
  border-spacing: 0 20px;
  margin-top: -20px;
}

.progress-bar-list .progress-bar.progress-bar-colored-2 {
  display: table-row;
  margin-bottom: 0;
}

/* circle progress */
.circle-wrap {
  text-align: center;
}
.circle-wrap *:last-child {
  margin-bottom: 0;
}

.circle-progress {
  position: relative;
  display: inline-block;
  /*z-index: 100;*/
  margin-bottom: 30px;
  color: #ea088c;
  line-height: 0;
}

.circle-progress .circle-text {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 0.04em;
}

.circle-progress .circle-text i {
  position: relative;
  font-size: 60%;
  top: -0.5em;
}

.circle-progress.color-white + .title {
  color: #fff;
}

.circle-progress.letterspace-normal + .title {
  letter-spacing: 0.04em;
}

/* process builder */
.process-builder {
  padding: 0;
  margin: 0;
}
.process-builder .process-item {
  float: left;
  text-align: center;
  margin-bottom: 30px;
}
.process-builder.items-2 .process-item {
  width: 50%;
}
.process-builder.items-3 .process-item {
  width: 33.3333%;
}
.process-builder.items-4 .process-item {
  width: 25%;
}
.process-builder.items-5 .process-item {
  width: 20%;
}
.process-builder.items-6 .process-item {
  width: 16.6666%;
}
.process-builder .process-icon {
  display: inline-block;
  float: none;
  font-size: 30px;
  width: 104px;
  height: 104px;
  line-height: 100px;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  border-radius: 52px;
  margin-bottom: 15px;
  position: relative;
  padding: 5px;
  background: -webkit-linear-gradient(left, #20abd0, #ea088c);
  background: -o-linear-gradient(right, #20abd0, #ea088c);
  background: -moz-linear-gradient(right, #20abd0, #ea088c);
  background: linear-gradient(to right, #20abd0, #ea088c);
}
.process-builder .process-icon i {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  color: #c4c4c4;
}
.process-builder .process-icon:before, .process-builder .process-icon:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  width: 300%;
  top: 50%;
  margin-top: -1px;
}
.process-builder .process-icon:before {
  right: 100%;
  margin-right: 10px;
}
.process-builder .process-icon:after {
  left: 100%;
  margin-left: 10px;
}
.process-builder .process-item {
  overflow: hidden;
  display: block;
  padding: 2px;
}
.process-builder .process-item .image-container {
  margin-bottom: 0;
}
.process-builder .process-item:first-child .process-icon:before {
  display: none;
}
.process-builder .process-item:last-child .process-icon:after {
  display: none;
}
.process-builder .process-details {
  padding: 0 15px;
}
.process-builder .process-details .title {
  word-break: break-all;
  font-weight: bold;
}
.process-builder .process-details p:last-child {
  margin-bottom: 0;
}

.process-builder:after {
  content: "";
  display: table;
  clear: both;
}

.process-builder.process-simple .process-icon {
  background: none;
  vertical-align: top;
  text-align: center;
  border: 2px solid #ea088c;
  padding: 0;
  width: 90px;
  height: 90px;
  margin-right: 10px;
  line-height: 90px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.process-builder.process-simple .process-icon i {
  background: none;
}

.process-builder.process-simple .process-icon:before, .process-builder.process-simple .process-icon:after {
  display: none;
}

.process-builder.process-simple .process-details {
  display: inline-block;
  text-align: left;
}

.process-builder.process-simple .process-details ul li {
  padding-left: 15px;
  margin-bottom: 10px;
}

.process-builder.process-simple .process-icon:hover {
  background: #ea088c;
  border-color: #ea088c !important;
}

.process-builder.process-simple.color-white {
  color: inherit !important;
}

.process-builder.process-simple.color-white .process-icon {
  border-color: #fff;
}

.process-builder.process-simple.color-white .process-icon i {
  color: #fff;
}

.process-builder.process-simple.color-white .process-details .title {
  color: #fff;
}

.process-builder.process-creative {
  text-align: center;
}

.process-builder.process-creative .process-item {
  padding: 0 20px;
}

.process-builder.process-creative .process-icon {
  width: 186px;
  height: 186px;
  -webkit-border-radius: 93px;
  -moz-border-radius: 93px;
  -ms-border-radius: 93px;
  border-radius: 93px;
  background: none;
  overflow: hidden;
  padding: 0;
  margin-bottom: 20px;
  border: 15px solid #fff;
}

.process-builder.process-creative .process-icon img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 93px;
  -moz-border-radius: 93px;
  -ms-border-radius: 93px;
  border-radius: 93px;
}

.process-builder.process-creative .process-details .title {
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.process-builder {
  counter-reset: index;
}

.process-builder.process-creative-order {
  text-align: center;
}

.process-builder.process-creative-order .process-item {
  padding: 0 30px;
}

.process-builder.process-creative-order .process-icon {
  width: 190px;
  height: 190px;
  -webkit-border-radius: 95px;
  -moz-border-radius: 95px;
  -ms-border-radius: 95px;
  border-radius: 95px;
  border: 1px solid #e5e5e5;
  padding: 22px;
  background: none;
  position: relative;
  -moz-transition: border 0.25s ease 0s;
  -o-transition: border 0.25s ease 0s;
  -webkit-transition: border 0.25s ease 0s;
  -ms-transition: border 0.25s ease 0s;
  transition: border 0.25s ease 0s;
}

.process-builder.process-creative-order .process-icon img {
  -webkit-border-radius: 95px;
  -moz-border-radius: 95px;
  -ms-border-radius: 95px;
  border-radius: 95px;
}

.process-builder.process-creative-order .process-details .title {
  letter-spacing: 0.04em;
}

.process-builder.process-creative-order .image-container:before {
  content: counter(index,decimal-leading-zero);
  display: block !important;
  counter-increment: index;
  position: absolute;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #e5e5e5;
  left: -18px;
  top: 50%;
  margin-top: -18px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-top: none;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.process-builder.process-creative-order .process-icon:before,
.process-builder.process-creative-order .process-icon:after {
  border-style: dashed;
  border-width: 1px;
  border-color: #e5e5e5;
}

.process-builder.process-creative-order .process-item:hover .process-icon,
.process-builder.process-creative-order .process-item.active .process-icon {
  border-color: #ea088c;
}

.process-builder.process-creative-order .process-item:hover .image-container:before,
.process-builder.process-creative-order .process-item.active .image-container:before {
  background-color: #ea088c;
}

/* counters box */
.counters-box {
  text-align: center;
}
.counters-box .icon-wrap {
  display: inline-block;
  margin-bottom: 15px;
  width: 86px;
  height: 86px;
  line-height: 86px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 43px;
  -moz-border-radius: 43px;
  -ms-border-radius: 43px;
  border-radius: 43px;
  text-align: center;
}
.counters-box .icon-wrap i {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.75);
  line-height: inherit;
}
.counters-box .icon-wrap i:before {
  line-height: inherit;
}
.counters-box dt {
  font-size: 80px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.counters-box dd {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
.counters-box dd:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  left: 50%;
  top: -12px;
  margin-left: -6px;
}
.counters-box dl {
  margin-bottom: 0;
  color: #fff;
}

.counters-box.counters-creative {
  position: relative;
  padding: 30px 35px;
  z-index: 1;
}

.counters-box.counters-creative dl {
  font-family: inherit;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.counters-box.counters-creative dt {
  font-size: 60px;
  margin-bottom: 7px;
}

.counters-box.counters-creative dd {
  letter-spacing: 0.04em;
  font-weight: 700;
}

.counters-box.counters-creative dd:before {
  display: none;
}

.counters-box.counters-creative .counters-action {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 80px 35px 15px;
  background: #ea088c;
  visibility: hidden;
  -moz-transition: top 0.5s ease 0s;
  -o-transition: top 0.5s ease 0s;
  -webkit-transition: top 0.5s ease 0s;
  -ms-transition: top 0.5s ease 0s;
  transition: top 0.5s ease 0s;
}

.counters-box.counters-creative .counters-action .button {
  width: 100%;
  letter-spacing: 0.04em;
  border: 2px solid #fff;
  padding: 10px 0;
  color: #fff;
  filter: alpha(opacity=20);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}

.counters-box.counters-creative .counters-action .button:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.counters-box.counters-creative:hover {
  background: #ea088c;
}

.counters-box.counters-creative:hover .counters-action {
  visibility: visible;
  top: 100%;
}

/* 5.7. Icon Box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.icon-box-counter {
  counter-reset: index;
}

.icon-box-counter .icon-box:before {
  content: counter(index,decimal-leading-zero);
  counter-increment: index;
}

.icon-box .box-title {
  color: #4b4b4b;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.icon-box i {
  display: inline-block;
  font-size: 30px;
}

.icon-box .desc *:last-child {
  margin-bottom: 0;
}

.icon-box, .icon-box .box-title, .icon-box .icon-wrapper i {
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.icon-box .icon-wrapper i[class^="linea-icon-"]:before {
  line-height: inherit;
}

.icon-box .icon-wrapper img {
  max-width: 50px;
  height: auto;
  vertical-align: middle;
}

.icon-box.color-white i,
.icon-box.color-white .box-title {
  color: #fff;
}

.icon-box.style1 {
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
}

.icon-box.style1 i {
  font-size: 30px;
  color: #ea088c;
  margin-bottom: 12px;
}

.icon-box.style1 .box-title {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.icon-box.style1:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 80px;
  letter-spacing: -0.1em;
  color: #f9f9f9;
  line-height: 0.8em;
}

.icon-box.style1.color-white i {
  color: #fff;
}

.icon-box.style1.color-white .box-title {
  color: #fff;
}

.icon-box.style1.color-white:before {
  color: #242424;
}

.icon-box.style2 {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.icon-box.style2 i {
  font-size: 40px;
  margin-bottom: 25px;
  color: #fff;
  background: #ea088c;
  width: 145px;
  height: 250px;
  line-height: 360px;
  text-align: center;
  max-width: 100%;
}

.icon-box.style2 i:before {
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  transition: transform 0.3s ease;
  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
}

.icon-box.style2:hover i:before {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.icon-box.style2 .box-title {
  font-size: 15px;
  font-weight: 700;
}

.icon-box.style3 {
  display: table;
  width: 100%;
  background-color: #f9f9f9;
}

.icon-box.style3 > * {
  display: table-cell;
  vertical-align: middle;
}

.icon-box.style3 .icon-wrapper {
  padding: 30px 35px;
}

.icon-box.style3 .desc {
  padding: 30px 30px 30px 0;
}

.icon-box.style3 i {
  width: 80px;
  height: 80px;
  background: #fff;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  line-height: 80px;
  text-align: center;
  color: #c4c4c4;
}

.icon-box.style3:hover {
  background-color: #4b4b4b;
}

.icon-box.style3:hover .box-title {
  color: #fff;
}

.icon-box.style3:hover .icon-wrapper i {
  background: #ea088c;
  color: #fff;
}

.icon-box.style4 {
  text-align: center;
}

.icon-box.style4 .icon-wrapper i {
  width: 88px;
  height: 88px;
  line-height: 88px;
  margin-bottom: 25px;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  border-radius: 44px;
  background: #f9f9f9;
}

.gray-bg .icon-box.style4 .icon-wrapper i {
  background: #fff;
}

.icon-box.style4 .box-title {
  color: #181818;
}

.icon-box.style4 .box-title {
  font-size: 15px;
}

.color-white .icon-box.style4 .box-title {
  font-size: 15px;
  color: #fff;
}

.color-white .icon-box.style4 .desc {
  filter: alpha(opacity=75);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}

.color-white .icon-box.style4 p, .color-white .icon-box.style4 .text {
  color: #fff;
}

.icon-box.style4:hover .icon-wrapper i {
  color: #ea088c;
}

.color-white .icon-box.style4 .icon-wrapper i {
  background: rgba(255, 255, 255, 0.1);
}

.color-white .icon-box.style4:hover .desc {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.color-white .icon-box.style4:hover .icon-wrapper i {
  background: #fff;
}

.icon-box.style4.color-skin .icon-wrapper i {
  background: #ea088c;
  color: #fff;
}

.icon-box.style4.color-skin:hover .icon-wrapper i {
  color: #fff;
}

.icon-box.style4.hover-color-skin:hover .icon-wrapper i {
  background: #ea088c;
  color: #fff;
}

.icon-box.style5 {
  text-align: center;
  background: #f9f9f9;
  position: relative;
  padding: 50px 30px;
}

.icon-box.style5 .icon-wrapper i {
  color: #c4c4c4;
  margin-bottom: 20px;
}

.icon-box.style5 .box-title {
  font-size: 15px;
  margin-bottom: 25px;
}

.icon-box.style5:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  bottom: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  z-index: 1;
  -moz-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  -webkit-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.icon-box.style5:hover:after {
  width: 100%;
  left: 0;
}

.icon-box.style5:hover .icon-wrapper i {
  color: #ea088c;
}

.icon-box.style6 {
  text-align: center;
  padding: 80px 50px;
  height: 100%;
}

.icon-box.style6 .icon-wrapper {
  margin-bottom: 40px;
}

.icon-box.style6 .icon-wrapper i {
  color: #fff;
  font-size: 80px;
  line-height: 1em;
}

.icon-box.style6 p, .icon-box.style6 .text {
  color: rgba(255, 255, 255, 0.5);
}

.icon-box.style6 .box-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.icon-box.style7 {
  display: table;
  margin-bottom: 20px;
}

.icon-box.style7 > * {
  display: table-cell;
  vertical-align: top;
}

.icon-box.style7 .icon-wrapper {
  padding-top: 15px;
  width: 50px;
}

.icon-box.style7 .icon-wrapper i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f9f9f9;
  color: #c4c4c4;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  text-align: center;
  font-size: 16px;
}

.gray-bg .icon-box.style7 .icon-wrapper i {
  background: #fff;
}

.icon-box.style7 .desc {
  padding-left: 15px;
}

.icon-box.style7 .box-title {
  font-size: 15px;
  font-weight: bold;
}

.icon-box.style7.color-white .box-title {
  color: #fff;
}

.icon-box.style7.color-white .icon-wrapper i {
  background: none;
  border: 1px solid #c4c4c4;
}

.icon-box.style7.color-white .desc {
  color: #9c9c9c;
}

.icon-box.style7:hover .icon-wrapper i,
.gray-bg .icon-box.style7:hover .icon-wrapper i {
  background: #ea088c;
  color: #fff;
  border-color: transparent !important;
}

.icon-box.style7.size-lg {
  display: block;
}

.icon-box.style7.size-lg > * {
  display: block;
}

.icon-box.style7.size-lg .icon-wrapper {
  padding-top: 0;
  width: auto;
  margin-bottom: 25px;
}

.icon-box.style7.size-lg .icon-wrapper i {
  width: 64px;
  height: 64px;
  line-height: 64px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  border-radius: 32px;
  font-size: 24px;
}

.icon-box.style7.size-lg .desc {
  padding-left: 0;
}

.icon-box.style8 {
  text-align: center;
}

.icon-box.style8 .icon-wrapper i {
  width: 84px;
  height: 84px;
  line-height: 84px;
  margin-bottom: 25px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  border-radius: 42px;
  background: #fff;
  color: #c4c4c4;
}

.icon-box.style8 .box-title {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 25px;
}

.icon-box.style8:hover .icon-wrapper i {
  color: #fff;
  background: #ea088c;
}

.icon-box.style9 {
  text-align: center;
  background: #ea088c;
  padding: 40px 40px 80px;
  position: relative;
}

.icon-box.style9 p, .icon-box.style9 .text {
  color: rgba(255, 255, 255, 0.6);
}

.icon-box.style9 .icon-wrapper i {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  background: #fff;
  color: #c4c4c4;
}

.icon-box.style9 .box-title {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
}

.icon-box.style9 .button {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: #fff;
}

.icon-box.style9 .button > span {
  padding: 12px 0;
  width: 100%;
}

.icon-box.style9 .desc .button:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
}

.icon-box.style9 .desc > *:not(.button):last-child {
  margin-bottom: -50px;
}

.icon-box.style9 dl {
  margin-top: -6px;
}

.icon-box.style9 dt, .icon-box.style9 dd {
  line-height: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.icon-box.style9 dt {
  float: left;
  font-weight: 400;
}

.icon-box.style9 dd {
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box.style9 dd:last-child {
  border-bottom: none;
}

.row.same-height > div > .icon-box.style9,
.row.same-height .wpb_column > .wpb_wrapper,
.row.same-height .wpb_wrapper > .icon-box.style9 {
  height: 100%;
}

.row.same-height > div:nth-child(2n) > .icon-box.style9 {
  background: rgba(234, 8, 140, 0.85);
}

.intro-title {
  font-size: 40px;
  line-height: 1em;
  display: inline-block;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.intro-title:after {
  content: ".";
  font-size: 40px;
  color: #ea088c;
}

.heading-box {
  text-align: center;
  float: none;
  margin: 0 auto 40px;
  padding-left: 0;
  padding-right: 0;
}
.heading-box p {
  margin-top: 10px;
}
.heading-box p + p {
  margin-top: 0;
}
.heading-box .box-title {
  font-size: 30px;
  line-height: 1.25em;
  margin-bottom: 7px;
}
.heading-box .box-title.box-sm {
  margin-bottom: 20px;
}
.heading-box .box-title.box {
  margin-bottom: 30px;
}
.heading-box [class^="desc-"] {
  margin-top: 0;
}

.heading-box.box-sm {
  margin-bottom: 20px;
}

.heading-box.box {
  margin-bottom: 30px;
}

.heading-box.box-xs {
  margin-bottom: 10px;
}

/* Clean */
.icon-box.style10 {
  margin-bottom: 20px;
}

.icon-box.style10 .icon-wrapper {
  float: left;
  margin-right: 30px;
  line-height: 30px;
}

.icon-box.style10 .icon-wrapper i {
  color: #ea088c;
  display: block;
}

.icon-box.style10 .box-title {
  letter-spacing: 0.04em;
  line-height: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.icon-box.style11 .icon-wrapper {
  float: left;
  border: 20px solid rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  border-radius: 55px;
}

.icon-box.style11 .icon-wrapper i {
  width: 70px;
  height: 70px;
  background: #ea088c;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 70px;
}

.icon-box.style11 > .desc {
  padding-left: 135px;
}

.icon-box.style11 .box-title {
  font-size: 15px;
  font-weight: 700;
}

.icon-box.style11:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .icon-box.style11.icon-position-right {
    text-align: right;
  }

  .icon-box.style11.icon-position-right .icon-wrapper {
    float: right;
  }

  .icon-box.style11.icon-position-right > .desc {
    padding-left: 0;
    padding-right: 130px;
  }
}
.icon-box.style12 {
  margin-bottom: 25px;
}

.icon-box.style12 .icon-wrapper {
  float: left;
}

.icon-box.style12 .icon-wrapper i {
  font-size: 40px;
  line-height: 1em;
}

.icon-box.style12 > .desc {
  padding-left: 60px;
}

.icon-box.style12 .box-title {
  font-size: 15px;
}

.icon-box.style12.color-white .box-title {
  color: #fff;
}

.icon-box.style12 > .desc p:last-child {
  margin-bottom: 0;
}

.icon-box.style12 .desc {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box.style12:last-child .desc {
  border-bottom: none;
}

.icon-box.style13 {
  background: #ea088c;
  text-align: center;
  padding: 30px 20px;
  -moz-transition: -moz-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  transition: transform 0.5s ease;
}

.icon-box.style13 i {
  font-size: 50px;
  color: #fff;
  line-height: 50px;
}

.icon-box.style13 i:before {
  vertical-align: middle;
}

.icon-box.style13 > .desc {
  display: none;
}

.icon-box.style13:hover {
  -webkit-transform: scale(1.15, 1.15);
  -moz-transform: scale(1.15, 1.15);
  -ms-transform: scale(1.15, 1.15);
  -o-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
}

.icon-carousel .owl-carousel .owl-wrapper-outer {
  overflow: visible;
}

.icon-carousel .owl-carousel .owl-item:hover {
  position: relative;
  z-index: 2;
}

/* 5.8. Image Box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.wpb_single_image.vc_align_center {
  text-align: center;
}

.image-box {
  overflow: hidden;
}

.image-box .image-container {
  margin-bottom: 0;
}

.image-box .image-container img {
  /*width: auto; max-width: 100%; height: auto;*/
}

.image-box .image-box-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #4b4b4b;
  letter-spacing: 0.16em;
  font-weight: bold;
}

.image-box .desc > *:last-child {
  margin-bottom: 0;
}

.image-box .image-container {
  overflow: hidden;
}

.image-box .desc-inner:not(:last-child) {
  margin-bottom: 25px;
}

/*.image-box .image-container a img { @include transition(transform, 3s, ease); }
.image-box .image-container a:hover img { @include transform(scale(1.15, 1.15)); }*/
.image-box.style1 {
  padding: 10px;
  background: #f9f9f9;
  -webkit-border-radius: 72px 0 0 72px;
  -moz-border-radius: 72px 0 0 72px;
  -ms-border-radius: 72px 0 0 72px;
  border-radius: 72px 0 0 72px;
}

.image-box.style1 .image-container {
  float: left;
}

.image-box.style1.image-box-right {
  -webkit-border-radius: 0 72px 72px 0;
  -moz-border-radius: 0 72px 72px 0;
  -ms-border-radius: 0 72px 72px 0;
  border-radius: 0 72px 72px 0;
}

.image-box.style1.image-box-right .image-container {
  float: right;
  overflow: visible;
}

.image-box.style1 .image-container img {
  width: 124px;
  height: auto;
  -webkit-border-radius: 62px;
  -moz-border-radius: 62px;
  -ms-border-radius: 62px;
  border-radius: 62px;
}

.image-box.style1 .image {
  -webkit-border-radius: 62px;
  -moz-border-radius: 62px;
  -ms-border-radius: 62px;
  border-radius: 62px;
  overflow: hidden;
}

.image-box.style1 .image .image-extras {
  -webkit-border-radius: 62px;
  -moz-border-radius: 62px;
  -ms-border-radius: 62px;
  border-radius: 62px;
}

.image-box.style1 .desc {
  padding: 15px 30px 15px 150px;
}

.image-box.style1.image-box-right .desc {
  padding: 15px 150px 15px 30px;
}

.image-box.style1 .image-box-title {
  margin-bottom: 10px;
}

.image-box.style6 {
  position: relative;
  text-align: center;
  background: #fff;
}

.image-box.style6 .date {
  position: absolute;
  left: 20px;
  top: 0;
}

.image-box.style6 .date .month-day, .image-box.style6 .date .shadow {
  display: block;
  width: 50px;
  height: 60px;
}

.image-box.style6 .date .month-day {
  color: #fff;
  background: #ea088c;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-top: 8px;
  line-height: 1.35em;
  position: relative;
  z-index: 2;
}

.image-box.style6 .date .shadow {
  position: absolute;
  left: 5px;
  top: 5px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.image-box.style6 .date b {
  font-size: 30px;
  font-weight: 400;
  display: block;
}

.image-box.style6 .date .month-day:before,
.image-box.style6 .date .shadow:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  border-right: 25px solid transparent;
  border-top: 12px solid #ea088c;
}

.image-box.style6 .date .month-day:after,
.image-box.style6 .date .shadow:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  border-left: 25px solid transparent;
  border-top: 12px solid #ea088c;
}

.image-box.style6 .date .shadow:before, .image-box.style6 .date .shadow:after {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.image-box.style6 .image-box-title {
  font-size: 20px;
  color: #181818;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.image-box.style6 .desc {
  padding: 30px 20px 40px;
}

.image-box.style6 .desc ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  margin-bottom: 40px;
}

.image-box.style6 .desc ul li {
  margin-bottom: 15px;
}

.image-box.style6 .desc .button {
  -moz-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  -webkit-transition: all 0s ease 0s;
  -ms-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}

.image-box.style6:hover .desc .button,
.image-box.style6 .desc .button:hover {
  border-color: #fff;
  background-color: #fff;
  color: #181818;
}

.image-box.style6:hover {
  background: #ea088c;
}

.image-box.style6:hover .desc {
  color: rgba(255, 255, 255, 0.7);
}

.image-box.style6:hover .image-box-title {
  color: #fff;
}

.image-box.style2 .desc {
  padding: 40px 35px;
  text-align: center;
  background: #f9f9f9;
}

.image-box.style2 .image-box-title {
  text-transform: none;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #181818;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Fitness */
.image-box.style2.title-small .image-box-title {
  font-size: 16px;
  text-transform: uppercase;
}

.image-box.style2.title-small .desc {
  padding: 25px 30px 30px;
}

.image-box.style2 dl {
  margin-top: 1px;
  padding: 16px 0;
  margin-bottom: 0;
  background: #f9f9f9;
}

.image-box.style2 dt, .image-box.style2 dd {
  line-height: 20px;
  font-weight: 400;
  font-size: 12px;
  width: 50%;
  float: left;
}

.image-box.style2 dl i {
  font-size: 14px;
  margin-right: 6px;
  padding-left: 2px;
}

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

.image-box.style2 dt {
  padding-left: 25px;
}

.image-box.style2 dd {
  padding-right: 25px;
}

.image-box.style2 {
  position: relative;
}

.image-box.style2 .date {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  background: #ea088c;
  color: #fff;
  z-index: 3;
  font-size: 14px;
  padding: 25px 8px 10px;
  text-align: center;
  line-height: 1.25em;
}

.image-box.style2 .date b {
  font-weight: 400;
  position: absolute;
  top: 9px;
  width: 30px;
  left: 10px;
}

.image-box.style2 .date {
  text-transform: uppercase;
}

.image-box.style2 a {
  color: inherit;
  text-decoration: none;
}

.image-box.style2 a:hover {
  color: #181818;
}

.image-box.style2 a:hover i {
  color: #ea088c;
}

.image-box.style3 .desc {
  text-align: left;
  padding: 20px 0;
}

.image-box.style3 .image-box-title {
  font-weight: 400;
}

.image-box.style4 .desc {
  background: #fff;
  padding: 30px;
}

.image-box.style4 .image-box-title {
  font-size: 14px;
}

.image-box.style4 .desc .button {
  font-size: 9px;
  margin-top: 20px;
}

.image-box.style4 .desc .button > span {
  padding-left: 20px;
  padding-right: 20px;
}

.image-box.style5 .image-container {
  position: relative;
}

.image-box.style5 .image-container:before {
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 2;
}

.image-box.style5 .image img {
  -moz-transition: -moz-transform 3s ease;
  -o-transition: -o-transform 3s ease;
  -webkit-transition: -webkit-transform 3s ease;
  -ms-transition: -ms-transform 3s ease;
  transition: transform 3s ease;
}

.image-box.style5 .desc {
  padding-top: 20px;
}

/* education */
.image-box.style-circle {
  text-align: center;
}

.image-box.style-circle .image-container,
.image-box.style-circle .image-container img {
  display: inline-block;
  width: 160px;
  height: 160px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  border-radius: 80px;
}

.image-box.style-circle .image-box-title {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 400;
}

.image-box.style-circle .image-container {
  margin-bottom: 25px;
  overflow: hidden;
}

.image-box.style-circle .image-container .image {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

/* charity */
.image-box.style-horizontal .image-container {
  float: left;
  width: 48%;
}

.image-box.style-horizontal .desc {
  float: left;
  width: 52%;
  padding: 35px 40px;
  background: #fff;
}

.image-box.style-horizontal .desc p:last-child {
  margin-bottom: 0;
}

.image-box.style-horizontal .image-box-title {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Interior */
.image-box.style-desc-inner {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.image-box.style-desc-inner .desc,
.image-box.style-desc-inner .desc .button {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
}

.image-box.style-desc-inner .desc {
  padding: 30px;
  -moz-transition: -moz-transform 0.7s ease;
  -o-transition: -o-transform 0.7s ease;
  -webkit-transition: -webkit-transform 0.7s ease;
  -ms-transition: -ms-transform 0.7s ease;
  transition: transform 0.7s ease;
}

.image-box.style-desc-inner .desc .button {
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px 0;
  font-size: 11px;
  color: inherit;
  letter-spacing: 0.3em;
  font-family: inherit;
  font-weight: 400;
  -moz-transition: -moz-transform 0.7s ease;
  -o-transition: -o-transform 0.7s ease;
  -webkit-transition: -webkit-transform 0.7s ease;
  -ms-transition: -ms-transform 0.7s ease;
  transition: transform 0.7s ease;
  -webkit-transform: translateX(150%);
  -moz-transform: translateX(150%);
  -ms-transform: translateX(150%);
  -o-transform: translateX(150%);
  transform: translateX(150%);
}

.image-box.style-desc-inner .desc .button:hover {
  color: #4b4b4b;
}

.image-box.style-desc-inner .image-box-title {
  font-size: 16px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.image-box.style-desc-inner .desc p {
  letter-spacing: 0.3em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.image-box.style-desc-inner:hover .desc {
  -webkit-transform: translateX(-150%);
  -moz-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  -o-transform: translateX(-150%);
  transform: translateX(-150%);
}

.image-box.style-slider {
  display: table;
  float: left;
}

.image-box.style-slider .image-container {
  width: 50%;
  display: table-cell;
  vertical-align: top;
}

.image-box.style-slider .desc {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background: #f9f9f9;
  padding: 40px 70px 70px;
}

.image-box.style-slider .desc .button {
  margin-top: 20px;
}

.image-box.style-slider .image-box-title {
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #181818;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 10px;
}

.image-box.style-slider .social-links a {
  width: 40px;
  height: 40px;
  color: #c4c4c4;
  border: 1px solid #c4c4c4;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  margin-right: 6px;
}

.image-box.style-slider .social-links a:hover {
  color: #fff;
  background: #ea088c;
  border-color: #ea088c;
}

.image-box.style-slider .button {
  margin: 0 5px 10px;
  font-weight: normal;
}

.image-box.style-slider .button > span {
  padding-left: 30px;
  padding-right: 30px;
}

.image-box.style-slider .sub-title {
  position: relative;
  margin-bottom: 40px;
}

.image-box.style-slider .sub-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  border-top: 1px solid #ea088c;
  width: 12px;
  margin-left: -6px;
}

.image-box.style-slider .action {
  margin: 30px 0;
}

.image-box-slider .owl-pagination {
  position: absolute;
  bottom: 30px;
  width: 50%;
  left: 50%;
  text-align: center;
}

.image-box-slider .owl-pagination .owl-page,
.image-gallery.gallery-style4 .owl-pagination .owl-page,
.testimonial-slider.testimonial-style1 .owl-pagination .owl-page,
.testimonial-slider.testimonial-style4 .owl-pagination .owl-page {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 1px solid #c4c4c4;
  display: inline-block;
}

.image-box-slider .owl-pagination .owl-page + .owl-page,
.image-gallery.gallery-style4 .owl-pagination .owl-page + .owl-page,
.testimonial-slider.testimonial-style1 .owl-pagination .owl-page + .owl-page,
.testimonial-slider.testimonial-style4 .owl-pagination .owl-page + .owl-page {
  margin-left: 5px;
}

.image-box-slider .owl-pagination .owl-page.active,
.image-gallery.gallery-style4 .owl-pagination .owl-page.active {
  border-color: #ea088c;
}

.image-box-slider .owl-buttons,
.image-gallery.gallery-style4 .owl-buttons {
  display: none;
}

.image-gallery.gallery-style5 {
  margin: -3px -3px 0;
}

.image-gallery.gallery-style5 .iso-item {
  padding: 3px;
}

/* offer style */
.image-box.style-offer {
  background: #f9f9f9;
}

.image-box.style-offer .image-container {
  width: 50%;
  float: left;
  padding-right: 90px;
}

.image-box.style-offer .image-container img {
  width: auto;
  float: right;
}

.image-box.style-offer > .desc {
  float: left;
  display: table;
  padding: 30px 0;
}

.image-box.style-offer .desc-inner {
  display: table-cell;
  vertical-align: middle;
}

.image-box.style-offer .image-box-title {
  font-size: 30px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  color: #181818;
}

.image-box.style-offer .icon-box.style10 .icon-wrapper i {
  color: #c4c4c4;
}

.image-box.style-offer .icon-box .box-title {
  color: #4b4b4b;
  font-weight: 400;
}

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

/* Pricing Table style */
.image-box.style-pricing-table {
  background: #f9f9f9;
  padding: 10px;
}

.gray-bg .image-box.style-pricing-table {
  background: #fff;
}

.image-box.style-pricing-table .desc {
  text-align: center;
  padding: 30px 25px 20px;
}

.image-box.style-pricing-table .image-box-title {
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: inherit;
}

.image-box.style-pricing-table .price {
  margin-top: -15px;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}

.image-box.style-pricing-table .desc-inner {
  margin-bottom: 35px;
}

/* 5.9. Image Gallery ~~~~~~~~~~~~~~~~~~~~~~~~~ */
.owl-carousel {
  position: relative;
  width: 100%;
  display: none;
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-item {
  float: left;
}

/*.owl-item img { width: 100%; }*/
.owl-carousel.shortcode .owl-pagination {
  display: block;
  text-align: center;
  margin-top: 25px;
}

.owl-carousel.shortcode .owl-pagination .owl-page {
  width: 12px;
  height: 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #c4c4c4;
}

.owl-carousel.shortcode .owl-pagination .owl-page.active {
  border-color: #ea088c;
}

.owl-carousel.shortcode .owl-pagination .owl-page + .owl-page {
  margin-left: 5px;
}

.image-gallery.gallery-style1 .owl-buttons > * {
  height: 56px;
  background: #fff;
  line-height: 56px;
  text-align: center;
  overflow: hidden;
}

.image-gallery.gallery-style1 .owl-buttons > *:after {
  font-family: "linea-arrows-10";
  font-size: 30px;
  display: block;
  width: 56px;
  float: left;
}

.image-gallery.gallery-style1 .owl-buttons > * span {
  display: block;
  width: 0;
  font-size: 12px;
  -moz-transition: width 0.5s ease 0s;
  -o-transition: width 0.5s ease 0s;
  -webkit-transition: width 0.5s ease 0s;
  -ms-transition: width 0.5s ease 0s;
  transition: width 0.5s ease 0s;
  overflow: hidden;
  float: left;
}

.image-gallery.gallery-style1 .owl-buttons > *:hover:after {
  color: #ea088c;
}

.image-gallery.gallery-style1 .owl-buttons > *:hover span {
  width: 56px;
}

.image-gallery.gallery-style1 .owl-buttons .owl-prev {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 1px;
}

.image-gallery.gallery-style1 .owl-buttons .owl-prev:after {
  content: "\e03f";
}

.image-gallery.gallery-style1 .owl-buttons .owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -57px;
}

.image-gallery.gallery-style1 .owl-buttons .owl-next:after {
  content: "\e04b";
}

.image-gallery.gallery-style2 .image-extras,
.portfolio-masonry-flat figure .image-extras {
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
}

.image-gallery.gallery-style2 .image-extras:before,
.portfolio-masonry-flat figure .image-extras:before {
  position: static;
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.image-gallery.gallery-style2 .caption-wrapper,
.portfolio-masonry-flat figure .portfolio-meta {
  display: inline-block;
  width: 90%;
  vertical-align: middle;
}

.image-gallery.gallery-style2 .caption-wrapper h3,
.portfolio-masonry-flat figure .portfolio-meta .portfolio-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.image-gallery.gallery-style2 .caption-wrapper p,
.portfolio-masonry-flat figure .portfolio-category {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.image-gallery.gallery-style2 .gallery-action,
.portfolio-masonry-flat figure .portfolio-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.image-gallery.gallery-style2 .gallery-action a,
.portfolio-masonry-flat figure .portfolio-action a {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  background: #fff;
  color: #ea088c;
  letter-spacing: 0.16em;
  margin-left: 1px;
}

.image-gallery.gallery-style2 .gallery-action a:hover,
.portfolio-masonry-flat figure .portfolio-action a:hover {
  background: #ea088c;
  color: #fff;
}

.image-gallery.gallery-style3 {
  border: 2px solid #f9f9f9;
  padding: 8px;
  background: #fff;
}

.image-gallery.gallery-style3 .owl-buttons > *,
.image-gallery.gallery-style8 .owl-buttons > *,
.portfolio-container .owl-buttons > * {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  filter: alpha(opacity=30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  -moz-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  color: #181818;
}

.image-gallery.gallery-style3 .owl-buttons > *:before,
.image-gallery.gallery-style8 .owl-buttons > *:before,
.portfolio-container .owl-buttons > *:before {
  content: "";
  font-family: FontAwesome;
  font-size: 12px;
}

.image-gallery.gallery-style3 .owl-buttons > *:hover,
.image-gallery.gallery-style8 .owl-buttons > *:hover,
.portfolio-container .owl-buttons > *:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #ea088c;
}

.image-gallery.gallery-style3 .owl-prev:before,
.image-gallery.gallery-style8 .owl-prev:before,
.portfolio-container .owl-prev:before {
  content: "\f053";
}

.image-gallery.gallery-style3 .owl-next:before,
.image-gallery.gallery-style8 .owl-next:before,
.portfolio-container .owl-next:before {
  content: "\f054";
}

.image-gallery.gallery-style3 .owl-prev {
  left: 8px;
}

.image-gallery.gallery-style3 .owl-next {
  right: 8px;
}

.image-gallery.gallery-style8 .owl-prev,
.portfolio-container .owl-prev {
  left: 0;
}

.image-gallery.gallery-style8 .owl-next,
.portfolio-container .owl-next {
  right: 0;
}

.portfolio-container .owl-buttons > * {
  margin-top: -45px;
}

.image-gallery.gallery-style4 .owl-pagination {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
}

.image-gallery.gallery-style4 .owl-pagination .owl-page.active {
  background: #ea088c;
  border-color: #ea088c;
}

.image-gallery.gallery-style6 {
  margin-right: -1px;
  margin-top: 0;
}

.image-gallery.gallery-style6 .iso-item {
  padding: 0 1px 1px 0;
}

.image-gallery.gallery-style7 {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: 15px;
}

.image-gallery.gallery-style7 .iso-item {
  padding: 15px;
}

.image-gallery.gallery-style-circle .image,
.image-gallery.gallery-style-circle img {
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  -ms-border-radius: 300px;
  border-radius: 300px;
}

.image-gallery-thumbs .owl-item {
  cursor: pointer;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -moz-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  -webkit-transition: opacity 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}

.image-gallery-thumbs .owl-item.synced {
  cursor: pointer;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.image-gallery-thumbs.gallery-thumbs-style1 {
  padding: 8px 4px;
  border: 2px solid #f9f9f9;
  border-top: none;
  background: #fff;
}

.image-gallery-thumbs.gallery-thumbs-style1 .owl-item {
  padding: 0 4px;
}

.image-gallery-thumbs.gallery-thumbs-style1:before,
.image-gallery-thumbs.gallery-thumbs-style1:after {
  content: "";
  position: absolute;
  width: 4px;
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 9;
}

.image-gallery-thumbs.gallery-thumbs-style1:before {
  left: 4px;
}

.image-gallery-thumbs.gallery-thumbs-style1:after {
  right: 4px;
}

.image-gallery-thumbs.gallery-thumbs-style2 {
  border: 2px solid #f9f9f9;
  border-top: none;
  padding: 20px 14px;
}

.image-gallery-thumbs.gallery-thumbs-style2 .owl-item {
  padding: 0 4px;
}

.image-gallery-thumbs.gallery-thumbs-style2 .owl-item img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/* logo slider */
.image-gallery.style-logo {
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
}

.image-gallery.style-logo .owl-item {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.image-gallery.style-logo .item {
  height: 100%;
  background: #fff;
  padding: 30px 10px;
}

.image-gallery.style-logo .item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.image-gallery.style-logo .item img {
  display: inline-block;
  vertical-align: middle;
  max-width: 96%;
  filter: alpha(opacity=30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

.image-gallery.style-logo .item:hover img {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

/* 5.10. Testimonial ~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.testimonial-slider.testimonial-style1 {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider.testimonial-style1 .testimonial-author {
  display: inline-block;
  margin-bottom: 25px;
}

.testimonial-slider.testimonial-style1 .testimonial-author:after {
  content: "";
  display: table;
  clear: both;
}

.testimonial-slider.testimonial-style1 .photo-image img {
  width: 32px;
  height: 32px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}

.testimonial-slider.testimonial-style1 .photo-image {
  float: left;
  margin-right: 10px;
}

.testimonial-slider.testimonial-style1 .author-name {
  float: right;
  line-height: 32px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
  white-space: nowrap;
}

.testimonial-slider.testimonial-style1 .author-job {
  float: right;
  margin-bottom: 0;
  line-height: 32px;
  white-space: nowrap;
  margin-right: 10px;
}

.testimonial-slider.testimonial-style1 .testimonial-content {
  padding: 0 40px;
  margin: 0 auto 40px;
}

.testimonial-slider.testimonial-style1 .testimonial-content p {
  font-size: 20px;
}

.testimonial-slider.testimonial-style1 .owl-buttons > * {
  width: 48px;
  height: 48px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  line-height: 46px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 20px;
  font-weight: 400;
  color: #e5e5e5;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  background: #fff;
}

.testimonial-slider.testimonial-style1 .owl-buttons > *:hover {
  border-color: #ea088c;
  color: #ea088c;
}

.testimonial-slider.testimonial-style1 .owl-prev:before {
  content: "\f104";
}

.testimonial-slider.testimonial-style1 .owl-next:after {
  content: "\f105";
}

.testimonial-slider.testimonial-style1 .owl-prev {
  left: -12%;
}

.testimonial-slider.testimonial-style1 .owl-next {
  right: -12%;
}

.testimonial-slider.testimonial-style1 .owl-pagination .owl-page,
.testimonial-slider.testimonial-style4 .owl-pagination .owl-page {
  display: inline-block;
}

.testimonial-slider.testimonial-style1 .owl-pagination .owl-page.active,
.testimonial-slider.testimonial-style4 .owl-pagination .owl-page.active {
  border-color: #ea088c;
  background: #ea088c;
}

.testimonial-slider.testimonial-style2 {
  margin-left: -15px;
  margin-right: -15px;
  width: auto;
}

.testimonial-slider.testimonial-style2 .owl-item {
  padding-left: 15px;
  padding-right: 15px;
}

.testimonial-slider.testimonial-style2 .testimonial {
  border: 6px solid #fff;
  padding: 50px 50px 50px 120px;
  height: 100%;
}

.testimonial-slider.testimonial-style2 .testimonial-content {
  position: relative;
  margin-bottom: 25px;
}

.testimonial-slider.testimonial-style2 .testimonial-content p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.testimonial-slider.testimonial-style2 .author-name {
  color: #ea088c;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
}

.testimonial-slider.testimonial-style2 .photo-image {
  display: none;
}

.testimonial-slider.testimonial-style2 .testimonial-content:before {
  content: ".";
  font-family: "linea-basic-10";
  font-size: 20px;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  top: 5px;
  left: -70px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}

.testimonial-slider.testimonial-style2 .owl-pagination,
.testimonial-slider.testimonial-style5 .owl-pagination {
  display: block;
  text-align: center;
  margin-top: 15px;
}

.testimonial-slider.testimonial-style2 .owl-page,
.testimonial-slider.testimonial-style5 .owl-page {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

.testimonial-slider.testimonial-style2 .owl-page + .owl-page,
.testimonial-slider.testimonial-style5 .owl-page + .owl-page {
  margin-left: 5px;
}

.testimonial-slider.testimonial-style2 .owl-page.active,
.testimonial-slider.testimonial-style5 .owl-page.active {
  border-color: #ea088c;
  background: #ea088c;
}

.testimonial-slider.testimonial-style3 {
  position: relative;
}

.testimonial-slider.testimonial-style3 .image-gallery-thumbs {
  margin: 10px auto 40px;
}

.testimonial-slider.testimonial-style3 .image-gallery-thumbs .owl-item {
  padding-left: 8px;
  padding-right: 8px;
  filter: alpha(opacity=65);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
}

.testimonial-slider.testimonial-style3 .image-gallery-thumbs .owl-item img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid transparent;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.testimonial-slider.testimonial-style3 .image-gallery-thumbs .owl-item.synced {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.testimonial-slider.testimonial-style3 .image-gallery-thumbs .owl-item.synced img {
  border-color: #fff;
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper {
  margin-left: 80px;
  margin-right: 80px;
  text-align: center;
  width: auto;
  position: static;
}

.testimonial-slider.testimonial-style3 .testimonial-content p {
  font-size: 26px;
  line-height: 1.538em;
  color: #fff;
  word-wrap: break-word;
}

.testimonial-slider.testimonial-style3 .testimonial-content {
  margin-bottom: 30px;
}

.testimonial-slider.testimonial-style3 .author-name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ea088c;
}

.testimonial-slider.testimonial-style3 .author-job {
  font-size: 12px;
  line-height: 1.25em;
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons > * {
  position: absolute;
  top: 50%;
  margin-top: -24px;
  width: 48px;
  height: 48px;
  line-height: 46px;
  text-align: center;
  border: 1px solid #fff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  font-size: 30px;
  color: #fff;
  font-family: "linea-arrows-10";
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons > *:hover {
  color: #ea088c;
  background: #fff;
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons .owl-prev:before {
  content: "\e03f";
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons .owl-next:before {
  content: "\e04b";
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons .owl-prev {
  left: 0;
}

.testimonial-slider.testimonial-style3 .testimonial-wrapper .owl-buttons .owl-next {
  right: 0;
}

.testimonial.testimonial-style4 {
  padding: 80px 0;
  position: relative;
  text-align: center;
  margin-bottom: 60px !important;
  background: #f6f6f6;
}

.testimonial-slider.testimonial-style4 .testimonial.testimonial-style4 {
  padding: 100px 0 20px;
  margin-bottom: 0 !important;
  background: none;
}

.testimonial-slider.testimonial-style4 .owl-pagination {
  text-align: center;
  margin-bottom: 80px;
}

.testimonial-slider.testimonial-style4.color-white .testimonial-content p {
  color: #fff;
}

.testimonial.testimonial-style4 .testimonial-content {
  padding: 0 80px;
  margin-bottom: 30px;
}

.testimonial.testimonial-style4 .testimonial-content p {
  font-size: 26px;
  line-height: 1.538em;
  color: #4b4b4b;
}

.testimonial.testimonial-style4 .photo-image {
  position: absolute;
  left: 50%;
  bottom: -60px;
  margin-left: -60px;
  padding: 10px;
}

.testimonial.testimonial-style4 .photo-image:before {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 60px;
  left: 0;
  top: 0;
  -webkit-border-radius: 60px 60px 0 0;
  -moz-border-radius: 60px 60px 0 0;
  -ms-border-radius: 60px 60px 0 0;
  border-radius: 60px 60px 0 0;
  background: #fff;
}

.testimonial.testimonial-style4 .photo-image img {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.testimonial.testimonial-style4 .author-name {
  font-size: 14px;
  text-transform: uppercase;
  color: #ea088c;
  margin-bottom: 0;
  font-weight: 700;
}

.testimonial.testimonial-style4 .author-job {
  font-size: 12px;
  line-height: 1.25em;
}

/* Cupcake */
.testimonial-slider.testimonial-style5 .testimonial {
  position: relative;
  padding: 30px 0 30px 160px;
}

.testimonial-slider.testimonial-style5 .photo-image {
  position: absolute;
  left: 0;
  top: 30px;
}

.testimonial-slider.testimonial-style5 .photo-image img {
  width: 120px;
  height: 120px;
  border: 10px solid #fff;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  border-radius: 60px;
}

.testimonial-slider.testimonial-style5 .testimonial-content {
  margin-bottom: 30px;
}

.testimonial-slider.testimonial-style5 .testimonial-content p {
  font-size: 40px;
  color: #ea088c;
  line-height: 1.25em;
}

.testimonial-slider.testimonial-style5 .testimonial-content p:before {
  content: "\"";
}

.testimonial-slider.testimonial-style5 .testimonial-content p:after {
  content: "\"";
}

.testimonial-slider.testimonial-style5 .author-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.testimonial-slider.testimonial-style5 .author-name:before {
  content: "-";
  margin-right: 5px;
}

.testimonial-slider.testimonial-style5 .owl-page {
  border-color: #c4c4c4;
}

.parallax .testimonial-slider {
  -webkit-backface-visibility: hidden;
}

/* Modern */
.testimonial-slider.testimonial-style6 .testimonial {
  position: relative;
  border: 1px solid #f1f1f1;
  padding: 30px 30px 50px 36px;
}

.testimonial-slider.testimonial-style6 .photo-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 4px;
}

.testimonial-slider.testimonial-style6 .photo-image img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.testimonial-slider.testimonial-style6 .testimonial-author {
  position: absolute;
  left: 36px;
  bottom: -35px;
  padding-left: 70px;
  padding-bottom: 5px;
}

.testimonial-slider.testimonial-style6 .owl-wrapper-outer {
  padding-bottom: 40px;
}

.testimonial-slider.testimonial-style6 .author-name,
.testimonial-slider.testimonial-style6 .author-job {
  display: inline-block;
  margin-bottom: 0;
  font-size: 10px;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.testimonial-slider.testimonial-style6 .testimonial-content p {
  font-style: italic;
}

.testimonial-slider.testimonial-style6 .author-name {
  color: #ea088c;
}

.testimonial-slider.testimonial-style6 .author-job {
  color: #181818;
}

.testimonial-slider.testimonial-style6 .author-job:before {
  content: "-";
  margin-right: 3px;
}

.testimonial-slider.testimonial-style6 .owl-pagination {
  position: absolute;
  right: 15px;
  bottom: 48px;
}

.testimonial-slider.testimonial-style6 .owl-pagination .owl-page {
  display: inline-block;
  margin-left: 7px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background: #f1f1f1;
}

.testimonial-slider.testimonial-style6 .owl-pagination .owl-page.active {
  background: #ea088c;
}

/* 5.11. Pricing Table ~~~~~~~~~~~~~~~~~~~~~~~~ */
.pricing-table .pricing-type {
  text-transform: uppercase;
  margin-bottom: 0;
}

.pricing-table ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* style 1 */
.pricing-table.pricing-style1 {
  background: #f9f9f9;
  padding: 30px 50px;
  text-align: left;
}

.gray-bg .pricing-table.pricing-style1 {
  background: #fff;
}

.pricing-table.pricing-style1.bg-white {
  background: #fff;
}

.pricing-table.pricing-style1 > * + * {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table.pricing-style1 .pricing-type {
  font-size: 15px;
  letter-spacing: 0.16em;
  padding-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

.pricing-table.pricing-style1 .pricing-table-content {
  padding: 30px 0;
}

.pricing-table.pricing-style1 .pricing-table-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing-table.pricing-style1 .pricing-table-content li {
  line-height: 24px;
  font-size: 13px;
  margin-bottom: 16px;
}

.pricing-table.pricing-style1 .pricing-table-content li:before {
  content: "\e006";
  font-family: "linea-arrows-10";
  font-size: 16px;
  margin-right: 10px;
  float: left;
  width: 18px;
  height: 18px;
  border: 1px solid;
  line-height: 16px;
  text-align: center;
  margin-top: 2px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  border-radius: 9px;
  font-weight: bold;
}

.pricing-table.pricing-style1 .pricing-row {
  padding: 25px 0;
  text-align: center;
  color: #181818;
  line-height: 1;
}

.pricing-table.pricing-style1 .currency-symbol {
  font-size: 20px;
  position: relative;
  top: -26px;
}

.pricing-table.pricing-style1 .price-value {
  font-size: 60px;
}

.pricing-table.pricing-style1 .pricing-row small {
  font-size: 12px;
}

.pricing-table.pricing-style1 .pricing-row small:before {
  content: "/";
  margin-right: 5px;
}

.pricing-table.pricing-style1 .pricing-table-footer {
  padding-top: 25px;
  text-align: center;
}

.pricing-table.pricing-style1 .pricing-table-footer .button {
  margin-bottom: 0;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
}

.pricing-table.pricing-style1 .pricing-table-footer .button > span {
  padding-left: 30px;
  padding-right: 30px;
  background: none !important;
}

.pricing-table-container:hover .pricing-table.pricing-style1.active {
  background: #f9f9f9;
  color: inherit;
}

.pricing-table-container:hover .pricing-table.pricing-style1.bg-white.active {
  background: #fff;
}

.pricing-table-container:hover .pricing-table.pricing-style1.active > * + * {
  border-top-color: rgba(0, 0, 0, 0.05);
}

.pricing-table-container:hover .pricing-table.pricing-style1.active .pricing-type,
.pricing-table-container:hover .pricing-table.pricing-style1.active .pricing-row {
  color: #181818;
}

.pricing-table-container:hover .pricing-table.pricing-style1.active .pricing-table-footer .button {
  background: #ea088c;
  color: #fff;
}

.pricing-table-container:hover .pricing-table.pricing-style1.active:hover,
.pricing-table.pricing-style1:hover,
.pricing-table.pricing-style1.active {
  background: #ea088c;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-table-container:hover .pricing-table.pricing-style1.active:hover > * + *,
.pricing-table.pricing-style1:hover > * + *,
.pricing-table.pricing-style1.active > * + * {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.pricing-table-container:hover .pricing-table.pricing-style1.active:hover .pricing-type,
.pricing-table-container:hover .pricing-table.pricing-style1.active:hover .pricing-row,
.pricing-table.pricing-style1:hover .pricing-type,
.pricing-table.pricing-style1:hover .pricing-row,
.pricing-table.pricing-style1.active .pricing-type,
.pricing-table.pricing-style1.active .pricing-row {
  color: #fff;
}

.pricing-table-container:hover .pricing-table.pricing-style1.active:hover .pricing-table-footer .button,
.pricing-table.pricing-style1:hover .pricing-table-footer .button,
.pricing-table.pricing-style1.active .pricing-table-footer .button {
  background: #fff;
  color: #4b4b4b;
}

/* style2 */
.pricing-table.pricing-style2 {
  border: 2px solid #fff;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 0 28px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 25px;
  text-align: center;
  min-width: 220px;
  background: -moz-linear-gradient(36deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 50%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(50%, rgba(0, 0, 0, 0.2)), color-stop(50%, rgba(0, 0, 0, 0.25)), color-stop(50%, rgba(0, 0, 0, 0.25)));
  background: -webkit-linear-gradient(36deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 50%);
  background: -o-linear-gradient(36deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 50%);
  background: -ms-linear-gradient(36deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 50%);
  background: linear-gradient(54deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1 );
}

.pricing-table.pricing-style2.active {
  padding: 25px 40px;
  min-width: 250px;
}

.pricing-table-container {
  text-align: center;
}

.pricing-table-container .pricing-table.pricing-style2 {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  width: 80%;
}

.pricing-table-container.pt-col-2 .pricing-table.pricing-style2 {
  width: 40%;
}

.pricing-table-container.pt-col-2 .pricing-table.pricing-style2.active {
  width: 48%;
}

.pricing-table-container.pt-col-3 .pricing-table.pricing-style2 {
  width: 25%;
}

.pricing-table-container.pt-col-3 .pricing-table.pricing-style2.active {
  width: 30%;
}

.pricing-table-container.pt-col-4 .pricing-table.pricing-style2 {
  width: 20%;
}

.pricing-table-container.pt-col-4 .pricing-table.pricing-style2.active {
  width: 25%;
}

.pricing-table.pricing-style2 > * + * {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-table.pricing-style2 .pricing-type {
  color: #fff;
  font-size: 40px;
  padding: 32px 0;
  word-wrap: break-word;
  line-height: 1em;
}

.pricing-table.pricing-style2 .pricing-table-content {
  padding: 30px 0;
}

.pricing-table.pricing-style2 .pricing-table-content li {
  color: #fff;
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  padding: 13px 0;
}

.pricing-table.pricing-style2 .pricing-row {
  padding: 25px 0;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.pricing-table.pricing-style2 .currency-symbol {
  font-size: 36px;
  position: relative;
  top: -18px;
}

.pricing-table.pricing-style2 .price-value {
  font-size: 60px;
}

.pricing-table.pricing-style2 .pricing-row small {
  font-size: 12px;
}

.pricing-table.pricing-style2 .pricing-row small:before {
  content: "/";
  margin-right: 5px;
}

.pricing-table.pricing-style2 .pricing-table-footer {
  padding: 30px 0;
}

.pricing-table.pricing-style2 .pricing-table-footer .button {
  margin-bottom: 0;
  background: #fff;
  color: #4b4b4b;
  font-size: 12px;
}

.pricing-table.pricing-style2 .pricing-table-footer .button > span {
  padding: 7px 40px;
}

.pricing-table.pricing-style2 .pricing-table-footer .button:hover {
  color: #fff;
  background: #ea088c;
}

/* style3 */
.pricing-table.pricing-style3 {
  background: #ea088c;
  color: #ea088c;
  padding-left: 30px;
  padding-right: 30px;
}

.pricing-table.pricing-style3 .pricing-type {
  font-size: 14px;
  color: #fff;
  padding: 25px 0;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.pricing-table.pricing-style3 .pricing-row {
  padding: 10px 0;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.pricing-table.pricing-style3 .currency-symbol {
  font-size: 14px;
  position: relative;
  top: -10px;
  margin-right: 2px;
}

.pricing-table.pricing-style3 .price-value {
  font-size: 26px;
}

.pricing-table.pricing-style3 .pricing-row small {
  font-size: 10px;
}

.pricing-table.pricing-style3 .pricing-row small:before {
  content: "/";
  margin-right: 3px;
  margin-left: 2px;
}

.pricing-table.pricing-style3 .pricing-table-content {
  padding: 10px 0 20px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-table.pricing-style3 .pricing-table-content li {
  font-size: 13px;
  line-height: 20px;
  padding: 10px 0;
}

.pricing-table.pricing-style3 .pricing-table-footer {
  padding-bottom: 30px;
}

.pricing-table.pricing-style3 .pricing-table-footer .button {
  width: 100%;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.04em;
  border: none;
}

.pricing-table.pricing-style3 .pricing-table-footer .button > span {
  padding: 12px 0;
  float: none;
}

.pricing-table.pricing-style3 .pricing-table-footer .button:hover,
.pricing-table.pricing-style3 .pricing-table-footer .button:hover span {
  background: #fff;
}

/* Cupcake */
.pricing-table.pricing-style4 {
  margin-top: 40px;
  background: #ea088c;
  text-align: center;
}

.pricing-table.pricing-style4.active {
  margin-top: 0;
}

.pricing-table.pricing-style4.active .active-text {
  background: #f8f2ed;
  display: block;
  height: 40px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 40px;
}

.pricing-table.pricing-style4 .pricing-type {
  background: rgba(0, 0, 0, 0.1);
  height: 54px;
  line-height: 54px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pricing-table.pricing-style4 .pricing-row {
  padding: 30px;
  color: #fff;
}

.pricing-table.pricing-style4 .currency-symbol {
  font-size: 25px;
  position: relative;
  top: -12px;
  margin-right: 2px;
}

.pricing-table.pricing-style4 .price-value {
  font-size: 40px;
}

.pricing-table.pricing-style4 .pricing-row small {
  font-size: 13px;
}

.pricing-table.pricing-style4 .pricing-row small:before {
  content: "/";
  margin-right: 3px;
  margin-left: 2px;
}

.pricing-table.pricing-style4 .pricing-table-action .button {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #ea088c;
  margin-bottom: 30px;
  font-size: 10px;
}

.pricing-table.pricing-style4 .pricing-table-action .button > span {
  padding: 6px 30px;
  background: #fff;
}

.pricing-table.pricing-style4 .pricing-table-action .button:hover > span {
  background: #fff;
}

.pricing-table.pricing-style4 .pricing-table-content {
  background: #f8f2ed;
  padding: 25px 30px;
}

.pricing-table.pricing-style4 .pricing-table-content li {
  font-size: 13px;
  line-height: 20px;
  padding: 10px 0;
}

/* 5.12. Alert box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.alert {
  position: relative;
  color: inherit;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
}

.alert .close {
  font-family: "linea-arrows-10";
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  text-shadow: none;
}

.alert .close:hover {
  color: rgba(0, 0, 0, 0.6);
}

.alert .close:before {
  content: "\e04a";
}

.alert:before {
  font-family: FontAwesome;
}

.alert.alert-general {
  background: #f9f9f9;
}

.alert.alert-notice {
  background: #fff9e6;
}

.alert.alert-error {
  background: #ffdee2;
}

.alert.alert-success {
  background: #ecfac3;
}

.alert.alert-help {
  background: #ddf4ff;
}

.alert.alert-information {
  background: #faebff;
}

.alert.alert-general:before {
  content: "\f0e0";
  color: #c4c4c4;
}

.alert.alert-notice:before {
  content: "\f0f3";
  color: #fcdc7b;
}

.alert.alert-error:before {
  content: "\f071";
  color: #e56f85;
}

.alert.alert-success:before {
  content: "\f00c";
  color: #a1be4d;
}

.alert.alert-help:before {
  content: "\f0e9";
  color: #5fb0d6;
}

.alert.alert-information:before {
  content: "\f0a1";
  color: #c183d6;
}

.alert.alert-style1 {
  padding: 20px 30px 20px 120px;
}

.alert.alert-style1:before {
  position: absolute;
  left: 36px;
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  background: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.alert.alert-style1 .close {
  position: absolute;
  right: 5px;
  top: 5px;
}

.alert.alert-style1 h5 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #4b4b4b;
}

.alert.alert-style2 {
  padding: 12px 30px 12px 50px;
}

.alert.alert-style2.alert-general {
  background: #fff;
}

.alert.alert-style2 p {
  font-size: 13px;
}

.alert.alert-style2:before {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -10px;
  line-height: 20px;
  font-size: 14px;
}

.alert.alert-style2 .close {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-weight: 400;
}

.alert.alert-style3 {
  border: 1px solid;
  background: none;
  padding-left: 70px;
}

.alert.alert-style3.alert-general {
  border-color: #e5e5e5;
}

.alert.alert-style3.alert-notice {
  border-color: #f5cd54;
}

.alert.alert-style3.alert-error {
  border-color: #eb768c;
}

.alert.alert-style3.alert-success {
  border-color: #73c8b7;
}

.alert.alert-style3.alert-help {
  border-color: #89d2f4;
}

.alert.alert-style3.alert-information {
  border-color: #d8ade6;
}

.alert.alert-style3:before {
  font-size: 11px;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -10px;
  line-height: 20px;
}

.alert.alert-style3:after {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  border-left: 1px solid;
  border-color: inherit;
}

.alert.alert-style3 p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.alert.alert-style3 .close {
  display: none;
}

/* 5.13. Call to action ~~~~~~~~~~~~~~~~~~~~~~~ */
.callout-box .button {
  margin-bottom: 0;
}

.callout-box .button > span {
  padding-left: 30px;
  padding-right: 30px;
}

.callout-box.callout-style1 .callout-content {
  padding: 80px 10px 80px 60px;
  background: rgba(234, 8, 140, 0.9);
  position: relative;
  margin-bottom: 0;
}

.callout-box.callout-style1 .callout-content:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 800px;
  background: rgba(234, 8, 140, 0.9);
}

.container .callout-box.callout-style1 .callout-content:before {
  display: none;
}

.callout-box.callout-style1 .callout-text {
  margin-bottom: 50px;
}

.callout-box.callout-style1 .callout-title {
  font-size: 30px;
  color: #fff;
  line-height: 1.25em;
  font-weight: 400;
  line-height: 1.25em;
  font-weight: 400;
}

.callout-box.callout-style1 .callout-action .button {
  font-size: 12px;
  background: #fff;
  color: #4b4b4b;
  margin-bottom: 0;
}

.callout-box.callout-style1 .callout-action .button > span {
  padding: 10px 30px;
}

.callout-box.callout-style1 .callout-action .button:hover {
  color: #ea088c;
}

.callout-box.callout-style2 .container > div {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.callout-box.callout-style2 .callout-image {
  vertical-align: bottom;
  padding-top: 60px;
  padding-right: 30px;
}

.callout-box.callout-style2 .container > div:first-child:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.callout-box.callout-style2 .callout-content {
  display: inline-block;
  width: 96%;
  vertical-align: middle;
  padding: 80px 0;
}

.callout-box.callout-style2 .st-table {
  height: 100%;
  table-layout: fixed;
}

.callout-box.callout-style2 .callout-text {
  margin-bottom: 35px;
}

.callout-box.callout-style2 .callout-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 1em;
}

.callout-box.callout-style2 .callout-title small {
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #9c9c9c;
  font-size: 15px;
  margin-bottom: 12px;
}

.callout-box.callout-style2 .callout-action .button {
  margin-right: 7px;
}

.callout-box.callout-style3 .callout-content {
  display: table;
  width: 100%;
  padding: 50px 0;
}

.callout-box.callout-style3 .callout-content > * {
  display: table-cell;
  vertical-align: middle;
}

.callout-box.callout-style3 .callout-action {
  text-align: right;
  white-space: nowrap;
}

.callout-box.callout-style3 .callout-action .button {
  margin-left: 6px;
}

.callout-box.callout-style3 .callout-title {
  font-size: 20px;
  font-weight: 400;
}

.callout-box.callout-style4 {
  background: #ea088c;
}

.callout-box.callout-style4 .callout-content {
  display: table;
  width: 100%;
  padding: 50px 0;
}

.callout-box.callout-style4 .callout-content > * {
  display: table-cell;
  vertical-align: middle;
}

.callout-box.callout-style4 .callout-action {
  text-align: right;
  white-space: nowrap;
}

.callout-box.callout-style4 .callout-action .button {
  margin-left: 6px;
  border-color: #fff;
  color: #fff;
}

.callout-box.callout-style4 .callout-action .button:hover {
  background: #fff;
  color: #ea088c;
  border-color: #fff;
}

.callout-box.callout-style4 .callout-title {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3333em;
}

.callout-box .callout-text > *:last-child {
  margin-bottom: 0;
}

.callout-box.callout-style3 .callout-title:last-child, .callout-box.callout-style4 .callout-title:last-child {
  margin-bottom: 0;
}

/* 5.14. Twitter ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.twitter-shortcode {
  overflow: hidden;
  color: #fff;
}
.twitter-shortcode .twitter-st-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.twitter-shortcode .twitter-profile, .twitter-shortcode .twitter-holder {
  display: table-cell;
  vertical-align: middle;
}
.twitter-shortcode .twitter-profile {
  width: 33.3333%;
  position: relative;
  padding: 40px 40px 40px 0;
}
.twitter-shortcode .twitter-profile:before {
  content: "";
  background-color: inherit;
  position: absolute;
  width: 1000px;
  right: 100%;
  top: 0;
  height: 100%;
}
.twitter-shortcode .twitter-profile .img {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  padding: 4px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  line-height: 48px;
}
.twitter-shortcode .twitter-profile .img img {
  width: 48px;
  height: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.twitter-shortcode .twitter-profile .profile-name {
  display: table;
  float: left;
}
.twitter-shortcode .twitter-profile .profile-name > div {
  display: table-cell;
  vertical-align: middle;
}
.twitter-shortcode .twitter-profile .profile-name .full-name {
  text-transform: uppercase;
  padding-left: 10px;
}
.twitter-shortcode .twitter-profile .profile-name .full-name .display-name {
  font-size: 20px;
  letter-spacing: 0;
}
.twitter-shortcode .twitter-profile .profile-name .full-name span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.twitter-shortcode .twitter-profile .follow-button {
  float: right;
  margin-top: 7px;
}
.twitter-shortcode .twitter-profile .twitter-profile-button:after {
  content: "";
  display: table;
  clear: both;
}
.twitter-shortcode .twitter-profile .twitter-profile-follow {
  display: table;
  width: 100%;
  margin-top: 15px;
  table-layout: fixed;
}
.twitter-shortcode .twitter-profile .twitter-profile-follow > div {
  display: table-cell;
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 5px 0;
  font-size: 20px;
  font-weight: bold;
  word-break: break-all;
}
.twitter-shortcode .twitter-profile .twitter-profile-follow label {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1em;
}
.twitter-shortcode .twitter-profile .twitter-profile-follow .twitter-followers {
  border-right: none;
  text-align: right;
}
.twitter-shortcode .twitter-profile .twitter-profile-follow .twitter-following {
  text-align: center;
}
.twitter-shortcode .twitter-holder {
  width: 66.6666%;
  padding: 70px 0 70px 60px;
}
.twitter-shortcode .twitter-holder .tweet {
  margin-bottom: 0;
  background: none;
  padding: 0 0 0 75px;
}
.twitter-shortcode .twitter-holder .tweet .tweet-text {
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: #fff;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}
.twitter-shortcode .twitter-holder .tweet .tweet-text a {
  color: inherit;
}
.twitter-shortcode .twitter-holder .tweet:before {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  left: 0;
  top: 5px;
}
.twitter-shortcode .twitter-holder .tweet:hover:before {
  background: rgba(255, 255, 255, 0.1);
}
.twitter-shortcode .twitter-holder .tweet:hover .tweet-text {
  color: #fff;
}
.twitter-shortcode .twitter-holder .owl-carousel {
  border: 6px solid #fff;
  padding: 40px 40px 40px 35px;
}
.twitter-shortcode .owl-pagination {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30px;
}
.twitter-shortcode .owl-pagination .owl-page {
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #fff;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .twitter-shortcode .twitter-profile:before {
    height: 250%;
  }
}
/* 6. Main Content ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 6.1. Blog Posts ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.post-item blockquote {
  margin-bottom: 0;
}

.post-content > *:last-child {
  margin-bottom: 0;
}

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

/* post like */
.post-like.button > span {
  display: inline-block;
  position: static;
  padding: 0;
  float: none;
}

.post-like .label {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
  border-radius: 0;
  line-height: inherit;
  padding: 0;
}

/* masonry */
.style-masonry .post-item {
  position: relative;
  overflow: hidden;
}

.style-masonry .post-item .post-image {
  position: relative;
}

.style-masonry .post-item .date-label {
  position: absolute;
  left: 45px;
  top: 20px;
  height: 45px;
  line-height: 45px;
  white-space: nowrap;
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 16px;
  color: #181818;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9;
  display: none;
}

.style-masonry .post-item .date-label:before {
  content: "\f03e";
  font-family: FontAwesome;
  color: #fff;
  font-size: 20px;
  line-height: 45px;
  text-align: center;
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  width: 45px;
  background: rgba(234, 8, 140, 0.9);
}

.style-masonry .post-item.has-post-thumbnail:not(.format-quote) .date-label,
.style-masonry .post-item.format-video .date-label,
.style-masonry .post-item.format-gallery .date-label {
  display: block;
}

.style-masonry .post-item .post-content,
.style-masonry .post-item .post-footer {
  background: #f9f9f9;
}

.style-masonry .post-item .post-content {
  padding: 32px;
}

.style-masonry .post-item .post-content p,
.style-masonry .post-item .post-content .text {
  margin-top: 20px;
}

.style-masonry .post-item .post-content .text p,
.style-masonry .post-item .post-content p + p {
  margin-top: 0;
}

.style-masonry .post-item .post-content p:last-child {
  margin-bottom: 0;
}

.style-masonry .post-item .entry-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  color: #4b4b4b;
  margin-bottom: 4px;
}

.style-masonry .post-item .post-footer,
.style-classic .post-item .post-footer {
  margin-top: 1px;
  padding: 16px 36px;
}

.style-masonry .post-item .post-footer .post-like .label {
  display: none;
}

.style-masonry .post-item .post-footer .button,
.style-classic .post-item .post-footer .button,
.portfolio-fancy .portfolio-action .button {
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  margin-bottom: 0;
  margin-right: 18px;
}

.style-masonry .post-item .post-footer .button,
.portfolio-fancy .portfolio-action .button {
  color: #c4c4c4;
  font-weight: 400;
}

.style-masonry .post-item .post-footer .button:hover,
.style-classic .post-item .post-footer .button:hover,
.portfolio-fancy .portfolio-action .button:hover {
  color: #4b4b4b;
}

.style-masonry .post-item .post-footer .button:hover i,
.style-classic .post-item .post-footer .button:hover i,
.portfolio-fancy .portfolio-action .button:hover i {
  color: #ea088c;
}

.style-masonry .post-item .post-footer .button i,
.style-classic .post-item .post-footer .button i,
.portfolio-fancy .portfolio-action .button i {
  font-size: 14px;
  margin-right: 6px;
}

.style-masonry .post-item .post-footer .button i:before,
.style-classic .post-item .post-footer .button i:before,
.portfolio-fancy .portfolio-action .button i:before {
  vertical-align: middle;
}

.style-masonry .post-item.format-audio .date-label:before {
  content: "\f028";
}

.style-masonry .post-item .post-image .image + .audio-container,
.style-masonry .post-item .post-image img + .audio-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}

.style-masonry .post-item.format-quote .post-content {
  padding: 0;
}

.style-masonry .post-item blockquote {
  line-height: 1.6667em;
  font-size: 18px;
  padding: 40px 30px 30px 40px;
  letter-spacing: 0;
}

.style-masonry .post-item blockquote:before {
  font-size: 60px;
  top: 11px;
}

.blog-posts {
  margin-bottom: 30px;
}

.blog-posts .post-item .image-gallery {
  background: none;
  padding: 0;
  border: none;
}

.blog-posts .post-item .image-gallery .owl-prev {
  left: 0;
}

.blog-posts .post-item .image-gallery .owl-next {
  right: 0;
}

/*.blog-posts .post-item .image { float: none; }*/
.style-masonry .post-item.format-video .date-label:before {
  content: "\f03d";
}

/* post-share */
.post-footer .post-share,
.portfolio-action .post-share {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.post-share .share-links {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 23px;
  left: 21px;
  background: #181818;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 3;
  white-space: nowrap;
}

.post-share:hover .share-links {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
}

.post-share .share-links a {
  display: inline-block;
  font-size: 16px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  width: 38px;
  color: #717171;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.post-share .share-links a:hover {
  background: #ea088c;
  color: #fff;
}

/* list */
.style-list .post-item:after {
  content: "";
  display: table;
  clear: both;
}

.style-list .post-item + .post-item {
  margin-top: 30px;
}

.style-list .post-image {
  float: left;
  width: 48%;
  position: relative;
  min-height: 107px;
}

/*.style-list .post-image a.image { position: static; }*/
.style-list .post-image a.image .image-extras {
  z-index: 3;
}

.style-list .post-content {
  float: left;
  width: 52%;
  background: #f9f9f9;
  padding: 36px 40px 30px;
}

.style-list [class^="col-"] > .post-item:not(.format-quote) .post-content {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
}

.style-list .post-content:first-child {
  float: none;
  width: auto;
}

.style-list .date-label,
.style-list .post-share {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 92px;
}

.style-list .date-label {
  bottom: 0;
  text-align: center;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  color: #181818;
  letter-spacing: 0.16em;
}

.style-list .post-share + .date-label {
  bottom: 32px;
}

.style-list .date-label span {
  display: block;
  font-size: 30px;
  letter-spacing: inherit;
  margin-bottom: 3px;
}

.style-list .post-share {
  bottom: 0;
  background: #ea088c;
  color: #fff;
  text-align: center;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  z-index: 4;
}

.style-list .post-share .button {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0.04em;
  color: #fff;
}

.style-list .post-share .button i {
  vertical-align: middle;
  font-size: 14px;
}

.style-list .post-share .share-links {
  top: auto;
  bottom: 0;
  right: auto;
  left: 100%;
}

.style-list .button-readmore {
  margin-top: 20px;
  margin-bottom: 0;
}

.style-list .post-meta {
  margin-bottom: 5px;
  font-size: 12px;
}

.style-list .post-meta .date {
  display: none;
}

.style-list .post-content .text,
.style-basic .post-content .text {
  margin-bottom: 15px;
}

.style-list .entry-title {
  position: relative;
  margin-bottom: 30px;
}

.style-list .entry-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 12px;
  border-top: 1px solid #ea088c;
}

.style-list .post-item .entry-title {
  line-height: 1.4em;
  font-size: 18px;
}

.style-list .format-quote:not(.has-post-thumbnail) .post-image {
  display: none;
}

.style-list .format-quote:not(.has-post-thumbnail) .post-content {
  float: none;
  width: 100%;
}

.style-list .format-quote .post-meta {
  display: none;
  padding: 10px;
}

.style-list .format-quote .post-content {
  padding: 10px;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.style-list .format-quote .post-content blockquote {
  border: none;
}

.style-list .format-quote .post-content blockquote:after {
  display: none;
}

.style-list .format-quote .post-content:hover {
  background: #ea088c;
}

.style-list .format-quote .post-content:hover blockquote {
  color: #fff;
}

.style-list .format-quote .post-content:hover blockquote cite {
  color: inherit;
}

.style-list .format-quote .post-content:hover blockquote:before {
  background: #fff;
  color: #ea088c;
}

.style-list .format-quote blockquote {
  background: none;
}

.style-list .format-quote blockquote a:hover {
  text-decoration: underline;
  color: #fff;
}

.style-list .format-quote .button-readmore {
  display: none;
}

.style-list .video-container .mejs-controls {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.style-list .video-container:hover .mejs-controls {
  z-index: 4;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.style-list .post-share:after {
  content: "";
  position: absolute;
  width: 96px;
  left: -4px;
  background: none;
  bottom: -4px;
  height: 36px;
}

.style-list .format-audio:not(.has-post-thumbnail) .post-image {
  float: none;
  width: auto;
  min-height: 0;
}

.style-list .format-audio:not(.has-post-thumbnail) .post-content {
  float: none;
  width: auto;
}

.style-list .format-audio:not(.has-post-thumbnail) .post-share {
  bottom: auto;
  top: 115px;
}

.style-list .format-audio:not(.has-post-thumbnail) .date-label {
  bottom: auto;
  top: 40px;
}

.style-list .format-audio:not(.has-post-thumbnail) .post-content {
  padding-left: 125px;
}

.style-list .format-audio.has-post-thumbnail .audio-container {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
}

.style-list .format-audio.has-post-thumbnail .post-share {
  bottom: 40px;
}

.style-list .format-audio.has-post-thumbnail .date-label {
  bottom: 40px;
}

.style-list .format-audio.has-post-thumbnail .post-share + .date-label {
  bottom: 72px;
}

/* basic */
.style-basic .post-item + .post-item {
  margin-top: 50px;
}

.style-basic .image {
  float: none;
}

.style-basic .post-image {
  position: relative;
}

.style-basic .post-item img {
  width: 100%;
  height: auto;
}

.style-basic .post-content {
  background: #f9f9f9;
  padding: 35px 40px;
}

.style-basic .post-content .button-readmore {
  margin-bottom: 0;
  margin-top: 10px;
}

.style-basic .entry-title {
  font-size: 30px;
  letter-spacing: 0;
  color: #4b4b4b;
  line-height: 1.25em;
  margin-bottom: 5px;
}

.style-basic .post-meta {
  margin-bottom: 22px;
}

.style-basic .post-meta > * + *:before {
  content: ".";
  position: relative;
  top: -3px;
  margin: 0 10px;
}

.style-basic .post-meta .post-share {
  display: inline-block;
  position: relative;
}

.style-basic .format-quote blockquote {
  padding: 0 0 0 90px;
  background: none;
  color: inherit;
  font-size: 20px;
  line-height: 1.5em;
}

.style-basic .format-quote blockquote:before {
  top: 0;
  left: 0;
}

.style-basic .format-audio.has-post-thumbnail .audio-container {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
}

/*.style-basic .format-quote blockquote a:hover { color: inherit; text-decoration: underline; }*/
.style-basic .format-quote blockquote cite {
  color: #181818;
}

.style-basic .post-like i {
  display: none;
}

.style-basic [class^="col-"] .post-item .entry-title, .style-basic [class*=" col-"] .post-item .entry-title {
  font-size: 24px;
}

/* classic */
.blog-posts.style-classic > *:not(:first-child) .post-image {
  float: left;
  width: 25%;
}

.blog-posts.style-classic > *:not(:first-child) .post-content {
  float: left;
  width: 75%;
}

.blog-posts.style-classic .post-content {
  padding: 32px 35px;
  background: #f9f9f9;
}

.blog-posts.style-classic > *:first-child .post-content {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 35px;
}

.blog-posts.style-classic .entry-title {
  color: #4b4b4b;
  margin-bottom: 5px;
}

.blog-posts.style-classic .post-meta {
  margin-bottom: 25px;
}

.blog-posts.style-classic .post-meta .date:before {
  content: "|";
  margin-right: 7px;
  margin-left: 6px;
}

.blog-posts.style-classic .post-footer {
  background: #f9f9f9;
}

.blog-posts.style-classic .post-footer .post-like .label {
  display: none;
}

.blog-posts.style-classic .post-item:after {
  content: "";
  display: table;
  clear: both;
}

/* Grid */
.blog-posts.style-grid .post-content {
  background: #181818;
  text-align: center;
  padding: 25px 20px 20px;
}

.blog-posts.style-grid .entry-title {
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.blog-posts.style-grid .post-date {
  color: #ea088c;
  text-transform: uppercase;
}

.blog-posts.style-grid .post-author {
  padding: 20px 15px 0;
  border-top: 1px solid #303030;
  display: inline-block;
  font-style: italic;
  margin-top: 25px;
}

/* Widget */
.blog-posts.style-widget .post-item {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.blog-posts.style-widget .post-item > div {
  display: table-cell;
  vertical-align: middle;
}

.blog-posts.style-widget .post-item:last-child {
  margin-bottom: 0;
}

.blog-posts.style-widget .post-item .post-image {
  width: 80px;
}

.blog-posts.style-widget .post-content {
  padding: 0 0 0 20px;
}

.blog-posts.style-widget .post-title {
  font-size: 15px;
  margin-bottom: 0;
}

.blog-posts.style-widget .post-meta {
  font-size: 12px;
}

.blog-posts.style-widget .post-meta .date {
  margin-right: 10px;
}

.blog-posts.style-widget .post-meta .date:before {
  content: "\f133";
  font-family: FontAwesome;
  margin-right: 7px;
}

.blog-posts.style-widget .post-comment:before {
  content: "\f0e5";
  font-family: FontAwesome;
  margin-right: 7px;
}

.blog-posts.style-widget .post-author {
  display: none;
}

.post-item.sticky {
  border: 1px solid #ea088c;
}
.post-item.sticky .entry-time {
  display: none;
}

/* 6.2. Single Post ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.entry-title, .post-title {
  /*word-break: break-all;*/
  word-wrap: break-word;
}

body.single-post article.post > div {
  margin-bottom: 40px;
}

/*body.single-post ul { list-style: none; padding-left: 0; }*/
body.single-post a {
  text-decoration: none;
}

body.single-post article.post .image-container {
  margin-bottom: 0;
}

body.single-post .entry-title {
  font-size: 30px;
  letter-spacing: 0;
  margin-bottom: 5px;
}

body.single-post article.post .post-content > div {
  margin-bottom: 30px;
}

.post-meta .author-date {
  font-size: 12px;
}

.post-meta .author-date .entry-date {
  font-size: 11px;
}

.post-meta .post-action .button {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1em;
  padding: 10px 20px;
  background: #f1f1f1;
  margin-bottom: 0;
  font-weight: 400;
}

.post-meta .post-action .button + .button {
  margin-left: 5px;
}

body.single-post .post-meta .author-date {
  margin-bottom: 30px;
}

body.single-post .post-view-simple .entry-title {
  color: #4b4b4b;
}

.single-post .post-view-simple .post-meta .author-date {
  margin-bottom: 0;
}

.single-post .post-view-simple .post-meta .author-date {
  font-size: inherit;
  display: inline-block;
}

.single-post .post-view-simple .post-meta .author-date .entry-date {
  font-size: inherit;
}

.single-post .post-view-simple .post-meta .post-action {
  display: inline-block;
}

.single-post .post-view-simple .post-meta .post-action .button {
  background: none;
  padding: 0;
  font-size: inherit;
}

.single-post .post-view-simple .post-meta .author-date > span:after, .single-post .post-view-simple .post-meta .post-action > *:not(:last-child):after {
  content: ".";
  position: relative;
  top: -3px;
  margin-left: 12px;
  margin-right: 6px;
}

.single-post .post-view-simple .post-meta .post-action > .button:hover:after {
  color: #9c9c9c;
}

.single-post .post-view-simple .post-meta .date-text-on {
  display: none;
}

.single-post .post-view-simple .post-category {
  display: none;
}

.single-post .post-view-simple .post-action .post-share {
  background: none;
  padding: 0;
  position: relative;
}

.single-post .post-meta .post-action .button {
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 5px;
}

.single-post .post-view-simple .post-meta .post-action .button {
  text-transform: none;
  margin-right: 0;
  margin-bottom: 0;
}

.single-post .post:not(.full) .post-like i {
  display: none;
}

.single .post-image.full {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.single .post-image.full > .post-figure {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.single .post-image.full > .post-media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  /*height: 150%;*/
}

.single .post-image.full > .post-media.no-parallax {
  position: static;
  height: auto;
  margin-top: 0;
}

.single .post-image.full img {
  width: 100%;
}

.single .post-image.full .post-header {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single .post-image.full .entry-title {
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1em;
  margin-bottom: 25px;
}

.single .post-image.full .post-meta {
  letter-spacing: 0.3em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.single .post-image.full .post-meta .post-author:after {
  content: "-";
  margin: 0 15px 0 20px;
}

.single .post-image.full .post-action {
  position: absolute;
  text-align: center;
  bottom: 40px;
  left: 10%;
  width: 80%;
  margin-bottom: 0;
}

.single .post-image.full .post-action .button {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.single .post-image.full .post-action .button:hover {
  /*color: #fff;*/
}

.single .post-image.full .post-action .button i {
  font-size: 14px;
  margin-right: 6px;
  margin-left: 2px;
  vertical-align: middle;
}

.single .post-image.full .post-action .button:hover i {
  color: #ea088c;
}

.single .post-image.full .post-action > * {
  margin-right: 18px;
}

.single .post-image.full .post-share {
  padding: 0;
  background: none;
  display: inline-block;
  position: relative;
}

.single .post-image.full .post-like .label {
  display: none;
}

.single .post-image.full .video-container .mejs-overlay-button {
  z-index: 2;
}

.single-post .has-post-thumbnail .post-image {
  position: relative;
}

.single-post .has-post-thumbnail .audio-container,
.single-post .post-image.full .audio-container {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.single-post .has-post-thumbnail .post-image .image {
  float: none;
}

.about-author .avatar-wrapper {
  float: left;
}

.about-author .desc-wrapper {
  margin-left: 180px;
  padding: 30px 40px;
  background: #f9f9f9;
}

.about-author .desc-wrapper:first-child {
  margin-left: 0;
}

.about-author .desc-wrapper p:last-child {
  margin-bottom: 0;
}

.about-author .desc-wrapper .social-links {
  margin-bottom: 20px;
  float: right;
}

.about-author .desc-wrapper .social-links a {
  font-size: 16px;
  color: #c4c4c4;
  margin-right: 16px;
}

.about-author .desc-wrapper .social-links a:hover {
  color: #ea088c;
}

.about-author .desc-wrapper h5 {
  float: left;
  margin-right: 20px;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.about-author .desc-wrapper h5 small {
  font-size: 12px;
  font-weight: 400;
  display: block;
  color: #9c9c9c;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}

.about-author .desc-wrapper h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 40px;
  border-top: 1px solid #ea088c;
}

body.single-post article.post > .post-share {
  margin-bottom: 10px;
}

body.single-post .post-share {
  padding: 40px 40px 25px;
  background: #f9f9f9;
}

body.single-post .post-share:after {
  content: "";
  display: table;
  clear: both;
}

body.single-post .post-share h4 {
  float: left;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 36px;
  margin-bottom: 15px;
}

body.single-post .post-share .social-links {
  float: right;
}

body.single-post .post-share .social-links a {
  width: 36px;
  height: 36px;
  background: #fff;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  border-radius: 18px;
  color: #c4c4c4;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 36px;
  text-align: center;
  margin-right: 12px;
}

body.single-post .post-share .social-links a:hover {
  background: #ea088c;
  color: #fff;
}

body.single-post .next-prev-button {
  padding: 20px 40px 0;
  background: #f9f9f9;
}

body.single-post .next-prev-button:after {
  content: "";
  display: table;
  clear: both;
}

body.single-post .next-prev-button .button {
  display: block;
  position: relative;
  margin-right: 0;
  max-width: 50%;
}

body.single-post .next-prev-button .button:before {
  font-family: FontAwesome;
  font-size: 20px;
  color: #c4c4c4;
  position: absolute;
  top: 50%;
  height: 20px;
  line-height: 20px;
  margin-top: -10px;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

body.single-post .next-prev-button .prev {
  float: left;
  padding-left: 20px;
}

body.single-post .next-prev-button .prev:before {
  content: "\f053";
  left: 0;
}

body.single-post .next-prev-button .prev:hover:before {
  left: -5px;
}

body.single-post .next-prev-button .next {
  float: right;
  padding-right: 30px;
}

body.single-post .next-prev-button .next:before {
  content: "\f054";
  right: 0;
}

body.single-post .next-prev-button .next:hover:before {
  right: -5px;
}

body.single-post .next-prev-button .post-image,
body.single-post .next-prev-button .details {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
  line-height: 1em;
}

body.single-post .next-prev-button .post-image img {
  width: 70px;
  height: 70px;
  border: 6px solid #fff;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
}

body.single-post .next-prev-button .post-title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2em;
  text-transform: none;
  margin-top: 3px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

body.single-post .next-prev-button .details span {
  font-size: 10px;
  letter-spacing: 0.04em;
}

body.single-post .next-prev-button .post-image {
  width: 80px;
}

.related-posts.style1 {
  margin-left: -5px;
  margin-right: -5px;
}

.related-posts.style1 .related-post {
  padding: 0 5px;
  margin-bottom: 10px;
}

.related-posts .related-post article {
  background: #f9f9f9;
  display: table;
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  height: 100%;
}

.related-posts .related-post .post-image {
  vertical-align: middle;
  width: 74px;
}

.related-posts .related-post .img {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: 3px solid #fff;
  width: 74px;
  height: 74px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.related-posts .related-post img {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  width: 100%;
}

.related-posts .related-post .post-meta {
  margin-bottom: 0;
  font-size: 12px;
}

.related-posts .related-post .details {
  padding-left: 20px;
  vertical-align: middle;
}

.related-posts .related-post .post-title {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.25em;
}

.related-posts .related-post .post-title a {
  text-decoration: none;
}

.related-posts.style2 .related-post article {
  padding: 0;
}
.related-posts.style2 .related-post .post-image, .related-posts.style2 .related-post .details {
  display: block;
  width: auto;
}
.related-posts.style2 .related-post .img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  width: auto;
  height: auto;
}
.related-posts.style2 .related-post img {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.related-posts.style2 .related-post .details {
  padding: 15px 20px;
}
.related-posts.style2 .related-post .post-meta {
  display: none;
}
.related-posts.style2 .related-post .post-title {
  font-size: 16px;
}

.commentlist {
  padding-left: 0;
  list-style: none;
}

.commentlist ul {
  list-style: none;
}

.commentlist .comment {
  background: #f9f9f9;
  padding: 36px 36px 26px;
  margin-bottom: 10px;
}

.commentlist .comment .author-wrapper {
  width: 88px;
  float: left;
}

.commentlist .comment .author-wrapper img {
  width: 100%;
}

.commentlist .comment .author-wrapper .author-name {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4b4b4b;
  text-align: center;
  margin-bottom: 0;
  background: #fff;
  padding: 10px 4px;
  word-wrap: break-word;
  line-height: 1.25em;
}

.commentlist .comment .comment-content {
  padding-left: 115px;
}

.commentlist .comment .comment-author-name {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 0;
  color: #4b4b4b;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commentlist .comment .comment-text > *:last-child {
  margin-bottom: 0;
}

.commentlist .comment .comment-date {
  font-size: 11px;
}

.commentlist .comment .comment-text {
  margin-top: 15px;
  margin-bottom: 10px;
}

.commentlist .comment li:last-child .comment {
  margin-bottom: 0;
}

.commentlist .comment .comment-reply-link {
  float: right;
  text-transform: uppercase;
  color: #4b4b4b;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: bold;
}

.commentlist .comment .comment-reply-link:hover {
  color: #ea088c;
}

.commentlist .comment:after {
  content: "";
  display: table;
  clear: both;
}

.post.style-full .commentlist .comment {
  padding: 0;
  background: none;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
}

.post.style-full .commentlist .comment .comment-author-name {
  display: block;
  font-size: 16px;
}

.post.style-full .commentlist .comment .comment-reply-link {
  font-size: 12px;
  float: none;
}

.post.style-full .commentlist .comment .comment-text {
  margin-bottom: 20px;
}

.post.post-view-simple .commentlist .comment .author-wrapper, .post.post-view-simple .commentlist .comment .author-wrapper img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.post.post-view-simple .commentlist .comment .comment-author-name {
  display: block;
  font-size: 16px;
  text-transform: none;
}

.post.post-view-simple .commentlist .comment .comment-reply-link {
  color: #c4c4c4;
}

.tags .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #c4c4c4;
  border: 2px solid #e5e5e5;
  padding: 11px 16px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: bold;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  margin-bottom: 10px;
  margin-right: 5px;
}

/*.tags .tag + .tag { margin-left: 5px; }*/
.tags .tag:hover {
  background: #ea088c;
  border-color: #ea088c;
  color: #fff;
}

.st-page-contact-form [class^="col-"], .st-page-contact-form [class*=" col-"]
.single-post .entry-content blockquote:not([class^="style"]),
.single-post .entry-content blockquote:not([class*=" style"]) {
  font-family: inherit;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: #4b4b4b;
  line-height: 1.5em;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 30px;
}
.st-page-contact-form [class^="col-"]:before, .st-page-contact-form [class*=" col-"]
.single-post .entry-content blockquote:not([class^="style"]):before,
.single-post .entry-content blockquote:not([class*=" style"]):before {
  font-family: inherit;
  position: static;
  font-size: inherit;
  content: "\"";
  color: inherit;
  vertical-align: inherit;
}
.st-page-contact-form [class^="col-"]:after, .st-page-contact-form [class*=" col-"]
.single-post .entry-content blockquote:not([class^="style"]):after,
.single-post .entry-content blockquote:not([class*=" style"]):after {
  content: "\"";
}
.st-page-contact-form [class^="col-"] p, .st-page-contact-form [class*=" col-"]
.single-post .entry-content blockquote:not([class^="style"]) p,
.single-post .entry-content blockquote:not([class*=" style"]) p {
  font-style: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  display: inline;
}

/* 6.3. Portfolio Page ~~~~~~~~~~~~~~~~~~~~~~~~ */
.portfolio-list {
  margin-bottom: 50px;
}

.portfolio-fancy .portfolio-list {
  margin-bottom: 0;
}

.portfolio:after {
  content: "";
  display: table;
  clear: both;
}

.portfolio-filters {
  margin-bottom: 30px;
}

.portfolio-filters h5 {
  color: #4b4b4b;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.portfolio-filters a {
  font-size: 14px;
}

.portfolio-filters a.active {
  color: #ea088c;
}

.portfolio-filters ul {
  display: inline-block;
  margin-bottom: 0;
}

.portfolio-filters li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.portfolio-filters li:last-child {
  margin-right: 0;
}

.portfolio-filters.style1 {
  background: #222;
  text-align: right;
  padding: 25px 0 15px;
  margin-bottom: 0;
}

.portfolio-filters.style1 ul {
  float: right;
}

.portfolio-filters.style1 h5 {
  color: #fff;
}

.portfolio-filters.style1 .filter-title {
  float: left;
  letter-spacing: .16em;
}

.portfolio-container .portfolio .image-extras:before {
  display: none;
}

.portfolio-container .portfolio .portfolio-title a {
  color: inherit;
}

/* flat 1 */
.portfolio-flat1 .portfolio figure .image-extras {
  background: rgba(0, 0, 0, 0.85);
}

.portfolio-flat1 .image-extras:before {
  content: "";
  display: inline-block !important;
  height: 100%;
  vertical-align: middle;
  position: static;
  margin: 0;
  width: auto;
}

.portfolio-flat1 .portfolio-action {
  position: absolute;
  bottom: 1%;
  right: 1px;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.portfolio-flat1 .portfolio-action a {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #181818;
  font-size: 14px;
  line-height: 50px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  -webkit-box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.1);
}

.portfolio-flat1 .portfolio-action a:hover {
  background: #ea088c;
  color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-flat1 .portfolio-meta {
  width: 90%;
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.portfolio-flat1 .portfolio-title {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.portfolio-flat1 .portfolio-title:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 14px;
  border-top: 1px solid #ea088c;
  margin-left: -7px;
}

.portfolio-flat1 .portfolio-category {
  font-size: 14px;
}

.portfolio-flat1 .portfolio-category a + a:before {
  content: "/";
  margin: 0 5px;
  color: #9c9c9c;
}

.portfolio-flat1 .portfolio .image:hover .portfolio-action {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.portfolio-flat1 .portfolio .image:hover .portfolio-meta {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* flat 2*/
.portfolio-flat2 .portfolio-action {
  position: absolute;
  top: 0;
  right: 0;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.portfolio-flat2 .portfolio-action a {
  display: block;
  float: left;
  width: 62px;
  height: 62px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 62px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  -webkit-box-shadow: inset -1px 0 0 0 rgba(255, 255, 255, 0.2);
  box-shadow: inset -1px 0 0 0 rgba(255, 255, 255, 0.2);
}

.portfolio-flat2 .portfolio-action a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.portfolio-flat2 .portfolio-meta {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
}

.portfolio-flat2 .portfolio-title {
  font-size: 40px;
  line-height: 0.9em;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.portfolio-flat2 .iso-col-3 .portfolio-title {
  font-size: 35px;
  font-weight: bold;
}

.portfolio-flat2 .iso-col-4 .portfolio-title,
.portfolio-flat2 .iso-col-5 .portfolio-title {
  font-size: 30px;
}

.portfolio-flat2 .iso-col-6 .portfolio-title {
  font-size: 24px;
}

.portfolio-flat2 .portfolio-category {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 14px;
  padding: 4px 20px;
  line-height: 30px;
  white-space: nowrap;
  float: left;
  -moz-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  -webkit-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.portfolio-flat2 .portfolio-category a + a:before {
  content: "/";
  margin: 0 5px;
  color: #fff;
}

.portfolio-flat2 .portfolio .image:hover .portfolio-action {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.portfolio-flat2 .portfolio .image:hover .portfolio-title {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.portfolio-flat2 .portfolio .image:hover .portfolio-category {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* masonry flat (See 5.9. Image Gallery) */
.portfolio-masonry-flat .portfolio-container .portfolio .image-extras:before {
  display: inline-block;
}

/* grid */
.portfolio-grid .portfolio {
  position: relative;
}

.portfolio-grid .portfolio .desc {
  padding: 15px 30px 25px;
  text-align: center;
}

.portfolio-grid .portfolio-title {
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #4b4b4b;
  text-transform: uppercase;
  font-weight: bold;
}

.portfolio-grid .portfolio-link {
  text-indent: -9999px;
  position: absolute;
  top: 19px;
  left: 19px;
  right: 19px;
  bottom: 0;
  border: 1px solid #000;
  z-index: 2;
}

.portfolio-grid .portfolio-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  border: 10px solid rgba(0, 0, 0, 0.05);
}

.portfolio-grid .portfolio-link,
.portfolio-grid .portfolio-link:before {
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.portfolio-grid .portfolio-link:hover {
  border-color: #ea088c;
}

.portfolio-grid .portfolio-link:hover:before {
  border-color: rgba(234, 8, 140, 0.05);
}

.portfolio-grid .portfolio-category {
  display: none;
}

/* fancy */
.portfolio-fancy .portfolio .image-extras:before {
  display: block;
}

.portfolio-fancy .portfolio:after {
  content: "";
  display: table;
  clear: both;
}

.portfolio-fancy .portfolio figure,
.portfolio-fancy .portfolio .desc {
  width: 50%;
  float: left;
}

.portfolio-fancy .portfolio .desc {
  padding: 30px 30px 70px 30px;
  position: relative;
}

.portfolio-fancy .portfolio-category {
  margin-bottom: 10px;
}

.portfolio-fancy .portfolio-category a + a:before {
  content: "/";
  margin: 0 5px 0 4px;
  color: #9c9c9c;
}

.portfolio-fancy .portfolio-title {
  position: relative;
  margin-bottom: 30px;
  line-height: 1.4em;
}

.portfolio-fancy .portfolio-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  border-top: 1px solid #ea088c;
  width: 12px;
}

.portfolio-fancy .portfolio-title a:hover {
  color: #ea088c;
}

.portfolio-fancy .portfolio-action {
  position: absolute;
  left: 35px;
  right: 30px;
  bottom: 30px;
}

.portfolio-fancy .portfolio-action .button {
  letter-spacing: 0.04em;
  margin-right: 15px;
  margin-bottom: 3px;
}

.portfolio-fancy .portfolio-action .button:last-child {
  margin-right: 0;
}

.portfolio-fancy .portfolio-action .post-like .label {
  display: none;
}

.portfolio-fancy .iso-col-1 .iso-item:nth-child(2n) figure {
  float: right;
}

.portfolio-fancy .iso-col-2 .iso-item:nth-child(4n+3) figure,
.portfolio-fancy .iso-col-2 .iso-item:nth-child(4n) figure {
  float: right;
}

.portfolio-fancy .iso-col-3 .iso-item:nth-child(6n+4) figure,
.portfolio-fancy .iso-col-3 .iso-item:nth-child(6n+5) figure,
.portfolio-fancy .iso-col-3 .iso-item:nth-child(6n) figure {
  float: right;
}

.portfolio-fancy.portfolio-full #content {
  padding-top: 0;
}

.portfolio-fancy.portfolio-full #main {
  padding-bottom: 0;
}

/* shortcode carousel */
.deliver-filters-wrap {
  position: relative;
}

.deliver-filters-wrap .owl-pagination {
  display: none !important;
}

.deliver-filters-wrap .portfolio-filters {
  position: absolute;
  background: #181818;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin-bottom: 0;
  padding: 0;
  color: #717171;
}

.deliver-filters-wrap .portfolio-filters .container {
  padding: 25px 35px 0;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 70px;
  max-width: none;
}

.deliver-filters-wrap.items-1 .portfolio-filters {
  position: static;
}

.deliver-filters-wrap.items-1 .portfolio-filters .container {
  position: static;
  width: auto;
  padding-bottom: 80px;
}

.deliver-filters-wrap.items-1 .owl-buttons {
  position: absolute;
  top: -70px;
  bottom: auto;
  left: 0;
  width: auto;
}

.deliver-filters-wrap.items-2 .portfolio-filters, .deliver-filters-wrap.items-2 .owl-buttons {
  width: 50.1%;
  left: 50%;
}

.deliver-filters-wrap.items-3 .portfolio-filters, .deliver-filters-wrap.items-3 .owl-buttons {
  width: 33.4%;
  left: 33.3333%;
}

.deliver-filters-wrap.items-4 .portfolio-filters, .deliver-filters-wrap.items-4 .owl-buttons {
  width: 25.1%;
  left: 25%;
}

.deliver-filters-wrap.items-5 .portfolio-filters, .deliver-filters-wrap.items-5 .owl-buttons {
  width: 20.1%;
  left: 20%;
}

.deliver-filters-wrap.items-6 .portfolio-filters, .deliver-filters-wrap.items-6 .owl-buttons {
  width: 16.7%;
  left: 16.6666%;
}

.deliver-filters-wrap .owl-carousel .owl-buttons {
  position: absolute;
  padding: 0 35px 20px;
  z-index: 3;
  bottom: 0;
  text-align: left;
}

.deliver-filters-wrap .owl-carousel .owl-buttons > div {
  position: static;
  margin-top: 0;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #3c3c3c;
}

.deliver-filters-wrap .owl-carousel .owl-buttons > div:hover {
  background: #ea088c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.deliver-filters-wrap .portfolio-filters .container {
  width: auto;
}

.deliver-filters-wrap .owl-buttons .owl-prev {
  margin-right: 10px;
}

.deliver-filters-wrap .owl-carousel .owl-buttons > div:before {
  font-family: "linea-arrows-10";
  font-size: 30px;
  color: #fff;
}

.deliver-filters-wrap .owl-carousel .owl-buttons .owl-prev:before {
  content: "\e03f";
}

.deliver-filters-wrap .owl-carousel .owl-buttons .owl-next:before {
  content: "\e04b";
}

.deliver-filters-wrap .filter-title {
  color: #fff;
  font-size: 24px;
}

/* 6.4. Single Portfolio ~~~~~~~~~~~~~~~~~~~~~~ */
.single-portfolio .media-container img {
  width: 100%;
}

.single-portfolio .media-container .image {
  float: none;
}

.media-container:after {
  content: "";
  display: table;
  clear: both;
}

.single-portfolio .media-container .image-gallery .box {
  position: relative;
}

.single-portfolio .media-container .image-gallery .image-caption {
  position: absolute;
  left: 0;
  bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.7);
  color: #4b4b4b;
  display: none;
}

.single-portfolio .post-meta h5 {
  margin-bottom: 3px;
  text-transform: uppercase;
  font-size: 15px;
  color: #4b4b4b;
}

.single-portfolio .post-meta p {
  margin-bottom: 25px;
}

.single-portfolio .post-meta p:last-child {
  margin-bottom: 0;
}

.single-portfolio .entry-title {
  float: left;
}

.single-portfolio .page-title .entry-title {
  float: none;
}

.single-portfolio .post-share {
  float: right;
}

.single-portfolio .post-share a {
  margin-bottom: 20px;
}

.single-portfolio .portfolio-follow .entry-title {
  float: none;
}

.single-portfolio .portfolio-follow .post-share {
  float: none;
}

.single-portfolio .portfolio-follow .post-meta {
  margin-top: 30px;
}

.single-portfolio .post-image.full .entry-title {
  float: none;
  font-size: 54px;
  letter-spacing: 0;
}

.single-portfolio .post-meta .meta-item {
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
}

.single-portfolio .post-meta .meta-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.2em;
}

.post-nav {
  margin-top: 15px;
  border-top: 1px solid #f1f1f1;
  padding-top: 25px;
  position: relative;
  margin-bottom: 40px;
  min-height: 60px;
}

.post-nav .next-prev-nav {
  width: 100%;
  overflow: hidden;
}

.post-nav .next-prev-nav .prev {
  float: left;
}

.post-nav .next-prev-nav .next {
  float: right;
}

.post-nav .next-prev-nav a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.post-nav .next-prev-nav a:hover {
  border-color: #ea088c;
  background: #ea088c;
  color: #fff;
}

.post-nav .list-nav {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  margin-top: -5px;
  font-size: 21px;
  color: #e5e5e5;
}

.post-nav .list-nav:hover {
  color: #ea088c;
}

.single-portfolio [class*=" col-"].portfolio-content-container {
  margin-bottom: 0;
}

.single-portfolio .portfolio-header .post-share {
  margin-top: 10px;
}

.single-portfolio .portfolio-header .post-share a {
  margin-bottom: 10px;
  font-size: 16px;
}

.single-portfolio .portfolio-header .entry-title {
  text-transform: uppercase;
}

/* 6.5. Widgets ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.widget {
  margin-bottom: 30px;
}
.widget .widget-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b4b4b;
}
.widget ul ul {
  padding-left: 15px;
}
.widget li {
  line-height: 20px;
}
.widget:last-child {
  margin-bottom: 0;
}

#footer .widget-title {
  margin-bottom: 25px;
}

.widget.widget_search .searchform {
  position: relative;
}
.widget.widget_search .searchform:after {
  content: "\f002";
  display: block;
  font-family: FontAwesome;
  font-size: 14px;
  height: 42px;
  width: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 42px;
  text-align: center;
}
.widget.widget_search input[type=text] {
  width: 100%;
}
.widget.widget_search input[type=submit] {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 42px;
  width: 40px;
  display: inline-block;
  text-indent: -9999px;
  z-index: 2;
}
.widget.widget_search input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.4);
}

.widget_tag_cloud .tagcloud a {
  font-size: 10px !important;
}

/* twitter box */
.twitter-holder ul {
  list-style: none;
  padding-left: 0;
}
.twitter-holder .tweet {
  margin-bottom: 25px;
  position: relative;
  padding: 0 0 0 55px;
}
.twitter-holder .tweet:before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f099";
  font-size: 14px;
  display: block;
  left: 0;
  top: 5px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  color: #c4c4c4;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #f9f9f9;
}
.twitter-holder .tweet .tweet-text {
  margin-bottom: 6px;
  font-size: 13px;
}
.twitter-holder .tweet .tweet-text a {
  color: #ea088c;
}
.twitter-holder .tweet .tweet-text a:hover {
  text-decoration: underline;
}
.twitter-holder .tweet .tweet-date {
  font-size: 10px;
  text-transform: uppercase;
}
.twitter-holder .tweet:hover:before {
  color: #fff;
  background-color: #ea088c;
}
.twitter-holder .tweet:last-child {
  margin-bottom: 0;
}

/* recent posts */
.widget .recent-posts {
  list-style: none;
  padding-left: 0;
}
.widget .recent-posts > li {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
.widget .recent-posts > li:first-child {
  padding-top: 0;
}
.widget .recent-posts > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget .recent-posts .post-author-avatar {
  display: table-cell;
  padding-right: 18px;
  vertical-align: middle;
}
.widget .recent-posts .post-author-avatar span {
  width: 60px;
  height: 60px;
  display: block;
}
.widget .recent-posts .post-author-avatar img {
  width: 100%;
  height: auto;
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.widget .recent-posts .post-author-avatar:hover img {
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.widget .recent-posts .post-content {
  display: table-cell;
  vertical-align: middle;
}
.widget .recent-posts .post-title {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 20px;
}
.widget .recent-posts .post-title:hover {
  color: #ea088c;
}
.widget .recent-posts .post-meta {
  font-size: 11px;
  margin-bottom: 0;
}

#footer .widget .recent-posts > li:not(:last-child) {
  border-bottom-color: #242424;
}

/* Wordpress default widgets */
.widget_layered_nav li {
  line-height: 25px;
}

.widget {
  /*li li { padding-left: 15px; }*/
}
.widget select {
  width: 100%;
}
.widget.widget_rss ul {
  padding-left: 25px;
}
.widget.widget_rss ul a {
  text-decoration: underline;
}
.widget.widget_rss li:not(:first-child) {
  margin-top: 20px;
}
.widget.widget_calendar table {
  width: 100%;
}
.widget.widget_calendar table th, .widget.widget_calendar table td {
  text-align: center;
}
.widget.widget_calendar table #prev {
  text-align: left;
}
.widget.widget_calendar table #next {
  text-align: right;
}
.widget.widget_calendar table a {
  text-decoration: underline;
}
.widget.widget_calendar table tbody a {
  color: #ea088c;
}
.widget.widget_calendar table caption {
  margin-bottom: 10px;
}

/* archives */
.widget_archive ul, .widget_categories ul, .widget_recent_entries ul {
  font-size: 14px;
  list-style: none;
  padding-left: 5px;
}
.widget_archive ul li a, .widget_categories ul li a, .widget_recent_entries ul li a {
  white-space: nowrap;
  display: inline-block;
  padding-top: 7px;
  padding-bottom: 7px;
}
.widget_archive ul li a:before, .widget_categories ul li a:before, .widget_recent_entries ul li a:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 10px;
}
.widget_archive ul li a:hover, .widget_categories ul li a:hover, .widget_recent_entries ul li a:hover {
  color: #181818;
}
.widget_archive ul li a:hover:before, .widget_categories ul li a:hover:before, .widget_recent_entries ul li a:hover:before {
  color: #ea088c;
}

#footer .widget_archive ul li:hover a {
  color: white;
}

.widget_pages ul, .widget_meta ul {
  padding-left: 25px;
  list-style: disc;
}
.widget_pages ul li a, .widget_meta ul li a {
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
}

.widget_recent_comments ul, .widget_nav_menu ul {
  padding-left: 25px;
  list-style: disc;
}
.widget_recent_comments ul ul, .widget_nav_menu ul ul {
  padding-left: 15px;
}

.widget_recent_comments ul li {
  padding-top: 7px;
  padding-bottom: 7px;
}

.widget_nav_menu ul li a {
  padding-top: 7px;
  padding-bottom: 7px;
  display: block;
}

/* newsletter widget */
.widget_newsletterwidget form {
  letter-spacing: 0.04em;
}
.widget_newsletterwidget form input {
  border: 1px solid #242424;
  background: none;
  font-size: 11px;
  height: 40px;
  padding: 0 15px;
}
.widget_newsletterwidget form input[type=email], .widget_newsletterwidget form input[type=text] {
  width: 100%;
}
.widget_newsletterwidget form input[type=submit] {
  -moz-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.widget_newsletterwidget form input[type=submit]:hover {
  background: #ea088c;
  border-color: #ea088c;
  color: #fff;
}

/* flickr widget */
.flickr-feeds {
  padding-left: 0;
  list-style: none;
  display: block;
  margin-left: -3px;
  margin-right: -3px;
}
.flickr-feeds img {
  width: 100%;
  height: auto;
}
.flickr-feeds li {
  float: left;
  padding-left: 3px;
  padding-right: 3px;
  margin-bottom: 6px;
}
.flickr-feeds:after {
  content: "";
  display: table;
  clear: both;
}
.flickr-feeds li img {
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  -ms-transition: -ms-transform 1s ease;
  transition: transform 1s ease;
}
.flickr-feeds li:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  position: relative;
  z-index: 1;
}

/* recent portfolio */
.widget .recent-portfolio {
  list-style: none;
  padding-left: 0;
  margin-left: -3px;
  margin-right: -3px;
}
.widget .recent-portfolio li {
  padding-left: 3px;
  padding-right: 3px;
  margin-bottom: 6px;
}
.widget .recent-portfolio .portfolio-thumbnail {
  display: block;
  /*overflow: hidden;*/
}
.widget .recent-portfolio .portfolio-thumbnail img {
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  -ms-transition: -ms-transform 1s ease;
  transition: transform 1s ease;
}
.widget .recent-portfolio .portfolio-thumbnail:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  position: relative;
  z-index: 1;
}

/* 6.6. Wordpress Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Wordpress styles */
.gallery-item {
  overflow: hidden;
  max-width: 150px;
  position: relative;
  float: left;
}

.gallery-item .gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%;
}

.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px 0;
}

.post-password-form input[type=password] {
  height: 42px;
  background: #f9f9f9;
  border: none;
  padding: 0 15px;
}
.post-password-form label {
  margin-bottom: 10px;
}
.post-password-form input[type=submit] {
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0 20px;
  white-space: nowrap;
  text-transform: uppercase;
  background: #ea088c;
  font-size: 12px;
  margin-right: 5px;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  box-shadow: none;
  vertical-align: baseline;
  height: 40px;
  line-height: 40px;
}

.entry-content table, .comment-text table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 24px;
}

.entry-content td, .comment-text td, .entry-content th, .comment-text th {
  padding: 8px;
  border: 1px solid #f9f9f9;
}

.entry-content ul li ul, .comment-text ul li ul {
  list-style: disc;
  margin: 0 0 24px 20px;
}

.entry-content ol, .comment-text ol {
  list-style: decimal;
  margin: 0 0 24px 20px;
}

.alignleft {
  float: left;
  margin: 5px 30px 10px 0;
}

.alignright {
  float: right;
  margin: 5px 0 10px 30px;
}

.bypostauthor {
  font-weight: normal;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0 0 5px;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* 6.7. Pages ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Home pages */
.home-about3 > div:first-child .half-in-container {
  float: right;
  padding-right: 80px;
}

.home-about3 > div:last-child .half-in-container {
  margin-left: 0;
  padding-left: 80px;
}

.home-about3 > div:last-child .vc_inner .wpb_column {
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-about3 .icon-box.style7 .icon-wrapper i {
  background: #ea088c;
  color: #fff;
}

@media (max-width: 767px) {
  .home-about3 > div:first-child .half-in-container {
    float: none;
    padding-right: 0;
  }

  .home-about3 > div:last-child .half-in-container {
    padding-left: 0;
    margin-left: auto;
  }
}
.mobile-section2 {
  position: relative;
  z-index: 1;
}

.mobile-section2 .vc_row, .mobile-section2 .wpb_text_column {
  position: relative;
  z-index: 1;
}

.mobile-section2 .mobile-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 27%;
  margin-bottom: 0;
  transform: translate(-50%, 20%);
  -webkit-transform: translate(-50%, 20%);
}

.mobile-section2 .icon-box {
  padding-left: 10%;
}

.mobile-section2 .icon-box.icon-position-right {
  padding-right: 10%;
  padding-left: 0;
}

@media (max-width: 767px) {
  .mobile-section2 .mobile-image {
    position: static;
    width: auto;
    transform: none;
    -webkit-transform: none;
    margin-bottom: 30px;
  }

  .mobile-section2 .icon-box {
    padding-left: 0;
  }

  .mobile-section2 .icon-box.icon-position-right {
    padding-right: 0;
    padding-left: 0;
  }
}
.options-image-section > div {
  display: table;
  width: 100%;
  height: 100%;
}

.options-image-section > div > div {
  display: table-cell;
  vertical-align: bottom;
}

.home5-intro .text {
  color: rgba(255, 255, 255, 0.7);
}

.home5-intro .icon-box.style7 .icon-wrapper i {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
}

.home5-intro .icon-box.style7 {
  margin-bottom: 30px;
}

.tparrows.deliver_fasion {
  width: 54px;
  height: 72px;
  background: url(../images/icon/arrow-icon.png) no-repeat;
  padding: 0 !important;
}

.tparrows.deliver_fasion:before {
  content: "";
  display: none;
}

.tp-leftarrow.deliver_fasion {
  background-position: 0 0;
}

.tp-leftarrow.deliver_fasion:hover {
  background-position: 0 -72px;
}

.tp-rightarrow.deliver_fasion {
  background-position: -54px 0;
}

.tp-rightarrow.deliver_fasion:hover {
  background-position: -54px -72px;
}

/* Contact Form */
.st-home-contact-form .wpcf7 {
  width: 640px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.15);
  padding: 22px;
  margin-left: auto;
  margin-right: auto;
}

.st-home-contact-form .wpcf7-form {
  background: rgba(24, 24, 24, 0.9);
  padding: 35px 45px 40px;
}

.st-home-contact-form .wpcf7-form .input-text {
  background: none;
  border: none;
  border-bottom: 1px solid #616161;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 0;
}

.st-home-contact-form .wpcf7-form .input-text:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.st-home-contact-form .wpcf7-form textarea {
  resize: none;
}

.st-home-contact-form .wpcf7-form .form-group {
  margin-bottom: 25px;
}

.st-home-contact-form .wpcf7-form .button {
  background: #fff;
  color: #4b4b4b;
  margin: 0;
  font-weight: bold;
}

.st-home-contact-form .wpcf7-form .button:hover {
  background: #ea088c;
  color: #fff;
}

.st-page-contact-form .row {
  margin-left: -5px;
  margin-right: -5px;
}

.st-page-contact-form [class^="col-"], .st-page-contact-form [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.st-page-contact-form .wpcf7-form .form-group {
  margin-bottom: 10px;
}

.st-page-contact-form .wpcf7-form .input-text {
  font-size: 13px;
}

.wpcf7-form textarea {
  resize: none;
}

/* 6.8. jQuery plugins ~~~~~~~~~~~~~~~~~~~~~~~~ */
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
