﻿/* Banner Image */
.tnw-banner-image {
	border-bottom: 2px solid var(--black);
}
.tnw-banner-image .Normal {
	position: relative;
}
.tnw-banner-image .Normal img {
	width: 100%;
	max-width: 100%;
}
.tnw-banner-image .Normal p {
	margin-bottom: 0;
}
.tnw-banner-image .Normal .banner-text {
	background-color: rgba(0,0,0,.8);
	color: #fff;
	font-family: var(--PTSansRegular);
	font-size: 1.8rem;
	font-size: clamp(1.8rem, 4.5vw, 7rem);
	line-height: 1.28;
	position: absolute;
	left: 0;
	bottom: clamp(1rem, 3vw, 5rem);
	padding: .9rem 1.8rem;
	border-bottom: 2px solid var(--TNW-Yellow);
}
.tnw-banner-image .Normal .banner-text .hue {
	color: var(--TNW-Yellow);
}
@media screen and (min-width: 576px) {
	.tnw-banner-image .Normal .banner-text {
		font-size: 2.4rem;
		padding: 1.5rem 3rem;
	}
}
@media screen and (min-width: 768px) {
	.tnw-banner-image .Normal .banner-text {
		font-size: 4rem;
		padding: 2rem 4.5rem;
	}
}
@media screen and (min-width: 992px) {
	.tnw-banner-image {
		border-bottom-width: 6px;
	}
	.tnw-banner-image .Normal .banner-text {
		font-size: 5.5rem;
		border-bottom-width: 6px;
		bottom: 5rem;
		padding: 2.5rem 5.75rem;
	}
}
@media screen and (min-width: 1200px) {
	.tnw-banner-image .Normal .banner-text {
		font-size: 6rem;
		padding: 2.75rem 6.2rem;
	}
}
@media screen and (min-width: 1400px) {
	.tnw-banner-image .Normal .banner-text {
		font-size: 7rem;
		padding: 3rem 6.9rem;
	}
}

/* Mission-Vision */
.tnw-mission-vision {
	background-color: var(--white);
	padding: 2.9rem 0 6rem;
}
.tnw-mission-vision > div {
	max-width: 100rem;
	margin: 0 auto;
}
.tnw-mission-vision .heading1 {
	font-family: var(--PTSansBold);
	font-size: 2rem;
	color: var(--TNW-Blue);
	line-height: 1.2;
	margin-bottom: 1.7rem;
	text-align: center;
}
.tnw-mission-vision p {
	font-family: var(--Arial);
	font-size: 1.4rem;
	line-height: 1.36;
	margin-bottom: 1.8rem;
	color: var(--black);
}
@media screen and (min-width: 768px) {
	.tnw-mission-vision {
		padding: 8.2rem 0;
	}
	.tnw-mission-vision .heading1 {
		font-size: 3.25rem;
	}
	.tnw-mission-vision p {
		font-size: 2.1rem;
		margin-bottom: 2.2rem;
	}
}
@media screen and (min-width: 992px) {
	.tnw-mission-vision {
		padding: 13.5rem 0;
	}
	.tnw-mission-vision .heading1 {
		font-size: 4.5rem;
		margin-bottom: 3rem;
	}
	.tnw-mission-vision p {
		font-size: 2.8rem;
		margin-bottom: 2.6rem;
	}
}

/* Featured Content */
.tnw-featured-content {
	text-align: center;
	padding: 3.2rem 0 6.4rem;
}
.tnw-featured-content .heading2 {
	font-family: var(--PTSansBold);
	font-size: 2.5rem !important;
	line-height: 1.12;
	margin-bottom: 2rem !important;
}
.tnw-featured-content img {
	border: 5px solid var(--black);
	border-radius: 50%;
}
.tnw-featured-content ul {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	display: inline-block;
}
.tnw-featured-content ul li a {
	font-family: var(--Arial);
	--fb-font-size: 1.5rem;
	font-size: var(--fb-font-size);
	--fb-line-height: 1.2;
	line-height: var(--fb-line-height);
	color: var(--TNW-Yellow);
	--fb-v-pad: 1rem;
	--fb-btn-border: 2px;
	padding: var(--fb-v-pad) 3.5rem;
	border-radius: calc((var(--fb-font-size) * var(--fb-line-height) + (var(--fb-v-pad) + var(--fb-btn-border)) * 2) / 2);
	background-color: var(--black);
	margin-bottom: 1.3rem;
	display: inline-block;
	text-decoration: none;
	width: 100%;
	transition: background-color .45s ease-in-out, color .45s ease-in-out;
	border: var(--fb-btn-border) solid var(--black);
}
.tnw-featured-content ul li a:hover {
	background-color: var(--TNW-Yellow);
	color: var(--black);
}
@media screen and (min-width: 992px) {
	.tnw-featured-content {
		padding: 10.8rem 0;
	}
	.tnw-featured-content .heading2 {
		font-size: 3.6rem !important;
		margin-bottom: 4rem !important
	}
	.tnw-featured-content img {
		border-width: 6px;
		margin-bottom: 5.5rem;
	}
	.tnw-featured-content ul li a {
		--fb-font-size: 2rem;
		--fb-v-pad: 1.6rem;
		--fb-btn-border: 6px;
	}
}

/* Inner H1 */
.tnw-inner-h1 {
	padding: 2.5rem 0;
}
.tnw-inner-h1 h1 {
	color: var(--white);
}
@media screen and (min-width: 992px) {
	.tnw-inner-h1 {
		padding: 4.5rem 0;
	}
}

/* Vertical Padding */
.tnw-vpad {
	padding: 2.5rem 0;
}
/* Vertical Centered */
.tnw-vcenter {
	display: flex;
	height: inherit;
	align-items: center;
	padding: 2.5rem 0;
}
/* Top Padding */
.tnw-top-pad {
	padding: 2.5rem 0 0;
}

/* Block Link */
.tnw-block-link {
	margin: 7rem 0;
}
.tnw-block-link .Normal a {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	text-align: center;
	background-color: transparent;
	text-decoration: none;
	padding: 3rem;
	font-family: var(--Arial);
	color: var(--black);
	transition: background-color .35s ease-in-out;
}
.tnw-block-link .Normal a .material-symbols-outlined {
	--bl-font-size: 3.5rem;
	--bl-pad: 1.8rem;
	color: var(--white);
	font-size: var(--bl-font-size);
	padding: var(--bl-pad);
	background-color: var(--black);
	border-radius: calc( ((var(--bl-pad) * 2) + var(--bl-font-size)) / 2);
	transition: all .35s ease-in-out;
	margin: 0 auto 1.5rem;
}
.tnw-block-link .Normal a:hover {
	color: var(--TNW-Blue);
}
.tnw-block-link .Normal a:hover .material-symbols-outlined {
	background-color: var(--TNW-Blue);
}
.tnw-block-link .name {
	display: block;
	font-size: 2.2rem;
	font-weight: 700;
}
.tnw-block-link .details {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
}

/* Button Icon Inline */
.tnw-button-icon-inline .DNNModuleContent {
	display: flex;
}
.tnw-button-icon-inline .Normal {
	border: 1px solid var(--TNW-Yellow);
	padding: .4rem;
	border-radius: 2.4rem;
	display: inline-block;
	margin: 0 auto;
}
.tnw-button-icon-inline .Normal a {
	display: flex;
	background-color: var(--TNW-Yellow);
	border-radius: 2rem;
	text-decoration: none;
	padding: 1.75rem 1rem;
	font-size: 2rem;
	font-family: var(--Arial);
	font-weight: 700;
	line-height: 1;
	color: var(--black);
	border: 4px solid var(--white);
	justify-content: center;
	align-items: center;
	background-image: none;
	transition: background-image .35s ease-in-out;
}
.tnw-button-icon-inline .Normal a span {
	padding: 1rem 2rem;
}
.tnw-button-icon-inline .material-symbols-outlined {
	font-size: 5rem;
	border-left: 1px solid var(--black);
}
.tnw-button-icon-inline .Normal a:hover {
	background-image: linear-gradient(135deg, var(--TNW-Yellow), #ffdc7d, var(--TNW-Yellow));
}

/* Privacy Policy */
.tnw-privacy-policy {
	padding: 2.5rem 0;
}
.tnw-privacy-policy > div,
.tnw-privacy-policy .DNNModuleContent {
	width: 100%;
	text-align: center;
}
.tnw-privacy-policy .Normal {
	border: 1px solid var(--TNW-Blue);
	padding: .4rem;
	border-radius: 2.4rem;
	display: inline-block;
}
.tnw-privacy-policy .Normal a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	background-color: var(--TNW-Blue);
	border-radius: 2rem;
	text-decoration: none;
	padding: 3rem;
	font-size: 1.9rem;
	font-family: var(--Arial);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white);
	border: 4px solid var(--white);
}
.tnw-privacy-policy .Normal a:hover {
	background-image: linear-gradient(135deg, var(--TNW-Blue), #0070d9, var(--TNW-Blue));
}
.tnw-privacy-policy .Normal a img {
	height: 6.6rem;
}
.tnw-privacy-policy .mock-password-field {
	color: var(--white);
	border: 4px solid var(--white);
	height: 3.6rem;
	border-radius: 1.8rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 2rem;
	margin: 2rem 0;
}

/* Icon Links */
.tnw-icon-link {
	text-align: center;
	padding: 3.5rem 0;
}
.tnw-icon-link .material-symbols-outlined {
	color: var(--white);
	font-size: var(--il-font-size);
	transition: color .45s ease-in-out;
}
.tnw-icon-link .Normal {
	display: flex;
	flex-direction: column;
}
.tnw-icon-link .Normal a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}
.tnw-icon-link .Normal a:hover,
.tnw-icon-link .Normal a:active {
	background-color: transparent;
}
.tnw-icon-link .Normal a div {
	--il-pad: 2.2rem;
	--il-font-size: 4.4rem;
	font-size: var(--il-font-size);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--black);
	padding: var(--il-pad);
	border: var(--il-border-width) solid var(--black);
	border-radius: calc( ((var(--il-pad) * 2) + var(--il-font-size)) / 2);
	margin: 0 auto;
	line-height: 1;
	transition: background-color .45s ease-in-out;
}
.tnw-icon-link .Normal a:hover div {
	background-color: var(--TNW-Blue);
}
.tnw-icon-link .Normal a:hover .material-symbols-outlined {
	color: var(--TNW-Yellow);
}
.tnw-icon-link p {
	font-family: var(--PTSansBold);
	font-size: 2.2rem;
	color: var(--black);
	line-height: 1.34;
	margin: 1.3rem 0 0;
	transition: color .45s ease-in-out;
}
.tnw-icon-link .Normal a:hover p {
	color: var(--TNW-Blue);
}

/* Footer Heading */
.tnw-footer-heading p {
	margin-bottom: 0;
	text-align: center;
	font-family: var(--PTSansRegular);
	font-size: 2.3rem;
	color: var(--white);
	line-height: 1.31;
	padding: 0 0 3.5rem;
}
@media screen and (min-width: 992px) {
	.tnw-footer-heading p {
		font-size: 3.4rem;
		padding: 0 0 3.7rem;
	}
}

/* Footer Location */
.tnw-footer-location {
	padding-bottom: 3.5rem;
}
.tnw-footer-location .heading {
	font-family: var(--Arial);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 1.7rem;
}
.tnw-footer-location p {
	font-family: var(--Arial);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--LightBlue);
	line-height: 1.35;
}
.tnw-footer-location a {
	color: var(--white);
	text-decoration: none;
}
.tnw-footer-location a:hover {
	text-decoration: underline;
}
.tnw-footer-location a[href^="tel:"] {
	color: var(--white);
	text-decoration: none;
}
@media screen and (min-width: 992px) {
	.tnw-footer-location {
		padding-bottom: 4.3rem;
	}
	.tnw-footer-location .heading {
		font-size: 1.6rem;
		margin-bottom: 1.4rem;
	}
	.tnw-footer-location p {
		font-size: 1.4rem;
	}
}

/* Footer Logo */
.tnw-footer-logo {
	text-align: center;
	margin-bottom: 4rem;
}
.tnw-footer-logo img {
	width: auto;
}
@media screen and (min-width: 992px) {
	.tnw-footer-logo {
		text-align: left;
	}
}

/* Footer Legal */
.tnw-footer-legal {
	text-align: center;
	padding: 0 15px;
}
.tnw-footer-legal {
	font-size: 1.3rem;
	font-family: var(--Arial);
	font-weight: 400;
	line-height: 1.5;
	color: var(--LightBlue);
}
.tnw-footer-legal p {
	margin-bottom: 4rem;
	font-size: 1.3rem;
	font-family: var(--Arial);
	font-weight: 400;
	line-height: 1.5;
	color: var(--LightBlue);
}
.tnw-footer-legal p:last-of-type {
	margin-bottom: 0;
}
@media screen and (min-width: 992px) {
	.tnw-footer-legal {
		text-align: right;
		padding: 0;
	}
	.tnw-footer-legal p {
		margin-bottom: 1rem;
	}
}

/* Footer Nav */
@media screen and (min-width: 992px) {
	.tnw-footer-nav {
		display: flex;
		justify-content: center;
	}
}

/* Flex Center */
.tnw-flexcenter {
	max-width: 412px;
	margin: 0 auto;
}
.tnw-flexcenter p {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 3%;
	margin-bottom: 0;
}
.tnw-flexcenter p img {
	flex-shrink: 1;
	max-width: 110px;

}
.tnw-flexcenter p a {
	font-size: 14px;
}
@media screen and (min-width: 992px) {
	.tnw-flexcenter {
		max-width: none;
		margin: 0;
	}
	.tnw-flexcenter p {
		justify-content: flex-start;
	}
	.tnw-flexcenter p img {
		max-width: none;
		max-height: 25px;
		width: auto;
	}
	.tnw-flexcenter p a {
		font-size: 18px;
	}
}