/*-----------------------------------------------------------------------------------
	Danks Produções
	About: A shiny new Blocs website.
	Author: Danks
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#000000;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-center{
	-webkit-background-size: auto;
}
.bg-repeat{
	background-repeat:repeat!important;
}
.bg-t-edge{
	background-position: top!important;
	background-repeat: no-repeat;
}
.bg-b-edge{
	background-position: bottom!important;
	background-repeat: no-repeat;
}
.bg-tl-edge{
	background-position: top left!important;
	background-repeat: no-repeat;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-paper::before{
	background: url("img/texture-paper.png");
	background-size: 280px 280px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}
.btn-glossy{
	border:1px solid rgba(0,0,0,.09);
	border-bottom-color:rgba(0,0,0,.2);
	text-shadow:0 1px 0 rgba(0,0,1,.2);
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	 background-image: -o-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
}

/* = Icons
-------------------------------------------------------------- */
.icon-sm{
	font-size:18px!important;
}
.icon-md{
	font-size:30px!important;
}

/*  Rounded Image */
.img-rd-md{
	border-radius:20px;
}
.img-rd-lg{
	border-radius:34px;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.glow-t{
	text-shadow:0 0 10px #FFF;
}
.text-justify{
	text-align: justify;
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.hide-indicators{
	display:none;
}

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* Toggle Visibility */
.toggled-item{
	transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;
	overflow: hidden;
}
.toggled-item-hidden{
	padding-top:0!important;
	padding-bottom:0!important;
	border-top:0!important;
	border-bottom:0!important;
	outline:0!important;
	opacity: 0;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Ubuntu";
}
.container{
	max-width:1140px;
}
.h1-style{
	font-family:"Ubuntu";
	letter-spacing:3px;
	font-size:90px;
	margin-top:-1px;
	padding-top:0px;
	padding-bottom:0px;
}
.h2-style{
	font-family:"Ubuntu";
	width:23.68%;
	text-shadow:0.00px -3.00px 10px #6F6F6F;
}
.container-enter{
	display:flex;
	justify-content:center;
	font-family:"Ubuntu";
}
.link-style{
	text-decoration:none;
}
.link-audiovisual-style{
	text-decoration:none;
}
.link-musical-style{
	text-decoration:none;
	font-family:"Ubuntu";
}
.h3-style{
	font-family:"Ubuntu";
	margin-top:0px;
	margin-bottom:24px;
	padding-bottom:0px;
	padding-top:0px;
	text-shadow:0.00px -3.00px 10px #6F6F6F;
}
.h4-style{
	font-family:"Ubuntu";
	font-weight:bold;
	font-size:14px;
	text-align:center;
}
.h3-biografia-style{
	font-family:"Ubuntu";
	font-size:30px;
	text-shadow:0.00px -0.00px 10px #000000;
	margin-top:0px;
	padding-top:13px;
	margin-bottom:24px;
	padding-bottom:11px;
	font-weight:normal;
}
.p-style{
	font-family:"Ubuntu";
	font-weight:normal;
}
.bloc-margin-bottom{
	margin-bottom:0px;
}
.disco{
	display:flex;
	justify-content:flex-start;
	row-gap:25px;
}
.p-bloc-4-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.p-3-style{
	font-family:"Ubuntu";
	font-size:16px;
}
.p-4-style{
	font-size:14px;
	font-family:"Ubuntu";
	width:100%;
}
.p-6-style{
	font-size:14px;
	font-family:"Ubuntu";
}
.p-7-style{
	font-size:14px;
	font-family:"Ubuntu";
}
.row-padding-bottom{
	padding-bottom:0px;
	margin-bottom:59px;
}
.bloc-padding-top{
	padding-bottom:0px;
	margin-bottom:252px;
}
.img-style{
	width:289px;
}
.bloc-padding-bottom{
	padding-bottom:0px;
}
.button{
	font-weight:bold;
}
.button-url{
	font-weight:normal;
	font-family:"Ubuntu";
	font-size:12px;
}
.row-bloc-5-margin-bottom{
	margin-bottom:-1px;
	padding-bottom:0px;
}
.carousel-fotos{
	width:700px;
}
.bloc-divider-t-style{
	width:100%;
	height:200px;
	fill:var(--swatch-var-6516);
}
.row-margin-left{
	margin-left:-43px;
	padding-left:28px;
}
.row-style{
	width:92.19%;
}
.row-padding-top{
	padding-top:0px;
	margin-top:-1px;
	width:100%;
}
.redes-sociasi-02{
	display:flex;
	align-items:center;
	justify-content:center;
	column-gap:80px;
}
.row-bloc-0-margin-top{
	padding-right:230px;
	padding-left:230px;
}
.logo{
	font-weight:bold;
	text-shadow:0.00px -0.00px 50px #000000;
	font-size:30px;
	font-family:"Ubuntu";
}
.link-contato-style{
	text-decoration:none;
}
.h4-17-style{
	width:100%;
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-18-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-19-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-20-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-casa-da-vivi-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-title-here-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-23-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h4-24-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.h3-10-style{
	font-size:20px;
}
.h3-11-style{
	font-size:20px;
	font-family:"Ubuntu";
}
.img-bloc-13-style{
	width:558px;
}
.h4-25-style{
	font-size:22px;
}
.h4-26-style{
	font-size:22px;
}
.quote-text{
	font-size:26px;
	font-style:italic;
}
.h4-34756-style{
	font-size:22px;
}
.h4-19399-style{
	font-size:22px;
}
.h4-27-style{
	font-size:22px;
}
.h4-28-style{
	font-size:22px;
}
.h1-2-style{
	font-size:30px;
	font-family:"Ubuntu";
}
.h3-6456-style{
	font-size:22px;
	font-family:"Ubuntu";
}
.h3-36411-style{
	font-size:22px;
	font-family:"Ubuntu";
}
.h3-12-style{
	font-size:22px;
	font-family:"Ubuntu";
}
.h3-13-style{
	font-size:22px;
	font-family:"Ubuntu";
}
.img-licenciatu-style{
	width:558px;
}
.row-bloc-12-style{
	width:100%;
}
.p-bloc-9-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-5-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-8-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-9-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-10-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-11-style{
	font-family:"Ubuntu";
	font-size:14px;
}
.p-bloc-12-style{
	font-family:"Ubuntu";
}
.p-13-style{
	font-family:"Ubuntu";
}
.p-14-style{
	font-family:"Ubuntu";
}
.p-15-style{
	font-family:"Ubuntu";
}
.h2-bloc-13-style{
	font-family:"Ubuntu";
	font-size:28px;
}
.p-16-style{
	font-size:16px;
	font-family:"Ubuntu";
}
.p-17-style{
	font-size:20px;
}
.p-18-style{
	font-size:16px;
	font-family:"Ubuntu";
}
.p-19-style{
	font-family:"Ubuntu";
}
.h5-style{
	font-family:"Ubuntu";
}
.h3-bloc-12-style{
	font-family:"Ubuntu";
}
.p-bloc-13-style{
	font-family:"Ubuntu";
	font-size:16px;
}
.link-início-style{
	font-weight:bold;
}
.link-0-style{
	font-weight:bold;
}
.link-0-audiovisual-style{
	font-weight:bold;
}
.link-ensino-style{
	font-weight:bold;
}
.img-46-style{
	width:800px;
}
.p-22-style{
	font-family:"Ubuntu";
}
.p-23-style{
	font-family:"Ubuntu";
}
.carousel-bloc-10-style{
	width:100%;
}
.link-portfólio-style{
	font-weight:bold;
}
.carousel-bloc-4-style{
	width:81.93%;
}
.container-div-padding-bottom{
	min-height:307px;
}
.row-bloc-6-style{
	width:96.84%;
}
.divider-background-color{
	background-color:var(--swatch-var-6131);
	height:3px;
}
.carousel-2-style{
	width:68.86%;
}
.p-bloc-10-style{
	font-size:16px;
}
.row-bloc-10-style{
	width:78.42%;
}
.row-21-style{
	width:97.72%;
}
.row-23-style{
	width:73.42%;
}
.img-cd-itinerante-style{
	height:200px;
	width:200px;
}
.img-body-mi-style{
	width:200px;
}
.img-bloc-4-style{
	width:200px;
}
.img-cd-paralelo31-style{
	width:200px;
}
.img-cd-mandragora-style{
	width:200px;
}
.img-cd-a-moda-style{
	width:200px;
}
.img-cd-contrast-style{
	width:200px;
}
.card-style{
	width:82.02%;
}
.card-bloc-4-style{
	width:82.02%;
}
.card-2-style{
	width:82.4%;
}
.card-1-style{
	width:82.4%;
}
.card-5-style{
	width:82.4%;
}
.card-6-style{
	width:83.15%;
}
.card-7-style{
	width:82.02%;
}
.row-26-style{
	width:100%;
}
.row-25-style{
	width:100%;
}
.carousel-bloc-12-style{
	width:100%;
}
.img-bloc-6-style{
	width:346px;
}
.bloc-fill{
	fill:var(--swatch-var-4639);
}
.bloc-divider-b-style{
	height:131px;
	fill:var(--swatch-var-6516);
}
.bloc-divider-t-bloc-0-style{
	height:140px;
}
.bloc-divider-b-bloc-0-style{
	height:140px;
}
.bloc-divider-t-bloc-9-style{
	height:38px;
}
.p-11-bloc-9-style{
	font-size:20px;
}
.p-13-bloc-9-style{
	font-size:20px;
}
.p-15-bloc-9-style{
	font-size:20px;
}
.p-19-bloc-9-style{
	font-size:20px;
}
.p-21-style{
	font-size:20px;
}
.p-977-style{
	font-size:20px;
}
.p-27-style{
	font-size:20px;
}
.link-0-contato-style{
	font-weight:bold;
	font-style:normal;
}
.p-12-style{
	font-size:14px;
}
.p-14-bloc-9-style{
	font-size:14px;
}
.p-16-bloc-9-style{
	font-size:14px;
}
.p-18-bloc-9-style{
	font-size:14px;
}
.p-20-style{
	font-size:14px;
}
.p-22-bloc-9-style{
	font-size:14px;
}
.img-danks-b-style{
	width:221px;
}
.img-12-style{
	width:236px;
}
.img-img-85-style{
	width:253px;
}
.img-background-fot-style{
	width:368px;
}
.img-backgrou-style{
	width:364px;
}
.container-div-min-height{
	min-height:632px;
}
.p-65-style{
	width:100%;
	font-size:12px;
	letter-spacing:1px;
	text-indent:px;
}
.container-div-style{
	width:100%;
}
.h3-bloc-9-style{
	font-size:24px;
}
.link-audio-style{
	font-weight:bold;
	text-align:center;
	color:var(--swatch-var-1345)!important;
	font-family:"Ubuntu";
	background-color:var(--swatch-var-1345);
	background-size:length;
	background-clip:content-box!important;
	-webkit-background-clip:content-box!important;
	background:radial-gradient(var(--swatch-var-6131) 0%, var(--swatch-var-171)  100%);
	margin-top:-4px;
	border-radius:39px 39px 39px 39px;
	box-shadow:inset 0.00px -0.00px 20px #000000;
	text-shadow:0.00px -0.00px 0px #000000;
}
.link-videos-style{
	font-weight:bold;
	color:var(--swatch-var-4639)!important;
	text-align:center;
	font-family:"Ubuntu";
	background-color:var(--swatch-var-1345);
	background-size:length;
	background-clip:content-box!important;
	-webkit-background-clip:content-box!important;
	background:radial-gradient(var(--swatch-var-6131) 0%, var(--swatch-var-171)  100%);
	text-transform:uppercase;
	margin-top:35px;
	border-radius:30px 30px 30px 30px;
	text-shadow:0.00px -0.00px 0px #000000;
	box-shadow:inset 0.00px -3.00px 20px #000000;
}
.img-43-style{
	width:282px;
}
.submenu{
	font-family:"Ubuntu";
	background-size:length;
	background-color:var(--swatch-var-59);
}
.borda{
	border-radius:15px 15px 15px 15px;
}
.img-livre-movimen-style{
	height:282px;
	width:282px;
}
.img-corpo-movimen-style{
	width:282px;
}
.link-musical-style:hover{
	font-family:"Ubuntu";
	font-weight:normal;
	color:var(--swatch-var-6131)!important;
}
.link-audiovisual-style:hover{
	font-family:"Ubuntu";
	color:var(--swatch-var-6131)!important;
}
.link-style:hover{
	font-family:"Ubuntu";
	color:var(--swatch-var-6131)!important;
}
.logo:hover{
	font-family:"Ubuntu";
}
.img-bloc-0-style{
	width:35px;
}
.img-47-style{
	width:311px;
	border-radius:12px 12px 12px 12px;
}
.h5-bloc-9-style{
	font-size:18px;
}
.h5-8-style{
	font-size:18px;
}
.h5-6-style{
	font-size:24px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-2869:rgba(111,111,111,1.00);
	
	--swatch-var-4639:rgba(0,0,0,1.00);
	
	--swatch-var-2941:rgba(255,255,255,1.00);
	
	--swatch-var-6532:rgba(192,193,193,1.00);
	
	--swatch-var-1345:rgba(255,153,51,1.00);
	
	--swatch-var-171:rgba(255,153,51,0.29);
	
	--swatch-var-7787:rgba(111,111,111,0.30);
	
	--swatch-var-6516:rgba(0,0,0,0.30);
	
	--swatch-var-3323:rgba(192,193,193,0.30);
	
	--swatch-var-59:rgba(255,153,51,0.00);
	
	--swatch-var-3789:rgba(255,153,51,0.00);
	
	--swatch-var-4102:rgba(255,153,51,0.70);
	
	--swatch-var-757:#FEFFFF;
	
	--swatch-var-6131:rgba(255,38,0,1.00);
	
	--swatch-var-2634:rgba(255,38,0,0.30);
	
}


/* Background colour styles */

.bgc-2869{
	background-color:var(--swatch-var-2869);
}
.bgc-2634{
	background-color:var(--swatch-var-2634);
}
.bgc-6516{
	background-color:var(--swatch-var-6516);
}
.bgc-7787{
	background-color:var(--swatch-var-7787);
}
.bgc-2941{
	background-color:var(--swatch-var-2941);
}

/* Text colour styles */

.tc-6131{
	color:var(--swatch-var-6131)!important;
}
.tc-6532{
	color:var(--swatch-var-6532)!important;
}
.tc-2941{
	color:var(--swatch-var-2941)!important;
}
.tc-4639{
	color:var(--swatch-var-4639)!important;
}
.tc-1345{
	color:var(--swatch-var-1345)!important;
}

/* Button colour styles */

.btn-c-2634{
	background:var(--swatch-var-2634);
	color:#FFFFFF!important;
}
.btn-c-2634:hover{
	background:rgba(204,0,0,0.30)!important;
	color:#FFFFFF!important;
}
.btn-c-6516{
	background:var(--swatch-var-6516);
	color:#FFFFFF!important;
}
.btn-c-6516:hover{
	background:rgba(0,0,0,0.30)!important;
	color:#FFFFFF!important;
}
.btn-c-4639{
	background:var(--swatch-var-4639);
	color:#FFFFFF!important;
}
.btn-c-4639:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}
.btn-c-2869{
	background:var(--swatch-var-2869);
	color:#FFFFFF!important;
}
.btn-c-2869:hover{
	background:#3C3C3C!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-6131{
	color:var(--swatch-var-6131)!important;
}
.ltc-6131:hover{
	color:#CC0000!important;
}
.ltc-2941{
	color:var(--swatch-var-2941)!important;
}
.ltc-2941:hover{
	color:#CCCCCC!important;
}

/* Bloc image backgrounds */

.bg-background-01{
	background-image:url("img/background_01.jpg");
	background-image: -webkit-image-set(url("img/background_01.webp") 1x,
url("img/background_01.webp") 2x);background-image: image-set(url("img/background_01.jpg") 1x,
url("img/background_01.jpg") 2x,url("img/background_01.webp") 1x,
url("img/background_01.webp") 2x);
}
.bg-Carol-20Berçot-disco{
	background-image:url("img/Carol%20Berc%CC%A7ot_disco.jpg");
}
.bg-mesa-som-bio{
	background-image:url("img/mesa_som_bio.jpg");
	background-image: -webkit-image-set(url("img/mesa_som_bio.webp") 1x,
url("img/mesa_som_bio.webp") 2x);background-image: image-set(url("img/mesa_som_bio.jpg") 1x,
url("img/mesa_som_bio.jpg") 2x,url("img/mesa_som_bio.webp") 1x,
url("img/mesa_som_bio.webp") 2x);
}
.bg-background-fotos{
	background-image:url("img/background_fotos.jpg");
	background-image: -webkit-image-set(url("img/background_fotos.webp") 1x,
url("img/background_fotos.webp") 2x);background-image: image-set(url("img/background_fotos.jpg") 1x,
url("img/background_fotos.jpg") 2x,url("img/background_fotos.webp") 1x,
url("img/background_fotos.webp") 2x);
}
.bg-audiovisual{
	background-image:url("img/audiovisual.png");
	background-image: -webkit-image-set(url("img/audiovisual.webp") 1x,
url("img/audiovisual.webp") 2x);background-image: image-set(url("img/audiovisual.png") 1x,
url("img/audiovisual.png") 2x,url("img/audiovisual.webp") 1x,
url("img/audiovisual.webp") 2x);
}
.bg-partitura{
	background-image:url("img/partitura.jpg");
	background-image: -webkit-image-set(url("img/partitura.webp") 1x,
url("img/partitura.webp") 2x);background-image: image-set(url("img/partitura.jpg") 1x,
url("img/partitura.jpg") 2x,url("img/partitura.webp") 1x,
url("img/partitura.webp") 2x);
}
.bg-Body-mind{
	background-image:url("img/Body_mind.jpg");
	background-image: -webkit-image-set(url("img/Body_mind.webp") 1x,
url("img/Body_mind.webp") 2x);background-image: image-set(url("img/Body_mind.jpg") 1x,
url("img/Body_mind.jpg") 2x,url("img/Body_mind.webp") 1x,
url("img/Body_mind.webp") 2x);
}
.bg-fundo-trilhas{
	background-image:url("img/fundo_trilhas.png");
	background-image: -webkit-image-set(url("img/fundo_trilhas.webp") 1x,
url("img/fundo_trilhas.webp") 2x);background-image: image-set(url("img/fundo_trilhas.png") 1x,
url("img/fundo_trilhas.png") 2x,url("img/fundo_trilhas.webp") 1x,
url("img/fundo_trilhas.webp") 2x);
}
.bg-background{
	background-image:url("img/background.jpg");
	background-image: -webkit-image-set(url("img/background.webp") 1x,
url("img/background.webp") 2x);background-image: image-set(url("img/background.jpg") 1x,
url("img/background.jpg") 2x,url("img/background.webp") 1x,
url("img/background.webp") 2x);
}
.bg-fundo-corpo{
	background-image:url("img/fundo_corpo.png");
	background-image: -webkit-image-set(url("img/fundo_corpo.webp") 1x,
url("img/fundo_corpo.webp") 2x);background-image: image-set(url("img/fundo_corpo.png") 1x,
url("img/fundo_corpo.png") 2x,url("img/fundo_corpo.webp") 1x,
url("img/fundo_corpo.webp") 2x);
}
.bg-fundo-dança{
	background-image:url("img/fundo_danc%CC%A7a.png");
}
.bg-fundo-marketing{
	background-image:url("img/fundo_marketing.png");
	background-image: -webkit-image-set(url("img/fundo_marketing.webp") 1x,
url("img/fundo_marketing.webp") 2x);background-image: image-set(url("img/fundo_marketing.png") 1x,
url("img/fundo_marketing.png") 2x,url("img/fundo_marketing.webp") 1x,
url("img/fundo_marketing.webp") 2x);
}
.bg-fundo-trilhas-2002{
	background-image:url("img/fundo_trilhas%2002.jpg");
	background-image: -webkit-image-set(url("img/fundo_trilhas%2002.webp") 1x,
url("img/fundo_trilhas%2002.webp") 2x);background-image: image-set(url("img/fundo_trilhas%2002.jpg") 1x,
url("img/fundo_trilhas%2002.jpg") 2x,url("img/fundo_trilhas%2002.webp") 1x,
url("img/fundo_trilhas%2002.webp") 2x);
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.h1-style{
		letter-spacing:3px;
		font-size:60px;
	}
	.h2-style{
		width:170px;
		font-family:"Ubuntu";
		text-transform:uppercase;
		font-size:22px;
	}
	.container-enter{
		justify-content:center;
	}
	.p-style{
		font-weight:normal;
	}
	.mt-md-0{
	}
	.mt-md-4{
	}
	.disco{
		overflow:scroll;
		flex-wrap:nowrap;
		align-items:baseline;
	}
	.fotos{
		flex-wrap:nowrap;
		display:flex;
		overflow:scroll;
		align-items:baseline;
		justify-content:flex-start;
	}
	.h3-biografia-style{
		padding-top:0px;
		margin-top:8px;
	}
	.row-style{
		width:88.3%;
	}
	.redes-sociasi-02{
	}
	.bloc-padding-top{
		margin-bottom:1px;
		padding-bottom:289px;
	}
	.row-bloc-0-margin-top{
		padding-right:100px;
		padding-left:100px;
	}
	.video{
		display:flex;
		overflow:scroll;
		flex-wrap:nowrap;
		align-items:baseline;
		justify-content:flex-start;
	}
	.logo{
		font-size:25px;
	}
	
}

@media (max-width: 767px){
	.h1-style{
		font-size:45px;
		letter-spacing:3px;
	}
	.h2-style{
		font-family:"Ubuntu";
		width:140px;
		font-size:18px;
	}
	.container-enter{
		display:flex;
		justify-content:center;
	}
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.p-style{
		font-weight:normal;
	}
	.menu-icon-stroke{
		stroke:#CBCCCC!important;
		fill:#CBCCCC!important;
	}
	.disco{
		flex-wrap:nowrap;
		overflow:scroll;
	}
	.fotos{
		display:flex;
		overflow:scroll;
		flex-wrap:nowrap;
	}
	.redes-sociais{
		width:450px;
		flex-wrap:nowrap;
		justify-content:space-between;
	}
	.redes-sociasi-02{
		flex-wrap:nowrap;
		justify-content:space-around;
	}
	.container-div-style{
	}
	.container-div-padding-bottom{
		padding-bottom:0px;
	}
	.row-bloc-0-margin-top{
		margin-top:48px;
		display:flex;
		padding:48px 60px 0px 60px;
	}
	.bloc-padding-top{
		margin-bottom:-110px;
	}
	.logo{
		font-size:20px;
	}
	.quote-text{
		font-size:22px;
	}
	
}

@media (max-width: 575px){
	.h1-style{
		font-weight:bold;
		letter-spacing:3px;
		font-size:25px;
		margin-top:-189px;
	}
	.button{
		font-family:"Ubuntu";
		font-size:12px;
		font-weight:lighter;
		text-transform:uppercase;
	}
	.h2-style{
		font-size:12px;
		font-family:"Ubuntu";
		text-align:center;
		text-transform:uppercase;
		width:100px;
		opacity:1.0;
		display:flex;
		align-items:center;
		justify-content:center;
		letter-spacing:0px;
	}
	.container-enter{
		display:flex;
		font-family:"Ubuntu";
	}
	.footer-link{
		text-align:center;
	}
	.h3-style{
	}
	.img-style{
		margin-right:143px;
	}
	.h3-biografia-style{
		display:flex;
		text-transform:none;
		text-align:center;
	}
	.bio-cel{
		display:flex;
		position:relative;
	}
	.p-style{
		font-weight:normal;
	}
	.mt-1{
	}
	.disco{
		flex-wrap:nowrap;
		overflow:scroll;
		justify-content:space-between;
	}
	.fotos{
		display:flex;
		overflow:scroll;
		flex-wrap:nowrap;
	}
	.redes-sociais{
		width:120px;
		flex-wrap:nowrap;
		display:flex;
	}
	.redes-sociasi-02{
		justify-content:space-around;
	}
	.bloc-padding-top{
		padding-top:119px;
		padding-bottom:0px;
		margin-bottom:0px;
		margin-top:-24px;
	}
	.row-padding-top{
		padding-top:0px;
		margin-top:18px;
		padding-bottom:0px;
	}
	.container-div-padding-bottom{
		padding-bottom:0px;
		margin-bottom:63px;
	}
	.row-bloc-0-margin-top{
		margin-top:0px;
		padding:0px 0px 0px 0px;
	}
	.carousel-musical{
	}
	.bloc-bloc-6-padding-top{
		padding-top:0px;
		margin-top:17px;
		padding-bottom:0px;
		margin-bottom:53px;
	}
	.video{
		flex-wrap:nowrap;
		justify-content:space-between;
		display:flex;
		overflow:scroll;
	}
	.carousel{
	}
	.logo{
		font-size:15px;
	}
	.menu-icon-stroke{
		stroke:#CBCCCC!important;
		fill:#CBCCCC!important;
	}
	.quote-text{
		font-size:18px;
	}
	
}

