:root {
    --side-width: 300px;
    --side-margin: 60px;
    --primary-yellow: #ffcc00;
    --primary-green: #006633;
}

body, main {
    margin: 0;
    padding: 0;
    background: #218864;
}


html {
    font-family: Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}
h2, h3, h4 {
    color: white;
    width: 100%;
    text-align: center;
}
nav {
    height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    padding-right: 5%;
    background: #156e56;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}
nav .logo img{
    height: 48px;
}
nav .button-primary {
    height: 28px;
    padding: 4px 16px;
    line-height: 1em;
    margin-left: 20px;
}
.nav-item {
    color: white;
    margin-right: 32px;
    padding-bottom: 6px;
}
.nav-item:hover {
    color: #ffcc00;
    text-decoration: none;
}
.manu {
    padding-top: 10px;
}
nav .current {
    border-bottom: 2px solid #ffcc00;
}
footer {
    height: 60px;
    margin-top: 40px;
    background-color: #156e56;
}
.header {
    position: relative;
    color: white;
    margin-bottom: 80px;
    padding-top: 40px;
    width: 100%;
}
.header-content {
    display: flex;
    width: 100%;
    position: absolute;
    justify-content: center;
}
.header h1 {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 12px rgba(0, 28, 10, 0.486);
    margin-top: 35vh;
    z-index: 100;
}


.image-matrix {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    opacity: 0.3;
    z-index: 10;
}
.tiles__line-img {
    width: 20%;
    height: 40vh;
    margin: 0;
    transition: 0.75s;
}
.button-primary {
    background: #ffcc00;
    color: rgb(0, 0, 0);
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    z-index: 110;
}

#toQuestions {
    position: absolute;
    top: calc(35vh + 80px);
}
.button-primary .fas {
    font-size: 1em;
}
#scrollDown {
    color: white;
    height: 80px;
    width: 40px;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 20px;
    text-align: center;
    padding-top: 30px;
}

#questions {
    padding: 80px;
    margin-bottom: 80px;
}
.question-container {
    background: white;
    width: 50%;
    min-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 40px;
    border-radius: 12 px;
}
.new-question {
    width: 50%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.new-question a {
    margin-top: 20px;
    text-align: center;
    width: 280px;
}

main {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
}

#boardMember {
    width: 50%;
    min-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 100px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#boardMember .list-container {
    margin-top: 40px;
    margin-bottom: 40px;
    color: white;
}
#boardMember .list-container a {
    color: white;
}


#boardMember .member {
    text-align: center;
    margin-bottom: 30px;
}

#boardMember .member-name {
    display: block;
    font-size: 1.2em;
}

#boardMember .member-company {
    display: block;
}

#boardMember .button-primary {
    margin-left: auto;
    margin-right: auto;
}


.socialbar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.15);
    opacity: 0.5;
    transition: 0.5s;
}
.socialbar:hover {
    opacity: 1;
}
.social-media {
    display: flex;
    justify-content: space-between;
}
.social-media i {
    font-size: 2em;
    color: #006633;
}

aside {
    position: absolute;
    top: var(--side-margin);
    bottom: 0;
    left: 10px;
    width: var(--side-width);
    background: rgba(255, 255, 255, 1);
    z-index: 200;
    border-radius: 10px;
    /* box-shadow: 4px 4px 16px rgba(0,0,0,0.15); */
    transition: 1s;
}

.filter-container {
    margin: 16px;
}

#btnToggle {
    position: absolute;
    right: -18px;
    top: calc(50% - 40px);
    background: #ffffff;
    height: 80px;
    width: 18px;
    border-radius: 0 6px 6px 0;
    padding-top: 28px;
    padding-left: 4px;
}

#btnToggle .fas{
    color: #000000;
}

#btnToggle:hover {
    cursor: pointer;
    background: #ffcc00;
}

.list-header {
    background: #ffcc00;
    border-radius: 10px 10px 0 0;
}

.header-title {
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}
.header-title .title {
    width: 100%;
}
.header-title h4 {
    line-height: 32px;
    text-align: center;
    width: 100%;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 900;
}

.header-title h4:hover {
    cursor: pointer;
}

.header-title .title-btn {
    margin: 0;
    height: 100%;
    width: 36px;
    background: var(--primary-yellow);
    border-radius: 0 10px 0 10px;
    text-align: center;
    line-height: 32px;
}

.list-body {
    position: relative;
    height: calc(100% - 72px);
}

/* .list-tabs {
    height: 32px;
    border-bottom: 1px solid rgb(210, 210, 210);
} */
.btn-filter {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 0px 8px;
    margin-top: 6px;
    margin-bottom: 6px;
}
/* .tab-name {
    position: absolute;
    font-size: 0.6em;
    text-align: center;
    top: -16px;
    opacity: 0;
    width: 33%;
} */
.btn-tab:hover > .tab-name {
    opacity: 1;
}
ul {
    padding: 0;
    margin: 0;
}
/* .list-tabs li {
    width: 25%;
    float: left;
    list-style: none;
} */
.list {
    height: 100%;
    background: rgb(255, 255, 255);
    padding-top: 1px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ppl-card {
    display: flex;
    margin: 10px 10px 10px 10px;
    padding: 8px;
    border: 1px solid #d5d5d5;
    background: white;
    border-radius: 6px;
    position: relative;
}
.ppl-card-header {
}
.ppl-card-cover {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 1px solid #006633;
}
.mentor-badge {
    position: absolute;
    right: 10px;
    top: 6px;
    color: #006633;
    font-size: 0.8em;
}
.mentor-badge i {
    color: #FFCC00;
    margin-right: 4px;
    font-size: 1em;
}
.ppl-card-title {
    margin-left: 10px;
    width: 200px;
}
.ppl-card-title .ppl-name{
    font-weight: 700;
    margin-bottom: 4px;
    width: 160px;
}

.ppl-card-title a{
    font-size: 0.7em;
    padding: 2px 8px;
    height: 22px;
    background: #fff3c1;
    color: #cb9100;
    border-radius: 4px;
}
.ppl-card-title .title-link{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ppl-card-title .ppl-title {
    font-size: 0.7em;
    color: #888;
    margin-bottom: 0;
}
.ppl-name:hover {
    cursor: pointer;
    color: #ffcc00;
}
.ppl-card-active {
    border: 1px solid #006633;
}

.project-head h5 {
    max-width: 200px;
    overflow: hidden;
}
.personal-projects {
    padding-left: 16px;
    padding-right: 16px;
}
.project-cards {
    height: calc(100% - 100px);
    background: rgb(255, 255, 255);
    padding-top: 1px;
    overflow-y: hidden;
}
.project-card {
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.project-card .card-text {
    background: #006633a1;
    color: white;
    position: absolute;
    bottom: -68px;
    left: 0;
    width: 100%;
    padding: 10px;
    transition: 0.5s;
    opacity: 0;
}
.project-card:hover .card-text {
    bottom: 0;
    opacity: 1;
}

.project-card .card-title {
    font-weight: 800;
    background: #006633a1;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    opacity: 1;
}
.project-card:hover .card-title {
    opacity: 0;
}

.project-name {
    font-weight: 800;
}
.project-link {
    color: #ffffff;
    text-decoration: underline;
    margin-left: 4px;
}
.project-link:hover {
    color: #ffcc00;
}

.project-year-link {
    display: flex;
}
.project-desc-btn {
    text-decoration: underline;

}
.project-desc-btn:hover {
    cursor: pointer;
    color: #ffcc00;
}
.project-desc-btn::before {
    content: "|";
    margin-left: 4px;
    margin-right: 4px;
}
#projectDescription {
    position: absolute;
    background: #000000d0;
    left: 280px;
    width: 50%;
    min-width: 420px;
    z-index: 1000;
    padding: 20px;
    padding-top: 30px;
    color: white;
    border-radius: 10px;
    font-size: 0.9em;
    max-height: 85vh;
    min-height: 200px;
    overflow-y: scroll;
}

#projectDescription i {
    padding: 4px;
    position: absolute;
    right: 16px;
    top: 16px;
}

#projectDescription i:hover {
    cursor: pointer;
    color: #ffcc00;
}

main h4 {
    color: black;
}

#map {
    position: absolute;
    width: 100%;
    height: calc(100vh - 50px);
    margin-top: 50px
}

#RH_marker {
    background-size: cover;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FFCC00;
    cursor: pointer;
    z-index: 1000;
    transform: translateY(2px)
}
/* #RH_marker:after {
    content: '';
	position: absolute;
	bottom: 3px;
	left: 50%;
	width: 0;
	height: 0;
	border: 12px solid transparent;
	border-top-color: #FFCC00;
	border-bottom: 0;
	margin-left: -10px;
    margin-bottom: -14px;
} */

.userMarker {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFCC00;
    cursor: pointer;
    z-index: 0;
}

.marker-mentor-badge {
    background-color: #FFCC00;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    color: black;
    border: 2px solid #006633;
    position: absolute;
    top: -8px;
    left: -8px;
    padding: 1px 5px;
    display: none;
}

.mapboxgl-marker {
    background-color: #d5d5d5;
}

#RH_marker:after,
.userMarker:after {
    content: '';
	position: absolute;
	bottom: 3px;
	left: 50%;
	width: 2px;
	height: 45px;
	background: linear-gradient(0deg, #ffffff00 0%, #ffffff 50%);
	border-bottom: 0;
	margin-left: 0;
    margin-bottom: -50px;
}
.mapboxgl-popup {
    z-index: 1100;
}

.mapboxgl-popup-content {
    width: 360px;
    border-radius: 6px;
    background: #ffffff;
    padding: 16px;
    padding-top: 16px;
    max-height: 460px;
}
.mapboxgl-popup-content .mapboxgl-popup-close-button{
    z-index: 100;
    font-size: 2em;
    padding: 8px;
}
.card-main {
    height: 420px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.user-photo {
    height: 200px;
    width: 100%;
    margin-bottom: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #d5d5d5;
}
.user-photo img {
    height: 100%;
}
.user-info {
    color: var(--primary-green);
}
.about-user {
    margin-top: 8px;
    border-top: 1px solid rgb(213, 213, 213);
    padding-top: 6px;
}


.splide {
    visibility: visible;
    height: 300px;
}
.splide__slide {
    padding-bottom: 20px;
}
.splide__pagination {
    margin-bottom: -50px;
}
.splide__slide h4 {
    font-size: 1.5em;
    font-weight: bold;
}

.slide-header{
    display: flex;
    padding: 0 20px 8px 0;
}
.slide-header-title {
    padding-top: 0;
}
.slide-header-title a {
    color: black;
}
.slide-header-title p {
    margin-bottom: 0;
}
.slide-header-title h4 {
    text-align: left;
}
.cover {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 10px;
}
.slide-body {
    background: white;
    padding: 0;
    height: 230px;
    overflow-y: auto;
    border-top: 1px solid #888;
    margin-top: 10px;
}

.slide-body img {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slide-body p {
    margin-top: 8px;
}

.sodaa-video {
    height: 200px;
}



.active {
    background: #ffcc00;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    margin-top: 8px;
}

/* Track */
::-webkit-scrollbar-track {
visibility: hidden;;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.15); 
border-radius: 10px;
}

  
 .hide {
     display: none;
 }
 
 .line-narrow {
     margin-bottom: 6px;
 }

 .icon-lead {
     display: inline-block;
     width: 13px;
     margin-right: 6px;
 }
 .active-nav-item {
     border-bottom: 4px solid #ffcc00;
 }

 .text-small {
     font-size: 0.75em;
     margin-bottom: 8px;
 }

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

.slide-out-left {
    left: -300px;
}
.slide-out-right {
    right: -300px;
}

.btn-hover:hover {
    cursor: pointer;
}
.hover-green:hover {
    color: #006633;
    text-decoration: underline;
}
.info-gray {
    color: #888;
    margin-top: 60px;
    text-align: center;
}


.tiles--columns {
    --tiles-height: 140vh;
}
.tiles {
    --tiles-height: 60vw;
    height: var(--tiles-height);
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.tiles--columns .tiles__wrap {
    width: 100%;
    display: flex;
    --tileswrap-height: calc(var(--tiles-height) * 1.4);
    transform: translate3d(0,-50%,0);
    left: 0;
    top: 50%;
    padding-top: 10vh;
}
.tiles__wrap {
    width: 150%;
    --tileswrap-height: var(--tiles-height);
    height: var(--tileswrap-height);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%, 0);
}
.tiles--columns .tiles__line {
	width: 25%;
	display: block;
}
.tiles__line-img {
	--tile-margin: 2vw;
	flex: none;
	width: calc(16.6666% - var(--tile-margin) * 2);
	height: calc( var(--tileswrap-height) / 3 - (3 * var(--tile-margin) / 2));
	background-size: cover;
	background-position: 50% 50%;
}
.tiles__line-img::before {
    content: '';
    background: #0000002c;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0;
    left: 0;
}

.tiles--columns .tiles__line-img {
	--tile-margin: 2rem 0;
	width: 100%;
	height: calc(25vw * 1.3);
    max-height: 540px;
}





/* Loader Animation */

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2.7em;
    margin-left: -2.7em;
    width: 5.4em;
    height: 5.4em;
    z-index: 1000;
  }
  
  #hill {
    position: absolute;
    width: 7.1em;
    height: 7.1em;
    top: 1.7em;
    left: 1.7em;
    background-color: transparent;
    border-left: .25em solid whitesmoke;
    transform: rotate(45deg);
  }
  
  #hill:after {
    content: '';
    position: absolute;
    width: 7.1em;
    height: 7.1em;
    left: 0;
  }
  
  #box {
    position: absolute;
    left: 0;
    bottom: -.1em;
    width: 1em;
    height: 1em;
    background-color: transparent;
    border: .25em solid whitesmoke;
    border-radius: 15%;
    transform: translate(0, -1em) rotate(-45deg);
    animation: push 2.5s cubic-bezier(.79, 0, .47, .97) infinite;
  }
  #loader p {
      margin-top: 7em;
      text-align: right;
      opacity: 0.5;
  }
  
  @keyframes push {
    0% {
      transform: translate(0, -1em) rotate(-45deg);
    }
    5% {
      transform: translate(0, -1em) rotate(-50deg);
    }
    20% {
      transform: translate(1em, -2em) rotate(47deg);
    }
    25% {
      transform: translate(1em, -2em) rotate(45deg);
    }
    30% {
      transform: translate(1em, -2em) rotate(40deg);
    }
    45% {
      transform: translate(2em, -3em) rotate(137deg);
    }
    50% {
      transform: translate(2em, -3em) rotate(135deg);
    }
    55% {
      transform: translate(2em, -3em) rotate(130deg);
    }
    70% {
      transform: translate(3em, -4em) rotate(217deg);
    }
    75% {
      transform: translate(3em, -4em) rotate(220deg);
    }
    100% {
      transform: translate(0, -1em) rotate(-225deg);
    }
  }


@media screen and (min-width: 53em) {
	.frame {
		display: grid;
		align-content: space-between;
		width: 100%;
		grid-gap: 5vw;
		grid-template-columns: auto auto auto 1fr;
		grid-template-areas: 'title title links demos';
	}
	.frame__title {
		margin: 0;
		grid-area: title;
	}
	.frame__demos {
		margin: 0;
		grid-area: demos;
		justify-self: end;
	}
	.frame__links {
		grid-area: links;
		padding: 0;
		justify-self: end;
	}
	.tiles--columns-rotated .tiles__line {
		width: 33vmax;
	}
	.tiles--columns-rotated .tiles__line:nth-child(even) {
		margin-top: -20vmax;
	}
	.tiles--columns-rotated .tiles__line-img {
		height: 40vmax;
	}
	.content--numbered::after {
		counter-increment: contentSection;                   
		content: counter(contentSection,decimal-leading-zero);
		position: absolute;
		top: 50%;
		right: 3rem;
		border: 1px solid;
		color: var(--color-alt);
		width: 4rem;
		height: 4rem;
		margin-top: -2rem;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
	}
	.content__text {
		max-width: 800px;
		width: 50vw;
		min-width: calc(300px - 6rem);
	}
	.content__text--wide {
		max-width: 1000px;
		width: 65vw;
	}
	.tiles--small {
		--tiles-height: 240px;
	}
}

