/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Global Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
}

/* Page Loader */

/* body {
	 padding: 0;
	 margin: 0;
} */
/* main-loader {
	 height: 100vh;
} */

.main-fader {
	 width: 100%;
	 height: 100vh;
	 position: absolute;
	 background-color: #fff;
	 z-index: 1;
}
.main-fader .loader {
	 position: fixed;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
}
.main-fader .loader svg {
	 height: 200px;
	 display: block;
	 margin: 0 auto;
}
.main-fader .loader svg path {
	 animation-duration: 1s;
	 animation-name: pulse;
	 animation-iteration-count: infinite;
	 color: #26a380;
}
.main-fader .loader svg .path-7 {
	 animation-delay: -1s;
}
.main-fader .loader svg .path-6 {
	 animation-delay: -0.875s;
}
.main-fader .loader svg .path-5 {
	 animation-delay: -0.75s;
}
.main-fader .loader svg .path-4 {
	 animation-delay: -0.625s;
}
.main-fader .loader svg .path-3 {
	 animation-delay: -0.5s;
}
.main-fader .loader svg .path-2 {
	 animation-delay: -0.375s;
}
.main-fader .loader svg .path-1 {
	 animation-delay: -0.25s;
}
.main-fader .loader svg .path-0 {
	 animation-delay: -0.125s;
}
@keyframes pulse {
	 0% {
		 opacity: 0.1;
	}
	 30% {
		 opacity: 0.8;
	}
	 100% {
		 opacity: 0.1;
	}
}

.css3-spinner > div {
	/* position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -9px;
	margin-left: 13px; */
	width: 0;
	height: 0;
	/* background-color: #DDD;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both; */
	animation: none;
}

/* Logo */

#logo img {
	padding: 20% 20%;
}

/* header */
/* tried to get rid of the mobile menu but might be too much bother. prbly give up */

/* #header-wrap {
	position: absolute;
	height: auto;
	z-index: 299;
	box-shadow: 0 0 0 rgba(0,0,0,0.1);
	transition: height .2s ease 0s, background-color .3s ease 0s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: left, top, transform;
}

#header.transparent-header,
#header.transparent-header:not(.sticky-header) #header-wrap {
	background: transparent;
	border-bottom: 1px solid transparent;
	z-index: 299;
}

.overlay-menu .primary-menu.dark {
background-color: rgba(0,0,0,0.85);
} */

/* home divider */

.home-divider-wrapper {
	display: flex;
	justify-content: center;
}

.home-divider {
	padding-top: 30px;
	height: 0;
	width: 0;
	border-bottom: 4px solid #f7f7f7;
	-webkit-animation: drawLine 2s;
	-moz-animation: drawLine 2s;
	-o-animation: drawLine 2s;
	animation: drawLine 2s;
	animation-fill-mode: forwards;
	animation-timing-function: ease;
}

@keyframes drawLine {
	100% {
		width: 55%;
	}

}

/* Home tiles style */

.portfolio-desc h3 {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 18px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .portfolio-overlay-open .portfolio-item .portfolio-image img {
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
	-webkit-transition: all 1.5s ease;
	transition: all 1.5s ease;
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .portfolio-overlay-open .portfolio-item:hover .portfolio-image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* Footer */

#footer {
	border-top: 0;
}

#copyrights h1 {
	font-style: italic;
}

#copyrights .fancy-title {
	text-align: center;
}

#copyrights .ac p {
	opacity: 0.5;
}

/**************************************************************/
/**************************************************************/
/******************************* Page Title Styling *********/
/**************************************************************/
/************************************************************/

.heading-block::after {
	border-top: 2px solid #5aa03c;
	width: 10%;
}

.heading-block span {
	font-size: 20px;
}

/* .heading-block {
	margin-bottom: 100px;
} */

@media (max-width: 768px) {
	.heading-block {
		margin-bottom: 50px;
	}

}

.page-title-parallax {
	background-size: cover;
}

#page-title.light h1 {
	color: #333;
}

#page-title.light span {
	color: #777;
}

#primary-menu-trigger .light path {
	stroke: #333;
}

.title-border-color::after, .title-border-color::before {
    border-top: 6px double #5aa03c !important;
}

/* body {
  background: black;
  color: white;
} */

#page-title .draw-border {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;

}

/* .svg-obj {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.page-title-svg .path {
    fill: white;
    fill-opacity: 0;
    stroke: white;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 860;
    stroke-dashoffset: 860;

}

.page-title-svg.animated .path {
  animation: draw 2s linear forwards;
  animation-delay: 2s;

}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}
@-o-keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

#page-title .draw-border {
  overflow: hidden;
  position: relative;
}
#page-title .draw-border::before,#page-title .draw-border::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
#page-title .draw-border.animated::before {
  top: 0;
  left: 0;
  border-top-color: #5aa03c;
  border-right-color: #5aa03c;
  animation: border 2s forwards;
}
#page-title .draw-border.animated::after {
  bottom: 0;
  right: 0;
  animation: border 2s 1s forwards, borderColor 2s 1s forwards;
}

@keyframes border {
  0% {
    width: 0;
    height: 0;
  }
  25% {
    width: 100%;
    height: 0;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes borderColor {
  0% {
    border-bottom-color: #5aa03c;
    border-left-color: #5aa03c;
  }
  50% {
    border-bottom-color: #5aa03c;
    border-left-color: #5aa03c;
  }
  51% {
    border-bottom-color: #5aa03c;
    border-left-color: #5aa03c;
  }
  100% {
    border-bottom-color: #5aa03c;
    border-left-color: #5aa03c;
  }
}

/* Letters Pages */

.letter-row {
	margin: 10px auto;
	font-size: 16px;
}

@media (min-width: 992px) {
	.letter-row {
		max-width: 75%;
	}
}

.letter-row .col-12 {
	padding-bottom: 0;
}

.letter-row ul {
	padding-left: 40px;
}

.letter-row .feature-par {
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
}

.letter-signature img {
	/* max-height: 90px; */
	margin-bottom: 20px;
}

.letter-signature h3, .letter-signature p {
	display: block;
}

.ceo-letter .content-wrap {
	padding-bottom: 0;
}

.letter-page-title {
	/* background-position-x: 90% !important; */
	background-size: auto;
}

@media (max-width: 768px) {
	.letter-page-title {
		background-position-x: 50% !important;
		background-size: auto;
		padding: 120px 0 !important;
	}
}

@media (max-width: 992px) {
	.letter-page-title {

	}
}

.signature-img {
	display: block;
	max-width: 200px;
}

/* .section-bottom-nav {
	display: grid;
	height: 100px;
}

.prev {
	grid-column: 1;
	border-right: 1px solid pink;
	text-align: center;
}

.next {
	grid-column: 2;
	border-left: 1px solid pink;
	text-align: center;
}

.prev a, .next a {
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
} */

.section-bottom-nav {
	display: flex;
	height: 100px;
	font-size: 20px;
}

.prev {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	border-right: 1px solid #5aa03c;
	text-align: center;
}

.next {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	border-left: 1px solid #5aa03c;
	text-align: center;
}

.section-bottom-nav .hvr-sweep-to-left::before {
	background: #5aa03c;
}

.section-bottom-nav .hvr-sweep-to-left:hover a {
	color: #fff;
}

.section-bottom-nav .hvr-sweep-to-right::before {
	background: #5aa03c;
}

.section-bottom-nav .hvr-sweep-to-right:hover a {
	color: #fff;
}

/* Executive Summary */

.summary .fbox-content h3 {
	font-size: 3rem;
}

.summary .fbox-image img {
	max-height: 250px;
}

.summary .fbox-content p {
	font-size: 16px;
}

.summary .feature-box {
	display: grid;
}

.summary .counter {
	font-size: 3vw;
	font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
	.summary .counter {
		font-size: 5vw;
	}

}

@media (max-width: 576px) {
	.summary .fbox-image img {
		max-width: 50%;
	}

}

/*********************** COVID-19 **********************/

.covid .covid-highlights [class^="icon-"] {
	font-size: 40px;
}

/************************* Player Representation **************************/

.pr .fbox-image img {
	max-width: 200px;
	border-radius: 50%;
}

.pr .fbox-image, .pr .fbox-content {
	padding: 20px 0;
}

.pr .delegates .fbox-image img {
	max-width: 100px;
}

.pr .delegates .fbox-image, .pr .delegates .fbox-content {
	padding: 0 0;
}

.pr .delegates .fbox-content p, .pr .committees .fbox-content p {
	font-size: 0.875rem;
}

.pr .committees .fbox-image img {
	max-width: 150px;
}

.image-break {
	background-attachment: local;
}

.membership-table .row {
	max-width: 750px;
}

.membership-table .table-bold {
	font-weight: bold;
}

.membership-table .table-center {
	text-align: center;
}

.membership-table  thead tr {
	background-color: rgba(90, 160, 90, 0.4);
}

.membership-table .table-footer {
	background-color: rgba(127, 127, 127, 0.4);
}

.pr .legal-row {
	text-align: center;
}

.pr .legal-row h1 {
	color: #5aa03c;
}

/***************************** Player Development ********************************/

.pdp-circle img {
	width: 70%;
}

.pdp-circle {
		text-align: center;
}

.player-quote {
	background-position: 80% 0;
	background-size: contain;
	background-repeat: no-repeat;
}

.player-quote p {
	font-style: italic;
	margin-bottom: 0;
	font-size: 1.5rem;
}

.player-quote i {
	font-size: 3rem;
	opacity: 0.5;
}

.player-quote h5 {
	margin-bottom: 0;
}

.player-quote span {
	font-size: 0.875rem;
}

.player-quote .player-quote-right {
	text-align: right;
}

.pdp .fbox-content p {
	font-size: 1rem;
}

.pdp .fbox-content span {
	font-size: 3rem;
}

.pdp .fbox-image img {
	border-radius: 0;
	max-height: 250px;
}

.graph-note {
	color: #7f7f7f !important;
}

.image-fit-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*************** UTG **********************/

.audience .social-icon {
	margin: 5px;
	border-radius: 50%;
}

.audience .fbox-content {
	padding-top: 12px;
}

/* APA */

.apa .fbox-image img {
	border-radius: 50%;
	max-height: 150px;
	padding: 10px 10px;
}

.apa .fbox-content h5 {
	margin-bottom: 5px;
}

.apa .fbox-content p {
	font-size: 0.875rem;
}

.apa .partnerships img {
	max-width: 50%;
}
