/**
 * @package Helix Ultimate Framework
 * @author JoomShaper https://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2018 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
 */
body {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.helix-ultimate-preloader {
  overflow: hidden;
}
body.helix-ultimate-preloader:before {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  background: rgba(255, 255, 255, .9);
}
body.helix-ultimate-preloader:after {
  content: "\f110";
  font-family: "FontAwesome";
  font-size: 36px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  width: 48px;
  height: 48px;
  line-break: 48px;
  text-align: center;
  color: #007bff;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  z-index: 99999;
}
body, p {
  line-height: 1.9;
}
a {
  transition: color 400ms, background-color 400ms;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
}
label {
  font-weight: normal;
}
legend {
  padding-bottom: 10px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h3 {
  line-height: 1.1;
}
/*------------- #BUTTONS --------------*/
.btn {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 35px;
  color: #fff;
  border-radius: 0px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1;
}
.btn:hover, .btn:focus, .btn:active {
  color: #f2f2f2;
  text-decoration: none;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}
.btn + .btn {
  margin-left: 30px;
}
.btn--with-icon {
  text-transform: none;
  text-align: left;
  fill: #fff;
}
.btn--with-icon > * {
  display: inline-block;
  vertical-align: middle;
}
.btn--with-icon .fa {
  margin-right: 14px;
  font-size: 26px;
  height: 26px;
}
.btn--with-icon .text {
  overflow: hidden;
}
.btn--with-icon span {
  display: block;
}
.btn--with-icon .sup-title {
  font-size: 10px;
  opacity: 0.7;
}
.btn--with-icon .title {
  font-size: 16px;
}
.btn-small {
  padding: 14px 28px;
  font-size: 12px;
}
.btn-x-small {
  padding: 8px 20px;
  font-size: 12px;
}
.btn-x-small .utouch-icon {
  height: 20px;
  width: 20px;
}
.btn--large {
  padding: 23px 50px;
}
.btn-more {
  margin: 40px auto;
  text-align: center;
}
.btn-border {
  border: 2px solid;
  background-color: transparent;
}
.btn-border.btn {
  padding: 16px 50px;
}
.btn-border.btn-small {
  padding: 12px 26px;
}
.btn-border.btn--large {
  padding: 21px 50px;
}
.btn-border.btn--with-shadow:after {
  box-shadow: 5px 0 15px 0 rgba(0, 131, 255, 0.3);
}
.btn--icon-right .utouch-icon {
  float: right;
  margin-right: 0;
  margin-left: 4px;
  font-size: 26px;
  height: 26px;
}
.btn--icon-right .text {
  overflow: hidden;
  margin-top: 8px;
}
.bg-blue {
  background-color: #0082d7;
}
.bg-rose {
  background-color: #e81d51;
}
.bg-violet {
  background-color: #bb26f0;
}
.bg-black {
  background-color: #121921;
}
.bg-yellow {
  background-color: #fecf39;
}
.bg-blue-light {
  background-color: #98d5ff;
}
.bg-blue-lighteen {
  background-color: #ecf5fe;
}
.bg-orange {
  background-color: #ef6517;
}
.bg-orange-light {
  background-color: #f89101;
}
.bg-red {
  background-color: #ff3133;
}
.bg-green {
  background-color: #01a23c;
}
.bg-pamaranch {
  background-color: #f18d01;
}
.btn--with-shadow:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
}
.btn--with-shadow:hover:after {
  opacity: 1;
}
.btn--transparent {
  background-color: transparent;
  color: #6987ab;
  fill: #6987ab;
}
.btn--primary {
  background-color: #4fc9c4;
}
.btn--primary.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(79, 201, 196, 0.5);
}
.btn--secondary {
  background-color: #273f5b;
}
.btn--secondary.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(39, 63, 91, 0.5);
}
.btn--green {
  background-color: #01a23c;
}
.btn--green.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(1, 162, 60, 0.5);
}
.btn--green-light {
  background-color: #61b131;
}
.btn--green-light.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(97, 177, 49, 0.5);
}
.btn--black {
  background-color: #121921;
}
.btn--black.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(18, 25, 33, 0.5);
}
.btn--orange {
  background-color: #ef6517;
}
.btn--orange.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(239, 101, 23, 0.5);
}
.btn--orange-light {
  background-color: #f89101;
}
.btn--orange-light.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(248, 145, 1, 0.5);
}
.btn--red {
  background-color: #ff3133;
}
.btn--red.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(255, 49, 51, 0.5);
}
.btn--grey {
  background-color: #738caa;
}
.btn--grey.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(115, 140, 170, 0.5);
}
.btn--grey-light {
  background-color: #ecf4fc;
  color: #6987ab;
}
.btn--grey-light .utouch-icon {
  fill: #6987ab;
}
.btn--grey-light.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(236, 244, 252, 0.5);
}
.btn--yellow {
  background-color: #fecf39;
}
.btn--yellow.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(254, 207, 57, 0.5);
}
.btn--lime {
  background-color: #9fc31a;
}
.btn--lime.btn--with-shadow:after {
  box-shadow: 10px 0 30px 0 rgba(159, 195, 26, 0.5);
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li {
  margin: 0 0 15px;
  line-height: initial;
}
.btn--round {
  border-radius: 100%;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 42px;
  fill: #fff;
  position: relative;
}
#sp-top-bar {
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 9;
  font-size: 0.875rem;
}
#sp-top-bar .sp-module {
  display: inline-block;
  margin: 0 0 0 1.25rem;
}
ul.social-icons {
  list-style: none;
  padding: 0;
  margin: -5px;
  display: inline-block;
}
ul.social-icons > li {
  display: inline-block;
  margin: 5px 7px;
}
.sp-module-content .mod-languages ul.lang-inline {
  margin: 0;
  padding: 0;
}
.sp-module-content .mod-languages ul.lang-inline li {
  border: none;
  display: inline-block;
  margin: 0 5px 0 0;
}
.sp-module-content .mod-languages ul.lang-inline li a {
  padding: 0 !important;
}
.sp-module-content .mod-languages ul.lang-inline li > a:before {
  display: none;
}
.sp-module-content .latestnews > li > a > span {
  display: block;
  margin-top: 5px;
  font-size: 85%;
}
.sp-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
.sp-contact-info li {
  display: inline-block;
  margin: 0 10px;
  white-space: nowrap;
}
.sp-contact-info li i {
  margin: 0 3px;
}
.sp-contact-info li span {
  color: #000;
}
#sp-header {
  height: 80px;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}
#sp-header .logo {
  height: 80px;
  display: inline-flex;
  margin: 0;
  align-items: center;
}
#sp-header .logo a {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
#sp-header .logo p {
  margin: 5px 0 0;
}
#sp-header.header-sticky {
  position: fixed;
  z-index: 9999;
}
.tp-dottedoverlay.twoxtwo {
  background: rgba(79, 201, 196, .7) !important;
}
#sp-header.header-sticky .logo {
  height: 80px;
  line-height: 80px;
}
#sp-title {
  min-height: 0;
}
.sp-page-title {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}
.sp-page-title .sp-page-title-heading, .sp-page-title .sp-page-title-sub-heading {
  margin: 0;
  padding: 0;
  color: #fff;
}
.sp-page-title .sp-page-title-heading {
  font-size: 24px;
  line-height: 1;
}
.sp-page-title .sp-page-title-sub-heading {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  margin-top: 10px;
}
.sp-page-title .breadcrumb {
  background: none;
  padding: 0;
  margin: 10px 0 0 0;
}
.sp-page-title .breadcrumb > .active {
  color: rgba(255, 255, 255, 0.8);
}
.sp-page-title .breadcrumb > span, .sp-page-title .breadcrumb > li, .sp-page-title .breadcrumb > li + li:before, .sp-page-title .breadcrumb > li > a {
  color: #fff;
}
.body-innerwrapper {
  overflow-x: hidden;
}
.layout-boxed .body-innerwrapper {
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#sp-main-body {
  padding: 50px 0;
}
body:not(.com-quix) #sp-main-body {
  background: #e9e9e9;
}
.breadcrumbs-page-title {
  background: #fff;
}
.com-sppagebuilder #sp-main-body {
  padding: 0;
}
.com-quix #sp-main-body {
  padding: 0;
}
.com-quix #sp-main-body > .container {
  max-width: 100%;
  padding: 0;
}
.no-padding .qx-container-fluid {
  padding: 0;
}
.no-padding-column .qx-column {
  padding: 0;
}
.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.sp-module.search-blog {
  background: #fff;
}
.search .form-control {
  padding: 13px 40px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #273f5b;
  margin-bottom: 20px;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
  width: 100%;
  outline: none;
}
.search .form-control:focus {
  -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
  box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
  color: #4fc9c4;
}
.form-control {
  padding: 13px 40px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #273f5b;
  margin-bottom: 20px;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
  width: 100%;
  outline: none;
}
.form-control:focus {
  -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
  box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
  color: #4fc9c4;
}
.com-users .input-group-text {
  border: none;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
}
.login .login-content-wrapper, .registration .registration-content-wrapper {
  position: relative;
  padding: 45px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1);
  border-radius: 5px;
  background: #fff;
}
::-webkit-input-placeholder {
  color: #797979 !important;
}
::-moz-placeholder {
  color: #797979 !important;
}
/* Firefox 19+ */
:-moz-placeholder {
  color: #797979 !important;
}
/* Firefox 18- */
:-ms-input-placeholder {
  color: #797979 !important;
}
#sp-left .sp-module, #sp-right .sp-module {
  padding: 20px 40px 40px;
  background-color: #fff;
  margin-bottom: 40px;
}
#sp-left .sp-module:first-child, #sp-right .sp-module:first-child {
  margin-top: 0;
}
#sp-left .sp-module .sp-module-title, #sp-right .sp-module .sp-module-title {
  margin: 0 0 30px;
  font-size: 22px;
  font-weight: 700;
}
#sp-left .sp-module ul, #sp-right .sp-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sp-left .sp-module ul > li, #sp-right .sp-module ul > li {
  display: block;
  border-bottom: 1px solid #f3f3f3;
}
#sp-left .sp-module ul > li > a, #sp-right .sp-module ul > li > a {
  display: block;
  padding: 5px 0;
  line-height: 36px;
  padding: 2px 0;
}
#sp-left .sp-module ul > li:last-child, #sp-right .sp-module ul > li:last-child {
  border-bottom: none;
}
#sp-left .sp-module .categories-module ul, #sp-right .sp-module .categories-module ul {
  margin: 0 10px;
}
#sp-left .sp-module .latestnews > div, #sp-right .sp-module .latestnews > div {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #e8e8e8;
}
#sp-left .sp-module .latestnews > div:last-child, #sp-right .sp-module .latestnews > div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
#sp-left .sp-module .latestnews > div > a, #sp-right .sp-module .latestnews > div > a {
  display: block;
  font-weight: 400;
}
#sp-left .sp-module .tagscloud, #sp-right .sp-module .tagscloud {
  margin: -2px 0;
}
#sp-left .sp-module .tagscloud .tag-name, #sp-right .sp-module .tagscloud .tag-name {
  display: inline-block;
  padding: 5px 10px;
  background: #808080;
  color: #fff;
  border-radius: 4px;
  margin: 2px 0;
}
#sp-left .sp-module .tagscloud .tag-name span, #sp-right .sp-module .tagscloud .tag-name span {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.login img {
  display: inline-block;
  margin: 20px 0;
}
.login .checkbox input[type="checkbox"] {
  margin-top: 6px;
}
.form-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search .btn-toolbar {
  margin-bottom: 20px;
}
.search .btn-toolbar span.icon-search {
  margin: 0;
}
.search .btn-toolbar button {
  color: #fff;
}
.search .phrases .phrases-box .controls label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .phrases .ordering-box {
  margin-bottom: 15px;
}
.search .only label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .search-results dt.result-title {
  margin-top: 40px;
}
.search .search-results dt, .search .search-results dd {
  margin: 5px 0;
}
.filter-search .chzn-container-single .chzn-single {
  height: 34px;
  line-height: 34px;
}
.form-search .finder label {
  display: block;
}
.form-search .finder .input-medium {
  width: 60%;
  border-radius: 4px;
}
.finder .word input {
  display: inline-block;
}
.finder .search-results.list-striped li {
  padding: 20px 0;
}
.article-list .article {
  border-radius: 10px;
  box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 60px;
  position: relative;
}
.article-list .article .article-header h1, .article-list .article .article-header h2 {
  font-size: 1.375rem;
  margin: 0 0 1.25rem 0;
}
.article-list .article .article-header h1 a, .article-list .article .article-header h2 a {
  color: #6d7a8c;
}
.article-list .article .article-header h1 a:hover, .article-list .article .article-header h2 a:hover, .article-list .article .article-header h1 a:active, .article-list .article .article-header h2 a:active, .article-list .article .article-header h1 a:focus, .article-list .article .article-header h2 a:focus {
  color: #4fc9c4;
}
.article-list .article .readmore {
  font-size: 0.875rem;
}
.article-list .article .readmore a {
  color: #fff;
  font-weight: 500;
}
.article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-info > span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.article-info > span + span::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  content: "/";
}
.article-info > span a {
  color: #6d7a8c;
}
.article-info > span a:hover {
  color: #4fc9c4;
}
.article-details {
  position: relative;
  background: #fff;
}
.article-details hr {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.article-details .article-header {
  position: relative;
}
.article-details .article-header h1, .article-details .article-header h2 {
  font-size: 1.8rem;
}
.article-details .link-edit-article {
  position: absolute;
  right: 0;
  top: 10px;
}
.article-details .article-info {
  margin-bottom: 1rem;
  color: #6987ab;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.article-details .article-full-image {
  text-align: center;
  margin-bottom: 2rem;
}
.article-details .article-full-image img {
  display: inline-block;
}
.article-details .article-featured-video, .article-details .article-featured-audio, .article-details .article-feature-gallery {
  margin-bottom: 2rem;
}
.article-details .article-ratings-social-share {
  padding: 1rem 0;
}
.article-details .article-author-information {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #f5f5f5;
}
/*------------- #NAVIGATION --------------*/
.pagination-wrapper {
  /*================= Responsive Mode ============*/
}
.pagination-wrapper .navigation {
  margin: 20px 0;
  width: 100%;
  position: relative;
}
.pagination-wrapper .page-numbers {
  position: relative;
  background-color: #fff;
  display: inline-block;
  margin: 0 12px 0 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #313131;
  font-size: 14px;
  border-radius: 100%;
  transition: all 0.3s ease;
  font-weight: 700;
}
.pagination-wrapper .page-numbers:hover {
  background-color: #4fc9c4;
  color: #fff !important;
  box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
}
.pagination-wrapper .page-numbers.active {
  background-color: #fff;
  box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
  color: #4fc9c4 !important;
}
.pagination-wrapper .page-numbers span {
  position: relative;
}
@media (max-width: 640px) {
  .pagination-wrapper .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 8px 0 0;
  }
}
@media (max-width: 460px) {
  .pagination-wrapper .page-numbers {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    margin: 0 8px 0 0;
  }
}
.article-body {
  padding: 60px 60px 40px;
  background: #fff;
}
ul.pager.pagenav {
  background: #e9e9e9;
}
.article-details .article-header, .article-details .article-info, .article-details .article-ratings-social-share, .article-print-email {
  position: relative;
  padding: 0 60px !important;
}
.breadcrumb-item {
  display: inline-block;
  margin-bottom: 0;
}
.breadcrumb-item a {
  margin-right: 6px;
  color: #273f5b;
}
.breadcrumbs-item a:hover {
  color: #4fc9c4;
}
.breadcrumb-item.active span {
  color: #4fc9c4;
}
.breadcrumb-item .fa {
  margin-right: 6px;
  fill: #d1e8f6;
  height: 6px;
  width: 6px;
}
.breadcrumb-item:last-child .fa {
  display: none;
}
.breadcrumbs--rounded {
  overflow: hidden;
  padding: 10px 30px;
  background-color: #fff;
}
ul.breadcrumbs {
  list-style: none;
  margin: 0;
}
.inline-items > * {
  display: inline-block;
  vertical-align: middle;
}
i.breadcrumbs-custom {
  line-height: 40px;
}
/*------------- #SOCIALS --------------*/
.socials {
  margin: 15px 0;
}
.socials li {
  display: inline-block;
  margin-right: 10px;
}
.socials li:last-child {
  margin-right: 0;
}
.social__item {
  position: relative;
}
.share-product {
  position: absolute;
  right: 60px;
  top: -165px;
  height: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  visibility: hidden;
  padding-right: 50px;
  z-index: 999;
  cursor: pointer;
}
.share-product .socials {
  margin: 0;
}
.share-product .socials li {
  margin-right: 5px;
}
.share-product .socials li:last-child {
  margin-right: 0;
}
.share-product.open {
  visibility: visible;
}
.share-product.open .social__item.twitter {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
.share-product.open .social__item.facebook {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.share-product.open .social__item.facebook {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.share-product.open .social__item.googlePlus {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
}
.share-product.open .social__item.pinterest {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.share-product.open .social__item.mail {
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.share-product .social__item {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  opacity: 0;
  text-align: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.85s;
  transition: 0.85s;
  color: #fff;
}
.share-product .social__item .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.share-product .social__item .fa {
  height: 16px;
  width: 16px;
  fill: #fff;
}
.social__item.main {
  opacity: 1;
  filter: alpha(opacity=100);
  padding: 0;
  z-index: 5;
  letter-spacing: -0.5px;
  position: absolute;
  cursor: pointer;
  right: 60px;
  top: -165px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  will-change: max-width, padding-right, opacity, text-indent;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 30px rgba(39, 63, 91, 0.2);
  text-align: center;
}
.social__item.main .fa, .social__item.main span {
  height: 18px;
  width: 18px;
  color: #829dbc;
  fill: #829dbc;
  position: relative;
}
.social__item.main.item--small {
  width: 32px;
  height: 32px;
  line-height: 40px;
}
.share-product .social__item .fa {
  outline: 26px solid rgba(44, 42, 42, 0);
  outline-offset: -12px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.share-product .social__item:hover .fa {
  outline: 26px solid rgba(44, 42, 42, 0.2);
  fill: #fff;
}
.share-product .social__item.twitter {
  margin-left: 0;
  -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
  -webkit-transform: translateX(160px) rotate(582deg);
  -ms-transform: translateX(160px) rotate(582deg);
  transform: translateX(160px) rotate(582deg);
}
.twitter {
  background: #55acee;
}
.share-product .social__item.facebook {
  -webkit-transform: translateX(120px) rotate(436deg);
  -ms-transform: translateX(120px) rotate(436deg);
  transform: translateX(120px) rotate(436deg);
}
.facebook {
  background: #3b5998;
}
.share-product .social__item.googlePlus {
  -webkit-transform: translateX(80px) rotate(290deg);
  -ms-transform: translateX(80px) rotate(290deg);
  transform: translateX(80px) rotate(290deg);
}
.googlePlus {
  background: #dd4b39;
}
.share-product .social__item.pinterest {
  -webkit-transform: translateX(40px) rotate(145deg);
  -ms-transform: translateX(40px) rotate(145deg);
  transform: translateX(40px) rotate(145deg);
}
.pinterest {
  background: #cc2127;
}
.share-product .social__item.mail {
  -webkit-transform: translateX(0) rotate(0deg);
  -ms-transform: translateX(0) rotate(0deg);
  transform: translateX(0) rotate(0deg);
}
.share-product:hover .social__item, .share-product.hover .social__item {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.linkedin {
  background-color: #4875b4;
}
.share-product--item-right {
  padding-left: 42px;
  padding-right: 0;
  height: 32px;
}
.share-product--item-right .social__item.main {
  right: auto;
  left: 0;
  width: 32px;
  height: 32px;
}
.share-product--item-right .social__item {
  height: 32px;
  width: 32px;
}
.tags {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: block;
}
.tags > li {
  display: inline-block;
}
.tags > li a {
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
}
.tags > li a:hover {
  color: #fff;
}
.pager {
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 2rem 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.pager::after {
  display: block;
  clear: both;
  content: "";
}
.pager > li {
  display: inline-block;
}
.pager > li.previous {
  float: left;
}
.pager > li.next {
  float: right;
}
.pager > li a {
  display: inline-block;
  border-radius: 2px;
  padding: 5px 25px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: 700;
}
#article-comments {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #f5f5f5;
}
.article-ratings {
  display: flex;
  align-items: center;
}
.article-ratings .rating-symbol {
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 1rem;
  display: inline-block;
  margin-left: 5px;
}
.article-ratings .rating-symbol span.rating-star {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}
.article-ratings .rating-symbol span.rating-star.active:before {
  content: "\f005";
  color: #f6bc00;
}
.article-ratings .rating-symbol span.rating-star:before {
  content: "\f006";
  padding-right: 5px;
}
.article-ratings .rating-symbol span.rating-star:hover:before, .article-ratings .rating-symbol span.rating-star:hover ~ span.rating-star:before {
  content: "\f005";
  color: #e7b000;
  cursor: pointer;
}
.article-ratings .ratings-count {
  font-size: 0.785rem;
  color: #999;
}
.article-ratings .fa-spinner {
  margin-right: 5px;
}
.pagination-wrapper {
  align-items: center;
}
.pagination-wrapper .pagination {
  margin-bottom: 0;
}
.article-social-share {
  float: right;
}
.article-social-share .social-share-icon ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.article-social-share .social-share-icon ul li {
  display: inline-block;
}
.article-social-share .social-share-icon ul li:not(:last-child) {
  margin-right: 10px;
}
.article-social-share .social-share-icon ul li a {
  border: 1px solid #ededed;
  font-size: 1rem;
  border-radius: 50%;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
  display: inline-block;
}
.article-social-share .social-share-icon ul li a:hover, .article-social-share .social-share-icon ul li a:focus {
  color: #fff;
}
.newsfeed-category .category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsfeed-category .category li {
  padding: 5px 0;
}
.newsfeed-category #filter-search {
  margin: 10px 0;
}
.category-module, .categories-module, .archive-module, .latestnews, .newsflash-horiz, .mostread, .form-links, .list-striped {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-module li, .categories-module li, .archive-module li, .latestnews li, .newsflash-horiz li, .mostread li, .form-links li, .list-striped li {
  padding: 2px 0;
}
.category-module li h4, .categories-module li h4, .archive-module li h4, .latestnews li h4, .newsflash-horiz li h4, .mostread li h4, .form-links li h4, .list-striped li h4 {
  margin: 5px 0;
}
.article-footer-top {
  display: table;
  clear: both;
  width: 100%;
}
.article-footer-top .post_rating {
  float: left;
}
.contentpane:not(.com-sppagebuilder) {
  padding: 20px;
}
#sp-bottom {
  padding: 60px 0 30px;
}
#sp-bottom .sp-module {
  margin-bottom: 30px;
}
#sp-bottom .sp-module .sp-module-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 30px;
}
#sp-bottom .sp-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sp-bottom .sp-module ul > li {
  display: block;
  margin-bottom: 15px;
}
#sp-bottom .sp-module ul > li:last-child {
  margin-bottom: 0;
}
#sp-bottom .sp-module ul > li > a {
  display: block;
  color: #757575;
}
#sp-footer {
  font-size: 14px;
  padding: 0;
}
#sp-footer .container-inner {
  padding: 20px 0;
}
#sp-footer ul.menu {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
#sp-footer ul.menu li {
  display: inline-block;
  margin: 0 10px;
}
#sp-footer ul.menu li a {
  display: block;
}
#sp-footer ul.menu li a:hover {
  background: none;
}
#sp-footer #sp-footer2 {
  text-align: right;
}
html.coming-soon {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
html.coming-soon body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
html.coming-soon .coming-soon-logo {
  display: inline-block;
  margin-bottom: 2rem;
}
html.coming-soon #coming-soon-countdown {
  margin-top: 4rem;
}
html.coming-soon #coming-soon-countdown .coming-soon-days, html.coming-soon #coming-soon-countdown .coming-soon-hours, html.coming-soon #coming-soon-countdown .coming-soon-minutes, html.coming-soon #coming-soon-countdown .coming-soon-seconds {
  margin: 0;
  float: left;
  width: 25%;
}
html.coming-soon #coming-soon-countdown .coming-soon-days .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-hours .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-minutes .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-seconds .coming-soon-number {
  width: 100%;
  font-size: 4.5rem;
  letter-spacing: -1px;
  line-height: 1;
}
html.coming-soon #coming-soon-countdown .coming-soon-days .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-hours .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-minutes .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-seconds .coming-soon-string {
  font-size: 1.5rem;
  letter-spacing: -1px;
  display: block;
  text-transform: uppercase;
}
html.coming-soon .coming-soon-position {
  margin-top: 2rem;
}
html.coming-soon .social-icons {
  margin-top: 4rem;
}
html.coming-soon .coming-soon-login form {
  display: inline-block;
}
html.coming-soon .input-group-text {
  border: none;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
}
html.coming-soon .btn {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 18px 50px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1;
}
html.error-page {
  /*------------- #PAGE404 --------------*/
  /*================= Responsive Mode ============*/
}
html.error-page body {
  margin: 0;
}
html.error-page .page404 {
  display: flex;
  min-height: 100vh;
}
html.error-page .page404 .col-error {
  width: 12.5%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html.error-page .page404 .error {
  font-size: 50px;
  color: #fff;
  transform: rotate(-90deg);
  text-transform: uppercase;
}
html.error-page .page404 .number {
  font-size: 300px;
  color: #fff;
  margin-left: -50px;
  font-weight: 900;
}
html.error-page .page404 .sub-footer {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: transparent;
  padding: 0;
  width: 95%;
}
html.error-page .page404 .sub-footer span {
  color: #fff;
}
html.error-page .page404 .sub-footer .sub-footer__link {
  color: #fff;
}
html.error-page .page404 .sub-footer a {
  color: #fff;
}
html.error-page .page404 .site-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
html.error-page .logo--center {
  text-align: center;
  color: #fff;
}
html.error-page .logo--center img {
  float: none;
  margin-right: 0;
}
html.error-page .logo--center .logo-title {
  color: inherit;
}
html.error-page .logo--center .logo-text {
  float: none;
}
html.error-page .page404-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  width: 95%;
}
html.error-page .page404-content > * {
  color: #fff;
  line-height: 1;
}
html.error-page .page404-content .title {
  font-size: 42px;
  margin-bottom: 20px;
}
html.error-page .page404-content .sub-title {
  font-size: 22px;
}
html.error-page .page404-content a {
  text-decoration: underline;
  color: #fff;
}
@media (max-width: 1024px) {
  html.error-page .page404 .number {
    font-size: 150px;
    margin-left: -20px;
  }
  html.error-page .page404 .error {
    font-size: 40px;
  }
  html.error-page .page404-content .title {
    display: none;
  }
  html.error-page .page404 .sub-footer {
    bottom: 10px;
  }
}
@media (max-width: 640px) {
  html.error-page .page404 .number {
    font-size: 100px;
    margin-left: -10px;
  }
  html.error-page .page404 .error {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  html.error-page .page404 .number {
    font-size: 80px;
  }
}
html.error-page .bg-blue {
  background-color: #0082d7;
}
html.error-page .bg-rose {
  background-color: #e81d51;
}
html.error-page .bg-violet {
  background-color: #bb26f0;
}
html.error-page .bg-black {
  background-color: #121921;
}
html.error-page .bg-yellow {
  background-color: #fecf39;
}
html.error-page .bg-blue-light {
  background-color: #98d5ff;
}
html.error-page .bg-blue-lighteen {
  background-color: #ecf5fe;
}
html.error-page .bg-orange {
  background-color: #ef6517;
}
html.error-page .bg-orange-light {
  background-color: #f89101;
}
html.error-page .bg-red {
  background-color: #ff3133;
}
html.error-page .bg-green {
  background-color: #01a23c;
}
html.error-page .bg-pamaranch {
  background-color: #f18d01;
}
html.error-page .bg-secondary-color {
  background-color: #273f5b;
}
html.error-page .bg-primary-color {
  background-color: #4fc9c4;
}
.sp-social-share ul {
  display: block;
  padding: 0;
  margin: 20px -5px 0;
}
.sp-social-share ul li {
  display: inline-block;
  font-size: 24px;
  margin: 0 5px;
}
.profile > div:not(:last-child) {
  margin-bottom: 30px;
}
.dl-horizontal dt {
  margin: 8px 0;
  text-align: left;
}
.page-header {
  padding-bottom: 15px;
}
table.category {
  width: 100%;
}
table.category thead > tr, table.category tbody > tr {
  border: 1px solid #f2f2f2;
}
table.category thead > tr th, table.category tbody > tr th, table.category thead > tr td, table.category tbody > tr td {
  padding: 10px;
}
.contact-form .form-actions {
  background: none;
  border: none;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.sp-preloader {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.sp-preloader > div {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  position: absolute;
  animation: spSpin 0.75s linear infinite;
}
.sp-preloader > div:after {
  content: '';
  position: absolute;
  width: 49px;
  height: 49px;
  top: 1px;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.sp-scroll-up {
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 22px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  top: -1.2rem;
  left: calc(50% - 1.5rem);
}
.sp-scroll-up:hover span, .sp-scroll-up:active span, .sp-scroll-up:focus span {
  color: #4fc9c4;
}
.control-group {
  margin-bottom: 1rem;
}
select.form-control:not([multiple]), select.inputbox:not([multiple]), select:not([multiple]) {
  height: calc(2.25rem + 2px);
}
input[type="text"]:not(.form-control), input[type="email"]:not(.form-control), input[type="url"]:not(.form-control), input[type="date"]:not(.form-control), input[type="password"]:not(.form-control), input[type="search"]:not(.form-control), input[type="tel"]:not(.form-control), input[type="number"]:not(.form-control), select:not(.form-control) {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
input[type="text"]:not(.form-control):focus, input[type="email"]:not(.form-control):focus, input[type="url"]:not(.form-control):focus, input[type="date"]:not(.form-control):focus, input[type="password"]:not(.form-control):focus, input[type="search"]:not(.form-control):focus, input[type="tel"]:not(.form-control):focus, input[type="number"]:not(.form-control):focus, select:not(.form-control):focus {
  color: #495057;
  background-color: #fff;
  outline: 0;
}
.chzn-select, .chzn-select-deselect {
  width: 100%;
}
.chzn-container.chzn-container-single .chzn-single {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  height: calc(2.25rem + 2px);
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-single div {
  width: 30px;
  background: none;
}
.chzn-container.chzn-container-single .chzn-single div > b {
  background: none;
  position: relative;
}
.chzn-container.chzn-container-single .chzn-single div > b:after {
  content: "\f0dc";
  font-family: FontAwesome;
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.chzn-container.chzn-container-single.chzn-container-active.chzn-with-drop .chzn-single {
  border-radius: 0.25rem 0.25rem 0 0;
}
.chzn-container.chzn-container-single .chzn-search {
  padding: 0.625rem;
}
.chzn-container.chzn-container-single .chzn-search input[type="text"] {
  display: block;
  width: 100%;
  padding: 0.5rem 1.429rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
  height: calc(2rem + 2px);
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-search input[type="text"]:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.chzn-container.chzn-container-single .chzn-search:after {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, .2);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.chzn-container.chzn-container-single .chzn-drop {
  border-color: rgba(0, 0, 0, .15);
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-results li.highlighted {
  background-image: none !important;
}
.chzn-container.chzn-container-multi .chzn-choices {
  display: block;
  width: 100%;
  padding: 0 0.75rem;
  min-height: calc(2.25rem + 2px);
  line-height: 1.25;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-field input[type="text"] {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.25;
  height: calc(2rem + 2px);
  background-color: #fff;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice {
  margin: 5.5px 5px 0 0;
  padding: 5px 20px 5px 5px;
  background-image: none;
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, .1);
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
  background: none;
  top: 5px;
  color: rgba(0, 0, 0, .2);
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:hover {
  color: rgba(0, 0, 0, .5);
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:after {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  right: 0;
}
.chzn-container.chzn-container-multi.chzn-with-drop.chzn-container-active .chzn-choices {
  border-radius: 0.25rem;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop {
  margin-top: -4px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop .chzn-results:not(:empty) {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop .chzn-results li.no-results {
  background: none;
}
.form-horizontal .control-label {
  float: left;
  width: auto;
  padding-top: 5px;
  padding-right: 5px;
  text-align: left;
}
.form-horizontal .controls {
  margin-left: 220px;
}
.card-block {
  padding: 20px;
}
.card-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.card-block ul li {
  display: block;
}
.alert.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
#sp-cookie-consent {
  position: fixed;
  font-size: 16px;
  font-weight: 500;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
}
#sp-cookie-consent > div {
  padding: 20px;
  position: relative;
}
.post-thumb {
  box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.post-thumb .overlay-standard {
  opacity: 0;
}
.post-thumb .link-post {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(0, -50%) scale(0);
  opacity: 0;
  z-index: 50;
  transition: all 0.6s ease;
}
.post-thumb .link-post .fa {
  color: #fff;
  font-size: 40px;
}
.post-thumb:hover {
  box-shadow: 10px 0 50px rgba(0, 131, 255, 0.2);
}
.post-thumb:hover .overlay-standard {
  opacity: 1;
}
.post-thumb:hover .link-post {
  opacity: 1;
  transform: translate(0, -50%) scale(0.9);
}
.post-thumb:hover .link-post:hover {
  transform: translate(0, -50%) scale(1);
}
.overlay-standard {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 25, 33, 0.4);
  transition: all 0.4s ease;
}
.overlay--blue-dark {
  background: rgba(79, 201, 196, 0.8);
}
.section-intro {
  position: relative;
  z-index: 999;
}
.custom-services .qx-element-blurb:before {
  position: absolute;
  content: "";
  z-index: 1;
  left: -1.6666666667rem;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.1s ease-out;
}
.custom-services .qx-element-blurb:focus:before, .custom-services .qx-element-blurb:hover:before {
  background-color: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .2);
  border-radius: 0.2222222222rem;
}
.custom-services .qx-element-blurb {
  position: relative;
  display: block;
  padding: 10px;
}
.custom-services h3.qx-blurb-title, .custom-services img.qx-image, .custom-services .qx-blurb-content {
  position: relative;
  z-index: 5;
}
.custom-services img.qx-image {
  max-width: 40px;
  margin-bottom: 10px;
}
span.percent {
  float: right;
}
.acymailing_module_form .acymailing_form {
  display: flex;
}
.acymailing_module_form .acymailing_form .fieldacyemail {
  flex: 1;
}
.acymailing_form input[type="text"]:not(.form-control), .acymailing_form input[type="email"]:not(.form-control), .acymailing_form input[type="url"]:not(.form-control), .acymailing_form input[type="date"]:not(.form-control), .acymailing_form input[type="password"]:not(.form-control), .acymailing_form input[type="search"]:not(.form-control), .acymailing_form input[type="tel"]:not(.form-control), .acymailing_form input[type="number"]:not(.form-control), .acymailing_form select:not(.form-control) {
  display: block;
  width: 100%;
  padding: 17px 30px;
  font-size: 16px;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.acymailing_form .acysubbuttons {
  background: #4fc9c4;
}
.acymailing_form .acysubbuttons:hover, .acymailing_form .acysubbuttons:focus {
  background: #36afaa;
}
.acymailing_form .fieldacyemail input {
  color: #b4b4b4;
  letter-spacing: 1.75px;
  font-weight: 500;
  font-size: 14px;
  padding: 20px 30px;
}
.acymailing_form .fieldacyemail input:focus, .acymailing_form .fieldacyemail input:active {
  color: #000;
  text-transform: lowercase;
}
.acymailing_form .acysubbuttons {
  position: relative;
  width: 58px;
  z-index: 10;
  transition: 0.4s;
}
.acymailing_form .acysubbuttons:after {
  content: "\f178";
  position: absolute;
  font-family: fontawesome;
  font-size: 18px;
  z-index: 10;
  color: #fff;
  top: 0;
  pointer-events: none;
  width: 58px;
  right: 0;
  line-height: 54px;
}
.acymailing_form .acysubbuttons .subbutton {
  text-indent: -999px;
  width: 68px;
  height: 54px;
  border: none;
  opacity: 0;
}
.acymailing_module_form td {
  padding-bottom: 0 !important;
}
table.acymailing_form {
  width: 100%;
}
.team-item {
  background: #f5f5f5;
  border-radius: 0 0 5px 5px;
  text-align: center;
  padding-bottom: 25px;
  margin: 0 auto 30px;
  max-width: 370px;
}
.team-item .image img {
  vertical-align: bottom;
  max-width: 100%;
  display: block;
}
.team-item .name {
  background: #4fc9c4;
  height: 75px;
  width: 680px;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.team-item .name h4 {
  margin: 0 0 5px;
}
.team-item .timetable {
  color: #302d2a;
  font-weight: 500;
  padding: 0 12.2%;
  text-align: left;
  margin: 15px 0;
}
.team-item .timetable .item {
  overflow: hidden;
  padding: 9px 0;
}
.team-item .timetable .item:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.team-item .timetable .item .label {
  float: left;
  width: 50%;
}
.team-item .timetable .item .value {
  float: right;
}
.qx-element-person .qx-person-img {
  margin: 0;
}
.icon-box-item .icon + .text {
  margin-left: 100px;
}
.icon-box-item .h4 {
  margin-bottom: 6px;
}
.icon-box-item p {
  margin: 0;
  font-size: 1.286em;
  font-weight: 300;
  line-height: 1.667em;
}
.button-style2 {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 20px;
  border: 1px solid #4fc9c4;
  color: #302d2a;
  text-align: center;
  text-transform: uppercase;
  margin: 5px 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
}
.button-style2:hover {
  background: #4fc9c4;
  color: #fff;
}
.book-appointment {
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(8, 8, 8, .12);
}
.book-appointment .ui.form .field {
  clear: both;
  margin: 0;
}
.book-appointment h3 {
  display: block;
  padding: 1.5rem;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background: #f2f5f7;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  color: #313131;
}
.book-appointment .appointment-content {
  padding: 0 3rem 0 3rem;
  color: #6d7a8c;
}
.book-appointment .ui.form input:not([type]), .book-appointment .ui.form input[type=date], .book-appointment .ui.form input[type=datetime-local], .book-appointment .ui.form input[type=email], .book-appointment .ui.form input[type=file], .book-appointment .ui.form input[type=number], .book-appointment .ui.form input[type=password], .book-appointment .ui.form input[type=search], .book-appointment .ui.form input[type=tel], .book-appointment .ui.form input[type=text], .book-appointment .ui.form input[type=time], .book-appointment .ui.form input[type=url], .book-appointment .ui.selection.dropdown, .book-appointment .ui.form textarea {
  background: #fff;
  border-radius: 0;
  padding: 1.2rem 3rem;
  border: 0;
  border-bottom: 1px solid #e9ecf1;
  margin-bottom: 0;
  transition: all 0.2s ease;
  font-size: 16px;
  display: block;
  max-width: 100%;
  width: 100%;
}
.book-appointment .ui.form input:not([type]):hover, .book-appointment .ui.form input[type=date]:hover, .book-appointment .ui.form input[type=datetime-local]:hover, .book-appointment .ui.form input[type=email]:hover, .book-appointment .ui.form input[type=file]:hover, .book-appointment .ui.form input[type=number]:hover, .book-appointment .ui.form input[type=password]:hover, .book-appointment .ui.form input[type=search]:hover, .book-appointment .ui.form input[type=tel]:hover, .book-appointment .ui.form input[type=text]:hover, .book-appointment .ui.form input[type=time]:hover, .book-appointment .ui.form input[type=url]:hover, .book-appointment .ui.selection.dropdown:hover, .book-appointment .ui.form textarea:hover, .book-appointment .ui.form input:not([type]):focus, .book-appointment .ui.form input[type=date]:focus, .book-appointment .ui.form input[type=datetime-local]:focus, .book-appointment .ui.form input[type=email]:focus, .book-appointment .ui.form input[type=file]:focus, .book-appointment .ui.form input[type=number]:focus, .book-appointment .ui.form input[type=password]:focus, .book-appointment .ui.form input[type=search]:focus, .book-appointment .ui.form input[type=tel]:focus, .book-appointment .ui.form input[type=text]:focus, .book-appointment .ui.form input[type=time]:focus, .book-appointment .ui.form input[type=url]:focus, .book-appointment .ui.selection.dropdown:focus, .book-appointment .ui.form textarea:focus {
  background: #f2f5f7;
  border-radius: 0;
}
.book-appointment .ui.green.button, .book-appointment .ui.green.buttons .button {
  padding: 1.5rem;
  color: #fff;
  background: #4fc9c4;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  width: 100%;
  max-width: none;
  transition: all 0.2s ease;
  border-radius: 0 0 4px 4px;
}
.book-appointment .chronoforms6_credits {
  display: none;
}
.book-appointment .ui.form input:not([type]):focus, .book-appointment .ui.form input[type=date]:focus, .book-appointment .ui.form input[type=datetime-local]:focus, .book-appointment .ui.form input[type=email]:focus, .book-appointment .ui.form input[type=file]:focus, .book-appointment .ui.form input[type=number]:focus, .book-appointment .ui.form input[type=password]:focus, .book-appointment .ui.form input[type=search]:focus, .book-appointment .ui.form input[type=tel]:focus, .book-appointment .ui.form input[type=text]:focus, .book-appointment .ui.form input[type=time]:focus, .book-appointment .ui.form input[type=url]:focus, .book-appointment .ui.form .field > .selection.dropdown:hover {
  box-shadow: none;
  border-color: transparent;
}
.book-appointment .ui.selection.active.dropdown:hover .menu, .book-appointment .ui.selection.active.dropdown .menu {
  border-color: transparent;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .15);
}
.book-appointment .ui.success.message {
  background-color: #ecf1f8;
  border-radius: 0;
  padding-left: 0;
  color: #152139;
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.08) !important;
}
.qx-progress-bar {
  background: #4fc9c4;
}
.qx-element.qx-element-call-to-action {
  position: relative;
}
.qx-element.qx-element-call-to-action:after {
  z-index: 1;
  content: "";
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.02);
  position: absolute;
  right: 14%;
  top: -20px;
}
.qx-element.qx-element-call-to-action:before {
  z-index: 1;
  content: "";
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  right: 0%;
  top: 15%;
}
.qx-element-call-to-action h3.qx-title {
  margin-bottom: 50px;
  position: relative;
}
.qx-element-call-to-action h3.qx-title:before {
  content: "";
  background-color: #4fc9c4;
  height: 2px;
  width: 40px;
  position: absolute;
  bottom: -28px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.qx-element-call-to-action h3.qx-title:after {
  content: "";
  background-color: #ff3133;
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.qx-element-call-to-action .qx-ctab {
  position: relative;
  z-index: 99;
}
.qx-element-accordion .collapsible li + li {
  margin-top: 0;
}
.qx-element-accordion .collapsible > li {
  border: 1px solid #e9ebef;
}
.qx-element-accordion .collapsible-body {
  display: none;
  padding: 1rem;
  background: #ecf1f8;
  border-top: 0;
}
.active .collapsible-header {
  background-color: #ecf1f8;
}
.collapsible-header {
  transition: all 0.2s ease;
}
.collapsible-header:hover {
  background: #ecf1f8;
  border-bottom: 0;
}
ul.collapsible li .collapsible-header.active {
  color: #4fc9c4;
}
ul.collapsible li:hover .collapsible-header {
  color: #4fc9c4;
}
.lines-heading .qx-title {
  margin-bottom: 50px;
  position: relative;
}
.lines-heading .qx-title:before {
  content: "";
  background-color: #4fc9c4;
  height: 2px;
  width: 40px;
  position: absolute;
  bottom: -28px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.lines-heading .qx-title:after {
  content: "";
  background-color: #ff3133;
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.lines-heading.center .qx-title:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.lines-heading.center .qx-title:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.custom-contact-info {
  border: 1px solid #ececec;
  padding: 20px;
  box-shadow: 0px 0px 90px 0px rgba(225, 225, 225, 0.67);
  background-color: #fff;
}
.custom-contact-info i.qx-icon {
  background: #4fc9c4;
  width: 60px;
  border-radius: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  transition: all 0.2s ease;
}
.custom-contact-info i.qx-icon:hover, .custom-contact-info i.qx-icon:focus {
  background-color: #36afaa;
}
.custom-contact-form {
  background: #ecf1f8;
  padding: 30px;
}
.custom-contact-form label {
  display: none;
}
.custom-contact-form .form-horizontal .controls {
  margin-left: 0;
}
.custom-contact-form textarea#jform_body {
  min-height: 120px;
}
.cta-box {
  background-color: #d3f7f3;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding: 50px 40px 30px;
}
.cta-box h4 {
  position: relative;
  z-index: 2;
  color: #193333;
  margin-bottom: 60px;
  margin-top: 0px;
}
.cta-box h4:before {
  content: "";
  background-color: #4fc9c4;
  height: 2px;
  width: 40px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.cta-box h4:after {
  content: "";
  background-color: #ff3133;
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.cta-box:before {
  content: "";
  background-color: #c4f4f0;
  width: 50%;
  height: 240px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.cta-box:after {
  content: "";
  background-color: #aff0eb;
  width: 30%;
  height: 140px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.cta-box-content {
  position: relative;
  z-index: 2;
}
/* ========================================================================
 WarpTheme.com - Use this file to add custom CSS easily
 ========================================================================== */
.os-text-and-quote-i {
  display: flex;
  align-items: center;
}
.os-tq-quote-w {
  padding-right: 50px;
}
.os-tq-quote-i {
  background-color: #fff;
  color: #152139;
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.08);
  position: relative;
}
.os-tq-quote-i:before {
  content: "\f10d";
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 120px;
  color: #fff0fb;
  position: absolute;
  top: 2%;
  left: 5%;
}
.os-tq-quote {
  font-size: 24px;
  line-height: 1.15;
  position: relative;
  /* font-family: 'baskerville', 'Playfair Display', serif; */
  /* font-weight: 400; */
  /* font-style: normal; */
  padding: 11% 18% 10% 18%;
}
.os-tq-author {
  padding: 15px 40px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}
.os-tq-author-avatar {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  margin-right: 20px;
  border-radius: 50%;
}
.os-tq-author-avatar-name {
  font-weight: 700;
}
.os-tq-author-avatar-extra {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 10px;
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.os-tq-content-left {
  padding: 100px;
  vertical-align: middle;
  font-size: 1.2rem;
  flex: 0 0 50%;
}
.os-tq-content-left h1, .os-tq-content-left h2, .os-tq-content-left h3 {
  margin-bottom: 60px;
  position: relative;
}
.os-tq-content-left h1:after, .os-tq-content-left h2:after, .os-tq-content-left h3:after {
  content: "";
  background-color: #ff3133;
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.os-tq-content-left h1:before, .os-tq-content-left h2:before, .os-tq-content-left h3:before {
  content: "";
  background-color: #4fc9c4;
  height: 2px;
  width: 40px;
  position: absolute;
  bottom: -28px;
  left: 0px;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.sub-title {
  color: #613c6d;
  margin-bottom: 5px;
  font-weight: 400;
}
.sub-title + h3, .sub-title + h2, .sub-title + h1 {
  margin-top: 0px;
}
.color-scheme-dark {
  background-color: #0e121d;
  color: rgba(255, 255, 255, 0.55);
}
.sub-title {
  color: #d2b859;
}
#sp-footer {
  position: relative;
}
#sp-footer ul.social-icons li {
  width: 40px;
  height: 40px;
  border-radius: 0.3rem;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  transition: all 0.2s ease;
}
#sp-footer ul.social-icons li.social-icon-facebook {
  background: #ecf0f8;
}
#sp-footer ul.social-icons li.social-icon-facebook a {
  color: #3b5998;
}
#sp-footer ul.social-icons li.social-icon-google-plus {
  background: #f8ecf4;
}
#sp-footer ul.social-icons li.social-icon-google-plus a {
  color: #bc2a8d;
}
#sp-footer ul.social-icons li.social-icon-twitter {
  background: #ecf5f8;
}
#sp-footer ul.social-icons li.social-icon-twitter a {
  color: #1eb0dd;
}
@media only screen and (max-width: 768px) {
  #sp-footer1, #sp-footer2 {
    text-align: center !important;
    padding: 10px 0;
  }
  .qx-element-joomla-articles .qx-media-grid {
    margin-bottom: 20px;
  }
}
.os-btn.cyan {
  background-color: #c6f5e7;
  border-color: #c6f5e7;
  color: #252a2b;
}
.os-btn.cyan:hover {
  color: #313739;
  background-color: #dcf9f0;
}
.os-btn:hover {
  text-decoration: none;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}
.os-btn, .qx-btn {
  padding: 7px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 0px;
  border: 2px solid #ff3133;
  color: #ff3133;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.tms-social-w {
  background-color: #e9f8ff;
  padding: 20px 40px;
  text-align: center;
  position: relative;
}
.tms-social-w:before {
  content: "";
  background-color: #e0f6ff;
  width: 50%;
  height: 60%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.tms-social-w:after {
  content: "";
  background-color: #d1f2ff;
  width: 30%;
  height: 30%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.tms-social-w h3, .tms-social-w h4 {
  color: #2b87b9;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.tms-social-w h3:after, .tms-social-w h4:after {
  content: "";
  background-color: #ff3133;
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.tms-social-w h3:before, .tms-social-w h4:before {
  content: "";
  background-color: #4fc9c4;
  height: 2px;
  width: 40px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.tms-social-w .social-icons {
  list-style: none;
  padding: 0px;
  margin: 20px 0px;
  position: relative;
  z-index: 2;
}
.tms-social-w .social-icons li {
  display: inline-block;
  margin: 0px 5px;
  width: 40px;
  height: 40px;
  border-radius: 0.3rem;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  transition: all 0.2s ease;
}
.tms-social-w .social-icons li a {
  text-decoration: none;
}
li.facebook-icon {
  background: #3b579d;
}
li.facebook-icon a {
  color: #fff;
}
li.twitter-icon {
  background: #5ea9dd;
}
li.twitter-icon a {
  color: #fff;
}
li.instagram-icon {
  background: #a4775c;
}
li.instagram-icon a {
  color: #fff;
}
.postion-relative {
  position: relative;
  z-index: 2;
}
#sp-logo {
  border-right: 1px solid #ddd;
}
.com-media.contentpane {
  padding: 10px !important;
}
.com-media .well {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.com-media .well .row {
  margin: 0;
  padding: 0;
}
.com-media .well .row > div:first-child {
  width: calc(100% - 200px);
}
.com-media .well .row > div:last-child {
  width: 200px;
  float: right;
  text-align: right;
  padding-top: 30px;
}
.com-media .well .row #folderlist {
  display: inline-block;
}
.com-media .well .row #upbutton {
  display: none;
}
.com-media.view-imagesList {
  padding: 0px 0px 10px 0 !important;
}
.com-media.view-imagesList:before {
  content: " ";
  display: table;
}
.com-media.view-imagesList:after {
  display: block;
  clear: both;
  content: "";
}
.com-media.view-imagesList ul.manager {
  list-style: none;
  padding: 0;
  margin: 0;
}
.com-media.view-imagesList ul.manager > li.thumbnail {
  width: 110px;
  float: left;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child {
  height: 60px;
  margin-bottom: 10px;
  text-align: center;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child > span {
  display: inline-block;
  width: 60px;
  height: 40px;
  margin: 0 auto;
  margin-top: 25px;
  position: relative;
  background-color: #92ceff;
  border-radius: 0 5px 5px 5px;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child > span:before {
  content: '';
  width: 50%;
  height: 12px;
  border-radius: 0 20px 0 0;
  background-color: #92ceff;
  position: absolute;
  top: -12px;
  left: 0px;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child img {
  display: inline-block;
}
.sp-megamenu-parent {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  z-index: 99;
  display: block;
  float: left;
  position: relative;
}
.sp-megamenu-parent > li {
  display: inline-block;
  position: relative;
  padding: 0;
}
.sp-megamenu-parent > li.menu-justify {
  position: static;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
  display: inline-block;
  padding: 0 15px;
  line-height: 80px;
  font-size: 14px;
  margin: 0;
}
.sp-megamenu-parent > li.active > a {
  font-weight: 500;
}
.sp-megamenu-parent > li .sp-menu-badge {
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  background: #d60000;
  color: #fff;
  border-radius: 3px;
}
.sp-megamenu-parent .sp-module {
  padding: 10px;
}
.sp-megamenu-parent .sp-mega-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-mega-group > li > a {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sp-megamenu-parent .sp-mega-group .sp-mega-group-child {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown {
  margin: 0;
  position: absolute;
  z-index: 10;
  display: none;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  border-top: 1px solid #ececec;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, .1);
  padding: 20px;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner > .row:not(:first-child) {
  margin-top: 20px;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main {
  top: 100%;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  top: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub .sp-dropdown-inner {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
  display: block;
  padding: 0;
  position: relative;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  padding: 8px 0;
  cursor: pointer;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a.sp-group-title, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge).sp-group-title {
  text-transform: uppercase;
  font-weight: bold;
}
.sp-megamenu-parent .sp-dropdown .sp-module {
  padding: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-module .sp-module-title {
  font-size: 14px;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews {
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li:not(:last-child) {
  margin: 0 0 15px;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li a {
  font-size: 14px;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li a span {
  opacity: 0.8;
}
.sp-megamenu-parent .sp-dropdown-mega > .row {
  margin-top: 30px;
}
.sp-megamenu-parent .sp-dropdown-mega > .row:first-child {
  margin-top: 0;
}
.sp-megamenu-parent .sp-has-child:hover > .sp-dropdown {
  display: block;
}
.sp-megamenu-parent.menu-animation-fade .sp-has-child:hover > .sp-dropdown {
  animation: spFadeIn 600ms;
}
.sp-megamenu-parent.menu-animation-fade-up .sp-has-child:hover > .sp-dropdown {
  animation: spFadeInUp 400ms ease-in;
}
.sp-megamenu-parent.menu-animation-fade-down .sp-has-child:hover > .sp-dropdown {
  animation: spFadeInDown 400ms ease-in;
}
.sp-megamenu-parent.menu-animation-zoom .sp-has-child:hover > .sp-dropdown {
  animation: spZoomIn 300ms;
}
.sp-megamenu-parent.menu-animation-rotate .sp-has-child:hover > .sp-dropdown {
  animation: spRotateIn 300ms;
}
.sp-megamenu-parent.menu-animation-pulse .sp-has-child:hover > .sp-dropdown {
  animation: spPulse 300ms;
}
body.ltr .sp-megamenu-parent > li.sp-has-child > a:after, body.ltr .sp-megamenu-parent > li.sp-has-child > span:after {
  font-family: "FontAwesome";
  content: "\f107";
  float: right;
  margin-left: 7px;
}
body.ltr .sp-megamenu-parent > li .sp-menu-badge.sp-menu-badge-right {
  margin-left: 5px;
}
body.ltr .sp-megamenu-parent > li .sp-menu-badge.sp-menu-badge-left {
  margin-right: 5px;
}
body.ltr .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a:after {
  font-family: "FontAwesome";
  content: "\f105";
  float: right;
  margin-left: 7px;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-menu-center {
  margin-left: 45px;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-right {
  left: 0;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
  left: auto;
  right: 0;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-left {
  right: 0;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  left: 100%;
}
@media (min-width: 576px) {
  .sp-menu-full.container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .sp-menu-full.container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .sp-menu-full.container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .sp-menu-full.container {
    width: 1140px;
  }
}
#offcanvas-toggler {
  display: block;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
}
#offcanvas-toggler > span:hover {
  color: #fff;
}
.offcanvas-init {
  overflow-x: hidden;
  position: relative;
}
.offcanvas-active .offcanvas-overlay {
  visibility: visible;
  opacity: 1;
}
.offcanvas-overlay {
  background: rgba(0, 0, 0, .5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.body-wrapper {
  position: relative;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  backface-visibility: hidden;
}
.close-offcanvas {
  position: absolute;
  top: 15px;
  z-index: 1;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 14px;
  background: #333;
  color: #fff;
}
.close-offcanvas:hover {
  background: #666;
  color: #fff;
}
.offcanvas-menu {
  width: 300px;
  height: 100%;
  color: #fff;
  position: fixed;
  top: 0;
  overflow: inherit;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10000;
}
.offcanvas-menu .offcanvas-inner {
  padding: 50px 0 30px 0;
}
.offcanvas-menu .offcanvas-inner .sp-module {
  padding: 0;
  margin: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module .sp-module-title {
  font-size: 1rem;
  font-weight: bold;
}
.offcanvas-menu .offcanvas-inner .sp-module:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: block;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li span {
  display: block;
  font-size: 14px;
  padding: 10px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  position: relative;
  color: #fff;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler {
  display: block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-family: FontAwesome;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler:after, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler:after {
  content: "\f055";
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent.menu-parent-open > a > .menu-toggler:after, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent.menu-parent-open > .menu-separator > .menu-toggler:after {
  content: "\f056";
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul {
  display: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul li a {
  font-size: 0.875rem;
}
body.ltr #offcanvas-toggler.offcanvas-toggler-right {
  float: right;
  margin-left: 20px;
}
body.ltr #offcanvas-toggler.offcanvas-toggler-left {
  float: left;
  margin-right: 20px;
}
body.ltr.offcanvs-position-left .body-wrapper {
  left: 0;
}
body.ltr.offcanvs-position-left .offcanvas-menu {
  left: -300px;
}
body.ltr.offcanvs-position-left.offcanvas-active .offcanvas-menu {
  left: 0;
}
body.ltr.offcanvs-position-left.offcanvas-active .body-wrapper {
  left: 300px;
}
body.ltr.offcanvs-position-right .body-wrapper {
  right: 0;
}
body.ltr.offcanvs-position-right .offcanvas-menu {
  right: -300px;
}
body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
  right: 0;
}
body.ltr.offcanvs-position-right.offcanvas-active .body-wrapper {
  right: 300px;
}
body.ltr .close-offcanvas {
  right: 15px;
}
body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler, body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler {
  right: 0;
}
body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li ul {
  margin-left: 10px;
}
@keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spZoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes spRotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes spPulse {
  from {
    opacity: 0;
    transform: scale3d(1, 1, 1);
  }
  50% {
    opacity: 0.5;
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes spSpin {
  to {
    transform: rotate(360deg);
  }
}
