@charset "utf-8";


/* CSS Document */

/******************************


[Table of Contents]

1. Fonts
2. Colours
3. Body and some general stuff
4 Animations and Strike Through Effect
5. Header
	5.1 Pre-Header
	5.2 Header
6. Logo & Lottie
7. Main Nav
8. Header Side
9. Hamburger
10. Menu
	10.1 Main
	10.2 Social
	10.3 Copyright
11. Home
12. Hero Slider
	12.1 Main
	12.2 Navigation
13. Hero Boxes
14. Facebook Box
15. Page Section
16. Buttons
17. Academics
18. FAQs 
19. Accordion
20. Tags
21. Random Sections
22. Testimonials
23. Projects
24. Programs
25. Sidebar
26. Map and Contact Stuff
27. Footer
	27.1 Content
	27.2 Copyright
28. Gallery
	28.1 Unique Gallery
29. Attributes
30. Projects
31. Call to Action
32. Table


******************************/

/***********
1. FONTS
***********/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet');

.lato-thin {
	font-family: "Lato", sans-serif;
	font-weight: 100;
	font-style: normal;
  }
  
  .lato-light {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: normal;
  }
  
  .lato-regular {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .lato-bold {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .lato-black {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: normal;
  }
  
  .lato-thin-italic {
	font-family: "Lato", sans-serif;
	font-weight: 100;
	font-style: italic;
  }
  
  .lato-light-italic {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: italic;
  }
  
  .lato-regular-italic {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: italic;
  }
  
  .lato-bold-italic {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: italic;
  }
  
  .lato-black-italic {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: italic;
  }
  

:root
{
	--x-small: 9px;
	--small: 11px;
	--medium: 15px;
	--large: 18px;
	--x-large: 22px;
	--xx-large: 26px;
	--xxx-large: 36px;
	-xxxx-large: 52px;
	--menu: 12.5px;
}

/***********
2. COLOURS
***********/

:root 
{
	--main-bg-color: #739e82;
	--main-bg-color-light: #739e8288;
	--main-bg-color-lighter: #739e8233;
	--main-dark-grey: #1a1a1a;
	--main-mid-grey: #5a5a5a;
	--main-light-grey: #a5a5a5;
	--main-off-white: #fbfbfb;
	--other-off-white: #f0f0f0;
	--main-yellow: #ffbb00;
	--light-yellow: #ffffc0;
}

/*********************************
3. BODY AND SOME GENERAL STUFF
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
html 
{
    scroll-behavior: smooth;
    transition-duration: 20s;
}
body
{
	font-family: 'Lato', sans-serif;
	font-size: var(--medium);
	font-weight: 400;
	background-image: linear-gradient( var(--other-off-white) 10%, var(--other-off-white) 11%, var(--main-dark-grey) 100% );
	color: var(--main-light-grey);
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Lato', sans-serif;
	font-size: var(--medium);
	line-height: 2.29;
	font-weight: 400;
	color: var(--main-mid-grey);
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ced4d1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: var(--main-bg-color);
}
p a:hover
{
	color: white;
	background: var(--main-bg-color);
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	color: white;
	background: var(--main-bg-color);
}
p::selection
{
	background: var(--main-bg-color);
	color: red;
}
h1{font-size: 36px;}
h2{font-size: 22px;}
h3{font-size: 18px;}
h4{font-size: 14px;}
h5{font-size: 11px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Lato', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{

}
::-webkit-input-placeholder
{
	font-size: var(--medium) !important;
	font-weight: 500 !important;
	color: var(--main-light-grey) !important;
}
:-moz-placeholder /* older Firefox*/
{
	font-size: var(--medium)  !important;
	font-weight: 500 !important;
	color: var(--main-light-grey) !important;
}
::-moz-placeholder /* Firefox 19+ */ 
{
	font-size: var(--medium)  !important;
	font-weight: 500 !important;
	color: var(--main-light-grey) !important;
} 
:-ms-input-placeholder
{ 
	font-size: var(--medium)  !important;
	font-weight: 500 !important;
	color: var(--main-light-grey) !important;
}
::input-placeholder
{
	font-size: var(--medium)  !important;
	font-weight: 500 !important;
	color: var(--main-light-grey) !important;
}
.form-control
{
	color: #50db46;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.darkish
{
	background-image: linear-gradient(#f9f9f9, #ffffff 15% );
}
.grey
{
	background-color: #f8f8f8 !important;
}
.dark-grey
{
	background-color: #e2e2e2 !important;
}
.greenish
{
	background: var(--main-bg-color) !important;
}
.slate-grey
{
	background-color: #1a1a1a !important;
}
.black
{
	background-color: #000000 !important;
}
.stripes
{
	background: repeating-linear-gradient(
	  45deg,
	  var(--main-bg-color),
	  var(--main-bg-color) 10px,
	  var(--main-off-white) 10px,
	  var(--main-bg-color) 20px
	);
}
.sticky-element
{
	overflow: visible;
}
.calendar
{
	filter: hue-rotate(0deg);
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	-webkit-transform: scale(calc(1));
	-moz-transform: scale(calc(1));
	-ms-transform: scale(calc(1));
	transform: scale(calc(1));
    transform-origin: 0 0;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.super_container_sticky
{
	width: 100%;
	overflow: visible;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.prlx-2
{
	height: 110% !important;
}
.prlx-3
{
	height: 150% !important;
}
.nopadding
{
	padding: 0px !important;
}

/*********************************
4. ANIMATIONS & STRIKE THROUGH EFFECT
*********************************/


@keyframes hands 
{
	0%   { background-position: left top;}
	25%  { background-position: left bottom;}
	50%  { background-position: right bottom; }
	75%  { background-position: right top; }
	100%   { background-position: left top;}
}

  @keyframes hands-footer 
{
	0%   { background-position: left top;}
	35%  { background-position: left bottom;}
	50%  { background-position: right bottom; }
	85%  { background-position: right top; }
	100%   { background-position: left top;}
  
}

.typewriter {
	display: block;
	overflow: hidden;
	border-right: .10em solid var(--main-yellow);
	white-space: nowrap;
	margin: 0 auto;
	letter-spacing: em;
	color: white;
	animation: 
	  typing 10s steps(8) infinite,
	  blink-caret .75s step-end infinite;
  }
  
  @keyframes typing {
	0% { width: 0 }
	4% { width: 100% }
	96% { width: 100% }
	100% { width: 0%}
  }
  
  @keyframes blink-caret {
	from, to { border-color: transparent }
	50% { border-color: var(--main-yellow); }
  }

  /* sneaking */

  @keyframes sneaking {
	0% { right: -720px }
	70% { right: -720px }
	80% { right: -710px }
	100% { right: -720px }
  }

  @keyframes snuck {
	0% { right: -720px }
	50% { right: 0px }
	100% { right: 0px }
  }


	/* strike through */

  .strike-through {
	position: relative;
	display: inline-block;
  }
  
  .strike-through:before,
  .strike-through:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px; /* Adjust the thickness of the line here */
	background: #ffffff99;; /* Use the text color for the line */
  }
  
  .strike-through:before {
	right: 100%;
	margin-right: 20px; /* Adjust the space to the left of the text */
  }
  
  .strike-through:after {
	left: 100%;
	margin-left: 20px; /* Adjust the space to the right of the text */
  }
  
  .strike-through span {
	background: #ffffff99; /* Use the background color of the container */
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
  }
  

/*********************************
5.1 HEADER - PRE-HEADER
*********************************/

.pre-header
{
	box-sizing: border-box;
	position: fixed;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 25px;
	background: rgba(38, 46, 38, 0.5);
	backdrop-filter: blur(15px);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
}
.pre-header a
{
	font-family: 'Lato', sans-serif;
	font-size: var(--small);
	font-weight: 400;
	padding-inline: 20px;
	color: #f0f0f0;
	text-shadow: 1px 1px 2px #000;
	background-color: transparent;
	transition: 500ms;
	border-left: 1.5px solid rgba(255,255,255,0.5);
}
.pre-header a:first-child
{
	border: none;
}
.pre-header .ql-1, .ql-2, .ql-3, .ql-4
{
	transition: 500ms;
}
.pre-header a:hover .ql-1
{
	color: rgb(249, 198, 198);
	transition: 500ms;
}
.pre-header a:hover .ql-2
{
	color: rgb(255, 237, 179);
	transition: 500ms;
}
.pre-header a:hover .ql-3
{
	color: rgb(193, 254, 188);
	transition: 500ms;
}
.pre-header a:hover .ql-4
{
	color: rgb(188, 203, 254);
	transition: 500ms;
}
.pre-header a i
{
	padding-inline-end: 15px;
	transition: 300ms;
}
.pre-header .red
{
	color: #f00;
}
.pre-header .yellow
{
	color: rgb(255, 196, 0);
}
.pre-header .green
{
	color: rgb(21, 255, 0);
}
.pre-header .blue
{
	color: #1877F2;
}

/*********************************
5.2 HEADER - HEADER
*********************************/

.header
{
	position: fixed;
	top: 25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 76px;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
	z-index: 10;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header.scrolled
{	
	top: 25px;
}
.header.scrolled .header_content::before
{
	box-shadow: 0px 20px 10px rgba(0,0,0,0.035);
}
.header_content
{
	width: calc(100% - 179px);
	height: 100%;
}
.header_content::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	box-shadow: 0px 20px 10px rgba(0,0,0,0.035);
	z-index: -1;
}

/*********************************
6. LOGO & LOTTIE
*********************************/

.logo_container
{
	display: inline-block;
	padding-left: 76px;
}
.logo span
{
	font-family: 'Open Sans', sans-serif;
	font-size: var(--large);
	font-weight: 900;
	color: #3a3a3a;
	vertical-align: middle;
	text-transform: uppercase;
	margin-left: 3px;
}
.logo img {
	width: 200px;
}
.logo_container_menu
{
	display: block;
	margin: 0;
}
.logo_menu img 
{
	width: 150px;
	margin: 0;
	position: absolute;
	left: 49%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.menu_footer
{
	font-size: var(--x-small);
	text-align: center;
	padding-top: 60px;
	color: var(--main-dark-grey);
	display: block;
}
.menu_footer a
{
color: #739e82
}
#lottie
{
	z-index: 999;
	margin: 0;
	position: absolute;
	top: -55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 500px;
	display:block;
	overflow: hidden;
	text-align: center;
	opacity: 1;
}

/*********************************
7. MAIN NAVIGATION
*********************************/

.main_nav_container
{
	display: inline-block;
	margin-left: auto;
	padding-right: 93px;
}
.main_nav
{
	margin-top: 0px;
}
.main_nav_item
{
	display: inline-block;
	margin-right: 40px;
}
.main_nav_item:last-child
{
	margin-right: 0px;
}
.main_nav_item a
{
	font-family: 'Open Sans', sans-serif;
	font-size: var(--menu);
	line-height: 7.5;
	text-transform: uppercase;
	font-weight: 700;
	color: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav_item:hover a:first-child
{
	color: var(--main-bg-color);
}

.main_nav_item a span
{
	color: var(--main-bg-color);
}
.dropdown {
    display: inline-block;
    margin-right: 40px;
}
.dropdown a {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--menu);
    text-transform: uppercase;
    font-weight: 700;
    color: #3a3a3a;
    transition: all 200ms ease;
}
.dropbtn {
    background-color: inherit;
    font-family: inherit;
}
.fa-caret-down
{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
}
.dropdown:hover .fa-caret-down
{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	transition: 200ms ease-in-out;
}
.dropdown:hover .main_nav_item a
{
	color: var(--main-bg-color);
}
.dropdown-content {
	visibility: hidden;
    position: absolute;
	color: #000;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(10px);
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	margin-top: 0px;
    opacity: 0;
    transition: visibility 500ms, opacity 500ms ease-in-out;
}
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
	transition: visibility 0s, opacity 300ms ease-in-out;
}
.dropdown-content a {
	font-size: var(--menu);
    float: none;
	line-height: 4;
	padding-inline: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: var(--main-bg-color);
    color: white;
	transition: 300ms ease-in-out;
}
.dropdown-content a:hover span {
    color: white;
}
.corner {
    position: absolute;
    left: 25px;
    top: -16px;
	border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255,255,255,0.8);
    border-top: 8px solid transparent;
}

/*********************************
8. HEADER SIDE
*********************************/

.header_side
{
	width: 179px;
	height: 100%;
	letter-spacing: 1px;
	background-color: var(--main-bg-color);
	justify-content: space-around;
	transition: letter-spacing 300ms ease-in-out 0ms;
	animation-name: donate;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
.header_side:hover
{
	transition: letter-spacing 300ms ease-in-out 0ms;
	animation-name: none;
	background-color: hsl(141, 32%, 54%);
}
.header_side i
{
	opacity: 0;
	padding-left: 0;
	transition: 300ms;
}
.header_side:hover i
{
	opacity: 1;
	padding-left: 10px;
	transition: 300ms;
}
.header_side img
{
	width: 25px;
	height: 25px;
	
}
.header_side span
{
	display: block;
	position: relative;
	font-size: var(--small) ;
	font-weight: 900;
	color: white;
	padding-left: 12px;
}

@keyframes donate {

	0% {background-color: hsl(141, 18%, 59%);}

	50% {background-color: hsl(141, 18%, 44%);}

	100% {background-color: hsl(141, 18%, 59%);}
  }


/*********************************
9. HAMBURGER
********************************/

.hamburger_container
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px;
	display: none;
	cursor: pointer;
}
.hamburger_container i
{
	font-size: 24px;
	padding: 10px;
	color: #3a3a3a;
}
.hamburger_container:hover i
{
	color: var(--main-bg-color);
}

/*********************************
10.1 MENU - MAIN
*********************************/

.menu_container
{
	position: fixed;
	top: 0;
	right: -50vw;
	width: 50vw;
	height: 100vh;
	background: white;
	background-image: url('images/webp/school-01.webp');
	z-index: 12;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	visibility: hidden;
	opacity: 0;
}
.menu_container.active
{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.menu
{
	position: absolute;
	top:150px;
	left: 0;
	padding-left: 18%;
	width: 80%;
}
.menu_list
{
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 1000ms 600ms ease;
	opacity: 0;
}
.menu_container.active .menu_list
{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	z-index: 10;
}
.menu_item
{
	margin-block: 0px;
	border-bottom: 5px solid white;
	padding-block: 20px;
	padding-left: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #fafafa;
	color: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_item:hover
{
	color: white;
	background-color: var(--main-bg-color);
}
.menu_item span
{
	color: var(--main-bg-color);
}
.menu_item:hover span
{
	color: white;
}
.menu_close_container
{
	position: absolute;
	top: 59px;
	right: 59px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu_close
{
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close::after
{
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #bb0000;
}
.menu_item a:hover
{
	color: var(--main-bg-color);
	transition: 300ms ease-in-out;
}
.sublist
{
	padding-left: 30px;
	display: none;
}
.sublist li
{

}
.droppie
{
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	cursor: pointer;
	transition: 300ms ease-in-out;
}
.active_menu
{
	color: var(--main-bg-color);
}
.menu_donate
{
	color: white;
	background-color: hsl(52, 48%, 57%);
	background-color: var(--main-bg-color);
	justify-content: space-around;
	transition: letter-spacing 300ms ease-in-out 0ms;
	animation-name: donate;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
.droppie:hover
{
	color: white;
	background-color: var(--main-bg-color);
	transition: 300ms ease-in-out;
}
.droppie:hover i
{
	color: white;
	transition: 300ms ease-in-out;
}
.droppie .fa-caret-down
{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
}
.droppie .fa-caret-down.rotated
{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/*********************************
10.2 MENU - SOCIAL
*********************************/

.menu_social_container
{
	margin-top: 50px;
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 1500ms 1500ms ease;
	-moz-transition: all 1500ms 1500ms ease;
	-ms-transition: all 1500ms 1500ms ease;
	-o-transition: all 1500ms 1500ms ease;
	transition: all 1500ms 1500ms ease;
	opacity: 0;
}
.menu_social_item
{
	display: inline-block;
	margin-right: 30px;
}
.menu_social_item a i
{
	color: #3a3a3a;
}
.menu_social_item a i:hover
{
	color: var(--main-bg-color);
}
.menu_container.active .menu_social_container
{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

/*********************************
10.3 MENU - COPYRIGHT
*********************************/

.menu_copyright
{
	margin-top: 60px;
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 1000ms 1200ms ease;
	-moz-transition: all 1000ms 1200ms ease;
	-ms-transition: all 1000ms 1200ms ease;
	-o-transition: all 1000ms 1200ms ease;
	transition: all 1000ms 1200ms ease;
	opacity: 0;
	padding-left: 3px;
}
.menu_container.active .menu_copyright
{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

/*********************************
11. HOME
*********************************/

.home
{
	width: 100%;
	height: 100vh;
}
.home_short
{
	width: 100%;
	height: 356px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
}
.home_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 356px;
}
.home_background
{
	width: 100%;
	height: 356px;
	background-color: var(--main-bg-color);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: 8000ms ease-in-out;
	-webkit-filter: grayscale(50%); /* Safari 6.0 - 9.0 */
	filter: grayscale(10%);
}
.home_background::after
{
	content: "";
    white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(117, 159, 131, 0.9);
	background-color: rgba(54, 43, 33, 0.737);
	background-color: rgba(40, 28, 17, 0.737);
	backdrop-filter: blur(0px);
    color: white;
    font-family: "Verdana";
    font-weight: 500;
    font-size: var(--medium) ;
    line-height: 0px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 300ms ease-in-out;
  	opacity: 1;
}
.home_background:hover
{
	background-position: center bottom;
	transition: 8000ms ease-in-out;
}
.home_content
{
	position: absolute;
	z-index: 2;
	top: calc(50% + 75px);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding-top: 24px;
	padding-bottom: 18px;
	padding-left: 39px;
	padding-right: 42px;
}
.home_content h1, p
{
	text-align: center;
	color: white;
}
.home_content h1::selection, p::selection
{
	background: var(--main-bg-color-lighter);
	color: var(--main-bg-color);
}

.home_content h1
{
	font-size: var(--xxxx-large);
	font-weight: 900;
	color: white;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	white-space: nowrap;
	line-height: 1.5;
}
.home_content p
{
	font-family: 'Lato', sans-serif;
	font-size: 17px ;
	font-weight: 400;
	color: #F0F0F0;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	line-height: 1.5;
	padding: 10px 15px;
}
.tagline
{
	padding-inline: 10vw;
}

.home_content_short
{
	position: absolute;
	z-index: 2;
	top: calc(63%);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding-top: 24px;
	padding-bottom: 18px;
	padding-left: 39px;
	padding-right: 42px;
	border: 0px solid #ffffff55;
}
.home_content_short h1, p
{
	text-align: center;
}
.home_content_short h1::selection, p::selection
{
	background: var(--main-bg-color);
	color: white;
}

.home_content_short h1
{
	font-size: 42px;
	font-weight: 900;
	color: #ffffff88;
	text-shadow: 5px 5px 10px rgba(0,0,0,0);
	white-space: nowrap;
	line-height: 1.5;
	letter-spacing: 8px;
}
.home_content_short p
{
	font-size: var(--large) ;
	font-weight: 400;
	color: #ffffff99;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.2);
	white-space: nowrap;
	line-height: 1.5;
	letter-spacing: 5px;
	padding-top: 0px;
}

/*********************************
12.1 HERO SLIDER - MAIN
*********************************/

.hero_slider_container
{
	width: 100%;
	height: 100%;
}
.hero_slide
{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.hero_slide::after
{
    content: "";
    white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: "Verdana";
    font-weight: 500;
    font-size: var(--medium) ;
    line-height: 0px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 300ms ease-in-out;
  	opacity: 1;
}
.hero_slide_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: transform 5000ms ease-in-out;
}
.hero_slide_container
{
	width: 100%;
	height: 100vh;
}
.hero_slide:hover .hero_slide_background
{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	transition: transform 5000ms ease-in-out;
}
.hero_slide_content
{
	max-width: 80%;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}
.hero_slide_content h1
{
	font-size: 72px;
	font-weight: 700;
	color: white;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.hero_slide_content h1 span
{
	background: var(--main-bg-color);
	padding-left: 13px;
	padding-right: 13px;
	margin-left: -12px;
	margin-right: -12px;
}
.animated
{
	-webkit-animation-duration : 2s !important;
	animation-duration : 2s !important;
	-webkit-animation-delay : 200ms;
	animation-delay : 200ms;
}
.animate-out
{
	-webkit-animation-delay : 0ms;
	animation-delay : 0ms;
}

/*********************************
12.2 HERO SLIDER - NAVIGATION
*********************************/

.hero_slider_nav
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY;
	-moz-transform: translateY;
	-ms-transform: translateY;
	-o-transform: translateY;
	transform: translateY(calc(-50% + 30px));
	width: 48px;
	height: 48px;
	background: rgba(255,255,255,0.5);
	z-index: 9;
	cursor: pointer;
}
.hero_slider_nav:hover
{
	background: var(--main-bg-color);
}
.hero_slider_nav:hover span
{
	color: white;
}
.hero_slider_nav span
{
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	line-height: 1;
}
.hero_slider_left
{
	left: 4.32%;
}
.hero_slider_right
{
	right: 4.32%;
}

/*********************************
13. HERO BOXES
*********************************/

.hero_boxes
{
	width: 100%;
	height: 0px;
	z-index: 9;
	padding-top: 0px;
}
.hero_boxes_inner
{
	position: absolute;
	top: -120px; /*180px*/
	left: 0;
	width: 100%;
}
.hero_box
{
	width: 100%;
	height: 100px;/*121px;*/
	background-color: rgba(255,255,255,0.15);
	backdrop-filter: blur(2px);
	padding-left: 50px;
	cursor: pointer;
	transition: 600ms;
}
.hero_box:hover
{
	background-color: var(--main-bg-color);
	transition: background-color 200ms;
}
.hero_box img
{
	width: 22px; /*42*/
	height: auto;
	margin-top: -6px;
}
.svg path
{
	fill: #8abf9d;
	transition: 600ms;
}
.hero_box svg
{

}

.hero_box:hover svg path
{
	fill: white;
	transition: 200ms;
}

.hero_box_content
{
	padding-left: 13px;
	padding-top: 11px;
	margin-top: -6px;
}
.hero_box_title
{
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: white;
	margin-bottom: 7px;
}
.hero_box_link
{
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	color: white;
	padding-left: 3px;
	transition: 300ms;
}
.hero_box_link:hover
{
	color: var(--main-dark-grey);
}

/*********************************
14. FACEBOOK BOX
*********************************/

.fb_boxes
{
	display: ;
	width: 0px;
	height: 100%;
	z-index: 10;
	padding-top: 0px;
}
.fb_boxes_inner
{
	position: fixed;
	right: -575px;
	top: calc(50% - 200px);
	width: 600px;
	height: 400px;
	transition: 500ms ease-in-out;
}
.fb_box
{
	width: 100%;
	height: 100%;/*121px;*/
	background: rgba(255,255,255,0.3);
	padding-left: 50px;
	cursor: pointer;
	transition: 800ms;
	text-align: center;
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.fb_boxes_inner:hover
{
	position: fixed;
	right: 0px;
	transition: 500ms ease-in-out;
}
.fb_box:hover
{
	background-color: white;
	background-image: url(../images/facebook.webp);
	background-size: cover;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
	transition: 200ms;
}
.fb_box_content
{
	padding-left: 13px;
	padding-top: 11px;
	margin-top: -6px;
}
.fb_box_title
{
	font-size: 22px;
	font-weight: 900;
	color: white;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.fb_box_link
{
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: white;
	padding-left: 3px;
	transition: 300ms;
}
.fb_box_link:hover
{
	color: var(--main-dark-grey);
}

/*********************************
15. PAGE SECTION
*********************************/

.page_section
{
	padding-top: 117px;
	padding-bottom: 117px;
	background: white;
}
.space
{
	padding-top: 20px;
}
.no-space
{
	margin: 0;
	padding: 0;
}
.section_title
{

}
.section_title h1
{
	display: block;
	color: var(--main-dark-grey);
	font-weight: 700;
	padding-top: 50px;
}
.section_title h1::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 5px;
	content: '';
	background: var(--main-bg-color);
}
.section_title p 
{
	padding-top: 25px;
	color: var(--main-mid-grey);
	text-align: center;
}
.section_title_testimonial h1
{
	display: block;
	color: white;
	font-weight: 700;
	padding-top: 50px;
}
.section_title_testimonial h1::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 5px;
	border-radius: 5px 5px 0px 0px;
	content: '';
	background: var(--main-yellow);
}
.section_title_testimonial p 
{
	padding-top: 25px;
	color: var(--main-mid-grey);
	text-align: center;
}
.program_section_title h1
{
	display: block;
	color: var(--main-dark-grey);
	font-weight: 700;
	padding-top: 24px;
	font-size: var(--xx-large);
}
.program_section_title h1::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 30px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 4px;
	border-radius: 0px 0px 5px 0px;
	content: '';
	background: var(--main-bg-color);
}
.unique_section_title h1
{
	display: block;
	color: var(--main-dark-grey);
	font-weight: 700;
	padding-top: 24px;
}
.unique_section_title h1::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 5px;
	border-radius: 0px 0px 5px 5px;
	content: '';
	background: var(--main-bg-color);
}


/*********************************
16. BUTTONS
*********************************/

.button
{
	display: block;
	width: 188px;
	height: 53px;
	vertical-align: middle;
	margin-right: 9px;
	margin-bottom: 15px;
	cursor: pointer;
}

.button:hover
{
/*	box-shadow: 0px 10px 20px rgba(0,0,0,0.2); */
}
.button a
{
	font-size: var(--medium) ;
	line-height: 48px;
	font-weight: 700;
	text-transform: uppercase;
}
.button_1
{
	width: 202px;
	height: 48px;
	background: var(--main-bg-color);
}

.button_green
{
	width: 202px;
	height: 48px;
	background: var(--main-bg-color);
}
.buttons_container
{
	margin-top: 107px;
}
.button
{
	display: inline-block;
	width: 188px;
	height: 53px;
	vertical-align: middle;
	margin-right: 9px;
	margin-bottom: 15px;
	transition: 500ms ease-in-out;
}
.button:hover
{
/*	box-shadow: 0px 10px 20px rgba(0,0,0,0.2); */
	width: 198px;
	transition: 200ms ease-in-out;
}
.button a
{
	line-height: 53px;
	display: block;
	font-size: var(--medium) ;
	font-weight: 700;
	letter-spacing: 1px;
}
.button_color_1
{
	background: var(--main-bg-color);
}
.button_color_1 a
{
	color: white;
}
.button_color_2
{
	background: var(--main-dark-grey);
}
.button_color_2 a
{
	color: white;
}
.button_line_1
{
	background: transparent;
	border: solid 2px var(--main-bg-color);
}
.button_line_1 a
{
	color: var(--main-bg-color);
}
.button_line_2
{
	background: transparent;
	border: solid 2px var(--main-dark-grey);
}
.button_line_2 a
{
	color: var(--main-dark-grey);
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0;
    padding: 0;
}
.donation_button
{
	background: #272b2866;
	background-color: rgba(255,255,255,0.15);
	backdrop-filter: blur(1px);
	margin-top: 35px;
}
.donation_button:first-child
{
	margin-top: 65px;
}
.donation_button a
{
	color: #FCFCFC;
}
.donation_button:hover
{
	color: white;
	background:  #29372e;
	transition: 300ms ease-in-out;
}
.buttonX
{
	display: block;
	width: 40%;
	height: 80px;
	vertical-align: middle;
	margin-right: 9px;
	margin-bottom: 15px;
	border-radius: 0px;
	transition: 500ms ease-in-out;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.buttonX:hover
{
	cursor: pointer;
	transition: 200ms ease-in-out;
}
.buttonX a
{
	font-size: var(--medium) ;
	line-height: 80px;
	font-weight: 700;
	display: inline-block; /* Aligns text vertically */
	max-width: 100%; /* Ensures the link does not exceed the button width */	
}

  

/*********************************
17. ACADEMICS
*********************************/

.academics
{
	width: 100%;
}
.academics_section {
	width: 100%;
	height: 100%;
	background: var(--main-bg-color);
}
.academics_section_tall
{
	width: 100%;
	height: 100%;
	background: var(--main-bg-color);
	padding-top: 256px;
	padding-bottom: 161px;
}
.row-eq-height
{
	overflow: auto;
}
.academics_content {
	width: 80%;
	padding-block: 150px;
}
.academics_title
{
	color: white;
	margin-bottom: 16px;
	line-height: 1.63;
	font-weight: 700;
}
.academics_title:last-child
{
	margin-bottom: 0px;
}
.academics_title span
{
	color: var(--main-dark-grey);
}
.academics_text
{
	color: white;
	font-size: 17px;
	font-weight: 500;
	margin-top: 32px;
	padding-inline: 25px;
	margin-bottom: 0px;
	text-align: center;
}
.academics_text::selection
{
	background: white;
	color: var(--main-bg-color);
}
.academics_button
{
	background: #272b2866;
	backdrop-filter: blur(1px);
	margin-top: 60px;
}
.academics_button a
{
	color: #FCFCFC;
}
.academics_button:hover
{
	color: white;
	background:  var(--main-dark-grey);
	transition: 300ms ease-in-out;
}

/*********************************
18. FAQs
*********************************/

.faq_section
{
	width: 100%;
	height: 100%;
	background: #ececec;
	padding-block: 30px;
}
.faq_content
{
	width: 622px;
}
.faq_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 1;
}
.faq_background_blur
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff88;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	backdrop-filter: blur(15px);
}
.faq_title
{
	margin-block: 30px;
	color: var(--main-dark-grey);
	font-weight: 700;
}

/*********************************
19. ACCORDION
*********************************/

.elements_accordions
{
	
}
.accordion_container
{
	margin-bottom: 15px;
}
.accordion
{
	min-height: 60px;
	width: 100%;
	color: var(--main-mid-grey);
	background: #f8f4f4;
	padding-block: 10px;
	padding-left: 30px;
	padding-right: 70px;
	text-align: left;
	cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion.active
{
	background: #739e82aa;
	color: white;
}
.accordion.active:hover
{
	background: var(--main-bg-color);
}
.accordion::after
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 62px;
	height: 100%;
	content: '+';
	background: var(--main-bg-color);
	font-size: var(--medium) ;
	color: white;
	font-weight: 500;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion.active::after
{
	content: '-';
}
.accordion:hover
{
	background: var(--main-bg-color); /* #e4e4e4; */
	color: white;
	transition: all 200ms ease;
}
.accordion_panel
{
	padding-left: 30px;
	padding-right: 30px;
	max-height: 0;
	overflow: auto;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.accordion_panel p
{
	padding-top: 15px;
	color: #000;
	text-align: left;
}
.accordion_panel p::selection
{
background: white;
color: var(--main-bg-color);
}
/**********************************
20. TAGS
**********************************/

.tag_thing
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tags
{
	margin-top: 30px;
}
.tag
{
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	height: 40px;
	width: 120px;
	margin-right: 12px;
	margin-bottom: 10px;
	display: block;
	font-size: 13px;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-transform: uppercase;
	color: white;
	line-height: 40px;
	background-color: black;
	transition: 200ms;
}
[id^="tag-"]:hover
{

	cursor: pointer;
	background-color: var(--main-bg-color);
	transition: 200ms;
}
.tag-active
{
	background-color: var(--main-bg-color) !important; 
	transition:200ms;
}
.tag-inactive
{
	background-color: black !important; 
	transition:200ms;
}
.tag-inactive:hover
{
	background-color: var(--main-bg-color) !important; 
	transition:200ms;
}


/*********************************
21. RANDOM SECTIONS
*********************************/

.random
{
	padding-bottom: 76px;
}
.random_row
{
	margin-top: 65px;
	color: #000;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: space-evenly;
	justify-items: center;
	align-content: space-evenly;
	gap: 30px;
}
.random_item
{
	border-radius: 10px 10px 10px 10px;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
	background-color: white;
	transition: transform 300ms ease-in-out;
}
.random_item a
{
	color: var(--main-light-grey) !important;
}
.random_item h3
{
	font-family: 'Lato', sans-serif;
	font-size: var(--large) ;
	font-weight: 700;
	color: var(--main-dark-grey);
	margin-bottom: 10px;
	text-align: left;
	padding-inline: 30px;
}
.random_item p
{
	font-size: 13px;
	font-weight: 400;
	color: var(--main-mid-grey);
	max-width: 100%;
	padding-inline: 30px;
	margin-bottom: 25px;
	line-height: 1.5;
	text-align: left;
}
.random_item i
{
	color: var(--main-bg-color);
	opacity: 0.5;
}
.random_item:hover
{
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transform: translateY(-15px);
	transition: transform 300ms ease-in-out;
}
.random_item:hover img
{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	transition: 300ms ease-in-out;
}
.img_container
{
	width: 100%;
	height: 250px;
	margin-bottom: 25px;
	overflow: hidden;
	border-radius: 10px 10px 0px 0px;
}
.img_container img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 300ms ease-in-out;
}
.img_container::after
{
    content: "";
    white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: "Verdana";
    font-weight: 500;
    font-size: var(--medium) ;
    line-height: 0px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 300ms ease-in-out;
  	opacity: 1;
}
.random_item:hover .img_container::after
{
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  line-height: 18px;
}

.no_bottom
{
	padding-bottom: 0; 
	margin-bottom: 0;
}

.no_top 
{
	padding-top: 0; 
	margin-top: 0;
}

.hideVoc
{
	position: absolute;
	left: -99999px;
}

.showVoc
{
	position: relative;
	left: 0px;
}











/*********************************
22. TESTIMONIAL
*********************************/

.testimonials
{
	width: 100%;
	background: var(--main-dark-grey);
}
.testimonials_page
{
	height: 100vh;
	padding-top: 200px;
}
.testimonials_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.testimonials_background
{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	opacity: 0.27;
}
.testimonials .section_title h1
{
	color: white;
	font-weight: 700;
}
.testimonials_slider_container
{
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 56px;
}
.testimonials_item
{
	width: 100%;
	padding-bottom: 75px;
}
.quote
{
	display: inline-block;
	font-size: 18px;
	color: var(--main-bg-color);
}
.testimonials_text
{
	color: var(--main-light-grey);
	margin-bottom: 0px;
}
.testimonial_user
{
	margin-top: 43px;
}
.testimonial_image
{
	width: 98px;
	height: 98px;
	border-radius: 50%;
	overflow: hidden;
}
.testimonial_image img
{
	width: 100%;
	height: auto;
}
.testimonial_name
{
	font-size: var(--large) ;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--main-yellow);
	margin-top: 21px;
}
.testimonial_title
{
	font-size: var(--medium) ;
	font-weight: 500;
	color: white;
	margin-top: 6px;
}
.testimonials_slider .owl-dots
{
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
	flex-direction: row !important;
	justify-content: center;
	align-items: center;
}
.testimonials_slider .owl-dot span
{
	width: 8px !important;
	height: 8px !important;
	border: solid 2px white;
	background: transparent !important;
}
.testimonials_slider .owl-dot.active span
{
	width: 16px !important;
	height: 16px !important;
	border: none;
	background: var(--main-yellow) !important;
}


/*********************************
23. PROJEKT
*********************************/

.projekts-container
{
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 30px;
  display: grid;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  align-items: center;
  row-gap: 50px;
}
.projekt-container
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	border: 0px dashed transparent;
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
	transition: 300ms ease-in-out;
}
.projekt-container:hover .projekt-image img
{
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
	transition: 300ms ease-in-out;
}
.projekt-image
{
  height: auto;
  background-color: white; 
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.projekt-image img
{
  height: 110%;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 300ms ease-in-out;
}
.projekt-image,
.projekt-text {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.projekt-text {
	box-sizing: border-box;
	background: #fbfbfb;
	position: relative;
	padding: 50px 50px 90px;
	border-block: 1px dashed transparent;
	height: auto;
	overflow: hidden;
	transition: 300ms ease-in-out;
  }
.projekt-title
{
  min-height: 72px;
  text-align: left;
  border: 0px solid red;
  padding-bottom: 10px;
}
.projekt-title h1
{
  font-size: var(--x-large) ;
  color: #393939;
  transition: 300ms;
  font-weight: 600;
}
.projekt-title h1:hover
{
  font-size: var(--x-large) ;
  color: #9ead95;
  transition: 300ms;
}
.projekt-title h5
{
  text-transform: uppercase;
  color: #77aa55;
  font-size: var(--small) ;
  transition: 300ms;
  font-weight: 600;
}
.projekt-title h5:hover
{
  text-transform: uppercase;
  color: #9ead95;
  font-size: var(--small) ;
  transition: 300ms;
}
.projekt-text p
{
  text-align: left;
  font-size: var(--medium) ;
  line-height: 1.5rem;
  color: #858585;
  padding-bottom: 10px;
}
.projekt-button
{
  position: absolute;
  bottom: 40px;
  width: 150px;
  background: var(--main-bg-color);
  color: white;
  font-weight: 900;
  text-align: center;
  font-size: var(--small) ;
  padding-inline: 15px;
  padding-block: 10px;
  text-transform: uppercase;
  display: block;
  transition: 500ms;
}
.projekt-button i
{
	visibility: none;
	padding-right: 0px;
	padding-left: 0px;
	opacity: 0;
	transition: 500ms
}
.projekt-button:hover
{
	background: #29372e;
	width: 190px;
	transition: 300ms;
}
.projekt-button:hover i
{
	visibility: visible;
	padding-right: 0px;
	padding-left: 10px;
	opacity: 0.5;
	transition: opacity 500ms, visibility 500ms, padding 300ms;
}
.projekt-container:hover .projekt-text
{
	border-block: 1px dashed var(--main-bg-color);
	background: #fafffa;
	transition: 300ms ease-in-out;
}


/*********************************
24 PROGRAM
*********************************/

.program
{
	width: 100%;
	padding-top: 0px;
	background-color: white;
}
.program-margin
{
	padding-left: 50px !important;
}
.program_post
{
	margin-top: 0px;
	display: none;
}
.program_headline
{
	color: var(--main-bg-color) !important;
	font-weight: bold  !important;
	margin-bottom: 0px !important;

}
.program_headline span
{
	color: #739e82 !important;
}
.program_post_image
{
	width: 100%;
}
.program_post_image img
{
	width: 100%;
	height: auto;
	padding: 10px 0px 0px 0px;
}
.program_post_collage, .program_post_collage_four, .program_post_collage_x
{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	overflow: hidden;
	padding-bottom: 30px;
	padding-top: 10px;
}
.program_post_collage_four
{
	grid-auto-rows: 250px;
}
.program_post_collage img, .program_post_collage_four img, .program_post_collage_x img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0px;
}
.program_post_top
{
	margin-top: 38px;
}
.program_post_date
{
	width: 88px;
	height: 88px;
	background: var(--main-bg-color);
	margin-right: 20px;
}
.program_post_date div:first-child
{
	font-size: 10px;
	font-weight: 500;
	color: white;
	line-height: 1;
}
.program_post_date div:last-child
{
	font-size: var(--xx-large);
	font-weight: 700;
	text-transform: uppercase;
	color: white;
	line-height: 1;
	margin-top: 3px;
}
.program_post_title_container
{
	padding-left: 0px;
	margin-top: -7px;
}
.program_post_title
{
	font-size: var(--xxx-large);
	font-weight: 500;
	line-height: 1.2;
	color: var(--main-dark-grey);
}
.program_post_title a:hover,
.program_post_author a:hover,
.program_post_comments a:hover
{
	color: var(--main-light-grey);
}
.program_post_meta
{
	color: var(--main-dark-grey);
	margin-top: 5px;
	padding-left: 2px;
}
.program_post_author a
{
	font-size: var(--small) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	line-height: 1;
}
.program_post_comments a
{
	font-size: var(--small) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	line-height: 1;
}
.program_post_meta span:nth-child(2)
{
	font-size: var(--small) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	margin-left: 5px;
	margin-right: 5px;
}
.program_post_text
{
	margin-top: 20px;
}
.program_post_text p
{
	margin-inline: 0px;
	color: var(--main-mid-grey);
	font-size: var(--medium);
	font-weight: 400;
	line-height: 2;
	text-align: left;
	margin-bottom: 20px;
}
.program_post_text p:last-child
{
	margin-bottom: 60px;
}
.program_post_text p b
{
	font-weight: 900;
}
.program_post_text cite
{
	color: var(--main-dark-grey);
	display: block;
	font-size: var(--small) ;
	line-height: 24px;
}
.program_post_text cite a
{
	color: #4f6950;
}
.program_post_text ul
{
	margin-top: 20px;
}
.program_post_text ul li
{
	list-style-type: square;
	color: var(--main-mid-grey);
	margin-left: 30px;
	margin-bottom: 5px;
	line-height: 2;
}
.program_post_text p ul li a b .program_link
{
	font-weight: 900;
	color: var(--main-bg-color) !important;
}
.program_post_button
{
	width: 188px;
	height: 53px;
	background: var(--main-bg-color);
	margin-top: 18px;
}
.program_post_button a
{
	display: block;
	font-size: var(--large) ;
	font-weight: 700;
	color: white;
	line-height: 53px;
}
.program_post_button:hover
{
	box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.program_post_image
{
	width: 100%;
}
.program_post_image img
{
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.program_address
{
	line-height: 1.5 !important;
	padding-top: 10px;
	padding-left: 18px;
}
.left-bar
{
	padding-top: 10px;
	padding-left: 18px;
	padding-bottom: 0px;
	border-left: 2px solid #759f8333;
}
.text-justify
{
	text-align: justify;
}
.join-text
{
	padding-inline: 50px;
	border: 1px solid lime;
}

/*********************************
25. SIDEBAR
*********************************/

.sidebar
{
	position: -webkit-sticky;
	position: sticky;
	top: 101px;
	width: 100%;
	padding: 0px 0px;
	background-color: white;
	box-shadow: 2.5px 2.5px 5px rgba(0,0,0,0.05);
	border: 10px solid white;
	margin-top: -20px;
	padding-bottom: 1px;
}
.sidebar_section
{
	padding-top: 0px;
	padding-bottom: 1px;
}
.sidebar_section_2
{
	margin-top: 48px;
	padding-top: 123px;
}
.sidebar_section:first-child
{
	margin-top: 0px;
}
.sidebar_image
{
	width: 100%;
	height: 250px;
	background-color: #00000009;
	overflow: hidden;
}
.sidebar_image_2
{
	width: 100%;
	height: 150px;
	background-color: #00000009;
	overflow: hidden;
}
.sidebar_image img
{
	width: 100%;
	height: 100%;
	padding-block: 0px;
	object-fit: cover;
}
.sidebar_image_2 img
{
	height: 100%;
	width: 100%;
	padding-block: 0px;
	object-fit: cover;
}
.sidebar_image_2::after
{
    content: "";
    position: absolute;
	z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 300ms ease-in-out;
  	opacity: 1;
}
.sidebar_image::after
{
    content: "";
    position: absolute;
	z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 300ms ease-in-out;
  	opacity: 1;
}
.sidebar_section_title
{
	margin-top: -1px;
}
.sidebar_section_title h3
{
	color: var(--main-dark-grey);
	line-height: 1;
	font-weight: 700;
}
.sidebar_list
{
	margin-top: 0px;
	margin-bottom: 0px
}
.sidebar_list_item
{
	padding-block: 13px;
	padding-inline: 30px;
	margin-top: 10px;
	background-color: rgb(223, 223, 223, 0.2);
	backdrop-filter: blur(3px);
	color: var(--main-mid-grey);
	cursor: pointer;
	font-size: var(--medium) ;
	font-weight: 700;
	transition: 300ms;
}
.sidebar_list_item i
{
	color: #739e82aa;
	transition: 300ms;
	font-weight: 700;
}
.sidebar_list_item:hover i
{
	color: white;
	transition: 300ms;
}
.sidebar_list_item:hover
{
	background: var(--main-bg-color);
	color: white;
	transition: 300ms;
}
.sidebar_list_item_active
{
	padding-block: 13px;
	padding-inline: 30px;
	margin-top: 10px;
	background: var(--main-bg-color);
	backdrop-filter: blur(3px);
	color: white;
	cursor: pointer;
	font-size: var(--medium) ;
	font-weight: 700;
	transition: 300ms;
}
.sidebar_list_item_active i
{
	color: white;
	transition: 300ms;
}
.sidebar_list_item_active:hover
{
	background: var(--main-bg-color);
	color: white;
	transition: 300ms;
}
.sidebar_list_item_x
{
	padding-block: 13px;
	padding-inline: 30px;
	margin-top: 10px;
	background-color: rgb(223, 223, 223, 0.2);
	backdrop-filter: blur(3px);
	color: var(--main-mid-grey);
	cursor: pointer;
	font-size: var(--medium) ;
	font-weight: 700;
	transition: 300ms;
}
.sidebar_list_item_x:hover
{
	background: var(--main-bg-color);
	color: white;
	transition: 300ms;
}
.sidebar_list_item_x i
{
	color: #739e82aa;
	font-weight: 700;
	transition: 300ms;
}
.sidebar_list_item_x:hover i
{
	color: white;
	transition: 300ms;
}
/*********************************
26. MAP AND CONTACT CARDS
*********************************/

.map_stuff
{
	background: #f5f5f5;
}
.map_stuff_2
{
	background: #f5f5f5;
	padding-top: 0px;
}
.map_stuff_2::after 
{
	content: ""; 
	position: absolute; 
	bottom: 0; 
	left: 0; 
	width: 100%; 
	height: 6px; 
	background: var(--main-dark-grey);
}
.map_container
{
	width:100%;
	background: #f5f5f5;
	margin-top: 75px;
	margin-bottom: 0;
	padding: 0;
	padding-inline: 15px;
	opacity: 0.9;
}
.map_container_2
{
	width:100%;
	background: #f5f5f5;
	margin: 0;
	padding-inline: 15px;
	opacity: 0.9;
}
.contact_title
{
	color: #000 !important ;
}

.contact_stuff
{
	padding-top: 35px;
}

.contact_p 
{
	color: #5a5a5a !important;
	text-align: left;
}

#contact_p 
{
	color: #5a5a5a !important;
}

.blackish 
{
	color: #383838 !important;
	font-weight: 700;
	transition: 300ms ease-in-out;
}
.contact_card a
{
	width: 100%;
	height: 100%;
	padding-left: 50px;
	padding-block: 30px;
	margin: 0;
}
div.contact_stuff .col-lg-4
{
	padding: 0;
}
.contact_card h3
{
	font-family: 'Lato', sans-serif;
	font-size: var(--x-large) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	margin-bottom: 13px;
}

.contact_card p
{
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	color: var(--main-light-grey);
	max-width: 100%;
	margin-bottom: 0px;
	transition: 300ms ease-in-out;
}

.contact_card p a
{
	text-decoration: none !important;
}

.contact_card
{
	margin-bottom: 80px;
	align-items: center;
	background-color: white;
	outline: 0px solid white;
	border-left: 1px solid #e4e4e4;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.05);
	transition: 300ms ease-in-out;
}

.contact_card:first-child
{
	border-left: 1px solid white;
}

.contact_card:hover
{
	background-color: var(--main-bg-color);
	transition: 300ms ease-in-out;
	outline: 0px solid white;
	border-left: 1px solid var(--main-bg-color);
}

.contact_card:hover p
{
	color: #FFFFFF !important;
	transition: 300ms ease-in-out;
}

.contact_card:hover .blackish
{
	color: #d5e7d5 !important;
	transition: 300ms ease-in-out;
}



/*********************************
27. FOOTER
*********************************/

.footer
{
	position: relative;
	z-index: 3;
	width: 100%;
	padding-top: 0px;
	margin-top: 0;
	background: var(--main-dark-grey);
	background-image: url(images/hands.svg);
	background-position: center
}
.footer .section_title h1
{
	color: white;
}

/*********************************
27.1 FOOTER CONTENT
*********************************/

.footer_content 
{
	padding-top: 0px;
	padding-bottom: 43px; /* 83px */
	border-bottom: solid 1px #393939;
}
.footer_content .logo_container
{
	padding-left: 0px;
}
.footer_content .logo span
{
	color: white;
}
.footer_about_text
{
	margin-top: 24px;
	margin-bottom: 0px;
	padding-right: 20px;
	color: var(--main-light-grey);
	text-align: left;
}
.footer_about_text span
{
	color: #efedde;
}
.footer_column_title
{
	font-size: 18px;
	font-weight: 500;
	color: var(--main-bg-color);
	padding-top: 15px;
}
.footer_column_content
{
	margin-top: 32px;
}
.footer_list_item
{
	margin-bottom: 11px;
}
.footer_list_item a
{
	font-size: var(--medium) ;
	color: white;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_list_item a:hover
{
	color: var(--main-bg-color);
}
.footer_contact_item
{
	font-size: var(--medium) ;
	font-weight: 400;
	color: var(--main-light-grey);
	margin-bottom: 22px;
}
.footer_contact_item:last-child
{
	margin-bottom: 0px;
}
.footer_contact_icon
{
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 10px;
}
.footer_contact_icon img
{
	width: 100%;
}

/*********************************
27.2 FOOTER COPYRIGHT
*********************************/

.footer_bar
{
	display: block !important;
	padding-top: 19px;
	padding-bottom: 19px;
}

.footer_social .menu_social_item a
{
font-family: 'Lato', sans-serif;
color: white;
font-size: var(--small) ;
}

.footer_social .menu_social_item a i
{
	color: white;
	font-size: var(--medium) ;
}
.footer_social .menu_social_item a:hover
{
	color: var(--main-bg-color);
}

.footer_social .menu_social_item a i:hover
{
	color: var(--main-bg-color);
}

.footer_social .menu_social_item:last-child
{
	margin-right: 0px;
}

.footer_copyright
{
	font-size: var(--small) ;
}

.footer_copyright a
{
color: #739e82
}

/*********************************
28. GALLERY
*********************************/


.gallery-container
{
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	background-color: white;

}

/*********************************
28.1 UNIQUE GALLERY
*********************************/


.unique-super-container
{
	margin: auto;
	width: 100%;
	padding-block: 0px;
}
.unique-container
{
	width: calc(75vw);
	height: calc(36vw);
	padding-top: 25px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(15vw, 1fr));
	grid-template-rows: repeat(2, minmax(15vw, 1fr));
	gap: 1vw;	
}
.unique
{
	background-color: var(--main-bg-color);
	overflow: hidden;
}
.unique img
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 300ms ease-in-out;
}
.unique a
{
	padding: 0;
}
.unique:hover img
{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	transition: 300ms ease-in-out;
}
.unique-overlay
{
	width: 100%;
	height: 100%;
}
.unique-overlay::after
{
    content: "";
    position: absolute;
	z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    transition: opacity 300ms ease-in-out;
  	opacity: 0.3;
}
.unique:hover .unique-overlay::after
{
	opacity: 0.7;
    transition: opacity 300ms ease-in-out;
}
.g1 
{
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}
  
.g2 
{
	grid-column: 3 / 4;
	grid-row: 1;
}
  
.g3 
{
	grid-column: 4 / 5;
	grid-row: 1;
}
  
.g4 
{
	grid-column: 3 / 4;
	grid-row: 2;
}

.g5 
{
	grid-column: 4 / 5;
	grid-row: 2;
}
.unique-caption
{
	position: absolute;
	bottom: 1vw;
	left: 1vw;
	padding-inline: 15px;
	z-index: 9;
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	font-size: 13px ;
	text-transform: uppercase;
	color: white;
	background: #739e82;
	transition: 300ms ease-in-out;
}  
.unique:hover .unique-caption
{
	bottom: 1.5vw;
	left: 1vw;
	transition: 300ms ease-in-out;
	font-size: 13px;
	letter-spacing: 0px;
	opacity: 1;
	background: var(--main-bg-color);
}

/*********************************
28.2 UNIQUE GALLERY
*********************************/


.gallery-container
{
	margin: 0;
	font-family: 'Inter',sans-serif;
}
#gallery
{
	width: calc(100% - 20px);
	text-align: center;
	margin: auto;
	display: grid;
	display: -ms-grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	-ms-grid-columns: (minmax(330px, 1fr))[auto-fill];
	gap: 10px;
	-ms-grid-column-gap: 10px;
	-ms-grid-row-gap: 10px;
	justify-content: stretch;
	align-content: stretch;
}
.box
{
	box-sizing: border-box;
	min-width: 315px;
	margin: 0;
	padding: 0;
	opacity: 1;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	aspect-ratio: 1 / 1; 
	-ms-grid-row-align: stretch;
	-ms-grid-column-align: stretch;
}
.box img
{
	box-sizing: border-box;
	width:100%;
	height: 100%;
	margin:0;
	padding:0;
	object-fit: cover;
	transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
}
.box:hover img
{
	transform: scale(1.05);
	transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
}
.video::after
{
	content: "\f04b"; /* Unicode for the play icon */
	font-family: "Font Awesome 5 Free"; /* Ensure you have Font Awesome 5 Free loaded */
	font-weight: 900; /* Font Awesome 5 Free uses font-weight 900 for solid icons */
	font-size: var(--xxx-large);
	white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fffa;
    line-height: 0px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 300ms ease-in-out;
	pointer-events: none;
	cursor: pointer;
}

/*********************************
29. ATTRIBUTES
*********************************/

.attribute_header
{
	padding-bottom: 20px;
	font-size: var(--medium);
	font-weight: 600;
	color: var(--main-bg-color);
}
.attribute_header:first-child
{
	padding-top: 50px;
}
.attribute_text
{
	text-align: left;
}
.attribute_text a
{
	color: var(--main-mid-grey)
}

/*********************************
30. PROJECTS (defunct)
*********************************/

.project_items
{
	margin-top: 68px;
}
.project_item
{
	padding-bottom: 56px;
	margin-top: 0px;
	border-top: 1px dashed var(--main-bg-color);
}
.project_item:last-child
{
	margin-bottom: 0px;
}
.project_date
{
	width: 131px;
	height: 131px;
	border: solid 3px var(--main-bg-color);
	margin-bottom: 18px;
	transition: 300ms ease-in-out;
}
.project_date:hover
{
	border: solid 5px #5b9b71;
	transition: 300ms ease-in-out;
}
.project_date:hover .project_day
{
	color: #5b9b71;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	transition: 300ms ease-in-out;
}
.project_date_onmouseover
{
	width: 131px;
	height: 131px;
	border: solid 5px #5b9b71;
	margin-bottom: 18px;
	transition: 300ms ease-in-out;
}
.project_name_onmouseover
{
	line-height: 1;
	color: #5b9b71;
}
.project_name_onmouseover a
{
	font-size: var(--x-large) ;
	font-weight: 500;
	color: #5b9b71;
	transition: 300ms ease-in-out;
}
.project_day
{
	font-size: 48px;
	font-weight: 700;
	color: var(--main-bg-color);
	margin-bottom: 1px;
	line-height: 1;
	transition: 300ms ease-in-out;
}
.project_day_onmouseover
{
	color: #5b9b71;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 1px;
	line-height: 1;
	transition: 300ms ease-in-out;
}
.project_month
{
	font-size: var(--large) ;
	font-weight: 700;
	color: var(--main-bg-color);
}
.project_name
{
	line-height: 1;
}
.project_name a
{
	font-size: var(--x-large) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	transition: 300ms ease-in-out;
}
.project_name a:hover
{
	color: #5b9b71;
}
.project_location
{
	font-size: var(--medium) ;
	font-weight: 500;
	color: var(--main-dark-grey);
	margin-top: 2px;
}
.project_content p
{
	font-weight: 300;
	color: var(--main-mid-grey);
	margin-top: 21px;
	margin-bottom: 0px;
	padding: 0;
	line-height: 2;
}
.project_image
{
	height: 350px;
	margin-top: 0px;
	margin-bottom: 50px;
	overflow: hidden;
}
.project_image:hover img
{
	-webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition: transform 300ms ease-in-out;
}
.project_image img
{
	height: 100%;
	width: 100%;
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
	filter: grayscale(0%);
	object-fit: cover;
	position: relative;
	transition: transform 300ms ease-in-out;
}
.project_image_onmouseover
{
	height: 350px;
	margin-top: 0px;
	margin-bottom: 50px;
	overflow: hidden;
}
.project_image_onmouseover img
{
	-webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: relative;
	transition: transform 300ms ease-in-out;
}
.project_list
{
	padding-left: 40px;
	padding-top: 20px;
}
.project_list li
{
	list-style-type: square;
	padding-left: 10px;
	padding-bottom: 10px;
}
.project_list li::marker {
    color: var(--main-bg-color);
}
.project_prompt
{
	padding-top: 50px;
	color: #000000;
	font-weight: 900;
	font-size: var(--xx-large);
	padding-bottom: 0;
}

/*********************************
31. CALL TO ACTION
*********************************/

.action_call
{
	width: 100%;
}
.action_call_section
{
	width: 100%;
	height: 100%;
	background: var(--main-bg-color);/* #282828;*/
	padding-top: 156px;
	padding-bottom: 161px;
}
.action_call_section_tall
{
	width: 100%;
	height: 100%;
	background: var(--main-bg-color);/* #282828;*/
	padding-top: 256px;
	padding-bottom: 161px;
}
.row-eq-height
{
	overflow: auto;
}

.action_call_content
{
	width: 90%;
}
.action_call_title
{
	color: white;
	margin-bottom: 16px;
	line-height: 1.63;
	font-weight: 700;
	font-size: xx-large;
}
.action_call_title:last-child
{
	margin-bottom: 0px;
}
.action_call_title span
{
	color: var(--main-dark-grey);
}
.action_call_text
{
	color: white;
	font-size: 17px;
	font-weight: 500;
	margin-top: 32px;
	margin-bottom: 0px;
	padding: 0 25px 30px 25px;
	text-align: center;
	opacity: 0.7;
}
.action_call_text::selection
{
	background: white;
	color: var(--main-bg-color);
}
.action_call_button
{
	background: #272b2866;
	backdrop-filter: blur(1px);
	margin-top: 65px;
}
.action_call_button a
{
	color: #FCFCFC;
}
.action_call_button:hover
{
	color: white;
	background:  var(--main-dark-grey);
	transition: 300ms ease-in-out;
}

/*********************************
32. TABLE
*********************************/

.table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--medium);
	color: var(--main-mid-grey);
  }
  
  .table td,
  .table th,
  .table tr,
  .table thead {
	border: 1px solid black;
	line-height: 1.2em;
	height: calc(1.2em * 2);
	padding-left: 20px;
	vertical-align: middle; 
  }
  
  .table td:nth-child(2) {
	font-weight: 600;
	width: 70%;
  }
  #table-2
  {

  }
  .table-2 thead,   .table-2 th
  {
	border: 1px solid black !important;
  }

  .table-2 th,
  .table-2 thead,
  .table-2 tbody
  {
	border: 1px solid black !important;
  }
  .table-2 tr
  {
	height: calc(1.2em * 4);
  }
  .table-header
  {
	height: calc(1.2em * 2) !important;	
  }
  .table-2 td:nth-child(1) {
	font-weight: 900;
	color: var(--main-bg-color);
  }
  .table-2 td:nth-child(2) {
	width: 85%;
	font-weight: 400;
  }
  .table-footer
  {
	font-size: 0.8rem;
	text-align: center;
  }
  