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: 11px;
  --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: 2vw;
  --sidepadding: 2vw;
  --sideextrapadding: 8vw;
  --verticalsmallpadding: 40px;
  --verticalpadding: 80px;
  --verticalextrapadding : 120px;
  
  /*** 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(--blacktext) !important;
  font-family: var(--primaryfont) !important;
  font-weight: var(--light) !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-left: var(--sidepadding);
  padding-right: var(--sidepadding);
  min-height: 100svh;
  container-type: inline-size !important;
  display: flex;
  align-items: center;
}

#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);

}

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

#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: fixed;
  bottom: 0;
  z-index: 3;
  padding-left: var(--sidepadding);
  padding-right: var(--sidepadding);
  display: flex;
  align-items: center;
}




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

#footer #mod-custom125 {
  width: 100%;
}

.footerwrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


.copyright span {
  margin: 0 10px;
}
.copyright p {
  margin: 0 !important;
  font-size: var(--smallsize) !important;
}
.copyright a {
  font-weight: var(--medium);
}


.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
-------------------------------------------------------------------------
**/

.headlogo h1 {
  margin: 0 !important;
  font-size: var(--smallsize) !important;
  text-transform: uppercase;
  font-weight: var(--bold) !important;
  color: var(--blacktext) !important;
  letter-spacing: var(--letterspacing);
}


/**
-------------------------------------------------------------------------
::::::::  MENUS - worklist
-------------------------------------------------------------------------
**/

.worklist .nav {
  display: flex !important;
  flex-direction: column;
}
.worklist li {
  margin-bottom: 12px;
}
.worklist a {
  font-size: var(--smallsize);
  font-weight: var(--bold);
  letter-spacing: var(--letterspacing);
  color: var(--blacktext);
}
.worklist a:hover {
  background-color: var(--blackbg) !important;
  color: var(--whitetext) !important;
}


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


/**
-------------------------------------------------------------------------
::::::::  NAV BURGUER CONTENT
-------------------------------------------------------------------------
**/


/**
-------------------------------------------------------------------------
::::::::  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;
}





/**
-------------------------------------------------------------------------
::::::::  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;
}
/** hide lightbox icon ***/
.ig-lbox-open-icon {
  display: none !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 PAGE
-----------------------------------------------------------------
***/

/*** item page ***/
.workview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
}
.workview .workinfo {
  width: 30svw;
  padding-right: 10%;
}
.workinfo a {
  font-weight: var(--medium) !important;
}
.workgallery {
  width: 35svw;
  height: 35svw;
  margin-left: 6%;
}

/*** 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;
}

