*,
html,
body {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    position: relative;
}

html,
body {
    font-family: var(--family-t), Versalles, sans-serif;
    font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-title {
    font-family: var(--family-h), Arial, sans-serif;
}

.wrapper {
    padding: 1em;
    display: block;
}

p,
li {
    line-height: 1.55em;
    color: #333;
    font-weight: 400;
}

h1 {
    font-size: 62px;
    line-height: 62px;
}

h2 {
    font-size: 30px;
    margin-bottom: 65px;
    line-height: 30px;
}

h3,
h4 {
    font-size: 24px;
    line-height: 34px;
}


/* ==================================================
  General
  ================================================== */

a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}


/* ==================================================
  Elements
  ================================================== */

.btn {
    display: inline-block;
    background-color: var(--color-1);
    font-weight: 800;
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
    background: linear-gradient(var(--color-2), var(--color-1));
    border: var(--color-2) 2px solid;
}

.btn:hover {
    color: #fff;
    background-color: var(--color-2);
    background: linear-gradient(var(--color-1), var(--color-2));
    color: #fff;
    border: var(--color-2) 2px solid;
}

.btn:active {
    transition: 0s;
    background-color: var(--color-1);
    background: var(--color-1);
}

.btn:focus {
    color: #fff;
}

.btn-ghost {
    border: 3px solid #fff;
    background-color: transparent;
    background: transparent;
}

.btn-ghost:hover {
    background: #fff;
    background-color: #fff;
    color: var(--color-1);
}

section {
    padding: 85px 0;
    background: #fff;
}

section.video {
    background: transparent;
}

.card {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    margin: 0;
    /*overflow: hidden;*/
}

a:hover {
    text-decoration: none !important;
}

a.iconic {
    padding-top: 8px;
    margin: 4px;
}

a.iconic:hover {
    transform: scale(1.2);
    transition: 0.4s;
}

a.iconic, .scrolltop {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: var(--color-1);
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.scrolltop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.scrolltop:hover,
.scrolltop:active,
.scrolltop:focus {
    color: #fff !important;
    opacity: .75;
}


/* ==================================================
  Hero Styling
================================================== */

.hero {
    display: table;
    position: relative;
    background-image: var(--parallax);
    background-size: cover;
    padding: 150px 0;
    color: #fff;
    width: 100%;
    height: 100vh;
}

.hero:after {
    content: '';
    z-index: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.hero-brand {
    margin-bottom: 75px;
    display: inline-block;
}

.hero-brand:hover {
    opacity: .75;
}

.tagline {
    font-size: 26px;
    margin: 45px 0 75px 0;
    color: #fff;
}


/* ==================================================
  Header Styling
================================================== */

#header {
    position: relative;
    background: var(--bg-head);
    height: 70px;
    z-index: 99;
    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
}

#header #logo {
    margin: 14px 25px 0 0;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 768px) {
    #header {
        height: 50px;
    }
    #header #logo {
        margin: 10px 0 0 0;
    }
    #header #logo h1 {
        padding: 2px 0;
        font-size: 26px;
    }
    #header #logo img {
        max-height: 30px;
    }
}

#header .social-nav {
    margin-top: 15px;
}

#header .social-nav a {
    font-size: 24px;
    margin-left: 15px;
    color: var(--color-1);
}

#header .social-nav a:hover {
    color: var(--color-a-hover);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 99;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}


/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}


/* Nav Meu Container */

#nav-menu-container {
    margin: 0;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}


/* Clients Section
--------------------------------*/

.power {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

.power img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

.power img:hover {
    opacity: 1;
}


/* Nav Meu Styling */

.nav-menu a {
    padding: 22px 15px 18px 15px;
    text-decoration: none;
    display: inline-block;
    color: var(--color-1);
    font-weight: 300;
    font-size: 15px;
    outline: none;
}

.nav-menu li a {
    font-family: var(--family-t), Arial, sans-serif;
    font-weight: bold;
    font-variant: small-caps;
}

.nav-menu ul li a {
    font-family: var(--family-t), Versalles, sans-serif;
    font-weight: normal;
    font-variant: normal;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
    color: var(--color-a-hover);
}

.nav-menu .menu-active>a {
    color: var(--color-1);
}

.nav-menu ul {
    margin: 4px 0 0 15px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
    background: #fff;
    border-top: 1px solid #f4f4f4;
}

span.trans-main {
    background-color: rgba(255, 255, 255, 0.1);
    border: rgba(255, 255, 255, 0.2) 1px solid;
    border-radius: 25px;
    padding: .6em .8em;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li:hover {
    background: var(--bg-head);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.nav-menu ul li a {
    color: var(--color-a);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 15px;
}

.nav-menu ul li a:hover {
    color: var(--color-a-hover);
}

.nav-menu ul ul {
    margin: 0;
}


/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 8px 10px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}


/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: var(--color-1);
}

#mobile-nav ul .menu-item-active {
    color: var(--color-1);
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}


/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}


/* ==================================================
  Contact Styling
================================================== */

.gmap {
    min-height:460px;
    width: 100%;
    height: 99%;
}

.gmap iframe {
    width: 100%;
    height: 99%;
    overflow: hidden;
    border: #f1f1f1 1px solid;
}

.mapouter{
    text-align:right;
    height:100%;
    width:99%;
}

.gmap_canvas {
    overflow:hidden;
    background:none !important;
    height:100%;
    width:99%;
}


/* ==================================================
  Stats Styling
================================================== */

.stats-row {
    margin-top: 65px;
}

.stats-col .circle {
    display: inline-block;
    width: 160px;
    height: 160px;
    font-weight: 500;
    color: #666;
    border: 6px solid var(--color-1);
    border-radius: 50%;
    padding: 55px 25px 0 25px;
    position: relative;
}

.stats-col .circle .stats-no {
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    top: -25px;
    right: -15px;
    font-size: 18px;
    background-color: var(--color-3);
    position: absolute;
    border-radius: 50%;
    font-weight: 700;
}


/* ==================================================
  Store Styling
  ================================================== */

.products {
    display: inline-block;
    text-align: center;
    width: 100vw;
}

.products .tag {
    display: block;
    position: absolute;
    right: -34px;
    top: 12px;
    transform: rotate(45deg);
    background-color: #bada55;
    background: linear-gradient(to bottom right, #bada55, #00cc00);
    padding: 2px 40px;
    border: #00cc00 1px solid;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}

section.products {
    padding: 10px 0 !important;
}

.products i {
    float: left;
    margin-right: 8px;
    padding-top: 4px;
}

.plan {
    background-color: #fff;
    background: linear-gradient(to bottom right, #fff, #fbfbfb);
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto 4px auto;
    width: 21%;
    padding: 0;
    border-top: #666 1px outset;
    border-left: #666 1px solid;
    border-right: #333 1px solid;
    border-bottom: #333 1px solid;
    overflow: hidden;
}

.plan:hover {
    border-color: #999;
}

.plan-top,
.plan-bottom {
    width: auto;
    display: block;
    margin: 2%;
    text-align: center;
    overflow: hidden;
}

.plan-top {
    margin: 0;
    background-color: #333;
    color: #fff;
}

.plan-header {
    display: block;
    margin: 0;
}

.plan-body img {
    width: 100%;
    height: auto;
}

.plan li {
    background: transparent;
    background-color: transparent;
}

.plan-price span {
    display: inline-block;
}

.products .price-value {
    font-size: 200%;
    font-weight: bold;
}

.price-value,
.plan-title {
    color: #fff;
    text-shadow: 1px 1px 0px #999,
    2px 2px 0px #666,
    3px 3px 0px #000;
}

.price-value .promo {
    color: rgba(255, 255, 255, .4);
    text-shadow: none;
}

.plan-title {
    padding-top: 10px;
    margin-bottom: 0;
}

.price-value {
    padding-bottom: 10px;
    margin-top: -10px;
}


/* ==================================================
  Parallax Styling
  ================================================== */

.block {
    position: relative;
    clear: both;
    overflow: hidden;
    padding-top: 85px;
    background: #f7f7f7;
}

.parallax.block {
    position: relative;
    color: #fff;
    min-height: 220px;
    max-height: 610px;
    z-index: 0;
    font-size: 110%;
    margin-top: 0;
    background-position: center center !important;
    background-size: cover;
}

.block.notice {
    padding-top: 0;
}


.parallax div.text-left p,
.parallax div.text-left h2 {
    margin-left: 5vw;
}

.gadgets-img:after {
    position: absolute;
    margin-top: auto;
    margin-bottom: 0;
    bottom: 0;
}

.block h2 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.block p {
    color: #fff;
    margin-bottom: 45px;
}


/* ==================================================
  Features Styling
  ================================================== */

.features {
    padding-top: 45px;
    padding-bottom: 45px;
}

.features h2 {
    color: var(--color-1);
}

.feature-col {
    display: table;
    padding-bottom: 45px;
}

.feature-col>div>div {
    display: table-cell;
    vertical-align: middle;
}

.feature-col>div>div:last-child {
    padding-left: 20px;
}

.feature-col .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    background: var(--color-1);
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}

.feature-col h3 {
    color: #333;
}

.feature-col p {
    font-size: 14px;
    color: #999;
}

.feature-col .back p {
    font-size: 1.2em;
}

.features h2.text-center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 3em;
}


/* ==================================================
  Call-to-action Styling
  ================================================== */

.cta {
    background-color: var(--bg-footer);
    padding: 25px 0;
    min-height: 100px;
    text-align: center;
}

.cta h2 {
    margin-bottom: 5px;
}

.cta h2,
.cta p {
    color: #fff;
    text-align: left;
}

.cta p {
    margin-bottom: 0;
    opacity: .75;
}

.cta .btn-ghost {
    position: relative;
    top: 20px;
}


/* ==================================================
  Video Styling
  ================================================== */

.video {
    position: relative;
    margin: 0 0;
    vertical-align: middle;
}

.video video {
    margin: 0 0;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    z-index: -100;
    right: 0;
    bottom: 0;
    background-color: #333333 !important;
    box-shadow: inset 0 0 550px rgba(0, 0, 0, .7);
}

.video .caption {
    position: fixed;
    padding: 10px 10px;
    bottom: 10vh;
    margin-top: auto;
    margin-left: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: #000 1px outset;
}

.video .caption h2 {
    margin-bottom: 4px;
}


/* ==================================================
  Carousel Styling
  ================================================== */

.carousel,
.video {
    display: table;
    position: relative;
    padding: 0 0;
    color: #fff;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    min-height: 300px;
    object-fit: cover;
}


/*
.carousel, .loading {
  background-image: url('/img/loader.gif');
  background-position: center center;
  background-repeat: no-repeat;
}*/

.carousel .container,
.video .content {
    position: relative;
    z-index: 0;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: auto;
    height: 100vh;
    color: #fff;
}

.carousel-item {
    height: 100vh;
    min-height: 300px;
    z-index: 0;
    background: no-repeat center center scroll;
    background-size: cover;
    vertical-align: middle;
    object-fit: cover;
}

.carousel-item img {
    width: auto;
    height: 100vh;
    min-height: 300px;
    object-fit: cover;
}

.carousel-item h2 img {
    width: auto;
    height: 52px;
    min-height: 52px;
    object-fit: cover;
}

.carousel-indicators li {
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    display: inline-block;
}

.carousel .carousel-caption .hero-action {
    position: relative;
    z-index: 99;
}

a.carousel-control-prev,
a.carousel-control-next {
    position: absolute;
    z-index: 2;
    height: 2em;
    top: auto;
    bottom: .8em;
    padding: 1em;
}

.carousel .carousel-caption.top-left {
    top: 15vh;
    left: 10vw;
}

.carousel .carousel-caption.top-right {
    top: 15vh;
    right: 10vw;
}

.carousel .carousel-caption.bottom-left {
    bottom: 15vh;
    left: 10vw;
}

.carousel .carousel-caption.bottom-right {
    bottom: 15vh;
    right: 10vw;
}

.carousel .carousel-caption.top-left h2,
.carousel .carousel-caption.top-left p,
.carousel .carousel-caption.bottom-left h2,
.carousel .carousel-caption.bottom-left p {
    text-align: left;
}

.carousel .carousel-caption.top-left .hero-action,
.carousel .carousel-caption.bottom-left .hero-action {
    margin-top: .3em;
    float: left;
}

.carousel .carousel-caption.top-right .hero-action,
.carousel .carousel-caption.bottom-right .hero-action {
    margin-top: .3em;
    float: right;
}

.carousel .carousel-caption.top-right h2,
.carousel .carousel-caption.top-right p,
.carousel .carousel-caption.bottom-right h2,
.carousel .carousel-caption.bottom-right p {
    text-align: right;
}

.carousel .carousel-caption h2,
.carousel .carousel-caption p {
    clear: both;
    text-align: left;
    margin-bottom: 0;
    color: #fff;
}

.carousel .carousel-caption h2 {
    font-size: 80px;
    line-height: 70px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.carousel .carousel-caption p {
    font-size: 40px;
    line-height: 30px;
    margin-top: 4px;
    /*text-shadow: 0 0 1px rgba(0, 0, 0, .1);*/
}


/* ==================================================
  Portfolio Styling
  ================================================== */

.portfolio {
    background-color: #f1f1f1;
    padding-top: 0;
    padding-bottom: 0;
}

.portfolio h2 {
    color: var(--color-1);
    margin-bottom: 25px;
}

.portfolio-grid {
    margin-top: 0;
}

.portfolio-grid .row {
    margin: 0;
}

.portfolio-grid .row>div {
    padding: 0;
}

.portfolio-grid .row>div .card img {
    width: 100%;
}

.portfolio-grid .row>div .card .portfolio-over {
    position: absolute;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.portfolio-grid .row>div .card .portfolio-over>div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.portfolio-grid .row>div .card .portfolio-over .card-title {
    color: #fff;
    font-size: 30px;
}

.portfolio-grid .row>div .card .portfolio-over .card-text {
    color: #fff;
    opacity: .75;
    padding: 0 45px;
}

.portfolio-grid .row>div .card:hover .portfolio-over {
    opacity: 1;
    visibility: visible;
}


/* ==================================================
  Notice Styling
  ================================================== */

.notice {
    background-color: #333333;
    text-align: center;
    box-shadow: inset 0 0 550px rgba(0, 0, 0, .7);
}

.notice .info {
    border: #999 4px solid;
    margin: 1em 6em;
    padding: .4em .8em;
}

/* ==================================================
  Team Styling
  ================================================== */

.team h2 {
    color: var(--color-1);
}

.team .col-sm-3 {
    padding: 0;
}

.team .card>a {
    display: block;
}

.team .card img {
    width: 100%;
}

.team .card h4 {
    color: #fff;
    text-transform: uppercase;
}

.team .card p {
    font-size: 11px;
    color: #fff;
    opacity: .75;
    margin: 0;
    padding: 0 35px;
}

.team .card .social-nav {
    margin-bottom: 20px;
}

.team .card .social-nav a {
    color: #fff;
    font-size: 16px;
    margin: 0 4px;
}

.team .card .social-nav a:hover {
    opacity: .75;
}

.team .card:hover .team-over {
    opacity: 1;
    visibility: visible;
}

.team .card:hover .card-title-wrap {
    background-color: var(--color-1);
}

.team .card:hover .card-title-wrap .card-title,
.team .card:hover .card-title-wrap .card-text {
    color: #fff;
}

.team .team-over {
    padding-top: 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.team .card-title-wrap {
    padding: 15px 25px;
    position: relative;
    z-index: 9;
    background-color: #fff;
}

.team .card-title-wrap .card-title,
.team .card-title-wrap .card-text {
    display: block;
    margin: 0;
}

.team .card-title-wrap .card-title {
    font-family: var(--family-h), Arial, sans-serif;
}

.team .card-title-wrap .card-title {
    font-size: 24px;
    color: #333;
}

.team .card-title-wrap .card-text {
    font-size: 18px;
    color: #999;
}

.team .team-over p {
    text-align: center;
}


/* ==================================================
  Bottom Section
  ================================================== */

#bottom {
    /*background-position: center center;*/
    padding: 80px 0;
}

#bottom h2 {
    font-family: var(--family-t), Versalles, sans-serif;
    color: var(--color-1);
    margin-bottom: 1em;
}

#bottom .info {
    margin-left: auto;
    margin-right: auto;
    padding: 1.4em 2em 1em 2em;
    background-color: rgba(0, 0, 0, .4);
    border-top: 2px solid rgba(0, 0, 0, .1);
    border-left: 2px solid rgba(0, 0, 0, .1);
    border-radius: 25px;
    width: auto;
    transform: scale(0.8);
    transition: 0.6s;
}

#bottom .info:hover {
    transform: scale(1);
    z-index: 90;
}

#bottom .info a i {
    font-size: 32px;
    color: var(--color-1);
    float: left;
}

#bottom .info a {
    font-size: 24px;
    color: var(--color-1);
}

#bottom .info p {
    text-align: right;
}

#bottom .info a:hover,
#bottom .info a:active,
#bottom .info a:focus {
    color: var(--color-3);
}


/* ==================================================
  Footer Styling
  ================================================== */

.site-footer {
    background-color: var(--bg-footer);
    padding: 0;
}

.site-footer h2,
.site-footer p {
    color: #fff;
}

.site-footer p {
    opacity: .75;
    line-height: 2.0925;
}

.site-footer h2,
.site-footer .btn {
    margin-bottom: 25px;
}

.site-footer .social-nav a {
    color: #fff;
    opacity: .25;
}

.site-footer .social-nav a:hover {
    opacity: 1;
}

.site-footer .bottom {
    background-color: #000;
    padding: 20px 0;
}

.site-footer .bottom .list-inline,
.site-footer .bottom p {
    margin: 0;
}

.site-footer .bottom .list-inline {
    position: relative;
    top: 5px;
}

.site-footer .bottom .list-inline a {
    color: #fff;
    font-family: var(--family-h), Arial, sans-serif;
    margin-right: 15px;
}

.site-footer .bottom .list-inline a:hover {
    color: var(--color-a-hover);
}

.site-footer .credits {
    color: #ddd;
}

.site-footer .credits a {
    color: var(--color-a);
}


/* ==================================================
  Responsive Styling
  ================================================== */

@media (max-width: 61.9em) {
    section,
    .block,
    .cta {
        padding: 35px 0;
    }
    .features {
        padding-bottom: 5px;
    }
    p,
    .block p {
        margin: 0;
    }
    .hero-brand {
        margin-bottom: 35px;
    }
    .tagline {
        margin: 35px 0;
    }
    h1 {
        font-size: 32px;
        margin: 0;
    }
    h2,
    .tagline {
        font-size: 24px;
    }
    h2 {
        margin-bottom: 25px;
    }
    h3 {
        font-size: 14px;
    }
    .hero {
        padding: 75px 0;
    }
    .stats-col {
        margin-bottom: 25px;
    }
    .block {
        height: auto;
    }
    .feature-col {
        padding-bottom: 30px;
    }
    .portfolio-grid .card h3.card-title {
        font-size: 18px !important;
    }
    .portfolio-grid .card .card-text {
        font-size: 13px;
    }
    .team .team-over {
        padding-top: 20px;
    }
    .team .card .social-nav {
        margin-bottom: 15px;
        padding: 0;
    }
    .site-footer .social-nav {
        margin-bottom: 35px;
    }
    .site-footer .list-inline {
        text-align: center;
        padding-bottom: 15px;
    }
    .site-footer .list-inline li {
        display: inline-block;
    }
    .cta,
    .cta h2,
    .cta p {
        text-align: center;
    }
}

/* ==================================================
  Donations
  ================================================== */

.social-share {
    display: block;
    float: right;
}

.webshopicon-small {
    width: 2em !important;
    height: 2em !important;
    margin-right: 1em !important;
    margin-top: 2em !important;
}

.fngrpopup-inner,
.webshopicon-small,
.nodis {
    display: none;
    visibility: hidden;
}


/* ==================================================
  Flipping Cards
  ================================================== */


/* entire container, keeps perspective */

.flip-container {
    perspective: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 180px;
    width: 98%;
    padding-top: 15px;
    display: block;
    clear: both;
    background-color: transparent;
    transition: 0.8s;
}

.flip-container:hover,
#power a:hover img,
#team .card:hover {
    transition: 0.6s;
    transform: scale(1.1);
    z-index: 90;
}

#team .card:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
}


/* flip the pane when hovered */

.flip-container:hover .flipper,
.flip-container.hover .flipper {
    transform: rotateY(180deg);
    cursor: pointer;
}

.flip-back h3 {
    color: #000;
    margin-bottom: 20px;
}


/* flip speed goes here */

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}


/* hide back of pane during swap */

.flip-front,
.flip-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 180px;
    background-color: #fff;
    padding-top: 22px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .4);
}


/* front pane, placed above back */

.flip-front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
}


/* back, initially hidden pane */

.flip-back {
    transform: rotateY(180deg);
    padding: .8em 1em;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
}

.flip-front p,
.flip-front h2 {
    text-align: center;
}

.flip-back p,
.flip-back h2 {
    text-align: left;
    color: #333 !important;
}


/* CSS Flip Toggle JavaScript class */

.flip-container:hover .flipper,
.flip-container.hover .flipper,
.flip-container.flip .flipper {
    transform: rotateY(180deg);
}


/* ==================================================
  Extra
  ================================================== */

h2.rounded {
    background-color: var(--color-1);
    color: #fff;
    padding: .2em .6em;
    border-radius: 25px;
    border: var(--color-2) 4px solid;
    background: linear-gradient(to bottom right, var(--color-2), var(--color-1));
    margin: 2em auto 1em auto;
}

img.icon {
    margin-top: -4px;
}

#developers,
.site-footer {
    box-shadow: 0 0 4px rgba(0, 0, 0, .7);
}

.bottom,
.parallax,
.carousel,
.inset,
.products,
.loader {
    background-color: #fff;
    box-shadow: inset 0 0 550px rgba(0, 0, 0, .4);
}

h2.main-title {
    padding: .2em .4em;
    color: var(--bg-head);
    text-shadow: 1px 1px 0px #FFF,
    2px 2px 0px #999,
    3px 3px 0px #FFF;
    background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, .05) 100%);
    transition: 1s all;
    -webkit-transition: 1s all;
    background-image: -webkit-linear-gradient(left top,
    transparent 0%, transparent 25%,
    rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, .15) 50%,
    transparent 50%, transparent 75%,
    rgba(0, 0, 0, .15) 75%);
    background-size: 4px 4px;
    margin-top: 0;
    margin-bottom: 1.2em;
}

section h4 {
    color: var(--color-2);
    border-bottom: 2px dotted var(--bg-head);
    margin-top: 2em;
    margin-bottom: .8em;
}

.team h4 {
    border-bottom: none;
}

section .remark,
p.note,
.note p {
    border-left: 8px solid var(--color-1);
    margin-top: 12px;
    margin-left: 6px;
    padding-left: 12px;
    font-size: 110%;
}

section {
    list-style: none;
}

section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

h2.main-title i {
    float: right;
    color: #fff;
    text-shadow: none;
}

.neon {
    text-shadow: 0 0 5px #d0f8ff, 0 0 10px #d0f8ff,
    0 0 20px #fff, 0 0 30px #fff,
    0 0 40px #fff;
}

p,
li {
    text-align: justify;
}

.text-smaller {
    font-size: .8em;
}

.text-bigger {
    font-size: 1.5em;
}

em,
.script-line {
    color: #666666;
}

a:hover em {
    color: var(--color-1);
}

.script-line {
    cursor: pointer;
}

.text-lighter,
li .text-bigger {
    color: #cccccc;
}

.text-normal {
    font-weight: normal;
}

.clear {
    clear: both;
    line-height: 2px;
    height: 2px;
}

.business-info {
    padding-top: 2em;
}

body.text-left p,
body p.text-left,
body.text-left h1,
body.text-left h2 {
    text-align: left !important;
}

body.text-center p,
body p.text-center,
body.text-center h1,
body.text-center h2 {
    text-align: center !important;
}

.color-purple {
    color: #a991e5;
}

.color-blue {
    color: #10aded;
}

.color-green {
    color: #bada55;
}

.color-grey {
    color: #ccc;
}


/* ==================================================
  Login
  ================================================== */

.login {
    position: absolute;
    top: 2em;
    left: 2em;
    width: 32px;
    height: 32px;
}

.login a i {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.login a,
.login a:before,
.login a:after {
    position: fixed;
    z-index: 99999;
}

.login a:hover i {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 4px rgba(255, 255, 255, .4);
}


/* ==================================================
  Store Products
  ================================================== */

.store {
    display: table;
    position: relative;
    padding: 30px 0;
    color: #fff;
    width: 100%;
    height: 100vh;
}

.store:after {
    content: '';
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.store .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.product-grid, .product-grid .product-image {
  position: relative;
}

.product-grid {
  font-family: var(--family-t), Versalles, sans-serif;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  transition: all .3s ease 0s;
}

.product-grid:hover {
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.product-grid .product-image a {
  display: block;
}

.product-grid .product-image img {
  width: 100%;
  height: auto;
}

.product-grid .pic-1 {
  opacity: 1;
  transition: all .5s ease-out 0s;
}

.product-grid:hover .pic-1 {
  opacity: 0;
}

.product-grid .pic-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .5s ease-out 0s;
}

.product-grid:hover .pic-2 {
  opacity: 1;
}
.product-grid .social {
  width: 180px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease 0s;
}

.product-grid .social li {
  display: inline-block;
  opacity: 0;
  transition: all .7s;
}

.product-grid .social li:nth-child(1) {
  transition-delay: .15s;
}

.product-grid .social li:nth-child(2) {
  transition-delay: .3s;
}

.product-grid .social li:nth-child(3) {
  transition-delay: .45s;
}

.product-grid:hover .social li {
  opacity: 1;
}

.product-grid .social li a {
  color: #222;
  background: #fff;
  font-size: 17px;
  line-height: 36px;
  width: 40px;
  height: 36px;
  border-radius: 2px;
  margin: 0 5px;
  display: block;
  transition: all .3s ease 0s;
}

.product-grid .social li a:hover {
  color: #fff;
  background: var(--color-a-hover);
}

.product-grid .social li a:after, .product-grid .social li a:before {
  content: attr(data-tip);
  color: #fff;
  background-color: #000;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  padding: 0 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -30px;
}

.product-grid .social li a:after {
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -22px;
  z-index: -1;
}

.product-grid .social li a:hover:after, .product-grid .social li a:hover:before {
  opacity: 1;
}

.product-grid .product-discount-label, .product-grid .product-new-label {
  color: #fff;
  background-color: #16a085;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 15px;
  transition: all .3s;
}

.product-grid .product-discount-label {
  left: auto;
  right: 10px;
  background-color: #d7292a;
}
/*
.product-grid:hover .product-new-label {
  opacity: 0;
}
*/
.product-grid .product-content {
  padding: 25px;
}

.product-grid .title {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 7px;
  transition: all .3s ease 0s;
}

.product-grid .title a {
  color:#222
}

.product-grid .title a:hover {
  color: var(--color-a-hover);
}

.product-grid .price {
  color: #16a085;
  font-size: 17px;
  font-weight: 700;
  margin: 0 2px 15px 0;
  display: block;
}

.product-grid .price span {
  color: #909090;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: line-through;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
}

.product-grid .add-to-cart {
  border: 1px solid #e5e5e5;
  display: inline-block;
  padding: 10px 20px;
  color: #888;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: all .3s;
}

.product-grid:hover .add-to-cart {
  border: 1px solid transparent;
  background: var(--color-a);
  color: #fff;
}

.product-grid .add-to-cart:hover {
  background-color: var(--color-a-hover);
  box-shadow: 0 0 10px rgba(0,0,0,.5);
}

.product-grid ul.social li {
  text-align: center;
  display: none;
}

.product-grid ul.social li a {
  border-radius: 24px;
  border: solid #ebebeb 1px;
}

@media only screen and (max-width:990px) {
  .product-grid {
    margin-bottom: 30px;
  }
}


/* ==================================================
  Modal
  ================================================== */

.modal {
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    text-align: center;
    margin: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

.modal .wrapper {
    color: #333333;
    padding: 20px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
    margin-top: 12%;
    border-radius: 25px;
    border-top: #fff 1px solid;
    border-left: #fff 1px solid;
    border-right: #cccccc 1px solid;
    border-bottom: #cccccc 1px solid;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 0 4px rgba(0, 0, 0, 1);
}

.modal .wrapper,
.modal .wrapper a,
.modal .wrapper i {
    transition: all 0.3s ease;
}

/* ==================================================
  Form
  ================================================== */

form .btn {
    margin-top: 0;
    display: block;
}

.form-row,
.form-option,
form hr,
.notice {
    display: block;
    clear: both;
}

.form-row {
    padding: 4px;
}

.form-option {
    margin-top: 6px;
    margin-right: -4px;
}

form .notice,
form .dis-error {
    display: none;
}

form h2 {
    text-align: left;
    margin-bottom: 4px;
}

form hr {
    margin-top: 4px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, .2);
    border-radius: 25px;
    height: 4px;
    width: auto;
    margin-left: 0;
    margin-right: 0;
}

form input,
form textarea {
    width: 200px;
    border-radius: 4px;
    padding: .1em .4em;
    font-size: 110%;
    background: rgba(255, 255, 255, 0.2);
    background: linear-gradient(#cccccc, #ffffff);
    border: #cccccc 1px inset;
    margin-bottom: 4px;
}

form input:focus,
form input:active,
form textarea:focus,
form textarea:active {
    border-color: var(--color-3);
}

form i,
form img {
    width: 32px;
    height: 32px;
}

form img {
    float: left;
    margin-top: -2px;
    margin-right: 4px;
}

form i {
    float: left;
    margin-right: 10px;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.2);
}

form .form-row i,
form .form-row img {
    float: left;
    margin-left: -4px;
}

form h2 a i,
.form-option a i {
    margin-top: -10px;
    float: right;
    margin-top: -10px;
    margin-right: -12px;
    margin-left: auto;
}

.form-option a i {
    margin-right: 0;
}

form .notice {
    background: #000;
    width: 100%;
    border-radius: 20px;
    line-height: 20px;
    overflow: visible;
    text-align: left;
    padding: 4px 8px 4px 0;
    color: #ffffff;
    margin-top: -9px;
    margin-bottom: 10px;
    border: #333333 1px inset;
}

form .notice i {
    float: left;
    margin-right: 4px;
    color: #cc0000;
    margin-top: -6px;
    margin-left: -1px;
}

form a i {
    color: #333333;
}

form a:hover i {
    color: var(--color-1);
}


/* ==================================================
  Anime
  ================================================== */

.scale,
a.scale,
a.scale i {
    transform: scale(0.8);
}

.scale:hover,
a.scale:hover,
a.scale:hover i {
    transition: all 0.3s ease;
    transform: scale(1);
}

.resalt {
    transition: 0.1s;
    position: relative;
    z-index: 1;
}

.resalt:hover {
    transition: 0.1s;
    transform: scale(1.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, .8);
    z-index: 98;
}

@keyframes pulse_animation {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse,
.pulse-hover:hover {
    animation-name: pulse_animation;
    animation-duration: 5000ms;
    transform-origin: 70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.circle {
    animation: spin 3s linear infinite both;
    background: var(--color-2);
    border-radius: 100vmax;
    /* margin:calc(50vh - 5vmin) calc(50vw - 1vmin); */
    /* Half the longest viewport width minus half the width/height of the circle. */
    margin: calc(50vh - 5vmin) calc(50vw - 1vmin);
    height: 20vmin;
    width: 20vmin;
    position: absolute;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, .1);
}

.circle+.circle {
    animation: spin 3s linear .5s infinite both;
    background: var(--color-3);
}

.circle+.circle+.circle {
    animation: spin 3s linear 1s infinite both;
    background: var(--color-1);
}

@keyframes spin {
    0% {
        transform: rotate(360deg) translate(0vmax, -10vmax) scale(0.4);
    }
    25% {
        transform: rotate(270deg) translate(0vmax, -5vmax) scale(1);
    }
    50% {
        transform: rotate(180deg) translate(0vmax, 0vmax) scale(0.1);
    }
    75% {
        transform: rotate(90deg) translate(0vmax, -5vmax) scale(1);
    }
    100% {
        transform: rotate(0deg) translate(0vmax, -10vmax) scale(0.4);
    }
}


/* ==================================================
  Loader
  ================================================== */

.loader {
    position: fixed;
    display: none;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}


/* ==================================================
  Tooltips
  ================================================== */

/* Tooltip container */

.tooltips {
    position: relative;
    float: none;
}

.tooltips:after {
    float: none;
    display: block;
}


/* Tooltip text */

.tooltips .tooltiptext {
    float: none;
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.2em;
    display: block;
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: var(--family-t), Versalles, sans-serif;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    width: 200px;
    bottom: 130%;
    left: 50%;
    margin-left: -100px;
    /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltips .tooltiptext h2 {
    font-size: 18px !important;
    font-family: var(--family-h), Arial, sans-serif;
}


/* Show the tooltip text when you mouse over the tooltip container */

.tooltips:hover .tooltiptext {
    visibility: visible;
}


/* ==================================================
  Extra responsive
  ================================================== */

@media (max-width: 767px) {
    .block {
        padding-left: 30px;
        padding-right: 30px;
    }
    .carousel .carousel-caption.top-left {
        top: 10vh;
        left: 10vw;
    }
    .carousel .carousel-caption.top-right {
        top: 10vh;
        right: 10vw;
    }
    .carousel .carousel-caption.bottom-left {
        bottom: 10vh;
        left: 10vw;
    }
    .carousel .carousel-caption.bottom-right {
        bottom: 10vh;
        right: 10vw;
    }
    .plan {
        width: 90%;
    }
    .plan,
    h3 {
        font-size: 120% !important;
    }
}

@media (max-width: 1000px) {
    .paraover-img {
        margin-top: auto;
        margin-bottom: -60px;
        bottom: -60px;
    }
}

#mobile-nav-toggle i {
  color: var(--color-1);
}

@media (max-width: 61.9em) {
    .portfolio {
        padding: 0 !important;
    }
    .contact {
        padding-bottom: 2em !important;
    }
}

/* ==================================================
  update 2025
  ================================================== */

.bottom,
.parallax,
.carousel,
.inset,
.products,
.loader {
    background-color: #333333;
    box-shadow: inset 0 0 550px rgba(0, 0, 0, .7);
}

.parallax {
    background-color: #fff;
    box-shadow: none !important;
}

section .remark,
p.note,
.note p {
    border-left: 8px solid var(--color-1);
}

section#description, section#contact, section#main {
    padding-top: 30px !important;
    padding-bottom: 70px !important;
}

section#power.power {
    padding-top: 60px !important;
    padding-bottom: 140px !important;
    box-shadow:inset 0 0 20px rgba(100, 100, 100, 1);
}

section#power.power a img {
    filter: grayscale(100%);
    width: auto;
    height: 82px;
    opacity: 0.5;
}

section#power.power a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.products .plan-top, .cta {
    background-color: #000 !important;
    background: #000 !important;
}

#nav-menu-container {
    padding-left: 100px;
}

ul.nav-menu ul li:hover, ul.nav-menu ul li.menu-active {
    background-color: var(--color-a-hover) !important;
}

ul.nav-menu ul li:hover a, ul.nav-menu ul li.menu-active a {
    color: #fff !important;
}

.cta h3 em {
    color: #ebebeb;
    padding-top: 20px;
    text-align: left !important;
}

.header .social-nav a em {
    color: #cbcbcb !important;
    font-weight: bold;
}

.add-to-cart {
    background-color: #ebebeb;
    color: #fff !important;
}

section ul {
    margin-top: 0 !important;
    margin-bottom: .5em !important;
    padding-left: 1em !important;
}

#description li {
    list-style: none !important;
    margin-left: 1em !important;
    padding-left: 2px !important;
    list-style-type: "\2BA9" !important;
    list-style-position: outside;
}

#description li::marker {
    font-size: 20px;
    vertical-align: middle;
    color: #000;
}

#description li:hover::marker {
    color: var(--color-a-hover);
}

#description ul.time li, #description ul li.time {
    list-style-type: "\1F557" !important;
}

#description ul.calendar li, #description ul li.calendar {
    list-style-type: "\1F4C6" !important;
}

#description ul.agenda li, #description ul li.agenda {
    list-style-type: "\1F4D1" !important;
}

#description ul.phone li, #description ul li.phone {
    list-style-type: "\1F4DE" !important;
}

#description ul.battery li, #description ul li.battery {
    list-style-type: "\1F50B" !important;
}

#description ul.christmas li, #description ul li.christmas {
    list-style-type: "\1F384" !important;
}

#description ul.ticket li, #description ul li.ticket {
    list-style-type: "\1F3AB" !important;
}

#description ul.search li, #description ul li.search {
    list-style-type: "\1F50D" !important;
}

#description ul.compass li, #description ul li.compass {
    list-style-type: "\1F9ED" !important;
}

#description ul.round li, #description ul li.round {
    list-style-type: "\1F518" !important;
}

#description ul.lotion li, #description ul li.lotion {
    list-style-type: "\1F9F4" !important;
}

#description ul.bell li, #description ul li.bell {
    list-style-type: "\1F514" !important;
}

#description ul.cyclone li, #description ul li.cyclone {
    list-style-type: "\1F300" !important;
}

#description ul.guide-dog li, #description ul li.guide-dog {
    list-style-type: "\1F9AE" !important;
}

#description ul.shopping-cart li, #description ul li.shopping-cart {
    list-style-type: "\1F6D2" !important;
}

#description ul.shower li, #description ul li.shower {
    list-style-type: "\1F6BF" !important;
}

#description ul.circle-white li, #description ul li.circle-white {
    list-style-type: "\26AA" !important;
}

#description ul.circle-black li, #description ul li.circle-black {
    list-style-type: "\26AB" !important;
}

#description ul.memo li, #description ul li.memo {
    list-style-type: "\1F4DD" !important;
}

#description ul.smoking li, #description ul li.smoking {
    list-style-type: "\1F6AC" !important;
}

#description ul.no-smoking li, #description ul li.no-smoking {
    list-style-type: "\1F6AD" !important;
}

#description ul.full-day li, #description ul li.full-day {
    list-style-type: "\1F3EA" !important;
}

#description ul.client li, #description ul li.client {
    list-style-type: "\1F4C7" !important;
}

#description ul.email li, #description ul li.email {
    list-style-type: "\1F4E7" !important;
}

#description ul.thumbs-ok li, #description ul li.thumbs-ok {
    list-style-type: "\1F44C" !important;
}

#description ul.thumbs-up li, #description ul li.thumbs-up {
    list-style-type: "\1F44D" !important;
}

#description ul.thumbs-down li, #description ul li.thumbs-down {
    list-style-type: "\1F44E" !important;
}

#description ul.time li, #description ul li.time {
    list-style-type: "\231B" !important;
}

#description ul.watch li, #description ul li.watch {
    list-style-type: "\231A" !important;
}

#description ul.alarm li, #description ul li.alarm {
    list-style-type: "\23F0" !important;
}

#description ul.halt li, #description ul li.halt {
    list-style-type: "\270B" !important;
}

#description ul.love li, #description ul li.love {
    list-style-type: "\1F9E1" !important;
}

#description ul.zen li, #description ul li.zen {
    list-style-type: "\1F9D8" !important;
}

#description ul.checked li, #description ul li.checked {
    list-style-type: "\2705" !important;
}

#description ul.circle li, #description ul li.circle {
    list-style-type: "\2B55" !important;
}

#description ul.mobile li, #description ul li.mobile {
    list-style-type: "\1F4F3" !important;
}

#description ul.postal li, #description ul li.postal {
    list-style-type: "\1F4EC" !important;
}

#description ul.pushpin li, #description ul li.pushpin {
    list-style-type: "\1F4CC" !important;
}

#description ul.music li, #description ul li.music {
    list-style-type: "\1F3BC" !important;
}

#description ul.present li, #description ul li.present {
    list-style-type: "\1F381" !important;
}

#description ul.secure li, #description ul li.secure {
    list-style-type: "\1F510" !important;
}

#description ul.disabled li, #description ul li.disabled {
    list-style-type: "\267F" !important;
}

#description ul.stop li, #description ul li.stop {
    list-style-type: "\26D4" !important;
}

#description ul.support li, #description ul li.support {
    list-style-type: "\1F6DF" !important;
}

#description ul.competition li, #description ul li.competition {
    list-style-type: "\1F3C1" !important;
}

#description ul.trophy li, #description ul li.trophy {
    list-style-type: "\1F3C6" !important;
}

#description ul.medal li, #description ul li.medal {
    list-style-type: "\1F947" !important;
}

#description ul.idea li, #description ul li.idea {
    list-style-type: "\1F4A1" !important;
}

#description ul.puzzle li, #description ul li.puzzle {
    list-style-type: "\1F9E9" !important;
}

#description ul.card li, #description ul li.card {
    list-style-type: "\1F4B3" !important;
}

.product-details {
    width: 100%;
    display: inline-block;
    margin-top: -1em;
    margin-bottom: 1em;
}

.product-details ul {
    margin-top: -1.8em !important;
}

#description .product-details li {
    list-style-type: "\1F3C6" !important;
    font-size: .9em;
    color: #999;
}

.product-details .feature {
    padding-left: 0;
    display: inline-block;
    margin-top: -.5em;
    margin-bottom: 1.5em;
}

.feature i {
    font-size: 200%;
    -webkit-text-stroke: 2px white;
    text-shadow: 1px 3px 3px rgba(100, 100, 100, .4);
}

.product-prices {
    width: auto;
    display: block;
    margin-top: 1em !important;
}

.product-price {
    line-height: 1.2em;
    display: block;
    float: right;
    font-size: 1.5rem;
    background-color: #000;
    padding: 20px 10px 10px 10px;
    color: #999;
    border-radius: var(--round-1);
    margin-top: 0 !important;
    margin-right: .6rem;
    margin-left: auto;
    margin-bottom: 8px !important;
    box-shadow: 3px 3px 3px rgba(100, 100, 100, .2);
    border: 4px solid #fff;
}

.product-price .extra {
    display: block;
    font-size: 1rem;
    text-align: right;
    background-color: #333;
    border-radius: 10px;
    padding: 2px 4px 0px 4px;
    border: 2px inset #000;
    letter-spacing: -1px;
}

#nav-menu-container a, #bottom .info a {
    display: block !important;
}

.info a {
    font-size: 120% !important;
}

.product-price strong {
    font-size: 2.5rem;
    color: #fff !important;
    letter-spacing: -2px;
    font-weight: bolder;
}

.product-price strong i {
    float: right;
    margin-top: -30px;
    margin-right: -20px;
    text-shadow: 1px 3px 3px rgba(100, 100, 100, .2);
    -webkit-text-stroke: 4px white;
}

i.green, a i.green, a:hover i.green {
    color: #1e964e !important;
}

i.yellow, a i.yellow, a:hover i.yellow {
    color: #fcd765 !important;
}

i.blue, a i.blue, a:hover i.blue {
    color: #71aad9 !important;
}

i.red, a i.red, a:hover i.red {
    color: #c21350 !important;
}

i.orange, a i.orange, a:hover i.orange {
    color: orange !important;
}

i.pink, a i.pink, a:hover i.pink {
    color: #d42c83 !important;
}

i.gray, a i.gray, a:hover i.gray {
    color: #ececec !important;
}

i.white, a i.white, a:hover i.white {
    color: white !important;
}

i.black, a i.black, a:hover i.black {
    color: black !important;
}

#footer .float-right._open {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

#footer #footer-menu-container {
    display: inline-block;
    margin-top: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 0;
    width: 100%;
    background-color: #030303;
    border: 1px solid #020202;
    box-shadow:inset 0 0 20px rgba(32, 32, 32, .4);
    border-radius: var(--round-2);
    text-align: center;
}

#footer #footer-menu-container ul.footer-menu li a .trans-main {
    background-color: transparent !important;
    border: none !important;
}

#footer #footer-menu-container ul.footer-menu li.menu-has-children {
    min-width: 24%;
    display: block;
    height: 90%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: left !important;
    font-size: 150%;
    font-weight: bolder;
    font-family: var(--family-h);
    -webkit-text-stroke: 1px #ebebeb;
    margin-bottom: 1em;
}

#footer #footer-menu-container ul.footer-menu li {
    display: inline-block;
    list-style: none !important;
    padding-left: 0;
}

#footer #footer-menu-container ul.footer-menu li li {
    display: block;
    font-size: 60%;
    font-family: var(--family-t);
    font-weight: normal;
    list-style-type: "\26AB" !important;
    -webkit-text-stroke: 0px;
    margin-top: 4px;
}

#footer #footer-menu-container ul.footer-menu li li:hover {
    list-style-type: "\26AA" !important;
}

ul.footer-menu li li a {
    padding: 4px 6px;
    border-radius: var(--round-2);
}

ul.footer-menu li li.menu-active a, ul.footer-menu li li a:hover {
    background-color: #fff !important;
    color: #000 !important;
}

ul.footer-menu li li.menu-active a {
    background-color: #333 !important;
}

.social-nav a._open {
    margin-left: 4px !important;
}

.mapouter .gmap, .picture {
    box-shadow: 10px 10px 20px rgba(100, 100, 100, .2);
}

.mapouter .gmap {
    border: 8px solid #fafafa;
    background-image: url("/img/loader.gif");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0 !important;
}

.picture {
    border: 12px solid #fafafa;
    border-bottom: 24px solid #fafafa;
    margin-top: .4em;
    margin-bottom: 1.4em;
    transform: rotate(4grad);
    background-color: #fafafa;
    background: no-repeat center center url(/img/loader.gif);
    background-size: cover;
}

a.picture, a.picture:hover {
    display: block !important;
    -webkit-text-stroke: .2px #999 !important;
    color: #ebebeb !important;
    z-index: 1;
}

a.picture strong, a.picture:hover strong {
    -webkit-text-stroke: .2px #333 !important;
    color: #333 !important;
}

.picture img {
    margin-bottom: 8px;
}

.picture img, .mapouter .gmap iframe {
    border: 1px inset #fff;
}

.signature img {
    transform: rotate(-12grad);
}

a.float-right, a.float-left {
    display: block !important;
}

img.float-right, a.float-right {
    margin-left: 1.4em !important;
    height: auto;
}

img.float-left, a.float-left {
    margin-right: 1.8em !important;
    height: auto;
}

.bottom .row hr {
    width: 300px;
    border-top: 4px solid var(--color-a-hover); 
    border-bottom: 4px solid var(--color-a);
    border-radius: var(--round-3);
    opacity: 0.2;
}

section.contact ul.languages li img {
    border: 1px solid black;
    margin-left: .3em;
    box-shadow: 2px 2px 8px rgba(100, 100, 100, .4);
}

section.contact .business-action h3 {
    border: 1px solid white;
    border-radius: var(--round-3);
}

p.contact span.contact-wrapper {
    display: block;
    float: right;
    background-color: #333;
    border: 1px solid #0000ff;
    height: 10px;
    overflow: visible;
    padding-left: 10em;
    padding-right: .4em;
    margin-top: 32px;
    border-radius: var(--round-1);
    border: 1px inset #000;
}

p.contact span.contact-wrapper a {
    margin-top: -16px;
}

span.rating i {
    font-size: 36px;
    text-shadow: 2px 2px 4px #999;
    -webkit-text-stroke: 1px white;
}

.testimonial-row {
    background-color: #fff;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 1.6em;
}

.testimonial-entry .testimonial-card .testimonial-picture img, .testimonial-entry .testimonial-card .testimonial-text {
    transition-delay: 250ms;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
}

.testimonial-entry .testimonial-card .testimonial-picture img {
    filter: grayscale(100%);
}

.testimonial-entry:hover .testimonial-card .testimonial-picture img {
    filter: grayscale(0%);
}

.testimonial-entry .testimonial-card .testimonial-text {
    height: 75px;
    overflow: hidden;
}

.testimonial-entry .testimonial-card .testimonial-text, .testimonial-row .testimonial-text em {
    color: #ccc;
}

.testimonial-entry:hover .testimonial-card .testimonial-text {
    color: #999;
}

.testimonial-entry .testimonial-card .decoration, .testimonial-entry .testimonial-card .decoration i.fa {
    font-size: 120%;
    color: #ebebeb !important;
}

.rating i {
    position: sticky;
    margin-top: -32px;
}

.testimonial-entry .decoration i.fa-quote-right {
    margin-left: auto;
}

.testimonial-card {
    border: 1px solid #ebebeb;
}

@media (max-width: 767px) {
    #parallax .text-left h2 {
        margin-top: 2em !important;
    }
    .carousel h2 {
        margin-top: .8em !important;
    }
    .carousel p {
        font-size: 1em !important;
    }
    .product-details .feature {
        margin-top: 1em;
        margin-bottom: .8em;
    }
    .product-details ul {
        margin-top: -.4em !important;
    }
    .product-prices {
        padding-top: .8em;
    }
    .product-price {
        float: none;
    }
    .mapouter {
        float: none;
        width: 100% !important;
    }
    .mapouter .gmap iframe {
        width: 100% !important;
    }
    .picture img.float-right, a.float-right, .picture img.float-left, a.float-left {
        width: auto;
        margin-left: 2em !important;
        margin-right: auto !important;
        float: left !important;
    }
    .bottom .row .info {
        display: inline-block !important;
    }
    .bottom .row .info div p {
        text-align: center !important;
    }
    .bottom .row .info a span {
        display: none;
    }
    .bottom .row .info a i {
        float: none !important;
        margin-top: .2em !important;
        margin-bottom: .4em !important;
    }
    body #description p, body #description li {
        text-align: left !important;
    }
    .testimonial-entry .testimonial-card .testimonial-text {
        height: auto;
    }
}