body {
	background-color: #FFF;
	color: #000;
}


.generic-grid-right A, .generic-grid-left A {
	font-size: 1.2rem;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	transition: all 0.5s;
}
.generic-grid-right A:hover, .generic-grid-right A:active, .generic-grid-right A:focus,
.generic-grid-left A:hover, .generic-grid-left A:active, .generic-grid-left A:focus

{
	color: var(--main-active-color);
}



.generic-grid {
	margin: auto;
	max-width: 3000px;
	overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "generic-grid-left generic-grid-right";
}
.generic-grid-left { grid-area: generic-grid-left; overflow: hidden; }
.generic-grid-right { grid-area: generic-grid-right; overflow: hidden; }
.generic-grid-left {
	background-color: #F5F5F5;
}
.generic-grid-right {
	background-color: #FAFAFA;
}
.generic-flex-center  {
	display: flex;
	align-items: center;
	justify-content: center;
}
.generic-fullscreen {
    min-height: 100vh; /* For 100% screen height */
	max-height: 1400px;
}

.generic-grid h2 {
	font-size: 3rem;
	font-weight: 200;
}
.generic-grid p {
	margin-top: 2rem;
}
.generic-text-right {
	text-align: right !important;
}
.generic-text-box {
	max-width: 700px;
	padding: 2rem;
}


/* mobile */
@media (max-width: 1024px) {
	.generic-grid {
	  grid-template-columns: 1fr;
/*	  grid-template-rows: 1fr 1fr;	*/
	  grid-template-areas:
		"generic-grid-left"
		"generic-grid-right";
	}
	.generic-grid.generic-fullscreen {
		
	}
	.generic-text-box {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.generic-grid.generic-mobile-switch {
	  grid-template-areas:
		"generic-grid-right"
		"generic-grid-left";
	}
	#section-team .generic-grid {
		grid-template-areas:
		"generic-grid-right";
	}
	.background-bg {
		   background-attachment: scroll !important;
			min-height: 300px;
	}
	.generic-text-box {
		padding-top: 0px;
	}
}
.profile-mini {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 10px;
	display: inline-block;
	overflow: hidden;
	transition: all 0.5s;
}
	.profile-mini DIV {
			width: 100%;
			height: 100%;
		  background-position: left center;
		  background-repeat: no-repeat;
		  background-size: cover;
	}
	.profile-mini:hover,.profile-mini:focus,.profile-mini:active {
		transform: scale(1.2);
	}
#section-welcome IMG {
	width: 300px;
	height: auto;
	margin-bottom: 30px;
}
#section-team h2 {
	font-size: 3rem;
	font-weight: 200;	
}


.background-bg {
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-attachment: fixed;
}

.background-bg-normal {
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;

}
@media (max-width: 1024px) {
	.background-bg-normal {
		min-height: 300px;
		background-position: left center;
	}
}
@media (min-width: 2000px) {
	.background-bg-normal {
		background-position: left center;
	}
}









.grid-1 {
	height: 500px;
	width: 500px;
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 20px 20px; 
  grid-template-areas: 
    "grid-1-img-1 grid-1-img-2"
    "grid-1-img-3 grid-1-img-4"; 
}
.grid-1-img-1 { grid-area: grid-1-img-1; overflow: hidden; }
.grid-1-img-2 { grid-area: grid-1-img-2; overflow: hidden; }
.grid-1-img-3 { grid-area: grid-1-img-3; overflow: hidden; }
.grid-1-img-4 { grid-area: grid-1-img-4; overflow: hidden; }





/* 1st screen */
.promo-container {
	max-width: 3000px;
    min-height: 100vh; /* For 100% screen height */
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	grid-template-rows: 1fr; 
	gap: 0px 0px; 
	margin: auto;
	overflow: hidden;
}
.promo-container.left {
  grid-template-areas: 
    "promo-text promo-img"; 
}
.promo-container.right {
  grid-template-areas: 
    "promo-img promo-text"; 
}
.promo-text { grid-area: promo-text; overflow: hidden; }
.promo-img { grid-area: promo-img; overflow: hidden; }



.promo-text {
		background-color: #FFF;
		color: #000;
			display: flex;
			align-items: center;
			justify-content: center;
		padding: 150px;
}

.promo-container.left .promo-text-container {
	text-align: right;
}
	.promo-text-container h2 {
		font-size: 3.5rem;
		font-weight: 200;
	}
	.promo-text-container p {
		margin-top: 25px;
		font-size: 1rem;
	}
	.promo-text-container .btn {
		margin-top: 20px;
	}
.promo-img {

	  background-position: left center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  
}
.promo-img.not-fixed {
	  background-attachment: scroll;
}
@media (max-width: 1400px) {
	.promo-text-container h2 {
		font-size: 1.8rem;
		font-weight: 200;
	}
	.promo-text {
			padding: 80px;
	}
}
@media (max-width: 1024px) {
	main {
			margin-top: var(--main-header-height);
	}
	.promo-text {
			padding: 25px 50px 50px 25px;
	}
		.promo-text-container h2 {
			font-size: 2rem;
			font-weight: 200;
		}
		.promo-text-container p {
			margin-top: 25px;
			font-size: 1rem;
		}

	.promo-container {
		min-height: auto;
	}
	.promo-container .promo-img {
		height: 400px;
	}
	.promo-container.left, .promo-container.right {
	grid-template-columns: 1fr; 
	grid-template-rows: 1fr  1fr; 
	  grid-template-areas: 
		"promo-img"
		"promo-text"; 
	}
}

.rem-2 {
	font-size: 1.2rem !important;
}










.screen-welcome IMG {
	margin-right: -20px; width: 320px; height: auto; margin-bottom: 20px;
}
.screen-welcome A {
	font-size: 1.5rem;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	transition: all 0.5s;
}
.screen-welcome A:hover,.screen-welcome A:active,.screen-welcome A:focus {
	color: var(--main-active-color);
}






#commitment {
	padding-top: 100px;
	padding-bottom: 100px;
}
#commitment IMG {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#commitment h2 {
		font-size: 3rem;
		font-weight: 200;
		margin-bottom: 50px;
}
#commitment .promo-img A {
	width: 100%;
	height: 100%;
	display: block;
}
#commitment .promo-container {
	min-height: 400px;
}


#team > h2 {
		font-size: 3rem;
		font-weight: 200;
		text-align: center;
		letter-spacing: 2px;
}
#team .meet-team-p {
	text-align: center;
	font-size: 1.2rem;
}



.generic-text-box {
	margin-top: 100px;
}