html {
    scroll-behavior: unset !important;
    font-size: 16px;
}  


/*** because of flicker in scroll reveal ****/
html.sr .slideup,  html.sr .slideupdelay, html.sr .fadein, html.sr .fadeindelay, html.sr .slideleft, html.sr .slideright{
    visibility: hidden;
}


:root {  

  /** text ***/
  --blacktext: #1d1d1b;
  --greytext: #8a8a8a;
  --whitetext: #fff;
  --creamtext: #E6DACA;
  --darkcreamtext:#786E63;
  --redtext: #D64840;
 
  /** bg **/
  --blackbg: #1d1d1b;
  --whitebg: #FFFFFF;
  --redbg: #D64840;
  --darkredbg: #842E2C;
  --lightcreambg: #F4F1EB;
  --creambg: #E6DACA;
  --darkcreambg: #C9BEB1;
  --bluebg: #80C3C5;
  

  /** sizes ***/
  --smallsize: 0.75rem;
  --basesize:1rem;
  --smallmediumsize: 1.25rem;
  --mediumsize: 2.125rem;
  --bigsize: 3.75rem;
  --extrabigsize: 5rem;
  
  
 /** weights ***/ 
  --thin: 100; 
  --extralight: 200; 
  --light: 300; 
  --regular: 400; 
  --medium: 500; 
  --semibold: 600;
   --bold: 700; 
   --heavy: 800;

  /** paddings ***/
  --sidesmallpadding: 2vw;
  --sidepadding: 6vw;
  --sideextrapadding: 8vw;
  --verticalsmallpadding: 6vh;
  --verticalpadding: 12vh;
  --verticalextrapadding : 18vh;
 
  /*** spacing **/
  --letterspacing: 0.25em;
  
  /*** font ***/
  --primaryfont: "Croco Sans", sans-serif;
  --secondaryfont: "Croco Headline", sans-serif;

}






/*
------------------------------------------------------------------------------------------------------
:::::::: BODY & MAIN STUFF
------------------------------------------------------------------------------------------------------
*/

body {
    color: var(--blacktext) !important;
    font-family: var(--primaryfont) !important;
	font-weight: var(--regular) !important;
    font-size: var(--basesize) !important;
    letter-spacing: 0;
    text-rendering: optimizelegibility;
   line-height: 1.6rem !important;

}



.primaryfont {
  font-family: var(--primaryfont) !important;
  font-optical-sizing: auto;
  font-weight: inherit;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

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


.row {
  margin: 0 !important;
}

.mobileonly {
  display:none !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;
}


.whiteborder {
  border:1px solid #fff;
}



/**** line separator *******/

.lineseparator {
  width: 100%;
  box-shadow: 0 0.5px 0 #777;
  height: 1px;
  margin-bottom: var(--verticalsmallpadding);
  margin-top: var(--verticalsmallpadding);
}

.lineseparator.white {
  box-shadow: 0 0.5px 0 #fff;
  opacity: 0.3;
}

/** legenda ***/
.legenda {
  margin-top: 15px;
  font-size: var(--smallsize);
}
.legenda p {
  margin: 0 !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;
}
.whitebg {
  background-color: var(--whitebg) !important;
}
.redbg {
  background-color: var(--redbg) !important;
}
.darkredbg {
  background-color: var(--darkredbg) !important;
}
.lightcreambg {
  background-color: var(--lightcreambg) !important;
}
.creambg {
  background-color: var(--creambg) !important;
}
.darkcreambg {
  background-color: var(--darkcreambg) !important;
}
.bluebg {
  background-color: var(--bluebg) !important;
}


/***** for background images *******/
.bg01 > * {
  z-index: 2;
}
.bg01::before {
  content: "";
  background-image: url("/images/assets/asset_08.png");
  background-repeat: repeat;
  background-size: 50%;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.1;
}



/****** 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;
  min-height: 600px;
}
.fullheight90 {
  height: 90svh !important;
  min-height: 600px;
}

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

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

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




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

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

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


/** headings ***/

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


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


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


/**** SIZES ***/

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

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

.mediumsize {
  font-size:var(--mediumsize) !important;
  line-height: 120% !important;
  margin-bottom: 0 !important;
 font-weight: var(--regular);
}

.bigsize {
  font-size:var(--bigsize) !important;
  line-height: 110% !important;
  margin-bottom: 0 !important;
  font-weight: var(--regular);
}

.extrabigsize {
  font-size: var(--extrabigsize) !important;
  line-height: 110% !important;
  margin-bottom: 0 !important;
}



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

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

.whitetext {
 color:var(--whitetext) !important;
}
.whitetext.opacity {
  opacity: 0.5;
}
.creamtext {
 color:var(--creamtext) !important;
}
.darkcreamtext {
 color:var(--darkcreamtext) !important;
}
.redtext {
  color: var(--redtext) !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);
}




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



#wrap_all {
  position: relative;
  width: 100%;
  float: left;
  background-color: #fff;
  -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;
}



#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: 3;
}

#footer {
  float: left;
  width: 100% !important;
  position: relative;
  z-index: 999;
}



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


#footer {
  float: left;
  width: 100% !important;
  position: relative;
  z-index: 9;
}

#footer .footerblock {
  margin-bottom: 25px;
}

#footer .footerblock p {
  font-size: var(--smallsize);
  margin-bottom: 10px !important;
  line-height: 170%;
}

#footer .footerblock .footerlogo {
  width: 50px;
  height: auto !important;
  margin: 40px auto 0;
}



#footer .footerblock .menus a img {
  display: none;
}

#footer .footerblock .menus ul {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#footer .footerwrapper .menus a {
  border: 0;
  font-size: var(--basesize);
  opacity: 1;
  padding: 0 !important;
  line-height: 160%;
}

#footer .footerwrapper .menus a:hover {
  opacity:0.5;
}

.copyright p {
  margin: 0 !important;
}
.copyright {
  margin-bottom: 30px !important;
}



/**
-------------------------------------------------------------------------
::::::::  HEAD
-------------------------------------------------------------------------
**/
#head {
  position: fixed;
  width: 100%;
  z-index: 999;
}

#head .logo, .topmenuhead .logo {
  width: 60px;
  height: auto;
  z-index: 9999;
  position: fixed;
 top: 40px;
  margin-left: var(--sidesmallpadding);
}
#head .logo img, .topmenuhead .logo img {
  width: 100% !important;
  height: 100% !important;
}

#head.top {
 
}

#head.show {
 
}


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

#head .headburgermenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40px;
  height: 20px;
  position: fixed;
  right: var(--sidesmallpadding);
  top: 50px;
}
#head .headburgermenu .openmenu {
  border: 0px solid !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  background-color: transparent;
  flex-direction: column;
}
#head .headburgermenu .openmenu span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--blacktext);
  font-size: 0;
}


/**** CLOSE BOT ****/
.topmenuhead .closebotwrapper {
  position: fixed;
  right: var(--sidesmallpadding);
  top: var(--verticalsmallpadding);
  margin-top: -30px;
  margin-right: -10px;
}
.topmenuhead .closebotwrapper .closebot {
  border: 0px solid !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  background-color: transparent;
  flex-direction: column;
}
.topmenuhead .closebotwrapper .closebot span {
  font-size: 62px;
  font-weight: 200;
}


/**
-------------------------------------------------------------------------
::::::::  LANGUAGE 
-------------------------------------------------------------------------
**/

.langswitch {
  position: absolute;
  left: var(--sidesmallpadding);
  top: 30px;
}

.mod-languages a {
  border: 0;
  opacity: 1 !important;
  background-color: var(--creambg);
  border:1px solid var(--creambg);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}
.mod-languages a:hover {
  background-color:var(--lightcreambg);
  border:1px solid var(--lightcreambg);
  }

div.mod-languages ul.lang-inline li {
  display: block;
  margin: 0;
}



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

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


/**** simple image banner ***/

.imagewrapper {
  position: relative;
  height: auto;
  overflow: hidden;
  width: auto;
}

.imagewrapper img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  
  -webkit-transition: all .4s !important;
  -moz-transition: all .4s !important;
  -o-transition: all .4s !important;
  transition: all .4s !important;

}

/** fixed ****/
.imagewrapper.fixed, .videoWrapper.fixed {
  position: relative;
  height: 100%;
  clip-path: inset(0);
}

.imagewrapper.fixed img, .videoWrapper.fixed video {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*** when image is used for background of content box ***/
.imagewrapper.imagebg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}


/**** for banners with layers ***/

.bannerwrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /*flex-direction: column;*/
  clip-path: border-box;
  
  	-webkit-transition: all .1s;
  	-moz-transition: all .1s;
  	-o-transition: all .1s;
  	transition: all .1s;
}

.bannerover {
  position: absolute !important;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 100% !important;
  left: 0;
  top: 0;
}

.bannerunder {
  position: relative !important;
  z-index: 1;
  width: 100% !important;
  height: auto;
  overflow: hidden;
 background-color: #000;
}

.bannerunder img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;

}



/****** over link ***/
.overlink {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 0;
  top: 0;
  border: 0 !important;
  padding: 0 !important;
}
.overlink:hover ~ .imagewrapper img {
  transform: scale(1.05);
}

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


::selection {
  background: #111;/* WebKit/Blink Browsers */
  color:#fff;
}
::-moz-selection {
  background: #111; /* Gecko Browsers */
   color:#fff;
}

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


a {
  color: inherit !important;
  text-decoration: none !important;
  opacity: 1;
  position: relative;
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
 border-bottom: 1px solid;
  padding-bottom: 2px;
}
a:hover {
  opacity: 0.7;
  border: 0 !important;
}

a:hover img {
  	opacity: 1; 
}


/***** BOTS ******/
.botwrapper {
  margin-top: 30px;
  display: inline-block;
}


.bot {
  opacity: 1 !important;
  border: 0 !important;
  border-radius: 4px;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, var(--creambg) 50%, var(--lightcreambg) 50%);
  color: var(--blacktext) !important;
  padding: 20px 40px;
  font-weight: var(--semibold);
  text-decoration: none !important;
  font-size: 0.95rem;
  display: inline-block;
  line-height: 100%;
  
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}


.bot:hover {
  background-position: 0 -100%;
  color: #fff !important;
}

.bot.white {
  background-image: linear-gradient(to bottom, var(--creambg) 50%, var(--lightcreambg) 50%);
  color: var(--blacktext) !important;
}

.bot.white:hover {
  background-position: 0 -100%;
  color: var(--blacktext) !important;
}


/**** link *****/

.link::after {
  content: "\F138";
  font-family: 'bootstrap-icons';
  margin-left: 20px;
  padding-top: 1px;
  font-size: 16px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.link {
  line-height: 180%;
  opacity: 1;
  padding: 0 !important;
    border: none !important;
  display: inline-flex;
  align-content: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;

}
.link:hover {
  opacity:0.5;
}
.linkwrapper {
  margin-top: 30px;
}

/***** underline link ****/

.underlinelink {
   border-bottom: 1px solid;
  padding-bottom: 7px;

  opacity: 1;
  position: relative;
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
 
}
.underlinelink:hover {
  opacity:0.5;
}



/**
-------------------------------------------------------------------------
::::::::  ACCORDION -- using jQuery UI -- loaded in head
-------------------------------------------------------------------------
**/


/** tab ***/
.ui-accordion .tab {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  box-shadow: 0 .5px 0 #777;
  padding: 20px 0 !important;
}

/** title ***/
.ui-accordion .tab h3 {
 font-size: var(--smallmediumsize) !important;
  font-weight: var(--extralight) !important;
  color: var(--greytext) !important;
  line-height: 120% !important;
  max-width: 85%;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  margin-bottom:0 !important;
}

.ui-accordion .tab:hover h3 {
  color: var(--blacktext) !important;
}
.ui-accordion .tab.ui-state-active h3 {
 color: var(--blacktext) !important;
}


/** icon **/
.ui-accordion .panelicon {
  width: 15px;
  position: relative;
  height: 15px;
  margin-right: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}

.ui-accordion .panelicon::after {
  content: "";
  width: 1px;
  height: 100%;
  box-shadow: 1px 1px 0 var(--blackbg);
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  position: absolute;
  margin-right: auto;
  
    -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.ui-accordion .panelicon::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  box-shadow: 1px 1px 0 var(--blackbg);
  left: 0;
}

.ui-accordion .tab.ui-state-active .panelicon::after {
  height: 1px !important;
}



/**
-------------------------------------------------------------------------
::::::::  TABS - jqueri ui
-------------------------------------------------------------------------
**/

.tabswrapper ul {
  display: flex;
  justify-content: center;
   border-bottom: 1px solid #ddd;
  padding: 0 0 10px;
  list-style: none;
  margin-bottom: 30px;
}
.tabswrapper li {
  padding: 0 20px;
  position:relative;
  margin: 0 10px;
}


.tabswrapper li::after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
  display: block;
  bottom: -11px !important;
  position: absolute;
  left: 0;
  
  transform: scale(0);
  transform-origin: center;
  transition: opacity 300ms, transform 300ms;
}


.tabswrapper li.ui-tabs-active::after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
  display: block;
  bottom: -11px !important;
  position: absolute;
  left: 0;
  
  transform: scale(1);
  
}
.tabswrapper li a {
  text-decoration: none !important;
  color: var(--greytext) !important;
  font-size: var(--smallmediumsize);
}

.tabswrapper li.ui-tabs-active a{
  color: var(--blacktext) !important;
}

.tabswrapper li a:hover {
  color: var(--blacktext) !important;
}



/**
-------------------------------------------------------------------------
::::::::  GRID
-------------------------------------------------------------------------
**/

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid.col4 .item{
  width: calc(25% - 1px);
   overflow:hidden;
  margin-bottom: 1px;
  position: relative;
}

.grid.col3 .item{
  width: calc(33.33% - 1px);
  overflow: hidden;
  margin-bottom: 1px;
  position: relative;
}

.grid.col2 .item{
  width: calc(50% - 1px);
   overflow:hidden;
  margin-bottom: 1px;
  position: relative;
}


/**
-------------------------------------------------------------------------
::::::::  SCROLER
-------------------------------------------------------------------------
**/

.scroller {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex-direction: row;
  padding-bottom: 15px;
}

.scroller .item {
  width: 80vw;
  min-width: 80vw;
  margin-right: 1px;
}




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


/*** full gallery - all images fit container ***/
.fullgallery {
  height: 100%;
}
.fullgallery .igui-scope {
  height: 100%;
}
.fullgallery  .ig-gallery-wrapper {
  height: 100%;
}
.fullgallery .ig-slideshow > div {
  height: 100%;
}
.fullgallery .ig-slideshow ul {
  height: 100% !important;
}
.fullgallery .igui-slideshow-items li {
   height: 100% !important;
}
.fullgallery .ig-slideshow-item-inner-lboxon {
  height: 100% !important;
  width: 100%;
}
.fullgallery .ig-slideshow-image {
  margin: 0px !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.ig-slideshow-button {
  opacity: 0 !important;
  
  -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 svg {
display:none;
  }

.ig-slideshow-button{
  width: 50px !important;
  height: 50px !important;
  background-color: #fff !important;
  border-radius: 50%;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}


.ig-slideshow-button-right {
  right:20px;
}
.ig-slideshow-button-right::after {
  content: "\F138";
  font-family: 'bootstrap-icons';
  color: #000 !important;
  font-size: 16px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.ig-slideshow-button-left {
  left:20px;
}
.ig-slideshow-button-left::after {
  content: "\F12F";
  font-family: 'bootstrap-icons';
  color: #000 !important;
  font-size: 16px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}


/*** SLIDESHOW *******/

.ig-slideshow-image {
  max-height: 100% !important;
  margin: 0px !important;
  width: auto !important;
}


.igui-slideshow-items li, .ig-slideshow-item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}


/***** FOR SCROLLER *******/
.ig-thumb-scroller-main-below {
  padding-top: 0 !important;
}

.ig-thumb-scroller li {
  list-style-type: none !important;
  list-style-image: none !important;
  background-image: none !important;
   height: 80vh;
  min-height: 600px;
}


.ig-thumb-scroller .ig-scroller-img-wrapper .ig-img-link {
  object-fit: cover !important;
  width: 100%;
  height: 100%;
  max-height: 100% !important;

}

.ig-scroller-img {
  object-fit: cover;
  min-height: 100%;
  opacity: 1 !important;
}

.ig-scroller-img-wrapper a {
  opacity: 1 !important;
  border: 0 !important;
}

.ig-thumb-scroller-right svg, .ig-thumb-scroller-left svg {
  padding: 0px !important;
 color: #fff !important;
 
}
.ig-thumb-scroller-right svg polyline, .ig-thumb-scroller-left svg polyline {
  stroke-width: 3;
}

.ig-thumb-scroller-right, .ig-thumb-scroller-left {
  background-color: #000;
  padding: 18px !important;
  margin: 0 10px 0 10px;
  transform: translateY(-50%) translateY(0) !important;
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
   -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


/** show arrows on hover ***/
.ig-thumb-scroller:hover .ig-thumb-scroller-right, .ig-thumb-scroller:hover .ig-thumb-scroller-left {
  opacity: 1;
}



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

/** icon to show lightbox open on main image **/
.ig-lbox-open-icon {
  display:none !important;
  
  margin: 0 !important;
  background-color: rgb(255, 255, 255);
  padding: 15px !important;
}
.igui-overlay-icon.igui-icon {
  color: #000;
}
.igui-overlay-icon svg {
  width: 30px;
  height: 30px;
}

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

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

