/* ****************************
FONTS
**************************** */

@font-face {
    font-family: 'Titling Gothic Cond';
    font-weight: bold;
    font-style: bold;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBCond-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Titling Gothic Cond';
    font-weight: normal;
    font-style: normal;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBCond-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Titling Gothic Cond';
    font-weight: lighter;
    font-style: lighter;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBCond-Light.woff') format('woff');
}

@font-face {
    font-family: 'Titling Gothic Cond';
    font-weight: thin;
    font-style: thin;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBCond-Thin.ttf') format('ttf');
}

@font-face {
    font-family: 'Titling Gothic Ext';
    font-style: medium;
    font-weight: 400;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBExtended-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Titling Gothic Nar';
    font-weight: lighter;
    font-style: lighter;
    src: url('https://files.cargocollective.com/c1467694/TitlingGothicFBNarrow-Light.ttf') format('ttf');
}

/* ****************************
ROOT VARIABLES
**************************** */

:root {
    /* shared colors */
    --color-primary: #000;
    --color-secondary: #fff;
    
    /* homepage */
    --homepage-landing-height: 100vh;
    --homepage-landing-width: 100vw;
    
    /* paralaxe circle svg */
    --paralaxe-circle-size: 280px;
    --paralaxe-circle-bg: var(--color-secondary);
    --paralaxe-circle-txt: var(--color-primary);

    /* font-family */
    --font-family-cond: 'Titling Gothic Cond', Helvetica, sans-serif, Icons;
    --font-family-ext: 'Titling Gothic Ext', Helvetivca, sans-serif, Icons;

    --font-family-nar: 'Titling Gothic Nar', Helvetivca, sans-serif, Icons;

    /* font-size */
    --font-size-body: 1.8rem;
    --font-size-h1: 3.8rem;
    --font-size-h2: 1.8rem;
}


/* ****************************
Paralaxe SVG homepage
**************************** */

.paralaxe-circle {
    z-index: 1;
	pointer-events: none;
    position: sticky;
    width: var(--paralaxe-circle-size);
  	top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: 7s infinite linear rotateme;
    position: fixed;
    mix-blend-mode: difference;
}

@keyframes rotateme {
    100% { transform: translate(-50%,-50%) rotate(360deg); }
}

.paralaxe-circle__bg {
	fill: var(--paralaxe-circle-bg);
}

.paralaxe-circle__txt {
	fill: var(--paralaxe-circle-txt);
}


/* ****************************
MENU & FOOTER
**************************** */

.pinned .page_container  {
    mix-blend-mode: difference;
}

.pinned_top .apage_container:hover {
    background-color: var(--color-primary);
}

.menu, .footer { 
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   margin: 1rem 3.5rem !important;
   margin-bottom: 4rem;
}

.menu a,
.footer a {
    font-family: var(--font-family-ext);
    font-size: 16px;
    line-height: 1.3;	
    letter-spacing: 0.1rem;
    margin-right: 3rem;
    transition: 0.3s;
    text-decoration: none;
    color: var(--color-secondary);
}
.menu a:after,
.footer a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
}

.menu a:hover:after,
.footer a:hover:after {
    transition: width .3s ease;
    width: 100%;
}

.menu a.active:after,
.footer a.active:after{
	color: var(--color-secondary);
	width: 100%;
}

.paralaxFooter {
    /* to override cargo styles */
	text-align: right;
}

.paralaxeLogo {
    fill: var(--color-secondary);
    width: 15vw;
    mix-blend-mode: difference;
}

/* Hiding cargo logo */

.toolset {
	opacity: 1%!important;
}


/* ****************************
HOMEPAGE
**************************** */

.homepage, .image-gallery {
	/*background-color: var(--color-secondary);*/
   /*por aqui o filter grayscale depois*/
}

.homepage .gallery_card_image {
   -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.homepage-landing {
    background-color: var(--color-primary);
    width: var(--homepage-landing-width);
    height: var(--homepage-landing-height);
    filter: grayscale(100%);
}

.content .page_content [image-gallery-gutter="18"]{
	margin: 0 !important;
    /*used import because to compensate the page being 100% now*/
}


/* Gemini buttons  */

.buttons {
	margin-top: 20px;
}
.btn {
  border: none;
  background-color: white;
  color: #222;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1;
  transition: all ease 0.5s;
}

.btn.secondary {
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1;
  transition: all ease 0.5s;
}

.btn:nth-child(2n) {
	margin-left: 12px;
}

.btn:hover {
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);
}

.btn-blocked {
	opacity: 40%;
}


/* moldura */

.add {
    display: relative;  
}

.gemini-video {
    position: relative;
	padding-top: 12% 0;
    
}


/* ****************************
SHAKE VANANCIO
**************************** */

#myModal {
  margin: 0 auto;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  text-align: center;
}

#myModal.popup {
  border: 2px solid #2a2a2a;
  background-color: #2a2a2a;
  color: #fff;
  border-radius: 4px;
  min-width: 150px;
  padding: 15px 10px;
  position: absolute;
  right: 0;
  transform: translate(500px, 0);
  transition: all ease 0.5s;
}

#myModal.popup.popup-accept {
    top: 0;
  }
#myModal.popup.popup-cancel {
    bottom: 0;
    padding-top: 10px;
  }
#myModal.popup.show {
    transform: translate(0, 0);
    transition: all ease 0.5s;
  }


/* ****************************
SHAKE VANANCIO
**************************** */


/* ****************************
Index e Agenda
**************************** */


.Indextable {
	margin: 130px auto !important;
    width: 85%;
}
	
.Agenda,
.Edicoes {
	margin: 150px auto !important;
}

.tableTitle {
    margin-bottom: 15px!important;
}

.tableTitle span {
	font-family: var(--font-family-nar);
	font-size: 14px;
    line-height: 1.3em;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tableLine {
    text-decoration: none!important;
    padding: 0!important;
    margin-top: 12px!important;
    border-top: 1px solid black!important;
}

.tableLine img,
.Agenda {
    filter: grayscale(100%);
    padding: 0px; 
}

.tableLine .title,
.AgendaItem .title {
    font-family: var(--font-family-ext);
	font-size: 12px;
    line-height: 1.3em;
    color: var(--color-primary);
    font-weight: 800;
}

.tableLine .description,
.AgendaItem .description {
    font-family: var(--font-family-nar);
    font-size: 16px;
    line-height: 1.3em;
    color: var(--color-primary);
    font-weight: 400;
}

/* hover effect */

.tableLine:hover {
    background-color: var(--color-primary);
}

.tableLine:hover .title,
.tableLine:hover .description {
    color: var(--color-secondary);
}


/* ****************************
Agenda
**************************** */

.Agenda,
.Edicoes {
	margin: 20px auto !important;
}

.AgendaItem .title {
    color: var(--color-secondary);
    line-height: 1;;
}

.AgendaItem .description {
    color: var(--color-secondary);
}

/* ****************************
COMMON STYLE TO ALL PAGES
**************************** */

.content_container {
	background-color: var(--color-secondary);
}
/* ****************************
Francisco Venancio - Shake Effect
[href="Francisco-Venancio"]
**************************** */

.shake {
	 animation: shake 0.5s;
     animation-iteration-count: 4;
}

.shake:hover {
	 animation: shake 0.5s infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* ****************************
Maria von Hafe - Image hover
**************************** */


.img-hover {
    position: relative;
	display: inline-block;
}

.img-hover .img-top {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}
    

.img-hover:hover .img-top {
   display: inline;
}

/* ****************************
 Content
**************************** */

/**
 * Editor styles */


/** a:active {
	opacity: 0.7;
} 

.page a.active {
	opacity: .4;
} */

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
    
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 1em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(0, 0, 0, 0.86);
	border: 0;
	height: 1px;
	display: block;
}

.content img {
	float: none;
	margin-bottom: 0;
    vertical-align: bottom;
}

.gallery_image_caption {
    margin-top: .5rem;
    margin-bottom: 3rem;
    font-size: 9rem;
	font-weight: 400;
	color: rgba(255, 202, 0, 1);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
	font-style: normal;
	line-height: 1.1;
    text-align: right;
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

[data-predefined-style="true"] bodycopy {
    font-size: var(--font-size-body);
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-family-cond);
    font-style: normal;
    line-height: 1.3;
}

[data-predefined-style="true"] h1 {
	font-size: var(--font-size-h1);
    font-weight: 500;
    color: #000;
    padding: 0;
	margin: 0;
    font-family: var(--font-family-ext);
    font-style: medium;
    line-height: 1.1;
}

[data-predefined-style="true"] h2 {
    font-family: var(--font-family-ext);
    font-size: var(--font-size-h2);
    line-height: 0.9;
    max-width: 100%;
    font-weight: 100;
    letter-spacing: 0.1rem;
    color: var(--color-primary);
}

[data-predefined-style="true"] h2 a {
	color: rgba(0, 0, 0, 0.85);
}

[data-predefined-style="true"] small {
	font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-family-cond);
    font-style: medium;
    line-height: 1.3;	
}

[data-predefined-style="true"] small a {
	color: var(--color-primary);
	border-bottom-width: 0em;
}

/**
 * Breakpoints */

[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
}

[data-css-preset] body {
	background-color: transparent/*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100%/*!content_left*/;
}

[data-css-preset] .content_padding {
	padding-top: 0rem /*!main_margin*/;
	padding-bottom: 0rem /*!main_margin*/;
	padding-left: 0rem /*!main_margin*/;
	padding-right: 0rem /*!main_margin*/;
}

[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 94%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 1rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -2rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.5rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -1rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.2rem;
    margin-bottom: .3rem;
	font-size: 2rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: "TeX Gyre Heros Condensed", Icons;
	font-style: normal;
	line-height: 1.3;
}

.thumbnails .tags {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
	font-weight: 400;
	 color: rgba(255, 0, 0, 1);
    font-family: "TeX Gyre Heros Condensed", Icons;
	font-style: normal;
	line-height: 1.2;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(255, 0, 0, 1);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 0rem;
}

/**
 * Site Menu Button
 */
#site_menu_button {
    color: var(--color-secondary);
    mix-blend-mode: difference;
    line-height: 1;
    font-size: 28px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    position: fixed;
    top: .5rem /*!site_menu_button*/;
	right: .5rem /*!site_menu_button*/;
    transition: all .25s ease;
}

#site_menu_button {
     font-size: 34px;
}

#site_menu_button:hover,
#site_menu_button:active {
	transform: rotate(90deg);
}

/**
 * Site Menu
 */

#site_menu {
    position: relative;
	font-family: var(--font-family-ext);
	font-size: 18px;
    line-height: 1.5;
	font-style: normal;
	font-weight: 400;
	padding: 1rem 30px 90px 30px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
    min-width: 100%;
    max-width: 100%;
}

body.mobile #site_menu {
	width: 100vw;
    height: 100vh;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

/** #site_menu a:active {
	opacity: 1;
} */

/** #site_menu a.active {
	opacity: .4;
} */

#site_menu .close {
    color: var(--color-secondary);
    font-family: var(--font-family-ext);
    font-size: 34px /*!site_menu_button*/;
    padding: 6px;
    line-height: 1;
    position: fixed;
    top: .5rem /*!site_menu_button*/;
	right: .5rem /*!site_menu_button*/;
    transform: rotate(45deg);
    transition: all .25s ease;
}
#site_menu .close:hover,
#site_menu .close:active {
    transform: rotate(0deg);
	
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/**
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(0, 0, 0, 0.85);
    background: transparent;
	font-size: 32px;
    font-style: normal;
	font-weight: 400;
    line-height: 1;
    position: fixed;
	padding: 6px;
	top: .5rem /*!shop_button*/;
	right: .5rem /*!shop_button*/;
}

#shop_button.text {
    font-family: "TeX Gyre Heros Condensed", Icons;
	font-size: 2rem;
    padding: 0;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-style: normal;
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 36px;
}

/**
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price {
	font-family: Bagnard, Icons;
	font-size: 1.8rem;
	line-height: 1;
	color: rgba(255, 0, 0, 1);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .dropdown {
    font-family: Bagnard, Icons;
    font-size: 1.4rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: .7rem 2rem .7rem 1rem;
	font-style: normal;
	font-weight: 400;
}

.shop_product .button {
    font-family: Bagnard, Icons;
	font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem;
	font-style: normal;
	font-weight: 400;
}

/**
 * Image Zoom 
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 2.5rem /*!quick_view_padding*/;
    padding-bottom: 2.5rem /*!quick_view_padding*/;
    padding-left: 2.5rem /*!quick_view_padding*/;
    padding-right: 2.5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}


[data-css-preset] .quick-view-background {
	background: rgba(0, 0, 0, 0.85) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.5);
    color: white;
}

/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: #000;
    stroke-width: 2.5px;
    opacity: 0.6;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: #000;
    stroke-width: 2.5px;
    opacity: 0.6;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery {
	margin-top: 50px!important;
}


.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: #000;
    stroke-width: 2.5px;
    opacity: 0.6;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: #fff;
    stroke-width: 1.5px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: #000;
    stroke-width: 2.5px;
    opacity: 0.6;
}

/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}

/**
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(0,0,0,0.15);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.85);
}

.audio-player .icon {
    fill: rgba(0, 0, 0, 0.85);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 1rem;
    fill: rgba(0, 0, 0, 0.5);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}

/**
 * Quick fix to center page
 */


.page {
	margin: 0 auto !important;
    width: 100%;
}

.gallery_card {
	z-index: 0!important;
}
/* ****************************
MOBILE
**************************** */

@media only screen and (max-width: 768px) {
    :root {
        
        /* homepage */
         --homepage-landing-height: 105vh;
        
 		/* paralaxe circle svg */        
        --paralaxe-circle-size: 180px;
       
        /* font-size 
        --font-size-body: 8rem;
        --font-size-h1: 16rem;
        --font-size-h2: 10rem;*/
    }
    
    .image-gallery {
		margin: 0!important;
    	padding-top: 20px!important;
	}
    .Indextable {
	margin: 50px auto !important;
    width: 100%;
    }

    .tableTitle {
        visibility: hidden;
    }
    
    .tableLine {
        margin-bottom: 20px!important;
    }
    
    .tableLine div {
     	width: 100%;
    }
    
    .tableLine div:nth-of-type(2) {
     	margin-top: 10px;
    }
     .tableLine div:nth-of-type(3) {
     	margin-top: -5px;
         margin-bottom: 10px;
    }
    .buttons {
	    margin-top: 70px;
        margin-left: 20%;
        margin-right: 14%;
	}

    .buttons iframe {
		width: 100%!important;
        height: 120px!important;
}
    
    .moldura .image-gallery {
        position: absolute;
        width: 120%!important;
     	left: -9%;
    }

}



