/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Video Modal
- Description
- Description Modals
- Chapters
- Summary
- Audience
- Takeaways
- Details
- Author
- About 
- Testimonials
- Partners
- Newsletter
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar, icons - orange #134c5f
- Backgrounds - light gray #f9fafb
- Buttons - yellow #ffc05a
- Headings text - black #384653
- Body text - dark gray #6b747b
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #6b747b; 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #384653;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins", sans-serif;
}

h2 {
	color: #384653;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins", sans-serif;
}

h3 {
	color: #384653;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins", sans-serif;
}

h4 {
	color: #384653;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins", sans-serif;
}

h5 {
	color: #384653;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins", sans-serif;
}

h6 {
	color: #384653;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins", sans-serif;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #6b747b;
	text-decoration: underline;
}

a:hover {
	color: #6b747b;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.bg-gray {
	background-color: #f9fafb;
}

hr.hr-heading {
	display: block;
	width: 3.5rem;
	height: 2px;
	margin-top: 0.625rem;
	border: none;
	background-color: #fe6b2a;
	opacity: 1;
}

.section-title {
	color: #ffc05a;
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1.125rem;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #ffc05a;
	border-radius: 32px;
	background-color: #ffc05a;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	border: 1px solid #384653;
	background-color: transparent;
	color: #384653; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #ffc05a;
	border-radius: 32px;
	background-color: #ffc05a;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	border: 1px solid #384653;
	background-color: transparent;
	color: #384653; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #384653;
	border-radius: 32px;
	background-color: transparent;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #384653;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #384653;
	border-radius: 32px;
	background-color: transparent;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #384653;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #384653;
	border-radius: 32px;
	background-color: transparent;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #384653;
	color: #ffffff;
	text-decoration: none;
}

.form-floating label {
	margin-left: 0.5rem;
	color: #72719b;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
	transform: scale(0.85) translateY(-.75rem) translateX(.15rem);
}

.form-floating .form-control {
	padding-left: 1.25rem;
}

.form-select {
	height: calc(3.5rem + 2px);
	padding-left: 1.25rem;
	color: #72719b;
}

.form-floating textarea.form-control {
	height: 100%;
}

.form-floating .form-control:hover,
.form-select:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.625rem;
	border: 1px solid #ffc05a;
	border-radius: 32px;
	background-color: #ffc05a;
	color: #384653;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #384653;
	background-color: transparent;
	color: #384653;
}

.modal-dialog {
	margin-right: 1rem;
	margin-left: 1rem;
	pointer-events: all;
}

.modal-content {
	background-color: #ffffff;
}

.modal-content .btn-close {
	position: absolute;
	right: 6px;
	top: 10px;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") no-repeat;
	background-size: 16px 16px;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #134c5f;
	font-size: 0.875rem;
	line-height: 0.875rem;
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 81px;
	height: 32px;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #134c5f;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #ffffff;
	opacity: 0.8;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link.active {
	color: #ffffff;
	opacity: 1;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #134c5f;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.625rem;
	color: #ffffff;
	opacity: 0.8;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #134c5f;
	color: #ffffff;
	opacity: 1;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #faa8ac;
}
/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #134c5f;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #134c5f;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/*****************/
/*    Header     */
/*****************/
.header {
	position: relative;
	padding-top: 7rem;
	padding-bottom: 9rem;
	background: radial-gradient(#d7e144, rgb(11 2 12 / 95%));
	background-size: cover;
	text-align: center;
}

.header .text-container {
	margin-bottom: 4rem;
}

.header .h1-large {
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.header .p-large {
	margin-bottom: 2.375rem;
	color: #ffffff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .video-wrapper {
	position: relative;
}

/* Video Play Button */
.header .video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	display: block;
	box-sizing: content-box;
	width: 2rem;
	height: 2.75rem;
	padding: 1.125rem 1.25rem 1.125rem 1.75rem;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.header .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: #134c5f;
	animation: pulse-border 1500ms ease-out infinite;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.header .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 50%;
	background: #134c5f;
	transition: all 200ms;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.header .video-play-button span {
	position: relative;
	display: block;
	z-index: 3;
	top: 0.375rem;
	left: 0.25rem;
	width: 0;
	height: 0;
	border-left: 1.625rem solid #fff;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
}
  
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
/* end of video play button */

.header .frame-decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 36px;
}


/***********************/
/*     Video Modal     */
/***********************/
.video-modal .modal-dialog {
	max-width: 1150px;
	margin-top: 200px;
}

.video-modal .modal-content {
	background-color: #303036;
}

.video-modal .modal-content .btn-close {
	position: absolute;
	right: -20px;
	top: -20px;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") no-repeat;
}


/***********************/
/*     Description     */
/***********************/
.cards-1 {
	padding-top: 6rem;
	padding-bottom: 4rem;
	text-align: center;
}

.cards-1 .h2-heading {
	margin-bottom: 0.75rem;
}

.cards-1 .p-heading {
	margin-bottom: 4.25rem;
}

.cards-1 .card {
	margin-bottom: 2rem;
	border: 0;
	border-radius: 0;
}

.cards-1 .card a {
	text-decoration: none;
	cursor: pointer;
}

/* Hover Animation */
.cards-1 .card-image {
	overflow: hidden;
	margin-bottom: 1rem;
}

.cards-1 .card-image img {
	margin: 0;
	transition: all 0.3s;
}

.cards-1 .card-image:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
} 
/* end of hover animation */

.cards-1 .card-body {
	padding: 0;
}


/******************************/
/*     Description Modals     */
/******************************/
.description-modals .modal-dialog {
	margin-top: 100px;
}

.description-modals .modal-content {
	padding: 2.75rem 1.25rem;
}

.description-modals .modal-content img {
	margin-bottom: 2.5rem;
}

.description-modals .modal-content h3 {
	margin-bottom: 0.75rem;
}

.description-modals .modal-content .list-unstyled {
	margin-bottom: 1.75rem;
}

.description-modals .modal-content .list-unstyled .fas {
	color: #134c5f;
	font-size: 0.875rem;
	line-height: 1.75rem;
}

.description-modals .modal-content .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.description-modals .modal-content .btn-outline-reg {
	cursor: pointer;
}


/********************/
/*     Chapters     */
/********************/
.cards-2 {
	padding-top: 1.75rem;
	padding-bottom: 4.5rem;
	text-align: center;
}

.cards-2 .h2-heading {
	margin-bottom: 0.75rem;
}

.cards-2 .p-heading {
	margin-bottom: 3.75rem;
}

.cards-2 .card {
	margin-bottom: 5rem;
	padding: 3.125rem 1.375rem 2rem 1.375rem;
	border: none;
	border-radius: 0;
	background-color: #ffffff;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
}

.cards-2 .card-image {
	width: 120px;
	height: 120px;
	margin-right: auto;
	margin-bottom: 1.75rem;
	margin-left: auto;
}

.cards-2 .card-body {
	padding: 0;
}

.cards-2 .card-title {
	margin-bottom: 0.5rem;
}


/*******************/
/*     Summary     */
/*******************/
.basic-1 {
	padding-top: 8.5rem;
	padding-bottom: 10rem;
}

.basic-1 .h2-heading {
	text-align: center;
}

.basic-1 .hr-heading {
	margin-right: auto;
	margin-bottom: 3.75rem;
	margin-left: auto;
}

.basic-1 .text-container {
	padding: 2.5rem 1rem 2rem 1rem;
	background-color: #ffffff;
}

.basic-1 .chapter-title {
	margin-bottom: 1.375rem;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	padding-left: 1.5rem;
	background-color: #134c5f;
	color: #ffffff;
}

.basic-1 .text-container .fas {
	margin-left: 0.5rem;
}

.basic-1 .hr-summary {
	display: inline-block;
	width: 100%;
	height: 1px;
	margin-top: 0;
	border: none;
	background-color: #d7d7d7;
	opacity: 1;
}


/********************/
/*     Audience     */
/********************/
.split .area-1 {
	height: 432px;
	background: url('../images/audience.jpg') center left no-repeat;
	background-size: cover;
}

.split .area-2 {
	padding-top: 7.5rem;
	padding-bottom: 8.5rem;
	background-color: #134c5f;
}

.split h2 {
	color: #ffffff;
}

.split .hr-heading {
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 1.375rem;
	background-color: #ffffff;
}

.split p {
	color: #ffffff;
}

.split .list-unstyled {
	margin-bottom: 2rem;
	color: #ffffff;
}

.split .list-unstyled .fas {
	color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.75rem;
}

.split .list-unstyled .flex-grow-1 {
	margin-left: 0.375rem;
}

.split .btn-solid-reg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}


/*********************/
/*     Takeaways     */
/*********************/
.basic-2 {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	text-align: center;
}

.basic-2 .h2-heading {
	margin-bottom: 0.75rem;
}

.basic-2 .p-heading {
	margin-bottom: 3.75rem;
}

.basic-2 .takeaway-wrapper {
	margin-bottom: 2.75rem;
}

.basic-2 .takeaway-container {
	display: flex;
	align-items: flex-start;
	padding: 1.5rem;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
	text-align: left;
}

.basic-2 .takeaway-icon {
	margin-right: 0.875rem;
}

.basic-2 .takeaway-text {
	flex: 1;
}

.basic-2 .takeaway-icon .fas {
	color: #134c5f;
	font-size: 2.25rem;
}


/*******************/
/*     Details     */
/*******************/
.basic-3 {
	padding-top: 3.5rem;
	padding-bottom: 3.875rem;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/details-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-3 .image-container {
	margin-bottom: 4rem;
}

.basic-3 .hr-heading {
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 1.375rem;
}

.basic-3 p {
	margin-bottom: 1.625rem;
}


/******************/
/*     Author     */
/******************/
.basic-4 {
	padding-top: 3.875rem;
	padding-bottom: 8.75rem;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/author-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 .hr-heading {
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 1.375rem;
}

.basic-4 .list-unstyled {
	margin-bottom: 1.5rem;
}

.basic-4 .list-unstyled .fas {
	color: #134c5f;
	font-size: 0.875rem;
	line-height: 1.75rem;
}

.basic-4 .list-unstyled .flex-grow-1 {
	margin-left: 0.375rem;
}


/*****************/
/*     About     */
/*****************/
.counter {
	padding-top: 8rem;
	padding-bottom: 8.25rem;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/about-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.counter .image-container {
	margin-bottom: 3rem;
}

.counter .counter-container {
	text-align: center;
}

.counter .counter-container .counter-cell {
	display: inline-block;
	width: 6.5rem;
	margin-right: 1rem;
	margin-bottom: 2rem;
	margin-left: 1rem;
	vertical-align: top;
}

.counter .counter-container .purecounter {
	margin-bottom: 0.125rem;
	color: #ffffff;
	font-weight: 700;
	font-size: 2.875rem;
	line-height: 3.25rem;
	font-family: "Poppins", sans-serif;
}

.counter .counter-container .counter-info {
	color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.counter h5 {
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.counter .btn-solid-reg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.5rem;
	padding-bottom: 5rem;
	text-align: center;
}

.slider-1 .hr-heading {
	margin-right: auto;
	margin-bottom: 3.75rem;
	margin-left: auto;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 88%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23484a46'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23484a46'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	position: relative;
	border: none;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 96px;
	height: 96px;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
	border-radius: 50%;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #384653;
}


/********************/
/*     Partners     */
/********************/
.basic-5 {
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: center;
}

.basic-5 p {
	margin-bottom: 1.25rem;
}

.basic-5 img {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 36px;
	margin-right: auto;
	margin-bottom: 2.25rem;
	margin-left: auto;
}


/**********************/
/*     Newsletter     */
/**********************/
.form-1 {
	padding-top: 3rem;
	padding-bottom: 9rem;
	text-align: center;
}

.form-1 .text-container {
	padding: 4rem 1.5rem 5rem 1.5rem;
}

.form-1 .p-heading {
	margin-bottom: 3rem;
}

.form-1 .form-control-submit-button:hover {
	border: 1px solid #ced4da;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 8.5rem;
	padding-bottom: 6.5rem;
	background-color: #272d35;
	text-align: center;
}

.footer a {
	color: #efefef;
	text-decoration: none;
}

.footer h5 {
	margin-bottom: 1.875rem;
	color: #efefef;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
    color: #272d35;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #efefef;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #efefef;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: #ffc05a;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1.5rem;
	background-color: #442161;
	text-align: center;
}

.copyright a {
	text-decoration: none;
	color: #76859a;
}

.copyright .statement {
	color: #76859a;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	right: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: #0b202b; 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: #ffc05a;
}

#myBtn img {
	margin-bottom: 0.25rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #134c5f;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	color: #6b747b;
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f9fafb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #134c5f;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}

.ex-basic-1 .map-responsive {
	overflow: hidden;
	position: relative;
	height: 0;
	margin-bottom: 3rem;
	padding-bottom: 56.25%;
	border-radius: 0.25rem;
}

.ex-basic-1 .map-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	border: none; 
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header .frame-decoration {
		height: 52px;
	}
	/* end of header */


	/* Description */
	.cards-1 {
		padding-top: 5.25rem;
	}

	.cards-1 .card {
		display: inline-block;
		width: 326px;
		margin-right: 0.5rem;
		margin-left: 0.5rem;
		text-align: left;
		vertical-align: top;
	}
	/* end of description */


	/* Description Modals */
	.description-modals .modal-dialog {
		max-width: 560px;
		margin-right: auto;
		margin-left: auto;
	}

	.description-modals .modal-content {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}
	/* end of description modals */


	/* Summary */
	.basic-1 .text-container {
		padding: 3.5rem 2.5rem 2.5rem 2.5rem;
	}
	/* end of summary */


	/* Takeaways */
	.basic-2 .takeaway-container {
		padding: 2.25rem;
	}
	
	.basic-2 .takeaway-icon {
		margin-right: 1rem;
	}
	/* end of takeaways */


	/* Partners */
	.basic-5 img {
		display: inline-block;
		width: 100px;
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of partners */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* Stops body and navbar shift on modal open */
	body.modal-open {
		overflow-y: scroll !important;
		padding-right: 0 !important;
	}

	body.modal-open .navbar {
		padding-right: 0 !important;
	}
	/* end of stops body and navbar shift on modal open */

	.modal {
		padding-right: 0 !important;
	}

	.modal-dialog {
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.extra-page {
		padding-top: 0.5rem;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #134c5f;
		box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		padding-top: 11rem;
		padding-bottom: 11rem;
		text-align: left;
	}

	.header .text-container {
		margin-bottom: 0;
	}

	.header .frame-decoration {
		height: 68px;
	}
	/* end of header */


	/* Video Modal */
	.video-modal .modal-dialog {
		margin-top: 7%;
	}
	/* end of video modal */


	/* Description */
	.cards-1 {
		padding-top: 4.75rem;
	}
	/* end of description */


	/* Audience */
	.split {
		height: 656px;
	}
	
	.split .area-1 {
		width: 50%;
		height: 100%;
		display: inline-block;
	}
	
	.split .area-2 {
		width: 50%;
		height: 100%;
		display: inline-block;
		padding-bottom: 0;
		vertical-align: top;
	}

	.split .area-2 .text-container {
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of audience */


	/* Details */
	.basic-3 {
		padding-bottom: 4.375rem;
	}
	
	.basic-3 .image-container {
		margin-bottom: 0;
	}

	.basic-3 .text-container {
		margin-top: 4rem;
	}
	/* end of details */


	/* Author */
	.basic-4 {
		padding-top: 4.375rem;
	}

	.basic-4 .text-container {
		margin-top: 3.25rem;
		margin-bottom: 0;
	}
	/* end of details */


	/* About */
	.counter {
		padding-bottom: 7.5rem;
	}

	.counter .image-container {
		margin-bottom: 0;
	}

	.counter .counter-container .counter-cell {
		margin-right: 1.5rem;
		margin-left: 0;
	}
	
	.counter .counter-container .counter-cell:last-of-type {
		margin-right: 0;
	}
	/* end of about */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 94%;
	}

	.slider-1 .swiper-button-prev {
		left: -20px;
	}
	
	.slider-1 .swiper-button-next {
		right: -20px;
	}
	/* end of testimonials */


	/* Partners */
	.basic-5 img {
		width: 136px;
		margin-bottom: 2.5rem;
	}
	/* end of partners */


	/* Newsletter */
	.form-1 .form-floating {
		display: inline-block;
		vertical-align: top;
	}
	
	.form-1 .form-control {
		width: 20rem;
		border-top-left-radius: 32px;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 32px;
	}

	.form-1 .form-control-submit-button {
		width: 9rem;
		margin-left: -0.375rem;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.form-1 .form-floating label {
		margin-left: 1rem;
	}
	
	.form-1 .form-floating .form-control {
		padding-left: 1.75rem;
	}
	/* end of newsletter */


	/* Footer */
	.footer h5 {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of footer */


	/* Copyright */
	.copyright {
		text-align: left;
	}

	.copyright .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}

	.copyright .statement {
		text-align: right;
	}
	/* end of copyright */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}

	.h1-large {
		font-size: 3.625rem;
		line-height: 4.375rem;
	}
	/* end of general styles */
	

	/* Header */
	.header {
		overflow: hidden;
		padding-bottom: 17rem;
	}

	.header .text-container {
		margin-top: 5.5rem;
		margin-right: 4.5rem;
	}
	
	.header .image-container {
		width: 674px;
		margin-left: 1rem;
	}

	.header .frame-decoration {
		height: 144px;
	}
	/* end of header */


	/* Description */
	.cards-1 {
		padding-top: 1.25rem;
	}

	.cards-1 .card {
		width: 262px;
		margin-right: 0.375rem;
		margin-left: 0.375rem;
	}
	/* end of description */


	/* Chapters */
	.cards-2 .card {
		display: inline-block;
		width: 340px;
		padding: 3.125rem 1.75rem 2rem 1.75rem;
		vertical-align: top;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	/* end of chapters */


	/* Audience */
	.split {
		height: 620px;
	}
	
	.split .area-2 {
		padding-top: 8rem;
	}

	.split .area-2 .text-container {
		margin-right: 0;
		margin-left: 4rem;
		max-width: 480px;
	}
	/* end of audience */


	/* Takeaways */
	.basic-2 .takeaway-wrapper {
		display: inline-block;
		width: 348px;
		vertical-align: top;
	}

	.basic-2 .takeaway-wrapper:nth-of-type(3n+2) {
		margin-right: 1.75rem;
		margin-left: 1.75rem;
	}
	/* end of takeaways */


	/* Details */
	.basic-3 .image-container {
		margin-right: 4.5rem;
	}
	
	.basic-3 .text-container {
		margin-top: 7.5rem;
	}
	/* end of details */
	

	/* Author */
	.basic-4 .text-container {
		margin-top: 6rem;
	}

	.basic-4 .image-container {
		margin-left: 4.5rem;
	}
	/* end of details */


	/* About */
	.counter .text-container {
		margin-top: 6rem;
		margin-left: 2rem;
	}
	/* end of about */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 96%;
	}

	.slider-1 .swiper-button-prev {
		left: -26px;
	}
	
	.slider-1 .swiper-button-next {
		right: -26px;
	}
	/* end of testimonials */


	/* Partners */
	.basic-5 img {
		width: 154px;
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of partners */


	/* Newsletter */
	.form-1 .text-container {
		padding: 7rem 2rem;
	}
	/* end of newsletter */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	
}
/* end of min-width 1200px */
.img-hero {border-radius: 15px !important}
/* @media only screen and (max-width: 700px) {
	.img-hero {border-radius: 10%!important; mix-blend-mode: lighten; scale: 150%;}
	
	} */
  
  .purple {padding:30px; border: 5px solid #442161; border-radius: 30px; margin:70px 0 70px 0}

  .accordion-header {border-radius: 15px;}
  ul {text-align: left !important;}


  h1, h2, h3 {
	color: #1a202c;
  }
  ul {
	padding-left: 20px;
  }
  table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
  }
  th, td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
  }
  th {
	background-color: #f4f4f4;
  }
  em {
	color: #555;
  }
