

* {
    /* don't use '0px' or any other unit, if you set the value to zero */
    padding:0;
    margin: 0;
    border: 0;   
    box-sizing: border-box; 
}
*:hover {
  
}
.noselect {
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.hidden{
  display: none;
}

a:any-link {
  color:inherit;
}
html{ 
  
  width: 100%;
  height: 100%;
  
}
body{	
  font-family:"helvetica-neue-lt-pro", sans-serif;  
  letter-spacing: 0.08em; 
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: var(--mainBackground-color);
  color: var(--mainText_color);
  font-size: 14pt;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  
}
body.black {
  --mainBackground-color:#121818;
  
  --mainText_color:#dfdfdd;
  
}
body,#topNavContent{
  padding-left: var(--side-margin);
  padding-right: var(--side-margin);
}

img{
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
    transition: opacity 1s ease-in-out; /* Set a transition duration */

}
img.is-loaded {
    opacity: 1;
}

ul {
  list-style-type: none;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Set a transition duration */
}
  content: normal;
}
.nowrap {
    white-space: nowrap;
}
video.is-loaded {
    opacity: 1;
}


/*------------GRID/Main LAYOUT-----------*/


/* --- Default: Base (Mobile) Margins --- */
:root {
  /* Small margin for mobile screens */
  --side-margin: 15px; 
}

/* --- Breakpoint 1: Tablet / Small Desktop --- */
@media (min-width: 768px) {
  :root {
    /* Larger, more comfortable margin for tablets */
    --side-margin: 30px; 
  }
}

/* --- Breakpoint 2: Large Desktop --- */
@media (min-width: 1200px) {
  :root {
    /* Maximum margin for very large screens */
    --side-margin: 5vw; /* Using a viewport unit for fluid, responsive scaling */
  }
}
:root {
 
}


/* Pull the hero section out using negative margins */
.hero-section {
  margin-left: calc(var(--side-margin) * -1);
  margin-right: calc(var(--side-margin) * -1);
  width: auto; /* Allows the element to stretch */

  
}
.mainGrid{
     gap: 20px 20px;
}
@media screen and (max-width: 1750px) {
  
  .mainGrid{
     gap: 20px 20px;
  }
  
  }
}
@media screen and (max-width: 1200px) {
  
  .mainGrid{
     gap: 20px 20px;
  }
  
  }
}
@media screen and (max-width: 600px) {
  
  .mainGrid{
     gap: 15px 15px;
  }
  
}

/*------------Content-Wrapper-----------*/

#content-wrapper{
  width: 100%;
  margin-top: 00px; 
  display: block;
} 
#content-wrapper.with-header{
  margin-top: 120px; 
}
@media screen and (max-width: 1750px) {
  #content-wrapper.with-header{
    margin-top: 120px; 
  }
}
@media screen and (max-width: 800px) {
  #content-wrapper.with-header{
    margin-top: 80px; 
  }
}
/*------------TYPE-----------*/
h1{
font-size: 1.6rem;
}
h2{
  font-size: 1.4rem;
}
.hero_text{
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 1000px; 
  
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;

}
@media screen and (max-width: 1750px) {
  .hero_text{
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .hero_text{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 800px) {
  .hero_text{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 400px) {
  .hero_text{
    font-size: 1.2rem;
line-height: 1.2em;

  }
}
.main_body_text{

  font-size: 1.6rem;
  font-weight: 400;
  max-width: 1000px; 
  margin-bottom: 100px;
  line-height: 1.4em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1750px) {
  .main_body_text{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .main_body_text{
    font-size: 1.1rem;
  }
}
.secondary-bodytext{
  font-size: 1.2rem;
  line-height: 1.4em;


}

/*------------UI-----------*/

:root {
    --nav-text-color:var( --mainText_color); 
    --nav-bg-color: transparent;
}


/* Define the 'white' theme override */
.ui-white {
    --nav-text-color: var(--mainText_color); /* Override to White */
}
.ui-black {
    --nav-text-color: var(--mainBackground-color); /* Override to dark */
}
.ui-whiteBG{
    --nav-bg-color: var(--mainBackground-color); /* Override to White */
}
.ui-blackBG{
   --nav-bg-color: var(--mainBackground-color); /* Override to Black */
}
.white{
  color: white;
}
.black{
  /*color: black;*/
}
/*---------------- HEADER --------------------*/
#topNav{
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:120px;

  transition: transform .3s ease 0s;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, height 0.3s ease-in-out;
  z-index: 100;
  letter-spacing: 0.13em;
  background-color: var(--nav-bg-color); /* Use the transparent variable */
  color: var(--nav-text-color); /* Use the text color variable */

}


@media screen and (max-width: 1750px) {
  #topNav{
    font-size: 1.2rem;
  }
}

#topNavContent{
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
 width: 100%;
}
#ident{
  position: relative;  
  float:left;  
}
#mokericon{
 
  position: relative;
  float:left;
  cursor: pointer;
  width:40px;
  height:40px;
  
  
  mask-image: url("../../mokersite/imgs/ui/mokericon_zwart.png"); 
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--nav-text-color); 

  transition: background-image 0.5s ease;
  transform: translate(0,-8px);
}
#corpname{
  position: relative;  
  float:left;
  padding-left: 20px;
  
  
}
@media only screen and (max-width: 700px) {
  #corpname {
    /*display: none;*/
  }
  #topNav{
    height:80px;
  }
}
#topNav.scrolled{
  height:80px;
}

/*---------------- LANGCHOOSER --------------------*/

#langchooser{
  position: relative;
  float: right;
  
  display: flex; /* Arranges the language options horizontally */
  align-items: center; /* Vertically aligns them in the middle */
 gap: 10px; /* Adds space between the language options */
 padding-left: 100px;
}
.lang-option {
    text-decoration: none; /* Removes underline from links */
    padding: 5px 5px; /* Top/bottom and left/right padding */
    
    font-size: 1rem;
    
    cursor: pointer; /* Indicates it's clickable */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions for hover/active states */
}
/* Style for the active language */
.lang-option.active {
    
    border-bottom: 4px solid;
    transform: translate(0px, 2px);
}

/* Style for inactive languages */
.lang-option:not(.active) {
    background-color: transparent; /* No background for inactive */
   
}

/* Hover effect for inactive languages */
.lang-option:not(.active):hover {
    background-color: #f0f0f0; /* Light gray background on hover */
    color: #2c3e50; /* Darker text on hover */
}
.chooser_eng{
  
  
}
.chooser_nl{
  margin-left: -0.3em;
}

/*------------------------------------*/
#menu{
  display: flex;
    justify-content: space-between;
    align-items: center;
    float: right;
}
.menu-items {
    display: flex;
    align-items: center;
}
.menu-items ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-items ul li a {
    padding: 10px 15px;
    text-decoration: none;
    
}
.hamburger-toggle{
  display: none;
  position: absolute;
}
#hamburger{
  position: absolute;
  top: 0px;
  right: 0px;
  letter-spacing: .1em;
  
  transform: rotate(90deg) scaleY(1.2) translateY(2.9px);
}
#closehamburger{
  position: absolute;
  top: 0px;
  right: 0px;
  transition: color 0.5s ease;
  display: none;
  font-weight: 400;
  transform: scale(2) translateY(0px) translateX(-2px)rotate(45deg);
}

@media only screen and (max-width: 1050px) {
  .menu {
    flex-wrap: wrap; /* Allow items to wrap */
  }
   .hamburger-toggle{
    display: block;
  }
  .menu-items {
       
    flex-direction: column; /* Stack items vertically */
    width: 100%;
    /* Absolute positioning to take over the screen,
       or fix to a side for a drawer effect */
    position: absolute;
    top:50px /* height of header */;
    left: 0;
    background-color: white;
    z-index: 1000;   
    overflow-y: auto; /* Scroll if content is long */
    /* transform: translateY(-100%); Start completely above */
    opacity: 0; /* Start hidden */
    transition: transform 0.3s ease-out, opacity 0.2s ease-out; /* Smooth slide and fade */
    pointer-events: none; /* Prevent interaction when hidden */
  }
  body.black .menu-items{
    background-color: var(--mainBackground-color);
  }
  .menu-items.open {
    display: flex; /* Show menu when open */
    /* padding-right: 20px;
    transform: translateY(0% ); Slide down to correct position */
    opacity: 1;
    pointer-events: auto; /* Allow interaction when open */
    align-items: center; 
  }
  .menu-items ul {
    flex-direction: column; /* Stack vertically */
    align-items: center;      /* Centers horizontally within the column */
    justify-content: center;  /* Centers vertically */
    width: 100%;
  }
  .menu-items ul li {
    width: 100%;
    text-align: center;      
  }
  .menu-items ul li a {
      display: block; /* Make links fill the width */
      padding: 15px 20px;      
  }
  #langchooser {    
    text-align: center;
    margin-top: 20px; /* Space from menu items */
    padding-bottom: 3020px;
    margin-left: 0;
    padding-right: 0;  
    padding-left: 0;     
  }
}
#mobileMenuItems{
  background-color: white;
  width:100%;
  height: auto;
  position: absolute;
  right: 0px;
  top: 50px;
  display: none;
}

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

#footer{  
  
  height:160px;
  display: flex;
  justify-content: space-between; /* Pushes content to the left and right */
  align-items: flex-end; /* Aligns content to the bottom */
  flex-direction: row;
  padding-bottom: 20px;
}

#footer .social{
  display: flex;
  gap: 10px
  
}
#footer .social .icon{
  width :25px;
  height:25px;
 mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--mainText_color); 
}


@media only screen and (max-width: 600px) {
  #footer{
    height:30px;     
    margin-top: 40px;  
    padding-bottom: 10px;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
  }
  #footerText1{
    padding-bottom: 20px;
  }
  #footer .social{
    padding-bottom: 20px;
    gap: 15px
  }
  #footer .social .icon{
    width :20px;
    height:20x;
  }
}
/*---------------- ///FOOTER --------------------*/
#loader{
  
  position: absolute;
  left:0;
  top:0;
  width :100%;
  height: 100%;
  z-index: 100010;
  background-color: rgba(255, 255, 255, 1);
}

/*------------FRONT PAGE-----------*/
#coverpage{
  height:auto;  
}

/*------------VIMEO----------*/


.vimeo-container {
  position: relative;
  width: 100%;
  /* padding-top: 31.25%; Original 1920x600 aspect ratio: (600/1920)*100 */
  height: 100%;
  overflow: hidden; /* Crucial for clipping the content */
  background-color: #ffffff;
  
  
}
.vimeo-container iframe{
   opacity: 0;
    transition: opacity 1s ease-in-out; /* Set a transition duration */
}
.vimeo-container.is-ready iframe {
  opacity: 1;
}
.vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 50%; 
  height: 100%;
  aspect-ratio: 192/60;
  transform: translatex(-50%);
   
}
.vimeo-wrapper iframe {
  width: 100%;
  height: 100%;
  
  
}
/* Inner wrapper for object-fit and positioning */




}
/*-----------JS---------*/
.js-container {
   opacity: 0;
    transition: opacity 1s ease-in-out; /* Set a transition duration */
}
.js-container.is-ready  {
  opacity: 1;
}
/*------------SLIDER---------*/


.featured-slider{
   position: relative;
  width: 100%;
  /*aspect-ratio: 192/60;*/
  height:65vh;
  overflow: hidden; /* Crucial for clipping the content */
  
}
@media (orientation: portrait) {
  .featured-slider {
    /*aspect-ratio: 4/3;*/
    height:50vh;
  }
 }


.gallery-link {
    display: block; /* Ensure the link takes up space for the image */
    width: 100%;
    height: 100%;
    position: absolute; /* Allows stacking and fills container */
    top: 0;
    left: 0;
    
    transition: opacity 2s ease-in-out; /* Fade transition */
    /* Add transition for transform as well, but this will be applied to the image inside */
}
.gallery-link.inactive {
    opacity: 0; /* Fade in when active */
}
.gallery-link.active {
    opacity: 1; /* Fade in when active */
}
.gallery-link.fading {
    opacity: 0; /* Fade out */
}

/* For inactive links, keep previous styles that disable clicks */
.gallery-link.inactive {
    pointer-events: none;
    cursor: default;
}


.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container */
    
    /* Initial state for the image: slightly zoomed in */
    transform: scale(1.3); 
    
    /* Add a transition for the transform property */
    transition: transform 10s ease-out; /* Zoom over 8 seconds, making it slow */

    /* The object-position will be set by JS and influences the zoom origin */
    /* object-position: 50% 50%; (This will be set dynamically) */
}

/* When the link is active, trigger the zoom on its child image */
.gallery-link.active .gallery-image {
    transform: scale(1); /* Zoom in by 15% - adjust as needed */
}

/* Position the parent container */
.gallery-info {
  position: absolute;
  bottom: 20px; /* Adjust as needed */
  left: 80px; /* Adjust as needed */
  z-index: 5;
  
  /* Flexbox for stacking and alignment */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: flex-start; /* Align children to the left (cross-axis) */
  justify-content: flex-end; /* Align children to the bottom (main-axis) */
}

@media screen and (max-width: 1750px) {
  .gallery-info {

   left: 60px; /* Adjust as needed */
 }
}
@media screen and (max-width: 1200px) {
  .gallery-info {

   left: 40px; /* Adjust as needed */
 }
}
@media screen and (max-width: 600px) {
  .gallery-info {

   left: 20px; /* Adjust as needed */
 }
}
/* Style for Category (Top Left) */
.gallery-category,
.gallery-name {
  color: white;
  
  padding: 0px 0px;
  margin: 2px 0; /* Add a small gap between them */
  font-size: 0.9em;
  
}

/* Additional styling for the name */
.gallery-name {
  font-size: 1.2rem;
  font-weight: bold;

}
@media only screen and (max-width: 830px) {
  .gallery-info {
    position: absolute;
    bottom:10px; /* Adjust as needed */
  
  }
  .gallery-category {  
    font-size: 0.8rem;
    top: 0px; /* Adjust as needed */
    left:0px; /* Adjust as needed */
    padding: 0px 0px;
  }
  .gallery-name {  
    font-size: 0.8rem;
    bottom: 0px; /* Adjust as needed */
    right: 0px; /* Adjust as needed */
    padding: 0px 0px;
  }
}
/* When the link is active, make the text visible */
.gallery-link.active .gallery-category,
.gallery-link.active .gallery-name {
    opacity: 1;
}


 
.intro-home{
  margin-top: 100px;
  margin-bottom: 100px;
}

@media screen and (max-width: 700px) {
  .intro-home{
    margin-top: 50px;
   margin-bottom: 50px;
  }
}
.portfolio_introduction{
  font-weight: 600;
  font-size: 1.4rem;
  
  padding-bottom: 20px;
  letter-spacing:0.05em;
}
@media screen and (max-width: 1400px) {
  .portfolio_introduction{
    font-size: 1.1rem;
    padding-bottom: 10px;
  }
}




/*----------------  PROJECT Page----------------  */
#projects{
  width: 100%;
  left:0px; 
}
.project {
    width: 100%; 
    height: auto;    
    display: grid;
    grid-template-columns: repeat(2, 1fr) ;
  }
/*------------IMAGES-----------*/
.imgContainer{
  grid-column: 1 / -1; /* Spans all columns */
    width: 100%; 

    height:80vh;   
    float:left;
    top:0px;
    left:0px;
    
    transition: opacity 1s ease;
   background-size: cover;
    position: relative;
}

 @media screen and (min-width: 1600px) {
  .imgContainer{
    height:80vh;  
  }
 }

@media screen and (max-width: 600px) {
  .imgContainer{
    height:80vh; 
    max-height:100vw;

  }
  .hero-section{
   max-height:none;
  }
 }

/*------------VIMEO-----------*/


/*------------DESCRIPTION-----------*/

.projectinfo{
    grid-row-start:2;
  
    max-width: 1000px;
    margin: auto;
    grid-column: 1 / -1; /* Spans all columns */
   
    margin-bottom: 15vh;
    margin-top: 15vh;
}
@media screen and (max-width: 1200px) {
  
  .projectinfo{
   
    max-width: 750px;
  }
}

@media screen and (max-width: 800px) {
  .projectinfo{
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  
  
}

/*------------NAVIGATION-----------*/
.prevNext{
  width:100%;
 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  
  
  font-weight: 600;
  padding-top: 50px;
  font-size: 1.2rem;
  text-transform: uppercase;
  grid-column: 1 / -1; /* Spans all columns */
  margin-top: 0px;
  
}
.prev{
 
  text-align: center;
  opacity: 0.3;
  cursor: default;

}
.next{
  
  text-align: center;
  opacity: 0.3;
   cursor: default;
  

}
.prevNext a{
  text-decoration: none;
  
}
a .prev{
  opacity: 1;
  cursor: pointer;
}
a .next{
  opacity: 1;
   cursor: pointer;
}
@media screen and (max-width: 800px) {
    .prevNext{
      padding-top: 25px;
       font-size: 1rem;
    }
  
}
@media screen and (max-width: 500px) {
  .prevNext{
    padding-top: 10px;
       font-size: 0.8rem;
    }
  .prev{
    max-width:100px;
    margin: auto;
  }
  .next{
    max-width:100px;
    margin: auto;
  }
}
/*------------CREDITS-----------*/

.credits{
    margin-top: -10px;
    grid-column: 1 / -1;
  }
@media screen and (max-width: 1600px) {
  .credits{
    margin-top: -20px
  }
}
@media screen and (max-width: 1200px) {
  .credits{
    margin-top: -10px
  }
}@media screen and (max-width: 600px) {
  .credits{
    margin-top: 0px;
    
  }
}
.extrainfo{
  font-weight: 500;
  
  font-size: 0.8rem;
  line-height: 1.6em;
  display: inline-block;
  
    
}
 /*------------FULL SCREEN-----------*/
 .fullscreen{
 
  height:100vh;
 }


  /*------------GRID-NORMAL-----------*/
.half{
  grid-column: span 1;
}
@media screen and (max-width: 1200px) {
  .project {
    
    grid-template-columns: repeat(1, 1fr) ;
  }
  
  
 }

/*------------GRID-SQUARES-----------*/
.three_columns_grid{
 grid-template-columns:repeat(3, 1fr);
         
}
.three_columns_grid .projectinfo{
  grid-column: span 3;
}
.three_columns_grid .prevNext{
  grid-column: span 3;
}
.square{
  grid-column: span 1;
 
  height: auto;
}
.square img{
   aspect-ratio: 1;
}
@media screen and (max-width: 1200px) {
  .three_columns_grid{
    grid-template-columns:repeat(2, 1fr);  
          
  }
  .three_columns_grid .projectinfo{
     grid-column: span 2;
  }
  .three_columns_grid .prevNext{
    grid-column: span 2;
  }
  .three_columns_grid .credits{
   
    grid-column:span 2;
  }
}
@media screen and (max-width: 800px) {
  .three_columns_grid{
     grid-template-columns:repeat(1, 1fr);   
     gap: 20px 20px;       
  }
  .three_columns_grid .projectinfo{
    grid-column: span 1;
  }
  .three_columns_grid .prevNext{
    grid-column: span 1;
  }
  .three_columns_grid .credits{
    
    grid-column:span 1;
  }
}








/*------------Contact PAGE-----------*/


#contactPage{ 
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;  
}
#contactPage .hero-section{
  grid-column: span 4;
  height:65vh;
  margin-bottom: 70px;
}
#emails{
  grid-column: span 2;
}
#visit{
   grid-column: span 2;
}
@media screen and (max-width: 1400px) {
  #contactPage{
     grid-template-columns: repeat(2, 1fr) ; 
  } 
  #contactPage.hero-section{
    grid-column: span 2;
  }
  #emails{
  grid-column: span 1;
  }
  #visit{
   grid-column: span 1;
  }
  .map{
    grid-column: span 2;
  }
}
@media screen and (max-width: 600px) {
  #contactPage{
   
    grid-template-columns: repeat(1, 1fr) ;  
  }
  #contactPage .hero-section{
    grid-column: span 1;
  }
  .map{
    grid-column: span 1;
  }
  #contactPage .hero-section{
 
  height:40vh;
  }
}
/*----------------  ABOUT Page----------------  */
#aboutPage .hero-section{
   
   height:65vh;
}
#aboutPage .hero-section img{
   object-fit: cover;
   object-position: 50% 80%;
}
#aboutPage{
 
  display: grid;
  grid-template-columns: repeat(3, 1fr) ;

  gap: 80px 80px;
  width: 100%;
}

.column_double{
  grid-column: span 4;
}

.over{
  grid-column: span 4;
}

.aboutfoto{
 
  
}
@media only screen and (max-width: 700px) { 
#aboutPage .hero-section{
   
   height:40vh;
}
}

.row{
   grid-column: 1 / -1; /* Spans all columns */
}
.quote{
   font-size: 1.4rem;
   text-align: center;
}
#clients{
  
  
  background-color:  var(--mainBackground-color);
  
  display: grid;
  grid-template-columns: repeat(2, 1fr) ;

}

#working{
  grid-column: span 2;
  padding: 60px 0 0 0px;
}
.clientimgs{
  width:100%;
 
  background-color:  var(--mainBackground-color);
  background-size: cover;
  aspect-ratio: 1201/801;
  
}
#over{
 
  margin: auto;
  max-width: 1000px;
}

.column{
  
  padding-left: 10px;
}
@media only screen and (max-width: 1200px) { 
  #aboutPage{
    
    grid-template-columns: repeat(2, 1fr) ; 
  }
  
}
@media only screen and (max-width: 800px) { 
  #aboutPage{
   
    grid-template-columns: repeat(1, 1fr) ;
      
  }
  #clients{   
    grid-template-columns: repeat(1, 1fr) ;
  }
  #working{
    grid-column: span 1;
  }
  #over{
    grid-column: span 1;
  }
}


#clients1{
  mask-image: url("../imgs/about/klanten_1.png");
background-color: var(--mainText_color);
mask-repeat: no-repeat;
mask-size: contain;
  }

#clients2{
  mask-image: url("../imgs/about/klanten_2.png");
background-color: var(--mainText_color);
mask-repeat: no-repeat;
mask-size: contain;
  }



#contactPage .social {
  width:100%;
}
#contactPage .social .icon{
  width :30px;
  height:30px;
  margin-right:10px;
  margin-left:10px;
  float:left;
  background-size: 30px 30px;

  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--mainText_color); 
}
#contactPage .social  .insta{
  margin-left: 0px;
}


 
  


.insta{
  mask-image: url("../../mokersite/imgs/social/insta.svg"); 
}

.linkedin{
   mask-image: url("../../mokersite/imgs/social/linkedin.svg"); 
}
.mail{

  mask-image: url("../../mokersite/imgs/social/mail.svg"); 
  
}
/*------------THUMBNAILS-----------*/

#grid{ 
  
  width:100%;
  height: auto;
  
  display: grid;
  grid-template-columns: repeat(3, 1fr) ;  
  overflow: auto;
  
}
@media screen and (max-width: 1700px) {
  #grid{      
     padding-top:40px;
  }
}
@media screen and (max-width: 1400px) {
  #grid{    
     padding-top:20px;
      grid-template-columns: repeat(2, 1fr)  ;
  }
 
}

@media screen and (max-width: 800px) {
  #grid{
    grid-template-columns: repeat(1, 1fr) ;
    
     padding-top:0px;
  }
}
.thumbContainer{
  aspect-ratio: 16 / 12;
  overflow: hidden;

}
.thumb{ 
   /* Add a transition for the transform property */
    transition: transform .2s ease-out, opacity 1s ease-in-out; /* Zoom over 8 seconds, making it slow */
}
.thumb:hover{
   transform: scale(1.05); 
}
.thumbTitles{
  padding-bottom: 20px;
}
.thumbTitle{
  font-weight:600;
  text-decoration:none;
  padding-top: 20px;
  font-size: 1.4rem;
 
}
.thumbSubtitle{
  line-height: 1.6rem;
 
}
.thumbHolder{
  text-decoration:none;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .thumbHolder{
    margin-bottom: 20px;
  }
}
#grid a  {
  text-decoration:none;
}
@media screen and (max-width: 1400px) {
  .thumbTitle{
    padding-top: 20px;
  }
}
@media screen and (max-width: 800px) {
   .thumbTitle{
    padding-top: 10px;

}




