html {
    scroll-behavior: unset !important;
}  

:root {  

  /** text ***/
  --bodytext: #626262;
  --blacktext: #202020;
  --greytext:#8e8e8e;
  --whitetext: #fff;
 
  /** bg **/
  --blackbg: #151515;
  --greybg:  #f6f5f2;
  --whitebg: #FFFFFF;
  --yellowbg: #fe0;

  
  /** sizes ***/
  --smallsize: 13px;
  --basesize: 13px;
  --mediumsize: max(1.4vw, 20px);
  --bigsize: max(3.2vw, 30px);
  
 /** weights ***/ 
  --thin: 100; 
  --extralight: 200; 
  --light: 300; 
  --regular: 400; 
  --medium: 500; 
  --semibold: 600;
   --bold: 700; 
   --extrabold: 800;
   --black: 900;

  /** paddings ***/
  --sidesmallpadding: 3.5vw;
  --sidepadding: 7vw;
  --sideextrapadding: 14vw;
  --verticalsmallpadding: 4vh;
  --verticalpadding: 8vh;
  --verticalextrapadding : 12vh;
  
  /*** spacing **/
  --letterspacing: 0.15em;
  
  /*** font ***/
   --primaryfont: "Montserrat", sans-serif;
  
  /** head **/
  --headheight:90px;

}



/******************** SPINNER **********************/

.spinnerwrapper {
  width: 100vw;
  height: 100svh;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  display: flex;
}

#myspinner {
  border-width: 1px;
  width: 90px;
  height: 90px;
  position: absolute;
  opacity: 0.5;
  color: var(--blacktext) !important;
}

.spinnerImage img {
  width: 30px;
  height: 30px;
  filter: invert();
  opacity: 0.7;
  margin-bottom: 4px;
}


#preloader {
  width: 100vw;
  height: 100svh;
  z-index: 0;
  position: fixed;
  left: 0;
  top: 0;
}


/*
------------------------------------------------------------------------------------------------------
:::::::: BODY & MAIN STUFF
------------------------------------------------------------------------------------------------------
*/
body {
  color: var(--bodytext) !important;
  font-family: var(--primaryfont) !important;
  font-weight: var(--regular) !important;
  font-size: var(--basesize) !important;
  line-height: 1.6em !important;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}


.primaryfont {
  font-family: var(--primaryfont) !important;
}


.row {
  margin: 0 !important;
}

.mobileonly {
  display:none !important;
}


b, strong {
  font-weight: var(--semibold) !important;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
 /* padding-right: calc(var(--sidesmallpadding) * .5) !important;
  padding-left: calc(var(--sidesmallpadding) * .5) !important;
  */
  padding:0 !important;
  margin-top: 0;
  position: relative;
}

.centered {
  margin-left: auto !important;
  margin-right: auto !important;
}



/**** bullets *******/

.bullets {
  padding: 0;
  list-style: none;
  margin-bottom: 0 !important;
}
.bullets li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.bullets li::before {
  content: "\F309";
  margin-right: 5px;
  font-family: 'bootstrap-icons';
  line-height: 100%;
}


/***** BGS ******/

.blackbg {
  background-color: var(--blackbg) !important;
  position: relative;
}
.greybg {
  background-color: var(--greybg) !important;
  position: relative;
}
.whitebg {
  background-color: var(--whitebg) !important;
  position: relative;
}



/****** flexbox ***/

.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flexbox.horizontalcentered {
    justify-content: center;
  align-items: center;
}

.flexbox.verticalcentered {
    flex-flow: column;
    justify-content: center;
}
.flexbox.row.verticalcentered {
    align-items: center;
}
.flexbox.right {
    justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.flexbox.left {
    justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.flexbox.justify {
    justify-content: space-between;
  -webkit-justify-content: space-between;
}


.flexbox.bottom {
    flex-direction: column;
    justify-content: flex-end;
}
.flexbox.top {
    flex-direction: column;
    justify-content: flex-start;
}

.flexbox.column {
    flex-direction: column;
}
.flexbox.row {
    flex-direction: row;
}
.flexbox.row.centered {
    justify-content: center;
}


/*****  HEIGHTS ********/

.fullheight {
   height:100svh !important;
}

.twothirdsheight {
  height:75svh !important;
   min-height: 500px;
}

.halfheight {
  height: 50svh !important;
  min-height: 350px;
}
.onethirdheight {
  height: 30svh !important;
  min-height: 250px;
}

.quarterheight {
  height: 25svh !important;
  min-height: 220px;
}




/******* PADDINGS **********/

.leftsmallpadding {
  padding-left: var(--sidesmallpadding) !important;
}

.leftpadding {
  padding-left: var(--sidepadding) !important;
}

.leftextrapadding {
  padding-left: var(--sideextrapadding) !important;
}

.rightsmallpadding {
  padding-right: var(--sidesmallpadding) !important;
}

.rightpadding {
  padding-right: var(--sidepadding) !important;
}

.rightextrapadding {
  padding-right: var(--sideextrapadding) !important;
}

.noleftpadding {
  padding-left:0 !important;
}
.norightpadding {
  padding-right:0 !important;
}


.topsmallpadding {
  padding-top: var(--verticalsmallpadding) !important;
}
.toppadding {
  padding-top: var(--verticalpadding) !important;
}
.topextrapadding {
  padding-top: var(--verticalextrapadding) !important;
}

.bottomsmallpadding {
  padding-bottom: var(--verticalsmallpadding) !important;
}
.bottompadding {
  padding-bottom: var(--verticalpadding) !important;
}
.bottomextrapadding {
  padding-bottom: var(--verticalextrapadding) !important;
}



/****** STICKY *******/

.sticky{
  position: sticky !important;
  position: -webkit-sticky !important;
}
.sticky.top {
    top: 0px;
}
.sticky.top0 {
    top: 0;
}
.sticky.middle{
  top:50vh;
}


/****** VIDEO ****/

.videoWrapper {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden !important;
}

.videoWrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/** when it is fullheight ***/
.videoWrapper.fullheight video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


/*** for embeded videos ***/

.videoIframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.videoIframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/**
-------------------------------------------------------------------------
::::::::  TEXT
-------------------------------------------------------------------------
**/

::selection {
  background: var(--yellowbg);/* WebKit/Blink Browsers */
   color:var(--blacktext);
}
::-moz-selection {
  background: var(--yellowbg); /* Gecko Browsers */
   color:var(--blacktext);
}


p {
  margin-bottom: 15px !important;
}

h1, h2, h3 {
 margin-bottom: 25px !important;
}


/** headings ***/

h1 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


h2 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


h3 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


/**** SIZES ***/

.smallsize {
  font-size:var(--smallsize) !important;
  line-height: 140% !important;
}

.basesize {
  font-size:var(--basesize) !important;
}

.mediumsize {
  font-size:var(--mediumsize) !important;
  line-height: 130% !important;
}

.bigsize {
  font-size:var(--bigsize) !important;
  line-height: 115% !important;
  letter-spacing: -0.03em;
}


/***** colors *****/

.blacktext {
  color:var(--blacktext) !important;
}

.greytext {
  color:var(--greytext) !important;
}

.whitetext {
 color:var(--whitetext) !important;
}



/******* weight ******/

.thin {
  font-weight: var(--thin) !important;
}
.extralight {
  font-weight: var(--extralight) !important;
}

.light {
  font-weight: var(--light) !important;
}

.regular{
  font-weight: var(--regular) !important;
}

.medium {
   font-weight: var(--medium) !important;
}
.semibold {
  font-weight: var(--semibold) !important;
}
.bold {
  font-weight: var(--bold) !important;
}
.extrabold {
  font-weight: var(--extrabold) !important;
}
.black {
  font-weight: var(--black) !important;
}



/***** position ***/

.centertext {
  text-align:center !important;
}

.righttext {
  text-align:right !important;
}

.oblique {
  font-style: italic;
}

.uppercase {
  text-transform:uppercase !important;
}

.justifytext {
  text-align:justify !important;
}

.justifytext p {
  text-align:justify !important;
}


/**** letter spacing ****/
.letterspacing {
  letter-spacing: var(--letterspacing);
}


/***** image wrapper ****/
.imagewrapper {
  position: relative;
  height: auto;
  overflow: hidden;
  width: auto;
}



/**
-------------------------------------------------------------------------
::::::::  STRUCTURE
-------------------------------------------------------------------------
**/


#wrap_all {
  background-color: #fff;
  position: relative;
  width: 100%;
  float: left;
  min-height: 100svh;
  
  -webkit-transition: opacity .5s ease-out;
  -moz-transition: opacity .5s ease-out;
  -o-transition: opacity  .5s ease-out;
  transition: opacity .5s ease-out;
  
}


#wrap_body {
  position: relative;
  width: 100%;
  float: left;
  z-index: 3;
  background-color: #fff;
  padding: 140px var(--sidepadding) 50px;
  margin-bottom: 0 !important;
  min-height: calc(100svh - 60px);
}

#stage {
  float: left;
  position: relative;
  width: 100%;
  z-index: 2;
}

#top {
    float: left;
    width: 100%;
    position: relative;
    z-index: 4;
}

#bottom {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

#footer {
  height: 60px;
  float: left;
  width: 100% !important;
  position: relative;
  bottom: 0;
  z-index: 99;
  display: flex;
  padding: 20px;
  justify-content: space-between;
}


/**
-------------------------------------------------------------------------
::::::::  BLACK PAGE
-------------------------------------------------------------------------
**/

.blackpage #wrap_all {
  background-color: var(--blackbg) !important;
}
.blackpage #wrap_body {
  background-color: var(--blackbg);
  padding-right: 0 !important;
  margin-bottom: 0 !important;
}
.blackpage #head {
  background-color: var(--blackbg) !important;
}
.blackpage #head .mod-menu .current.active a {
  color: #fff !important;
}

.blackpage #head .mod-menu .current.active a::after {
  background-color: #fff;
}
.blackpage #head a {
  color: #fff !important;
}
.blackpage #footer {
  filter: invert();
}

/**
-------------------------------------------------------------------------
::::::::  FOOTER
-------------------------------------------------------------------------
**/

.copyright {
  font-size: 11px;
  color: var(--blacktext) !important;
}
/*
.copyright {
  font-size: 11px;
  color: var(--blacktext) !important;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  position: absolute;
  bottom: 0;
}*/


.zed {
  text-transform: uppercase;
}

.zed a {
  font-size: 13px;
  color: var(--blacktext) !important;
  font-weight: var(--extrabold);
  letter-spacing: -0.1em;
  text-transform: uppercase;
}



/**
-------------------------------------------------------------------------
::::::::  HEAD
-------------------------------------------------------------------------
**/


#head {
  z-index: 9991;
  position: fixed;
  width: 100vw !important;
  height: var(--headheight) !important;
  background-color: #fff !important;
  display: flex;
  align-items: center;
  padding: 0 var(--sidepadding);
  /*justify-content: space-between;*/
}

/** show hide ***/
#head.hide-header {
  top: calc(var(--headheight) * -1);
     -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
#head.show-header {
  top: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}



/**
-------------------------------------------------------------------------
::::::::  HEAD MENUS & LOGO
-------------------------------------------------------------------------
**/

#head .mod-menu li {
  margin-left: 0;
  margin-right: 2vw;
}
#head .mod-menu a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: var(--regular);
  color: var(--basetext) !important;
  padding-bottom: 10px !important;
}
#head .mod-menu .current.active a {
  color: var(--blacktext) !important;
  font-weight: var(--medium);
}
#head .mod-menu .current.active a::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--blackbg);
  /*
  background-color: #fff;
  box-shadow: 0 0.5px 0 #000;
  */
  width: 97%;
  bottom: -3px;
}

#head .logo a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: var(--bold);
  margin-top: 0px;
  margin-right: 2vw;
  display: block;
}


/**
-------------------------------------------------------------------------
::::::::  NAV BURGUER ICON
-------------------------------------------------------------------------
**/

/**** burger menu *****/
#head .headburgermenu .openmenu {
  border: 0px solid var(--blackbg);
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 !important;
  background-color: transparent;
  flex-direction: column;
}

#head .headburgermenu .openmenu span {
  width: 30px;
  height: 2px;
  display: block;
  background-color: #fff !important;
  margin-top: 3px;
  margin-bottom: 3px;
  font-size: 0;
}


/*** on active ***/
#head.active .headburgermenu .openmenu span, .whitehead #head .headburgermenu .openmenu span {
  background-color: var(--blackbg) !important;
}


/**
-------------------------------------------------------------------------
::::::::  NAV BURGUER CONTENT
-------------------------------------------------------------------------
**/
.topmenu .eb-dialog {
  background-color:#fff;
}

.topburgercontent {
  padding-left: var(--sidesmallpadding) !important;
  padding-right: var(--sidesmallpadding) !important;
  min-height: 100vh;
  position: relative;
}

/*** head ***/
.topburgercontent .top {
  height: var(--headheight);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  right: 0;
  padding: 0 var(--sidesmallpadding);
}
.topburgercontent .top .closemenu {
  border: 0px solid var(--blackbg);
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 !important;
  background-color: transparent;
  flex-direction: column;
}
.topburgercontent .top .closemenu button {
  border: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.topburgercontent .top .closemenu span {
  width: 30px;
  height: 2px;
  display: block;
  /*background-color: var(--blackbg);*/
  background-color: #fff;
  font-size: 0;
}
.topburgercontent .top .closemenu span.left {
  transform: rotate(-45deg);
}
.topburgercontent .top .closemenu span.right {
  transform: rotate(45deg);
  position: absolute;
}


/**** menus ****/

.topburgercontent .menuwrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: var(--verticalpadding);
  padding-bottom: var(--verticalpadding);
}
.topburgercontent .mainmenu {
  margin-bottom: 30px;
  margin-left: 2px;
}
.topburgercontent .mainmenu ul {
  display: flex;
  flex-direction: column;
}
.topburgercontent .mainmenu li {
  line-height: 100%;
  margin-bottom: 20px;
}
.topburgercontent .mainmenu a {
 color:rgba(255,255,255,1) !important;
  font-size: var(--basesize);
  line-height: 100%;
  font-weight: var(--regular);
  opacity: 1;
  -webkit-transition: all .2s !important;
  -moz-transition: all .2s !important;
  -o-transition: all .2s !important;
  transition: all .2s !important;
}

.topburgercontent .mainmenu .active a, .topburgercontent .mainmenu a:hover {
  color:rgba(255,255,255,0.8) !important;
}



/**
-------------------------------------------------------------------------
::::::::  IMAGES AND BANNERS
-------------------------------------------------------------------------
**/

.img-responsive {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  width: auto;
  height: auto;
}

/**
-------------------------------------------------------------------------
::::::::  LINKS & BOTS
-------------------------------------------------------------------------
**/


input::-moz-focus-inner { 
  border: 0; 
}
a:hover, a:active, a:focus {
 outline: 0;
}
button:hover, button:active, button:focus {
   outline: 0;
}


a {
 	color: var(--blacktext) !important;
  	text-decoration: none !important;
  	opacity: 1;
  	position: relative;
  	-webkit-transition: all .2s;
  	-moz-transition: all .2s;
  	-o-transition: all .2s;
  	transition: all .2s;
}

a:hover {
	text-decoration: none !important;
	opacity: 1;
}
.expotitle a:hover {
  color:var(--yellowbg)  !important;
}
p a:hover {
  color:var(--yellowbg)  !important;
}

.bot, .link {
  background-color: var(--yellowbg);
  margin-top: 20px !important;
  display: inline-block;
  padding: 0 0 !important;
}


/******** LINK *********/
/*
.link {
  font-weight: var(--regular);
  color:var(--blacktext);
  padding-bottom: 0px;
}
.link::after {
  content: "";
  width: 100%;
  transform: scaleX(1);
  height: 1px;
  background-color: var(--greybg);
  position: absolute;
  left: 0;
  bottom: -4px;
   transition: transform 0.25s ease-out;
  transform-origin: bottom left;
}
.link:hover::after {
  transform: scaleX(0);
}
*/



/**
-------------------------------------------------------------------------
::::::::  IGNITE GALLERY 
-------------------------------------------------------------------------
**/


.workgallery .igui-scope {
  height: 100%;
}
.workgallery .ig-slideshow {
  height: 100%;
}
.workgallery .ig-gallery-wrapper {
  height: 100%;
  max-width: 100% !important;
}
.workgallery .ig-slideshow > div {
  height: 100%;
  max-width: 100% !important;
}
.workgallery .ig-slideshow ul {
  height: 100% !important;
}
.workgallery .igui-slideshow-items li {
   height: 100% !important;
}
.workgallery .ig-slideshow-item-inner-lboxon {
  height: 100% !important;
  width: 100%;
}
.workgallery .ig-slideshow-image {
  height: 100% !important;
  margin: 0px !important;
  width: auto;
  object-fit: contain;
}



/*** SLIDER *******/

.ig-slideshow-item {
  display: flex;
}
.ig-slideshow-item-inner-lboxon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-slideshow-image {
  /*padding: 0 70px;*/
  padding: 0px;
}


.ig-slideshow-button {
  border-radius: 0%;
  width: 50px;
  height: 50px !important;
  position: absolute;
  top: calc(50% - 25px);
  z-index: 999;
  border: 0px solid #000 !important;
  font-size: 0;
  transform: none !important;
  display: flex;
  align-items: center;
  opacity: 1;

   -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.ig-slideshow:hover .ig-slideshow-button {
  opacity: 1 !important;
}

.ig-slideshow-button-left::before {
  content: "\f12f";
  font-size: 20px !important;
  font-family: 'bootstrap-icons';
  color: #000 !important;
}
.ig-slideshow-button-right::before {
  content: "\f138";
  font-size: 20px !important;
  font-family: 'bootstrap-icons';
  color: #000 !important;
}

.ig-slideshow-button-left {
  margin-left: -70px !important;
}
.ig-slideshow-button-right {
  margin-right: -70px !important;
}
.ig-slideshow-button svg {
  display:none;
}



/** dot nav ***/

.ig-dotnav {
  transform: translateX(-50%) translateX(-15px);
  /*margin: 0 auto -30px !important;*/
  margin-bottom: 50px !important;
}
.ig-dotnav li a {
  border: 1px solid #fff !important;
  background-color: #fff !important;
}
.igui-dotnav li.igui-active a {
  background-color: var(--greybg) !important;
  border: 1px solid var(--greybg) !important;
}

/**** FOR LIGHT BOX ****/

.igui-lightbox-toolbar {
  padding: 0px !important;
  background-color: transparent !important;
}
.igui-lightbox {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
   z-index: 99999;
  background: #fff !important;
  opacity: 0;
  transition: opacity .15s linear;
}
.igui-lightbox-items li {
  padding: 60px !important;
}

.igui-lightbox-toolbar .igui-close {
  opacity: 1 !important;
  top: 15px;
  position: fixed;
  right: 10px !important;
  margin: 0 !important;
}


.igui-lightbox-toolbar .igui-close svg {
  width: 40px;
  height: 40px;
}

.igui-lightbox-toolbar .igui-close svg line {
  stroke-width: 0.3px !important;
  color: #000 !important;
}

.ig-lightbox-button-right, .ig-lightbox-button-left {
  padding: 0 18px !important;
  margin: 0px !important;
  opacity: 1 !important;
  /*color: #000 !important;*/
}
.ig-lightbox-button svg {
  background: transparent !important;
  padding: 10px !important;
  width: 25px;
  height: 40px;
  box-sizing: content-box;
}
.ig-lightbox-button svg polyline {
  stroke-width: 1px !important;
   color: #000 !important;
}
.ig-lightbox-descriptions-overlay {
  padding: 10px;
  background: #fff !important;
  color: var(--blacktext) !important;
  max-height: 30vh;
  overflow-y: scroll;
  transform: none !important;
  font-size: var(--basesize);
}

/** image custom link hover - no effect  ***/

.ig-lightbox-custom-link:hover {
  opacity: 1 !important;
}
.ig-lightbox-custom-link:hover img {
  opacity: 1 !important;
}

/*** image counting ***/
.ig-lbox-button-wide {
  margin: 0;
  height: auto;
  display: inline-block;
  line-height: 20px;
  color: var(--greytext) !important;
  right: 100px !important;
  position: absolute;
  font-size: 11px;
  top: 25px;
  letter-spacing: 0px;
}
.ig-image-number {
  margin-right: 5px;
  color: var(--greytext) !important;
}
.ig-image-total {
  margin-left: 3px;
  color: var(--greytext) !important;
}



/**
-----------------------------------------------------------------
WORK LIST
-----------------------------------------------------------------
***/


/*** category wrapper ****/
.worklist .com-content-category-blog__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  container-type: inline-size;
}
/** category item ***/
.worklist .com-content-category-blog__item.blog-item {
  /*width: calc(86vw / 4);*/
  width: 24.9cqw;
  padding: 2vw 3vw;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: flex-end;
}

/*
.worklist .com-content-category-blog__item.blog-item .item-image {
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-content: flex-end;
}
*/
.worklist .com-content-category-blog__item.blog-item .item-image {
  height: 250px;
  margin: 0 auto;
  display: block;
}



.worklist .com-content-category-blog__item.blog-item .item-image img {
  object-fit: contain !important;
  width: 100%;
  height: 100% !important;
  object-position: center;
  /*padding: 20px 20px 0 20px;*/
  margin: 0 !important;
}
.worklist .com-content-category-blog__item.blog-item .item-content {
  min-height: 80px;
}

.worklist .com-content-category-blog__item.blog-item h2 {
  font-size: 11px !important;
  font-weight: var(--semibold) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 20px;
  line-height: 140% !important;
}
/** hide article content ***/
.worklist .com-content-category-blog__item.blog-item .workview {
  display: none;
}



/**
-----------------------------------------------------------------
WORK PAGE
-----------------------------------------------------------------
***/

/** take out article title ****/
.com-content-article.item-page.worklist .page-header {
  display: none;
}

/*** item page ***/
.workview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.workview .workinfo {
  width: 33%;
  padding-right: 5%;
}
.workgallery {
  width: 42%;
  margin-left: 10%;
  height: 60svh;
  min-height: 500px;
}


/*** for work info ***/
.workview .workinfo .worktitle h1 {
  font-size: var(--mediumsize) !important;
  font-weight: var(--semibold) !important;
  color: var(--blacktext);
  line-height: 140% !important;
  margin-left: -2px;
}
.workview .workinfo p {
  line-height: 160%;
  margin-bottom: 5px !important;
  color: var(--blacktext ) !important;
}

.workview .workinfo h3 {
  font-weight: var(--bold) !important;
  text-transform: uppercase;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  margin-top: 25px !important;
  margin-bottom: 10px !important;
  color: var(--blacktext) !important;
}

/**
-----------------------------------------------------------------
EXPOSIÇÕES
-----------------------------------------------------------------
***/

.expo .expotitle {
  font-size: var(--mediumsize) !important;
  color: var(--blacktext) !important;
  font-weight: var(--semibold) !important;
  margin-left: -2px;
  line-height: 140% !important;
  margin-bottom: 10px !important;
}
.expo .expovenue {
  margin-bottom: 5px !important;
}
.expo {
  margin-bottom: 40px;
}

/** random images ****/
.randomcavas {
  width: 60vw !important;
  height: 100vh;
  position: fixed;
  top: var(--headheight);
  right: 0;
  overflow: hidden !important;
}

img.random{
  max-width:300px !important;
  height: auto;
  position: absolute;
  display: block;
}

/****** navigation tabs *****/
.nav  li {
  margin-right: 2vw;
}
.nav a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: var(--regular);
  color: var(--basetext) !important;
  padding-bottom: 10px !important;
}

.nav a.active {
  color: var(--blacktext) !important;
  font-weight: var(--semibold);
}

.nav a.active::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--blackbg);
  /*
  background-color: #fff;
  box-shadow: 0 0.5px 0 #000;
  */
  width: 97%;
  bottom: -3px;
}

/**
-----------------------------------------------------------------
CONTACTOS
-----------------------------------------------------------------
***/
.contactos h3 {
  font-weight: var(--bold) !important;
  text-transform: uppercase;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  margin-bottom: 10px !important;
  color: var(--blacktext) !important;
}

/**
-----------------------------------------------------------------
Profile
-----------------------------------------------------------------
***/
.profile .imagewrapper img {
  object-fit: cover !important;
  width: 100%;
  height: 100% !important;
}

.profile .profilepic {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/**
-----------------------------------------------------------------
Profile
-----------------------------------------------------------------
***/
.homecanvas .imagewrapper img{
  max-height: 60vh;
  border: 0;
  z-index: 9;
  float: right;
}