@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,500;1,100&family=Quicksand:wght@300;400;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html, body {
  scroll-behavior: smooth;
    height: 100%;
    font-family: 'Montserrat', sans-serif;  
    text-align: center;  
    color: #97999C;    
    overflow: hidden;
  }  
  /* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
}


/* Navigatie Bar */
.navbar {
    font-size: 30px;
    text-align: center;   
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color:#97999C;
    overflow-x: hidden;
    transition: all 2s ease;
}
.navbar .menu {
  display: block;
  position: relative;
  top: 15%;
  width: 100%;
  text-align: left;
  padding:35px;
  flex-wrap: wrap;
}
.navbar .menu li {
  list-style: none;  
}
.navbar .menu li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.navbar .menu li h1:hover{
  text-decoration: underline;
  transition: all 1s ease;
  cursor: pointer;
}
.navbar .menu li div{
  font-size: 22px;
    display: none;
    
  cursor: pointer;
  padding-bottom: 20px;  
}
.navbar .menu li a:hover span{
  text-decoration: underline;
}
.navbar .menu li ul {
  font-size: 22px;
  display: none;
  margin-left: 30px;
}
.navbar .menu li ul a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.navbar .homebtn {
  color: #fff;
  position:absolute;
  top: 85%;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  padding-left: 50px;  
  cursor: pointer;
  transition: all 0.3s ease; 
}

.navbar .homebtn img{
  width: 15%;
}
.navbar .homebtn.show{
  opacity: 1;
  pointer-events: auto;
}

/* Menu Btn Styling*/
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor:pointer;
    display: none;
    margin: 20px;
    text-align: right;
}

/* Section Overal */
.home {
  display: flex;
  justify-content: center;  
  height: 100vh;
  margin: 0;
  background-size: cover;
}
.who, .about, .contact{
    height: 100vh;  
  margin-left: 25%;  
}
.who-grid, 
.contact-grid 
{ display: grid;
height: 100vh;
grid-template-columns: repeat( 3, 1fr);
gap: 10px;
grid-auto-rows: minmax(100px, auto);
}

header {  
  letter-spacing: 1.5px;  
  padding: 20px;
  text-align: center;
  grid-column: 1/3;
  grid-row: 1 ;
}
.who p, .about p, .contact p, .wordSearch p{
  font-family: "Quicksand", sans-serif;
}

/* Section Home */
.home {
    align-items: center;
}
.home .slider {
  position: relative;
  height: 400px;
  width: 400px;
  transform-style: preserve-3d;
  animation: rotate 10s linear infinite;
  border-radius: 50%;  
  cursor: pointer;
 }  
 .home .slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
 }  
 .home .slide.visible {
  opacity: 1;
 }  
 @keyframes rotate {
  0% {
  transform: rotateY(90deg);
  }  
  47%, 53% {
  transform: rotateY(270deg);
  }  
  94%, 100% {
  transform: rotateY(450deg);
  }
 }  
 .home .slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%; 
 }

/*Section  WHO Style */

.who header  {
  color: #34bc93;  
}
.who .who-content{
  grid-column: 1/3 ;
  grid-row: 2 ;  
  margin: -50px 0 0 50px;
}
.who .who-content p {
  text-align: justify;
}

.who .who-picture{
  grid-column: 3/4;
  grid-row: 2 ; 
  top: 0;    
  margin: -50px 50px 0 50px;
  width: 300px;
}
.who .who-picture img{
  width: 100%;
  border-radius: 6%; 
}
/*Section About Style */
.about{
  height: 100vh;  
  margin-left: 25%;
}
.about .about-gallery{  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding:0;
  min-height: 100vh;
}
.about .card-container{
  overflow: hidden;
  position: relative;
  padding: 10px;
  }

.about .card-container figure{
  object-fit: cover;
  height: 100%;
  position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.about .card-container img,
.about .card-container iframe{ 
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .card-container iframe{
  border: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about figcaption{  
  font-size: 0;
  color: #fff;
  position: absolute;
  padding: 10px;
  height: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center; 
  opacity: 1;
  transition: 1s ease;
  background-color: rgba(101, 102, 174, 0.75); 
  border-radius:0 30% 0 0;
}
.about figcaption .titel{    
  display: inline-block;
  vertical-align: middle;
}
.about figcaption h2{
  font-size: 20px;
  font-weight: 700;
  margin-top: 0px;
}
.about figcaption p{
  font-size: 13px;
  padding: 20px;
  text-align: justify;
  font-weight: 400;
}
.about .card-container:hover figcaption {
  opacity: 1;
  cursor: pointer;
  transition: all 0.5s ease-out;
  height: 100%;
  background-color:#6566AE ;
}
/* About Button */
.about figcaption .button{
  height: 100%;
  width: 100%;
  padding: 5px 10px 8px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;    
  font-family: 'Montserrat', sans-serif;       
}
.about figcaption a:hover {
  color: #6566AE;
  background-color: #fff;
  font-weight: 500;
}
.about figcaption a:active{
  background-color:#6566AE;
}

/*Section  contact Style */

.contact header {
  color: #f59899;
}

.contact .contact-content h4{
  font-weight: 400;
}

.contact .contact-content-left{
 text-align: right;
  grid-column: 1;
  grid-row: 2;  
  margin: -50px 20px 0 0 ;
}
.contact .contact-content-left  p{
  font-style: italic;
  font-weight: 300;
  padding-bottom: 20px; 
}
.contact .contact-content-left .row i{
  font-size: 24px;
  padding: 20px 0 0 20px;
  color: #97999C;
}
.contact  .contact-content-right{
  grid-column: 2;
  grid-row: 2;
  margin: -50px 0 0 20px  ;
}
.contact  .contact-content-right p{
  padding: 0 0 20px 0;
  text-align: justify;
}
.contact .contact-content-right i{
  color:#F59899;
}
.contact .contact-content-right form .fields{
  display: flex;
}
.contact .contact-content-right form .name{ 
  width: 50%;
}
.contact .contact-content-right form .email{
  width: 50%;
}
.contact .contact-content-right form .field input,
.contact .contact-content-right form .textarea textarea{
  height: 100%;
  width: 100%;
  color: #97999C;
  border-radius: 6px;
  border: 2px solid #F59899;
  background: #fff;
  padding: 0 15px;    
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.contact .contact-content-right form .textarea textarea{
  padding-top: 10px;
  resize: none;
  font-family: 'Quicksand', sans-serif;
}
.contact .contact-content-right form .button button{
  height: 100%;
  width: 100%;
  background: #F59899;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  border: 4px solid #F59899;
  cursor: pointer;
  transition: all 0.3s ease;    
  font-family: 'Montserrat', sans-serif;       
}
.contact .contact-content-right form .button:hover button{
background-color: #f5abad;
}
.contact .contact-content-right form .button:active button{
  transform: scale(0.88);
}

/* Footer */
footer {
  font-size: 12px;
  color: #97999C;
  position:sticky;
  text-align: right;
  bottom: 0px;
  padding: 0 15px 15px 0;
}
footer a{
  font-weight: 600;
  color: #34bc93;
}

/* Word Search*/

/* Word Search navbar simple */
.navbarWord{
  font-size: 30px;
  text-align: center;   
  height: 100%;
  width: 25%;
  background-color: #6566ae;
  position: fixed;  
  left: 0;
}
.navbarWord h1{
  color: #fff;
  text-align: left;
  margin-top: 15%;
  margin-left: 35px;
}
.navbarWord a{
  color: #fff;
  font-size: 20px;
  position:absolute;
  top: 85%;
  right: 20px;
  z-index: 9999;
  padding-left: 50px; 
  cursor: pointer;
  transition: all 2s ease;  
}
.navbarWord a:hover{
  text-decoration: underline;
  transition: all 1s ease;
  cursor: pointer;
}

/*responsive media query start */
@media (max-width: 1300px){
  .home .max-width{
      margin-left: 0px;
  }
}
 
@media (max-width: 920px){
  .menu-btn{
    display: block;
    z-index: 999;
  }
.menu-btn i.active::before{
  content: "\f00d";
  } 
 

.navbar .menu.active{
  left: 0;
}
   .navbar .menu li{
        display: block;
    }
}
  @media (max-width: 690px){
    .max-width .slider {
      width: 300px;
      height: 300px;
  }
  }
  @media (max-width: 450px){
    html, body {
      overflow:auto;
    }
    .max-width .slider {
      width: 200px;
      height: 200px;
    }
 
    
  }
/*font-family:
   'Montserrat', sans-serif;
    'Quicksand', sans-serif;
*/
/* colors: 
    Blue-ish    #34BC93 
    Purple-ish  #6566AE    
    Pink-ish    #F59899 
    Gray       #97999C
*/