@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

@import url(https://fonts.googleapis.com/css?family=Cardo:400,400italic);

@font-face {
	font-weight: 300;
	font-style: normal;
	font-family: 'neutra';
	src: url('../fontes/neutratba.ttf') format('truetype');
}

@font-face {
	font-weight: 600;
	font-style: normal;
	font-family: 'neutra';
	src: url('../fontes/neutratit.ttf') format('truetype');
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'myriad';
	src: url(../fontes/MyriadPro-Regular.otf) format('truetype');
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'achille';
	src: url(../fontes/achv2.ttf) format('truetype');
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'Gabriola';
	src: url(../fontes/ufonts.com_gabriola.ttf)	 format('truetype');
}

* {
	margin:0;
	padding:0;	
	list-style:none;
	vertical-align:bottom;
	background:none;
	outline: none;
}

body {
	width: 100%;
	height: auto;
	color: #3a3a3a;
	background:#fafafa;
    overflow-x: hidden;
}

.center {
	width: 90%;
	margin: 0 auto;
	padding:0;
}

#clear {
	clear: both;	
}

hr.divisor {
	display: none;
	width: 60%;
	border-bottom: 2px solid rgba(0,0,0,.3);
	margin: 0 auto;	
}

/* - - - - - - - - - - */
/* S C R O L L   B A R */
/* - - - - - - - - - - */

/* Let's get this party started */
::-webkit-scrollbar {
    width: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(173,167,136,.5);     
}
::-webkit-scrollbar-thumb:window-inactive {
	background-color:rgba(99,18,1,.5);
}


/* - - - - - - */
/* H E A D E R */
/* - - - - - - */

header {
	width: 100%;
	height: 7.5vh;
	position: fixed;
	margin: 0;
	padding:0;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(26,26,26,0.65);
	font-family: "Trebuchet MS", sans-serif;
     transform:translateY(-250%);
	-webkit-transform:translateY(-250%);
	-moz-transform:translateY(-250%);
	-o-transform:translateY(-250%);
	-ms-transform:translateY(-250%);
}

.header {
	width: 100%;
	height: 100%;	
}

/* MENU */

/* ÁREA DO LOGO */
#nav_right > ul > li:nth-child(1) > a {
	vertical-align: middle;	
}

#nav_left > a.active{
	background: rgba(0,0,0,0);	
}

#nav_left {
	width: 50%;
	float: left;
	height: inherit;
}

#nav_left svg {
	height: 55%;
	position:relative;
	left: 25%;
	padding: 2% 0 0 0;
}

/* ÁREA DO MENU */

#nav_right {
	width: 50%;
	float: right;
	height: inherit;
}

#nav_right ul {
	width:100%;
	height: inherit;
}

#nav_right li {
	width: calc(90%/4);
	height: inherit;
	margin: 0;
	padding: 0;
	display: inline-block;
	float: left;
	text-transform: uppercase;
	font-family: "neutra";
	font-size: 15pt;
	list-style: none;
}

#nav_right li a {
	width: 100%;
	height: inherit;
	margin: 0;
	padding: 0;
	display: block;
	color: #fafafa;
	text-decoration: none;
	text-align:center;
    letter-spacing: 1px;
    font-weight: 600;
	-webkit-transition:	all 0.5s ;
	-moz-transition: all 0.5s ;
	-o-transition: all 0.5s ;
	transition: all 0.5s ;
	/* Internet Explorer 10 */
	display:-ms-flexbox;
	-ms-flex-pack:center;
	-ms-flex-align:center;
	
	/* Firefox */
	display:-moz-box;
	-moz-box-pack:center;
	-moz-box-align:center;
	
	/* Safari, Opera, and Chrome */
	display:-webkit-box;
	-webkit-box-pack:center;
	-webkit-box-align:center;
	
	/* W3C */
	display:box;
	box-pack:center;
	box-align:center;
}

#nav_right li a:hover {
	background: rgba(133,2,5,.4);
	-webkit-transition:	all 0.5s ;
	-moz-transition: all 0.5s ;
	-o-transition: all 0.5s ;
	transition: all 0.5s ;
}

.active {
	background: rgba(133,2,5,.4);
	-webkit-transition:	all 0.5s ;
	-moz-transition: all 0.5s ;
	-o-transition: all 0.5s ;
	transition: all 0.5s ;
}

/* - - - - - - - */
/*  B A N N E R  */
/* - - - - - - - */

#wrapper {
  width: 100%;
  overflow: hidden;
  height:100vh;
  display: flex;
  align-items: baseline;
  text-align: center;
  margin: 0 auto;
  position: relative;
  opacity: 0;
padding-bottom: 2vh;
}

#wrapper:after {
    width:5vw;
    height:5vw;
    background:#fff;
    position:relative;
    display: block;
}

#wrapper video {
    flex: 1 0 auto;
    height: 100vh;
    right: 0;
    position: absolute;
}



/* code for animated blinking cursor */
.typed-cursor{
    opacity: 1;
    font-weight: 100;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    -ms-animation: blink 0.7s infinite;
    -o-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-ms-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.typed-fade-out{
    opacity: 0;
    animation: 0;
    transition: opacity .25s;
}

.type-wrap { 
    flex: 1 0 auto;
    margin:40vh 0 0 25vh;
    position: absolute;
    text-align: left;
}

.type-wrap span {
    text-align: left;
	font-size: 5vw;
	font-weight: 300;
	font-family: "neutra", sans-serif;
    text-transform: lowercase;
	padding: 0 0 0 0;
	margin: 0 0 7% 0;
    color:#333;
    }

.type-wrap b {
    text-transform: uppercase;
    font-weight: 600;    
}

#quad {
    width:3vw;
    height:3vw;
    background:#fafafa;
    margin:-1.5vw auto 0 auto;
    transform: rotate(45deg);
    
}

section hgroup h2 {
    padding: 8% 0 0 0;
	text-align: center;
	font-size: 36pt;
	font-weight: 600;
	color: rgba(126,24,27,1.00);
	font-family: "neutra", sans-serif;
}

section hgroup h5 {
	text-align: center;
	font-size: 20pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
	padding: 1.2% 0 0 0;
	margin: 0 0 7% 0;
    text-transform: lowercase;
}

/* - - - - - - */
/*  A B O U T  */
/* - - - - - - */

/* MISSAO VISAO VALORES */

.box {
    position: relative;
    width: 50%;
	height: auto;
	display:block;
	padding:4% 25%;
	background: rgba(230,230,230,.5);	
}

.box h1 {
	font-size: 25pt;
	margin: 0 0 5% 0;
	font-family: "neutra", sans-serif;
	font-weight: 600;
	color: rgba(126,24,27,1.00);
	text-align:center;		
}

.box p {
	font-size: 14pt;
	text-align: center;
	line-height: 1.5;
	color: #333;
	font-family: "neutra", sans-serif;	
}


#grid-sobre .box p {
    font-size:1.5rem;
}

#grid-sobre .box p strong {
    font-size: 1.2rem;
    line-height: 1.8;
    text-transform: lowercase!important;
}


.hasSelectedItem .gridder-list img.desaturate {
	opacity: .9;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.gridder-list.selectedItem img.desaturate{ 
	opacity:1;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.gridder-show {
	margin: 0;		
}

/* link interno do sobre */

.gridder .gridder-expanded-content h3 {
	font-size: 16pt;
    font-style: italic;
    font-weight: 400;
    color: #333;
    font-family: "neutra", sans-serif;
    text-align: left;
    padding: 1% 0 4% 0;
    line-height: 1.3;
}

.gridder .gridder-expanded-content h3 em { 
    font-size:12pt;
    font-style: normal;
}

.gridder .gridder-expanded-content h2 {
	text-transform:uppercase;	
}

.gridder-expanded-content .col-texto h5,
.gridder-expanded-content .col-texto h5 a {
    color: rgba(126,24,27,1.00);
    font-family: "neutra", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin:3% 0 0 0; 
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width:auto;
    position: relative;
}

.gridder-expanded-content .col-texto h5 a:hover {
    transition: all 0.2s ease-in-out;
}

.gridder-expanded-content .col-texto h5 a span:before,
.gridder-expanded-content .col-texto h5 a span:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 2px;
  margin: 5px 0 0;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.5s;
  opacity: 0;
}

.gridder-expanded-content .col-texto h5 a span:before {
  left: calc(50%);
  background-color: rgba(126,24,27,1.00);
}

.gridder-expanded-content .col-texto h5 a span:after {
  right: calc(50%);
  background-color: rgba(126,24,27,1.00);
}

.gridder-expanded-content .col-texto h5 a:hover span:before,
.gridder-expanded-content .col-texto h5 a:hover span:after {
  width: 50%;
  opacity: 1;
}

.gridder-list svg path { 
    fill:rgba(0,0,0,1)!important; 
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-idvisual path,
.gridder-list:hover #fill-idvisual path,
#modal-right .modal-right-texto .cases-categs #fill-idvisual path { 
    fill:rgba(71,62,198,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-dsgstrat path,
.gridder-list:hover #fill-dsgstrat path,
#modal-right .modal-right-texto .cases-categs #fill-dsgstrat path {
    fill:rgba(216,33,94,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-branding path,
.gridder-list:hover #fill-branding path,
#modal-right .modal-right-texto .cases-categs #fill-branding path {
    fill:rgba(49,169,201,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-branding-collateral path,
.gridder-list:hover #fill-branding-collateral path,
#modal-right .modal-right-texto .cases-categs #fill-branding-collateral path {
    fill:rgba(62,193,62,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-dsg-instructs path,
.gridder-list:hover #fill-dsg-instructs path,
#modal-right .modal-right-texto .cases-categs #fill-dsg-instructs path {
    fill:rgba(117,29,29,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.gridder-list.selectedItem #fill-dev-web path,
.gridder-list:hover #fill-dev-web path,
#modal-right .modal-right-texto .cases-categs #fill-dev-web path {
    fill:rgba(174,38,178,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}


.gridder-list.selectedItem #fill-dsg-serv path,
.gridder-list:hover #fill-dsg-serv path,
#modal-right .modal-right-texto .cases-categs #fill-dsg-serv path {
    fill:rgba(226,129,41,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}


.gridder-list.selectedItem #fill-dev-negocios path,
.gridder-list:hover #fill-dev-negocios path,
#modal-right .modal-right-texto .cases-categs #fill-dev-negocios path {
    fill:rgba(218,221,55,1)!important;
    -webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

/* - - - - - */
/*  C A S E  */
/* - - - - - */

#case {
	width: 100%;
	height: auto;
	background: #fafafa;
	margin: 0 auto;
	position: relative;
}

/* Filtro dos cases */

#filters {
	display: none !important;
}

/* - - - - - - */
/*  M O D A L  */
/* - - - - - - */

#modal-container {
	width: 60%;
	margin: 2% auto 1% auto;
	height: auto;
}

#simplemodal-container > a {
	margin-left: 80%;
	cursor: pointer;
}

#simplemodal-container > a > img {
	margin-top: 20px;
}

.simplemodal-data {
	width:100%;
	margin: 0 auto;
	height: 100%;
	overflow-y: scroll !important;
}

#simplemodal-overlay {
	background-color: rgba(100,100,100,.99);
	width: 100% !important;
}

#modal-left {
	width: 94%;
	height: auto;
	margin: 0;
    background: #fff;
    margin: 30px auto 0 auto;
    padding: 3% 3%;
    display: inline-block;
    opacity: 0;
    -webkit-animation: toporevela 1s 2s 1 forwards;
    -moz-animation: toporevela 1s 2s 1 forwards;
    -ms-animation: toporevela 1s 2s 1 forwards;
    -o-animation: toporevela 1s 2s 1 forwards;
    animation: toporevela 1s 2s 1 forwards;
}

#modal-left .case-slide {
	width: 75%;
	height: auto;
	margin: 0;
    float:left;
    margin-bottom: 100px;
    position: relative;
    margin:4% 12.5%;
}

#modal-left .case-slide:last-child {
	margin-bottom:250px;
}

#modal-left .case-slide.topo {
	margin-top:0;
}

#modal-left .case-slide.title {
	margin:7% 0 0 0;
}

#modal-left .case-slide img {
	width: 100%;
	height: auto;
	margin: 0;
}

#modal-left .case-slide.w100 {
	width: 100%;
    float:left;
    margin: 0 0 4% 0;
}

#modal-left .case-slide.w30 {
	width: 33%;
    float:left;
    margin: 0 0 4% 0;
}

#modal-left .case-slide.w60 {
	width: 64%;
    float:left;
    margin: 0 0 4% 0;
}

#modal-left .case-slide.left {
    margin: 0 0 4% 0;
}

#modal-left .case-slide.right {
    margin:0 0 4% 3%;
}

#modal-left .case-slide h1 {
    text-transform: uppercase;
    color:#fff;
    margin:0 auto;
    font-family: "neutra", sans-serif;
    font-size:7vw;
    text-align: center;
    z-index: 9999999;
    position: relative;
    color:#fff;
}

#modal-left .case-text {
    width: 100%;
    font-family: "neutra", sans-serif;
    position: absolute;
    bottom: -30px;
}

#modal-left .case-text:nth-of-type(2) {
	top:75%;
}

#modal-left .case-text.w30e { left: 3%; }
#modal-left .case-text.w30r { right: 3%; }
    
#modal-left .case-slide .w30e p:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    left: -8%;
    background: rgba(126,24,27,1.00);
    top: 4vh;
}

#modal-left .case-slide .w30r p:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    right: -8%;
    background: rgba(126,24,27,1.00);
    top: 4vh;
}

/* #modal-left .case-text h3 {
    text-transform: uppercase;
    margin:0 auto;
    font-family: "neutra", sans-serif;
    font-size:38px;
    text-align: left;
    z-index: 9999999;
    position: relative;
    color: #FAFAFA;
    width: 100%;
    line-height: 1;
    padding:0;
    text-shadow: 10px -10px 30px rgba(0,0,0,.5);
} */

#modal-left .case-slide:after {
    text-transform: uppercase;
    margin:0 auto;
    font-family: "neutra", sans-serif;
    font-size:25px;
    font-weight: 600;
    text-align: left;
    z-index: 9999999;
    position: absolute;
    color: #fff;
    width: 100%;
    line-height: 1;
    font
    padding:0;
    content:attr(data-title);
    bottom: 5px;
    left: 5px;
    word-wrap: break-word;
}

#modal-left .case-slide.gifmeio {
    margin: 0 33.5% 4% 33.5%;
}

#modal-left .case-slide:before {
    text-transform: uppercase;
    margin:0 auto;
    font-family: "neutra", sans-serif;
    font-size:25px;
    font-weight: 600;
    text-align: left;
    z-index: 9999999;
    position: absolute;
    color: #fff;
    width: 100%;
    line-height: 1;
    font
    padding:0;
    content:attr(data-title2);
    bottom: 5px;
    right 5px;
    text-align: right;
    word-wrap: break-word;
}

#modal-left .case-slide.inverted:after {
    color: #646464;
}

#modal-left .case-slide.gif:after {
    color: #fff;
    bottom: -28px;
    left: 0;
    background: #646464;
    padding: 5px;
    width:auto;
}

#modal-left .case-text p {
    position:relative;
    font-family: "neutra", sans-serif;
    font-size: 1.4rem;
    background:#fff;
    padding: 10%;
    margin-top: -5%;
}


#modal-left .case-text.w30e p {
    border-right: 15px solid rgba(126,24,27,1.00);
}   

#modal-left .case-text.w30r p {
    border-left: 15px solid rgba(126,24,27,1.00);
}

#modal-left .case-slide .case-marker {
    position: absolute;
    bottom: -8%;
    font-size: 3vw;
    text-transform: uppercase;
    color: #fff;
    margin: 0 auto;
    font-family: "neutra", sans-serif;
    text-shadow: 1px 1px 10px rgba(0,0,0,.5);
}

#modal-left .case-slide .case-marker.right2 { right: -3%; }
#modal-left .case-slide .case-marker.left2 { left: -3%; }
#modal-left .case-slide .case-marker.right { right: 27%; }
#modal-left .case-slide .case-marker.left { left: 27%; }

#modal-left .case-slide .case-marker b {
    font-size: 10vw;
    color: rgba(126,24,27,1.00);
    margin: -50px;
    line-height: .85;
}

#modal-left .case-slide .case-marker.outro { font-size: 5vw; }
#modal-left .case-slide .case-marker.outro b { font-size: 7vw; }

#modal-right {
	width: 94%;
	height: auto;
	background: #fafafa;
	margin: 0 auto;
    padding: 2% 3%;
	color: #3A3A3A;
	position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-items: center;
    opacity: 0;
    z-index: 999999999999;
    -webkit-animation: toporevela 1s 1s 1 forwards;
    -moz-animation: toporevela 1s 1s 1 forwards;
    -ms-animation: toporevela 1s 1s 1 forwards;
    -o-animation: toporevela 1s 1s 1 forwards;
    animation: toporevela 1s 1s 1 forwards;
}

@-webkit-keyframes toporevela {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes toporevela {
  from { opacity: 0; }
  to { opacity: 1; }
}

#modal-right .modal-right-logo {
    width:30%;
}

#modal-right .modal-right-logo svg,
#modal-right .modal-right-logo img {
    width: 60%;
    margin: 0 auto;
    display: block;
}

#modal-right .modal-right-texto {
    width:70%;
}

#modal-right .modal-right-texto #texto-full {
    width:100%!important;
}

#modal-right .modal-right-texto #texto-full div p:last-child {
    margin-bottom: 40px;
}

#modal-right .modal-right-texto #texto-full-breadcrumbs {
    width:100%;
}

#modal-right .modal-right-texto #texto-full-breadcrumbs .slidr-breadcrumbs {
    text-align: center;
}

aside[id="texto-full-breadcrumbs"] .slidr-breadcrumbs li.active {
    background-color: #3a3a3a!important;
}

aside[id="texto-full-breadcrumbs"] .slidr-breadcrumbs li.normal {
    border-color: #3a3a3a!important;
}

#modal-right > img {
	width: 13%;
    display: block;
    margin: 7% 2.5% 0 2.5%;
    border-radius: 50%;
    background: darkgray;
    padding: 1%;
    float: left;
}

.ano_size {
	font-size: 15pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
    line-height: 2;
}

#modal-right h1 {
	font-size: 30pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
	color: #3A3A3A;	
}

#modal-right p {
	font-size: 15pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
	padding: 2% 0;	
}

#modal-right a {
	font-size: 15pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
	color: #850205;
	text-decoration: none;	
}

#modal-right .cases-categs {
    width:100%;
    height:auto;
    position:relative;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
    margin-top:3vh;
}

#modal-right .cases-categs li {
    align-items: center;
    margin: 5px 10px 0 0;
    -webkit-flex: initial;
	flex: initial;
}

#modal-right .cases-categs svg {
	width:60px;
    float:left;
}

#modal-right .cases-categs h2 {
	width:auto;
    font-size: 15pt;
	font-weight: normal;
	font-family: "neutra", sans-serif;
    margin-left: 10px;
}

#contact {
	width:100%;
	background: #fafafa url(../stratarq/imagens/bgcontact.svg) no-repeat center 70%;
	padding: 0;
	background-size: 200%;
}

.contacts {
	width: 100%;
	margin: 0;
	padding: 0 0 10% 0;
	font-family: "neutra", sans-serif;
	font-weight: normal;
}
/* CONTLEFT */

#contleft {
	width:50%;
	float: left;
}

/* CONTRIGHT */

#contright {
	width:50%;
	height: auto;
	float: right;
	margin: 0 auto;
	padding: 0;
}

#contright a {
	margin: 0;
	padding: 0;
}

#contright img {
	width: 89%;
	margin: 0 0 0 11%
}

#contright p {
	text-align: right;
  	margin: 2% 0 0 0;
  	font-size: 17pt;
  	line-height: 1.5;
}

/* FORMULÁRIO */

form {
	width: 100%;
	margin: 0% auto;	
}

input {
	margin: 1% 0;
	padding: 0;
	border: none;
	height: 40px;
	font-family: "neutra", sans-serif;
	font-weight: normal;
	font-size: 1.5em; 
	display: block;
	color: #3a3a3a;
}

textarea {
	height: 180px;
	border: none;
	background-color: rgba(255,255,255,0.7);
	color: #3a3a3a;
	font-family: "neutra", sans-serif;
	font-weight: normal;
	font-size: 1.5em; 
	display: block;
	box-shadow: -1px 1px 1px #ddd;
}

button {
	border: none;
}

#notification-trigger {
	margin: 1% 0;
	padding: 2%;
	width: 56%;
	color: #999;
	font-size: 1.5em;
	font-family: "neutra", sans-serif;
	font-weight: normal;
	background-color: rgba(255,255,255,0.7);
	cursor:pointer;
	box-shadow: -1px 1px 1px #ddd;
}

span.text_left {
	margin: 0 13% 0 0;
}

#imgcont_tab {
	display: none;
}

span.clau_span {
	color: #d17720;
}

span.clau_span p{
	color: #d17720;
}

/* - - - - - - - */
/*  F O O T E R  */
/* - - - - - - - */

footer {
	width: 100%;
	font-family: "neutra", sans-serif;
	font-weight: normal;
	font-size: 15pt;
    background: rgba(26,26,26,0.7);
}

#rodape #icon-topo {
    display: inline-block;
	position: fixed;
    bottom: 0%;
    right: 5%;
	background-color: rgba(26,26,26,0.7);
	border: none;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	border-bottom: none;
	content: url(../imagens/icon_topo.png);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#rodape #icon-topo:hover {
	background-color: rgba(133,2,5,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#rodape a.active {
    background: rgba(0,0,0,0);
}

#rodape {
	height: auto;
	padding: 3% 0 1% 0;
    background-color: rgba(133,2,5,.4);
}

footer p {
	color: #fafafa;
	line-height: 2;
}

/* Informações de contato */

footer p::before {
	display: inline-block;
    margin: 0 1% 0 0;
    vertical-align: -webkit-baseline-middle;	
}

.info-footer {
	width: auto;
    margin: 0;
    padding: 0;
    display: block;
    float: none;
    text-align: left;
}

.info-footer p, .info-footer a {
	text-align: left;
	vertical-align: initial;
	text-decoration: none;
	color: #f3f3f3;
	-webkit-transition:	all 0.5s ;
	-moz-transition: all 0.5s ;
	-o-transition: all 0.5s ;
	transition: all 0.5s ;
}

.info-footer a:hover {
	color:#000;	
	-webkit-transition:	all 0.5s ;
	-moz-transition: all 0.5s ;
	-o-transition: all 0.5s ;
	transition: all 0.5s ;
}

#rodape > div > div:nth-child(1) > p::before, #rodape div:nth-child(2) p::before, #rodape div:nth-child(3) p::before {
	display: inline-block;
	vertical-align: -webkit-baseline-middle;	
}

#rodape > div > div:nth-child(1) > p::before {
	content: url(../imagens/icon-email.png);	
}

#rodape div:nth-child(2) p::before {
	content: url(../imagens/icon-phone.png);	
}

#rodape div:nth-child(3) p::before {
    content: url(../imagens/icon-insta.png);
}

#rodape div:nth-child(4) p::before {
    content: url(../imagens/icon-linked.png);
}

.developer {
	text-align: center;
	margin: 1% 0 0 0;
    font-size:.9rem;
}

/* CSS DO VOLTAR AO TOPO */
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  width: 90%;
  max-width: 768px;
  margin: 2em auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

.anim-fade { 
	opacity:1!important;
    -webkit-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-transy {
	transform:translateY(0px)!important;
	-webkit-transform:translateY(0px)!important;
	-moz-transform:translateY(0px)!important;
	-o-transform:translateY(0px)!important;
	-ms-transform:translateY(0px)!important;
	
	-webkit-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	-moz-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	-o-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
}

.anim-transy2 {
	transform:translateY(0px)!important;
	-webkit-transform:translateY(0px)!important;
	-moz-transform:translateY(0px)!important;
	-o-transform:translateY(0px)!important;
	-ms-transform:translateY(0px)!important;
    
	-webkit-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	-moz-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	-o-transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
	transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) .5s;
    opacity:1!important;
}

/** arrow pulse **/

.scroll-down {
    margin: 0;
    border: none;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 50px;
    height: 50px;
    margin-left: -15px;
    z-index: 99999999999999999;
}

.scroll-down a {
	text-decoration: none;
}

.scroll-down a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb07 2s infinite;
	animation: sdb07 2s infinite;
	opacity: 0;
	box-sizing: border-box;
}

.scroll-down a p {
	position: relative;
    bottom: -80px;
    margin-left: -10%;
    font-family: "neutra", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.scroll-down a span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.scroll-down a span:nth-of-type(2) {
	top: 16px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
}
.scroll-down a span:nth-of-type(3) {
	top: 32px;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}
@-webkit-keyframes sdb07 {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes sdb07 {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



.gridder-list .bgbtn {
    width: calc(100vw/12);
    height: calc(100vw/12);
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
    top: 5%;
    background: rgba(0,0,0,.15);
    left: 15%;
    filter: blur(5px);
    
}

.gridder-list .bgbtn.idvisual    { background:rgba(71,62,198,.15);  }
.gridder-list .bgbtn.dsgstrat    { background:rgba(216,33,94,.15);   }
.gridder-list .bgbtn.branding    { background:rgba(49,169,201,.15); }
.gridder-list .bgbtn.dsgcollat   { background:rgba(62,193,62,.15);  }
.gridder-list .bgbtn.dsginstruc  { background:rgba(117,29,29,.15);  }
.gridder-list .bgbtn.devweb      { background:rgba(174,38,178,.15); }
.gridder-list .bgbtn.dsgserv     { background:rgba(226,129,41,.15); }
.gridder-list .bgbtn.devnegocios { background:rgba(218,221,55,.15); }

.gridder-list.selectedItem .bgbtn {
    display:block;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    animation-iteration-count: infinite;   
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.4, .4, .4);
            transform: scale3d(.4, .4, .4);
  }

  50% {
    opacity: 0.5;
  }
  
  100% {
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.4, .4, .4);
            transform: scale3d(.4, .4, .4);
  }

  50% {
    opacity: 0.5;
  }
  
  100% {
    opacity: 0;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

#modal-right .cases-categs li[data-balloon] {
  overflow: visible; }

[data-balloon] {
  position: relative;
  cursor: pointer; }
  [data-balloon]:after {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    font-family: sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-shadow: none !important;
    font-size: 12px !important;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 4px;
    color: #fff;
    content: attr(data-balloon);
    padding: .5em 1em;
    position: absolute;
    white-space: nowrap;
    z-index: 9999999999999999999999999; }
  [data-balloon]:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    content: '';
    position: absolute;
    z-index: 9999999999999999999999999; }
  [data-balloon]:hover:before, [data-balloon]:hover:after, [data-balloon][data-balloon-visible]:before, [data-balloon][data-balloon-visible]:after {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto; }
  [data-balloon].font-awesome:after {
    font-family: FontAwesome; }
  [data-balloon][data-balloon-break]:after {
    white-space: pre; }
  [data-balloon][data-balloon-blunt]:before, [data-balloon][data-balloon-blunt]:after {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none; }
  [data-balloon][data-balloon-pos="up"]:after {
    bottom: 100%;
    left: 50%;
    margin-bottom: 11px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up"]:before {
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up"]:hover:after, [data-balloon][data-balloon-pos="up"][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos="up"]:hover:before, [data-balloon][data-balloon-pos="up"][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos="up-left"]:after {
    bottom: 100%;
    left: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-left"]:before {
    bottom: 100%;
    left: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-left"]:hover:after, [data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-left"]:hover:before, [data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-right"]:after {
    bottom: 100%;
    right: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-right"]:before {
    bottom: 100%;
    right: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-right"]:hover:after, [data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-right"]:hover:before, [data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down']:after {
    left: 50%;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px); }
  [data-balloon][data-balloon-pos='down']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 50%;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px); }
  [data-balloon][data-balloon-pos='down']:hover:after, [data-balloon][data-balloon-pos='down'][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos='down']:hover:before, [data-balloon][data-balloon-pos='down'][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos='down-left']:after {
    left: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-left']:hover:after, [data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-left']:hover:before, [data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-right']:after {
    right: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    right: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-right']:hover:after, [data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-right']:hover:before, [data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='left']:after {
    margin-right: 11px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%); }
  [data-balloon][data-balloon-pos='left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    margin-right: 5px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%); }
  [data-balloon][data-balloon-pos='left']:hover:after, [data-balloon][data-balloon-pos='left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='left']:hover:before, [data-balloon][data-balloon-pos='left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='right']:after {
    left: 100%;
    margin-left: 11px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%); }
  [data-balloon][data-balloon-pos='right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    left: 100%;
    margin-left: 5px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%); }
  [data-balloon][data-balloon-pos='right']:hover:after, [data-balloon][data-balloon-pos='right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='right']:hover:before, [data-balloon][data-balloon-pos='right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-length='small']:after {
    white-space: normal;
    width: 80px; }
  [data-balloon][data-balloon-length='medium']:after {
    white-space: normal;
    width: 150px; }
  [data-balloon][data-balloon-length='large']:after {
    white-space: normal;
    width: 260px; }
  [data-balloon][data-balloon-length='xlarge']:after {
    white-space: normal;
    width: 380px; }
    @media screen and (max-width: 768px) {
      [data-balloon][data-balloon-length='xlarge']:after {
        white-space: normal;
        width: 90vw; } }
  [data-balloon][data-balloon-length='fit']:after {
    white-space: normal;
    width: 100%; }