/* for higher resolutions (android and retina) */
@media screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (max--moz-device-pixel-ratio: 1.5) {
  
}


/*****MOBILE
************************************************************/
@media (max-width: 690px) {
  
  
   

:root {  
  
  /** sizes ***/
  	--smallsize: 11px;
	--basesize: 13px;

  /** weights ***/
  --extralight: 300; 
  --medium: 500; 
  --semibold: 500;
  
  /** paddings ***/
  --sidesmallpadding: 20px;
  --sidepadding:20px;
  --sideextrapadding: 20px;
  --verticalsmallpadding: 30px;
  --verticalpadding: 45px;
  --verticalextrapadding : 45px;
  

}
  
  
  
body {
  line-height: 1.4em !important;
}  
  

  
  
.mobileonly {
  display: block !important;
}
.desktoponly {
  display: none !important;
}
  

  
  
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: GENERAL
------------------------------------------------------------------------------------------------------
*/ 
  
.row.invertonmobile {
  flex-direction: column-reverse;
}  
  
.noleftpaddingonmobile {
    padding-left:0 !important;
}
.norightpaddingonmobile {
    padding-right:0 !important;
} 
.notoppaddingonmobile {
    padding-top:0 !important;
}    
 .nobottompaddingonmobile {
    padding-bottom:0 !important;
}   
  
 
.knowmore i {
  width: 40px;
  height: 40px;
}  

  
  
  /*
------------------------------------------------------------------------------------------------------
:::::::: BOTS AND LINKS
------------------------------------------------------------------------------------------------------
*/    
  

  

  
  /*
------------------------------------------------------------------------------------------------------
:::::::: heights
------------------------------------------------------------------------------------------------------
*/  
  
.imagewrapper.fullheight, .imagewrapper.twothirdsheight {
 max-height: 400px !important;
    min-height: 400px;
}  
  

  
    
  /*
------------------------------------------------------------------------------------------------------
:::::::: TEXTS AND TITLES
------------------------------------------------------------------------------------------------------
*/ 

  
  
  
/*
------------------------------------------------------------------------------------------------------
:::::::: HEAD
------------------------------------------------------------------------------------------------------
*/
  
#head {
  z-index: 9991;
  position: fixed;
  width: 100vw !important;
  height: 60px;
}  
  div#head::after {
  content: "";
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: -60px;
  left: 0;
  z-index: -1;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


#head .headwrapper .brandlogo {
  display: flex;
  height: 60px;
  max-width: 200px;
}
#head .headwrapper .brandlogo img {
  margin-top: 2px !important;
}





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



/**** burger menu *****/
  #head .headwrapper .mobilemenu .openmenu {
  border: 1px solid #fff;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
#head .headwrapper .mobilemenu .openmenu .burguericon {
  height: 10px;
  width: 20px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 0px;

}
  #head .headwrapper .mobilemenu .openmenu .burguericon span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
}

  /** when active ***/

#head.active .headwrapper .mobilemenu .openmenu {
  border: 1px solid var(--blacktext);
}

#head.active .headwrapper .mobilemenu .openmenu .burguericon span {
  background-color: var(--blacktext);
}  
 

/*** CONTENT IN ENGAGE BOX *****/

/* close button = open button */
    #dialog2 .eb-close.placement-inside {
        width: 40px;
        height: 40px;
        border: 1px solid var(--blacktext) !important;
        color: var(--blacktext) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 20px;
        top: 10px;
    }
    #dialog2 .eb-close span {
        padding: 0 !important;
        line-height: 100% !important;
        font-size: 30px !important;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -4px;
    }



  #dialog2 .brandlogo {
    width: 200px;
    height: 60px;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    filter: invert();
  }
#dialog2 .brandlogo img {
  margin-top: 2px !important;
}

  #dialog2 .eb-container {
    justify-content: flex-start;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 12vh;
  }

#dialog2 .sectionNav {
  text-align: center;
}

#dialog2 .sectionNav a.menulink {
  line-height: 150%;
  margin-bottom: 10px;
  color: var(--basetext) !important;
  text-transform: uppercase;
  font-size: var(--basesize) !important;
  letter-spacing: 1px;
  font-weight: var(--regular) !important;
  display: inline-block;
}

#dialog2 .sectionNav a.bot {
  margin-top: 30px;
  text-align: center !important;
  justify-content: center;
  background-color: var(--bluebg);
  color: #fff !important;
  font-weight: var(--regular) !important;
  /*font-size: var(--basesize) !important;*/
  font-size: 13px !important;

}


/** setting active behaviour ***/
#dialog2 .sectionNav a.menulink::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blacktext);
  transform: scale(0);
  transform-origin: center;
  transition: opacity 300ms, transform 300ms;
}

#dialog2 .sectionNav a.menulink.active::after {
  transform: scale(1);
  }
#dialog2 .sectionNav a.menulink.active {
  color: var(--blacktext) !important;
  }


/***** LANG SWITCH ********/

#dialog2 .langswitch {
  text-align: center;
  margin-top: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

  
  
  
/*
------------------------------------------------------------------------------------------------------
:::::::: FOOTER
------------------------------------------------------------------------------------------------------
*/  
  .footerlogo {
  height: 90px;
  margin: 20px auto 40px !important;
  text-align: center;
}
  
  .footerwrapper {
  text-align: center;
}

  .sociallinks a {
  margin-right: 5px;
  margin-left: 5px;
}

 .zed {
    position: relative !important;
    float: left;
    left: 0;
    right: 0;
    margin: -5px auto 20px !important;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }
 
  
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: IMAGES AND BANNERS
------------------------------------------------------------------------------------------------------
*/  
  


  

  
    /*
------------------------------------------------------------------------------------------------------
:::::::: ENGAGE BOX
------------------------------------------------------------------------------------------------------
*/  


/*** SIDE CTA ***/

  #dialog1 {
    width: 70px;
    padding: 30px 10px 30px 10px;
  }
  #dialog1 .eb-close {
  left: 9px;
  width: 50px;
  height: 50px;
  padding: 10px;
}

#dialog1 .sideCTAbox .mobileonly .ctabots {
  display: flex;
  flex-direction: column;
}

  #dialog1 .sideCTAbox .mobileonly .ctabots a {
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
  }

  
  .eb-1.eb-floating-button div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    margin-bottom: 40px !important;
  }
 

  
    
/*
------------------------------------------------------------------------------------------------------
:::::::: CONVERT FORMS
------------------------------------------------------------------------------------------------------
*/   
   
  
.convertforms ::placeholder {
  font-weight: 200 !important;
}  
  
  
   
/*
------------------------------------------------------------------------------------------------------
:::::::: GRID AND SCROLLERS
--------------------------------------------------------
*/    

/*** when in grid make full width for items ***/
  .grid .item {
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
  }
  
 .scrollerNav {
   display:none;
 } 
  

.scroller, .scrolleronmobile {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex-direction: row;
  padding-bottom: 15px;
  padding-right: 0 !important;
}

.scroller .item, .scrolleronmobile .item {
  width: 80vw;
  min-width: 80vw;
  margin-right: 20px;
  margin-bottom: 0 !important;
}

  .scroller .item .imagewrapper, .scrolleronmobile .item .imagewrapper {
     height: 350px;
    max-height: 350px;
    margin-bottom: 25px;
  }

.scrolleronmobile .item .content {
  text-align: left !important;
  padding-left: 0 !important;
}
  .scrolleronmobile .item .content .title, .scroller .item .content .title {
  margin-bottom: 5px !important;
}
  
  
 /*
------------------------------------------------------------------------------------------------------
:::::::: IGNITE GALLERY
--------------------------------------------------------
*/    
   
  
/*** light box ***/
  
.igui-lightbox-items li {
  padding: 0px !important;
}  
  
.ig-lightbox-button-right, .ig-lightbox-button-left {
  display: none;
}  





/*** ------------------------------------------------------

DROP TABLE

----------------------------------------------------------------------- **/
  #chtable {
    padding-left: var(--sidepadding) !important;
    padding-right: var(--sidepadding) !important;
  }
  #masterplan .col-lg-4 {
  padding: 0 !important;
}
  
#chtable .droptablestable table th {
  font-family: var(--primaryfont) !important;
  font-weight: var(--semibold) !important;
  height: 50px !important;
  line-height: 120% !important;
  padding: 4px !important;
  font-size: 12px !important;
}

#chtable .droptablestable table td {
  font-family: var(--primaryfont) !important;
  font-size: 13px !important;
  font-weight: var(--regular);
  line-height: 30px !important;
  padding: 2px 0;
}

#chtable .dataTables_scrollBody {
  z-index: 9;
  border-bottom: 1px solid #777;
  max-height: 420px !important;
}

/*** for download link **/
#chtable  a {
  font-size: 0;
  text-decoration: none !important;
  line-height: 100%;
  margin-top: 6px !important;
  display: block;
}


#chtable  a::after {
  content: "\F30A";
  font-family: 'bootstrap-icons';
  font-size: 18px;
  margin: 0 !important;
  text-decoration: none !important;
  color: darkgoldenrod;
}

#chtable .droptablestable table td {
  text-decoration: none !important;
  background-color: #fff !important;
  color: #333 !important;
}
#chtable .droptablestable table tr:hover td {
  background-color: #f2f2f2 !important;
  border-right: 1px solid #efefef !important;
}


/**** make columns responsive ****/

  #chtable .droptablestable table {
    width: calc(100vw - 40px) !important;
  }
  #chtable .droptablestable .dataTables_scrollHead .dataTables_scrollHeadInner {
  margin: 0 auto;
  width: calc(100vw - 40px) !important;
}

#chtable .droptablestable .dtc0 {
  width: 14% !important;
  min-width: 14% !important;
}
#chtable .droptablestable .dtc1 {
  width: 27% !important;
  min-width: 27% !important;
}
#chtable .droptablestable .dtc2 {
    width: 27% !important;
  min-width: 27% !important;
}
#chtable .droptablestable .dtc3 {
    width: 27% !important;
  min-width: 27% !important;
}

  
  
  
  /************** END ******************/
}