/*
==============================================================
  menu.css
==============================================================
*/

@charset "UTF-8";
/* CSS Document */


#topmenu .language-item.active {
	background-color: #CCC;
}

#topmenu .language-item:hover {
	background-color: #CCC;
}

#topmenu #icon-wrapper {
	display: inline-block;
    float: right;
}

#topmenu #icon-wrapper .icon {
    margin: 10px;
    cursor: pointer;
    color: #333;
}

#topmenu #icon-wrapper .icon:hover {

}

#topmenu #icon-wrapper .icon:not(.login-required) {
	display: inline-block;
}

/* HEADER */
#tc-header-wrapper {

    display: flex;
	align-items: center;
	justify-content: space-between;
    /*width: 80%;*/
}

#tc-main-nav-wrapper {
	display: flex;
	justify-content: center;
}

.tc-bg-color-navy-blue{
	background-color: #212348;
}

.tc-nav-arrow{
    width:15px; height: 10px;
}

.submenu-indicator {
    position: absolute; /* of fixed als je wilt dat het altijd zichtbaar blijft */
    top: 10px;
    right: 10px;
    color: #C467A5; /* paars */
    font-weight: bold;
    font-size: 16px;
    z-index: 999;
}

.hamburger.is-open .menui{
	background-color: #FFF;
}

#tc-main-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

#tc-submenu-carousel{
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	font-weight: 700;
    padding: 0 0 30px 0;
}

#tc-submenu-carousel .slick-slide {
    position: relative;
    /*margin-right: 20px;*/
    width: auto;
    /*padding: 15px 15px;*/

}

#tc-submenu-carousel .slick-slide a:hover {
    color: #C467A5;
}

#tc-submenu-carousel .slick-slide:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px; /* plaats het tussen de slides */
    top: 50%;
    transform: translateY(-50%);
    /*width: 8px;*/
    height: 8px;
    background-color: #C467A5; /* kleur van het bolletje */
    border-radius: 50%;


}

#tc-submenu-carousel .carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

#tc-submenu-carousel .carousel-item a {
    white-space: nowrap;       /* voorkomt wrappen */
    display: inline-block;
}

.tc-project-nav-link{

    display: inline-flex;
    align-items: center;
	gap: 5px;
}

.tc-project-nav-link span{
    font-size: 16px;
}

.tc-project-nav-link span:first-of-type{
    white-space: nowrap;
}

.tc-project-nav{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.projectNav{
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

/*MENU*/

/*ICONS*/

#top-menu #language-wrapper .language-item{
    margin: 1px 5px;
    cursor: pointer;
	display: inline-block;
	box-sizing: border-box;
	padding: 5px 0;
	font-size: 16px;
	text-transform: uppercase;
	width: 24px;
	height: 24px;
	text-align: center;
	border-radius: 12px;
}

#top-menu .language-item.active {
	background-color: #CCC;
}

#top-menu .language-item:hover {
	background-color: #CCC;
}

.tc-header{
	position: sticky;
    top: 0;
	width: 100vw;
	background-color: #FFF;
	z-index: 100;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0;
}

#tc-header-wrapper{
		width: 90%;
        max-width: 1920px;
        padding: 30px 0;
}

#top-nav-wrapper{
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    justify-content: flex-end;
}

.main-nav li.menuitem:not(:last-child):after{
	content: "•";
    color: #C467A5;
    font-size: 36px;
    padding-left: 16px;
    line-height: 10px;
    padding-top: 12px;
}

.hamburger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 60px;
  cursor: pointer;
  /*position: absolute;*/
  right: 102px;
  top: 37px;
  z-index: 9999;
  background: transparent;
  padding: 10px 0 10px 3px;
  box-sizing: border-box;


}

.hamburger.small {
  top: 5px;
}

/* de bolletjes (startstate) */
.hamburger .menui {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #C467A5;
  display: inline-block;
  transition:
    transform .28s cubic-bezier(.2,.9,.3,1),
    opacity .20s ease,
    background-color .18s ease,
    width .22s ease,
    height .22s ease,
    border-radius .22s ease;
  transform-origin: center center;
  pointer-events: auto;
}

.hamburger.is-open{

  margin-left: 3px;

}

/* open state */
.hamburger.is-open .mid-menu {
  opacity: 0;
  transform: scale(0);
  width: 0;
  height: 0;
}

/* top & bottom transformeren naar streepjes en kruisen elkaar vanuit het centrum */
.hamburger.is-open .top-menu,
.hamburger.is-open .bottom-menu {
  width: 40px;       /* streepjes langer */
  height: 5px;       /* streepjes dikker */
  border-radius: 3px;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transition: all 0.3s ease;
}

/* top naar diagonaal */
.hamburger.is-open .top-menu {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* bottom naar diagonaal */
.hamburger.is-open .bottom-menu {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* UNDERLAY (met blauwe kleur voorbeeld) */
#mobilemenu_underlay {
  position: fixed;
  inset: 0;                       /* top:0; left:0; right:0; bottom:0; */
  background: rgba(0,96,255,0.18);/* << blauwe overlay - pas aan naar wens */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 90;
  pointer-events: none;
  /* geen visibility hier — zo blijft de transitie werken */
}

/* actief = zichtbaar en klikbaar */
#mobilemenu_underlay.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* MENU-CONTAINER */

#menu-container.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

#menu-container {

    position: fixed;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 100;
    background: #212348; /* pas aan */
    pointer-events: none;
    padding-top: 15px;
	display: none;
	opacity: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*gap: 1.2rem;*/
	height: 100vh;
    width: 100vw;
    overflow: scroll;

}

#tc-main-menu {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

#default-nav {
    display: none !important;
}

#menu-container.active #default-nav {
    display: flex !important;
}

#tc-nav-title {
  color: #C467A5;
  font-weight: 500;
  font-size: 26px;
  display: flex;
  align-items: center;
}

#tc-nav-title span {
  line-height: 1;
  display: block;
}

/* Fix for most browsers */
#tc-nav-title span {
  margin-bottom: 4px;
}


/* Firefox-only: remove the fix */
@supports (-moz-appearance: none) {
  #tc-nav-title span {
    margin-bottom: 0px;
  }

  #tc-nav-title span {
    margin-bottom: 0px;
  }
}

#default-nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
	height: 100vh;
	justify-content: space-evenly;
}

#default-nav li.active a{
    color: #FCF6BD !important;
}

#default-nav li a {
	text-decoration: none;
    color: #C467A5;
    transition: color 0.3s;
    font-weight: 500;
	font-size: 85px;
}

#default-nav li a:hover {
	color: #FCF6BD !important;
}

#default-nav li.mobile-only a{
    color: #FFF;
}

#main-nav .menuitem.active a{
    color: #C467A5 !important;
}

.tc-sub-nav{
	padding-left: 80px;
	color: #212348;
	font-size: 20px;
	gap: 20px;
	display: flex;
	flex-direction: column;
	margin: 50px 0;
}

.menuitem .tc-sub-nav{
	display: flex;
	flex-direction: column;
}

.menuitem.active .tc-sub-nav{
	display: block !important;
}

/* Submenu pages*/
.intro-submenus{
	width: 70%;
	display: flex;
	flex-direction: column;
    padding-left: 150px;
    padding-top: 60px;
}

.intro-submenus p{
	padding-left: 50px;
}

.tc-intro-wrapper-submenus{
	padding-bottom: 50px;
}

.button-submenus{
	margin-left: 150px;
	margin-top: 50px;
}

.tc-projects-grid-item-info-submenus{
	margin-top: 20px;
}

.grid-item-submenus {
  float: left;
  box-sizing:border-box;
  border: 2px solid rgba(255,255,255,0.00);
}

.grid-item-submenus img{
    width:100%;
	display: block;
	height: auto;
}

.grid-item-submenus, .grid-sizer {
	width: 33.333%;
	padding: 20px 5px;
}

.grid-item-submenus--width1 {
  width: 33.333%;
}

.grid-item-submenus:hover {
  background-color: #FFFFFF;
	transition: 0.5s;
}

.grid-item-submenus img {
  display: block;
  max-width: 90%;
}

/* SUBMENU */

img.submenu-icon {
    width: 30px;
	height: 30px;
	margin-right: 10px;
}

/* TOPMENU */

#topmenu-wrapper{
	background-color: transparent;
}

#top-menu-left{
	display: flex;
	float: right;
	width: 100%;
	padding: 5px;

}

#top-menu{
	float: right;
}

.tc-content-wrapper div:not(.tc-project-nav) p:last-of-type{
    margin-bottom: 0;
}

.tc-footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen = menu-1 */
    gap: 1rem;
    position: relative;
	margin-top: 208px;
	width: 67%;
	text-align: left;
}

.footer-main-nav li.menuitem{
	padding: 5px;
}

.footer-main-nav{
	list-style: none;
	display: flex;
	justify-content: flex-end;
	font-size: small;
}

#site-footer .main-nav{
	list-style: none;
	margin: 35px 0 0 0;
}

#main-nav li.menuitem{
	cursor:pointer;
	text-decoration: none;
	display: inline-flex;

}

#main-nav li.menuitem:hover{
	text-decoration:none;
}

#main-nav li.menuitem:hover > a{
	color: #C467A5;
}

ul.main-nav{

    margin: 1em;
	display: flex;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
    font-weight: 500;
    font-size: 26px;
}

/* MEDIA QUERIES SCREEN */




/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {

    #tc-nav-title span {
      margin-bottom: 2px;
    }

    #tc-nav-title{
        display: none !important;
    }

    @supports (-moz-appearance: none) {
      #tc-nav-title span {
        margin-bottom: 0px;
      }
    }


    #tc-employee-image{
        width: 75%;
    }

    .tc-employee-content{
        width: 100%;
    }


    .mobile-only{
        display: inline-block !important;
    }


    #default-nav li a {
        font-size: 40px;
    }


    #tc-main-nav-wrapper{
        display: none;
    }

    /* main typo */

    p {
        font-size: 18px; /*desktop font-size: 19px;*/
    }

    p.tc-medium-text{

        font-size:21px; /*desktop font-size:23px;*/
    }

    p.tc-large-text{

        font-size:24px; /*desktop font-size:28px;*/
    }

    p.tc-extra-large-text{
        font-size: 32px; /*desktop font-size:36px;*/
    }

    h1 {
        font-size: 32px; /*desktop font-size:36px;*/
        margin-bottom: 30px;
    }

    h2 {
        font-size: 32px; /*desktop font-size: 36px;*/
    }


    h3 {
        font-size: 26px; /*desktop font-size: 30px;*/
    }

    h4 {
        font-size: 24px; /*desktop font-size: 26px;*/
    }

    /*main containers*/

     .tc-content-wrapper {
        margin: 25px 5%;
        width: 90%;
        box-sizing: content-box;
    }

    /*.tc-intro-wrapper-home {
      padding: 50px 5% 25px 5%;
    }*/

    .tc-intro-wrapper-2-columns{
        flex-direction: column;
        margin: 25px 5%;
    }

    .tc-intro-wrapper {
        margin: 25px 5%;
        width: 90%;
    }

    .tc-main-wrapper-inner > div *[style*="margin-left: 80px;"] {
        /*width: calc(100% - 60px);*/
        margin-left: 60px !important;
    }

    .tc-main-wrapper-inner > div *[style*="margin-left: 40px;"] {
        /*width: calc(100% - 40px);*/
        margin-left: 40px !important;
    }


    .tc-intro-wrapper-left{
        width: 100%;
    }

    .tc-intro-wrapper-right{
        width: 100%;
    }

    .tc-sub-nav {
        padding-left: 60px;
    }

    .tc-intro-wrapper-right img:first-of-type{
        margin-top: 0;
    }

    /*top nav*/




    div.tc-margin-top-20, div.tc-margin-top-40, div.tc-margin-top-60{
        margin-top: 0;
    }

    div.tc-margin-bottom-20, div.tc-margin-bottom-40, div.tc-margin-bottom-60{
        margin-bottom: 0;
    }

    /*grid*/

    .tc-projects-grid-item {
	width: 50%;
    }


    /*footer*/

    #tc-footer-contact{
        font-size: 16px;
    }

    #tc-site-footer{
        flex-direction: column;
    }

    .tc-footer-left{
        width: 100%;
        order: 1;
        flex-direction: row;

        flex-wrap: wrap;
    }

    .tc-footer-right{
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    #tc-footer-contact{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    #tc-footer-contact :nth-child(2) {
      grid-column: 2 / span 2;
    }


    .tc-footer-image{
        width: 100%;

        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tc-footer-image img{

        margin-top: 50px;
        margin-bottom: 60px;
        height: 40px;
    }

    .tc-contact-top {
        font-size: 18px;
    }

    .tc-social-footer{
        margin-top: 0px;
    }


    .tc-contact-tel {
        margin-top: 8px;
    }

    .tc-contact-top{
        margin-bottom: 5px;
    }

    /*others*/

    .tc-employee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    tc-3-clicks-container{
        gap: 10px;
    }

    #tc-quote-wrapper {
        margin: 50px 0 35px 0;
    }

    .tc-quote-inner{
        padding-bottom: 10px;
    }

    .tc-quote-sing-purple{
        font-size: 80px;
    }

    .tc-quote-text {
        font-size: 24px;
        max-width: 400px;
    }

    .tc-quote-person p{
        font-size: 20px;
    }

    .tc-quote-person {
      margin-left: 30px;
    }

    #tc-clients-carousel{
        padding-bottom: 25px;
    }

    .slick-slide a, .carousel-item-dot{
        font-size: 36px;
    }




    /*buttons*/

    div.btn::after, a.btn::after {

        width: 45px;
        height: 45px;
        background-size: 45px;
        border-radius: 20px;

    }

    div.btn, a.btn {
        font-size: 20px;
        border-radius: 20px;
        padding-right: 12px;


    }

    #tc-clients-carousel .carousel-item img {
        height: 150px;
        width: 150px;
    }

    #tc-submenu-carousel{
        padding: 0;
    }

    #tc-projects-grid {

        padding-bottom: 20px;

    }

    .tc-sub-nav {
        gap: 15px;
    }

    ul.tc-arrow-ul li::before {

        width: 35px;
        height: 35px;
        background-size: 30px;

    }

    ul.tc-arrow-ul li a{
        font-size: 18px;
    }

    ul.tc-arrow-ul li{
        padding-left: 45px;
    }

    .videowrapper:not(#tc-video-banner .videowrapper) {
        width: 111.1%;
        margin-left: -5.5%;
        padding-bottom: 62.5%;
    }

}

@media only screen and (max-width: 1279px) {
/*top nav*/

    ul.main-nav, #tc-nav-title{
        font-size: 23px;
        gap: 10px;
    }
.main-nav li.menuitem:not(:last-child)::after{
       /* padding-top: 7px;*/
        padding-left: 10px;
    }
.main-nav li.menuitem:not(:last-child)::after{
        padding-top: 10px;
    }
}

@media only screen and (max-width: 1100px) {
/*top nav*/
    ul.main-nav, #tc-nav-title{
        font-size: 18px;
        gap: 8px;
    }
.main-nav li.menuitem:not(:last-child)::after{
        padding-top: 7px;
        padding-left: 8px;
    }
}

@media only screen and (max-width: 860px) {
ul.main-nav{
        display: none;
    }
#tc-header-wrapper {
      padding: 10px 0;
    }
}

@media only screen and (max-width: 767px) {
/*menu*/

    #default-nav li a {
        font-size: 35px;
    }
.tc-sub-nav {
        width: 90%;
        padding-left: 40px;
    }
}

@media only screen and (max-width: 600px) {
/*menu*/

    #default-nav li a {
        font-size: 30px;
    }
    #tc-main-menu{
            gap: 7px;
    }
    #tc-header-wrapper {
            padding: 5px 0;
    }
    }

@media only screen and (max-width: 479px) {
.tc-sub-nav {
        width: 90%;
        padding-left: 20px;
    }
}

