/*Basic*/
	:root {
	  --primary-color: #1e3331;
	  --secondary-color: #7da68b;
	  --tertiary-color: #e99f20;
	}

	.p-color {color: var(--primary-color);}
	.s-color {color: var(--secondary-color);}
	.t-color {color: var(--tertiary-color);}
	.pb-color {background-color: var(--primary-color);}
	.sb-color {background-color: var(--secondary-color);}
	.tb-color {background-color: var(--tertiary-color);}

	* {box-sizing: border-box;font-family: 'Montserrat', sans-serif;}
	body {overflow-x: hidden;}
	a {color: var(--primary-color); text-decoration: none;}
	a:hover {color: var(--tertiary-color);}
	h6 {font-weight:bold !important;}





/*BTNs*/
	.btn-primary {
		background-color: var(--primary-color);
		border: 0px;
		transition: background-color 0.3s ease;
	}
	.btn-primary:hover,
	.btn-primary:focus,
	.btn-primary:active,
	.btn-primary.active,
	.btn-primary:focus-visible {
	  background-color: var(--secondary-color);
	  border: 0;
	  color: #fff;
	  outline: none;
	}






/*Custom*/

	/*.minh {min-height: 80vh;}*/
	.fluid-pad {padding-left:5rem; padding-right:5rem;}
	.anchor-offset {scroll-margin-top: 90px;}
	.minh-50vh {min-height: 50vh;}

	#mainNav {
	  background-color: rgba(255,255,255,1);
	  /*transition: background-color 0.3s ease, box-shadow 0.3s ease;*/
	  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	  /*backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
	}
	/*#mainNav.scrolled {
	  background-color: #ffffff;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}*/

	.full-logo {display:block; height: 50px;}
	.logo-comp {display:none; height: 40px;}

	.nav-link {color: var(--primary-color);}
	.nav-link:hover {color: var(--tertiary-color);}

	/*#mainNav.scrolled .nav-link {color: var(--primary-color);}
	#mainNav.scrolled .nav-link:hover {color: var(--tertiary-color);}*/
	
	.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {color: var(--tertiary-color);}
	#mainNav.scrolled .nav-link.active, .navbar-nav .nav-link.show {color: var(--tertiary-color);}

	.lgtext {font-size: clamp(0.9rem, 1.2vw, 1.8rem); font-weight: 100;}
	.mdtext {font-size: clamp(0.9rem, 1vw, 1.5rem); font-weight: 100;}
	.p100 {padding-top:100px; padding-bottom:100px;}
	.section-row {margin-right: 0;margin-left: 0;min-height: 50vh;}
	.left-col {
		padding: 5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	

	/*.hero-spacer {height:300px;}*/
    .hero-aboutlink {
	  /*position: absolute;
	  bottom: 130px;
	  width: 100%;
	  left: 0;
	  transform: translateX(-50%);*/
	  z-index: 2;
	  display: inline-block;
	  animation: softBounce 2s ease-in-out infinite;
	}
	@keyframes softBounce {
	  0%, 100% {transform: translateY(0);}
	  50% {transform: translateY(8px);}
	}
	.hrcustom {
	  color:var(--tertiary-color);
	  border: 1px solid;
	  opacity: 1;
	  width: 30%;
	}
	.animate-on-scroll {
	  opacity: 0;
	}
	.emblemscale {
	  will-change: transform;
	  display: inline-block;
	  transform-origin: center center;
	}
	.text-md-justify {text-align: justify !important;}





/*dividers*/
	.divider {
	  width: 100%;
	  transform: rotateX(180deg);
	  position: absolute;
	  bottom: 0px;
	  margin-bottom: -1px;
	  z-index: 1;
	}
	.divider2 {
	  width: 100%;
	  transform: rotate3d(0, 0, 1, 180deg);
	  position: absolute;
	  bottom: 0px;
	  left: 0px;
	  margin-bottom: -1px;
	  z-index: 1;
	}
	.divider3 {
	  width: 100%;
	  transform: rotate3d(0, 1, 0, 180deg);
	  position: absolute;
	  bottom: 0px;
	  left: 0px;
	  margin-bottom: -1px;
	  z-index: 1;
	}
	.divider4 {
	  width: 100%;
	  transform: rotate3d(0, 1, 0, 0deg);
	  position: absolute;
	  bottom: 0px;
	  left: 0px;
	  margin-bottom: -1px;
	  z-index: 1;
	}



/* Container for the wave */
    .wave-container {
        width: 100%;
        overflow: hidden;
        line-height: 0;
        background-color: transparent;
        margin-top: -1px;
        pointer-events: none;
        position: absolute;
		bottom: -45px;
    }
    .waves {
        position: relative;
        width: 100%;
        height: 45px; 
        min-height: 20px;
        max-height: 60px;
    }
    .parallax > use {animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;}
    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 18s;
        opacity: 0.15;
    }
    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 13s;
        opacity: 0.3;
    }
    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 10s;
        opacity: 0.5;
    }
    @keyframes move-forever {
        0% {transform: translate3d(-90px, 0, 0);}
        100% {transform: translate3d(85px, 0, 0);}
    }



@media screen and (max-width: 768px) {
	.fluid-pad {padding-left:3rem; padding-right:3rem;}
	/*body { padding-top: 40px ; overflow-x: hidden;}*/
	.hero-spacer {height:200px;}
	.full-logo {display:none;}
	.logo-comp {display:block;}
	.left-col {padding: 2.5rem;}
	#mainNav {background-color: white;}
	.nav-link {color:black;}
	.text-md-justify {text-align: left;}
}






    





