:root {
	--dt-heading: #1d1e1b;
	--dt-text: #494b48;
	--dt-accent: #576c7e;
	--dt-hover: #364451;
	--dt-off: #f5f5f5;
	--dt-menu-bg: #f7f7f7;
	--dt-sans: "Open Sans", sans-serif;
	--dt-serif: "Lora", sans-serif;
}

body.dt-site {
	font-family: var(--dt-serif);
}

.dt-site #page {
	overflow-x: clip;
}

.dt-header {
	position: relative;
	z-index: 999;
	margin-top: 50px;
	padding: 0 10px;
}

.dt-header__inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 20px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px 0;
}

.dt-header__bar {
	position: relative;
	z-index: 999;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	padding: 10px;
	background: var(--dt-off);
	border-radius: 30px;
}

.dt-header__brand,
.dt-header__nav {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 10px;
}

.dt-header__logo {
	display: block;
	width: 100%;
	transition: transform .4s;
}

.dt-header__logo:hover {
	transform: scale(1.02);
}

.dt-header__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.dt-site .dt-menu-toggle,
.dt-menu-panel__head,
.dt-menu-overlay {
	display: none;
}

.dt-site .dt-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	height: 80px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dt-site .dt-menu > li {
	position: relative;
	margin: 0;
}

.dt-site .dt-menu > li > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 15px;
	font-family: var(--dt-sans);
	font-size: 28px;
	font-weight: 800;
	line-height: 46.2px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--dt-text);
	transition: all .4s;
}

.dt-site .dt-menu > li > a:hover,
.dt-site .dt-menu > li > a:focus-visible,
.dt-site .dt-menu > .current-menu-item > a {
	color: var(--dt-accent);
}

.dt-site .dt-menu > .current-menu-item > a {
	border-bottom: 2px solid var(--dt-accent);
}

.dt-header__brand,
.dt-header__nav,
.dt-hero__content,
.dt-about__text,
.dt-about__media,
.dt-manage__text,
.dt-manage__media,
.dt-copy,
.dt-copy > *,
.dt-card,
.dt-card > *,
.dt-imc__row > *,
.dt-updates__head,
.dt-updates__posts,
.dt-board__row,
.dt-member,
.dt-member > *,
.dt-docs__col,
.dt-docs__col > *,
.dt-footer__brand,
.dt-footer__cols,
.dt-footer__contact,
.dt-footer__links,
.dt-bottom__col {
	min-width: 0;
}

.dt-sec {
	padding: 0 10px;
}

.dt-sec__inner,
.dt-site .entry-content .dt-sec > .dt-sec__inner {
	max-width: 1140px;
}

.dt-sec__inner {
	display: flex;
	gap: 20px;
	margin: 0 auto;
	padding: 100px 0;
}

.dt-site .dt-sec a {
	text-decoration: none;
}

.dt-site .dt-h2 {
	margin: 0 0 10px;
	font-family: var(--dt-sans);
	font-size: 40px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
	color: var(--dt-heading);
}

.dt-site .dt-p {
	margin: 0 0 4px;
	font-family: var(--dt-serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 23px;
	color: var(--dt-text);
}

.dt-copy {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dt-site .dt-btn {
	display: inline-block;
	padding: 12px 24px;
	font-family: var(--dt-sans);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: var(--dt-accent);
	border-radius: 3px;
	transition: all .3s, transform .4s;
}

.dt-site .dt-btn:hover,
.dt-site .dt-btn:focus-visible {
	color: #fff;
	background: var(--dt-hover);
}

.dt-site .dt-btn--dark:hover,
.dt-site .dt-btn--dark:focus-visible {
	background: var(--dt-heading);
}

.dt-site .dt-btn--lift:hover {
	transform: translateY(-1px);
}

.dt-lift-1 {
	transition: transform .4s;
}

.dt-lift-1:hover {
	transform: translateY(-1px);
}

.dt-pills {
	display: flex;
	gap: 30px;
}

.dt-pill {
	display: inline-block;
	padding: 12px 24px;
	font-family: var(--dt-sans);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	border-radius: 3px;
}

.dt-pill--accent {
	color: #fff;
	background: var(--dt-accent);
}

.dt-pill--light {
	color: var(--dt-heading);
	background: var(--dt-off);
}

.dt-site .dt-hero {
	position: relative;
	margin-top: -300px;
	padding: 0;
}

.dt-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.dt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--dt-heading);
	opacity: .6;
}

.dt-hero__inner {
	position: relative;
	z-index: 2;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 500px 0 200px;
}

.dt-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 80%;
	padding: 10px;
}

.dt-site .dt-hero__title {
	margin: 0;
	padding: 0 0 5px;
	font-family: var(--dt-sans);
	font-size: 50px;
	font-weight: 700;
	line-height: 70px;
	text-transform: uppercase;
	color: #fff;
}

.dt-hero__divider {
	display: flex;
	width: 100%;
	padding: 15px 0;
}

.dt-hero__divider span {
	width: 35%;
	border-top: 3px solid var(--dt-accent);
}

.dt-site .dt-hero__subtitle {
	margin: 0;
	padding: 5px 0;
	font-family: var(--dt-sans);
	font-size: 30px;
	font-weight: 500;
	line-height: 39px;
	color: #fff;
}

.dt-site .dt-hero__text {
	margin: 0 0 4px;
	font-family: var(--dt-serif);
	font-size: 18px;
	line-height: 29.7px;
	color: #fff;
}

.dt-portal {
	background: var(--dt-off);
}

.dt-portal__inner {
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.dt-site .dt-portal__title {
	margin: 0;
	font-family: var(--dt-sans);
	font-size: 25px;
	font-weight: 600;
	line-height: 32.5px;
	color: #000;
}

.dt-portal__deco {
	flex: 0 1 600px;
	min-width: 0;
	text-align: center;
}

.dt-portal__deco img {
	display: block;
	width: 600px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.dt-about__inner,
.dt-manage__inner,
.dt-meet__inner {
	justify-content: center;
	align-items: center;
}

.dt-about__text,
.dt-manage__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	width: 50%;
	padding: 10px;
}

.dt-about__media,
.dt-manage__media {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	padding: 10px;
}

.dt-about__media img,
.dt-manage__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 25px;
}

.dt-meet {
	background: var(--dt-off);
}

.dt-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-self: stretch;
	width: 50%;
	padding: 30px 20px;
	border-radius: 25px;
}

.dt-card--white {
	background: #fff;
}

.dt-card--accent {
	background: var(--dt-accent);
}

.dt-site .dt-card__title {
	margin: 0 0 10px;
	font-family: var(--dt-sans);
	font-size: 25px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
	color: var(--dt-heading);
}

.dt-site .dt-card--accent .dt-card__title,
.dt-site .dt-card--accent > .dt-p {
	color: #fff;
}

.dt-site .dt-meet__list {
	margin: 0 0 27px 54px;
	padding: 0;
	font-family: var(--dt-serif);
	font-size: 18px;
	line-height: 23px;
	color: var(--dt-text);
	list-style: disc;
}

.dt-site .dt-meet__list li {
	margin: 0;
}

.dt-site .dt-meet__list strong {
	font-weight: 700;
}

.dt-sm {
	font-size: 16px;
}

.dt-site .dt-meet__list a {
	font-size: 16px;
	color: var(--dt-accent);
	background: #fff;
}

.dt-site .dt-meet__list a:hover,
.dt-site .dt-meet__list a:focus-visible {
	color: var(--dt-hover);
}

.dt-imc {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 20px;
	background: #fff;
	border-radius: 15px;
}

.dt-imc__row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.dt-site .dt-imc__name {
	width: 50%;
	margin: 0 0 10px;
	font-family: var(--dt-sans);
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	color: var(--dt-heading);
}

.dt-imc__org {
	width: 50%;
}

.dt-imc__phone {
	width: 40%;
}

.dt-site .dt-imc__email {
	width: 60%;
	padding-bottom: 23px;
}

.dt-site .dt-imc a {
	color: var(--dt-accent);
}

.dt-site .dt-imc a:hover,
.dt-site .dt-imc a:focus-visible {
	color: var(--dt-hover);
}

.dt-site .dt-manage__list {
	margin: 0 0 27px 54px;
	padding: 0;
	font-family: var(--dt-serif);
	font-size: 18px;
	line-height: 23px;
	color: var(--dt-text);
	list-style: disc;
}

.dt-site .dt-manage__list li {
	margin: 0;
}

.dt-manage__actions {
	display: flex;
	align-items: center;
	gap: 30px;
}

.dt-site .dt-manage__help {
	margin: 0;
	font-family: var(--dt-serif);
	font-size: 15px;
	line-height: 23px;
	color: var(--dt-text);
}

.dt-site .dt-manage__help a {
	color: var(--dt-accent);
}

.dt-site .dt-manage__help a:hover,
.dt-site .dt-manage__help a:focus-visible {
	color: var(--dt-hover);
}

.dt-updates {
	background: var(--dt-off);
}

.dt-updates__inner {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dt-updates__head {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100%;
	padding: 10px;
}

.dt-updates__posts {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 10px;
}

.dt-posts {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	width: calc(100% + 30px);
	margin: 0 -15px;
}

.dt-post {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 15px;
}

.dt-post__card {
	padding: 20px 40px 40px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
	transition: all .4s;
}

.dt-post__card:hover {
	background: var(--dt-accent);
}

.dt-site .dt-post__title {
	margin: 0 0 28px;
	font-family: var(--dt-sans);
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
	text-transform: uppercase;
}

.dt-site .dt-post__title a {
	color: var(--dt-text);
}

.dt-site .dt-post__card:hover .dt-post__title a,
.dt-site .dt-post__title a:focus-visible {
	color: #fff;
}

.dt-site .dt-post__btn {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	padding: 15px 30px;
	font-family: var(--dt-serif);
	font-size: 15px;
	line-height: 15px;
	white-space: nowrap;
	color: #fff;
	background: var(--dt-hover);
	border-radius: 5px;
	transition: all .4s;
}

.dt-site .dt-post__btn:hover,
.dt-site .dt-post__btn:focus-visible {
	color: #fff;
	background: var(--dt-text);
}

.dt-updates__more {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.dt-board__inner {
	flex-direction: column;
}

.dt-site .dt-board__title,
.dt-site .dt-docs__title {
	margin: 0 0 10px;
	font-family: var(--dt-sans);
	font-size: 50px;
	font-weight: 700;
	line-height: 70px;
	text-transform: uppercase;
	color: var(--dt-heading);
}

.dt-board__row {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
	gap: 20px;
	width: 100%;
	padding: 10px;
}

.dt-member {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	width: 33%;
	padding: 0 0 20px;
	background: var(--dt-off);
	border-radius: 0 0 15px 15px;
}

.dt-member__head {
	width: 100%;
	padding: 10px;
	background: var(--dt-accent);
	border-radius: 15px 15px 0 0;
}

.dt-site .dt-member__role {
	margin: 0;
	padding: 0 0 5px 10px;
	font-family: var(--dt-sans);
	font-size: 25px;
	font-weight: 700;
	line-height: 35px;
	text-transform: uppercase;
	color: #fff;
}

.dt-site .dt-member__name {
	margin: 0;
	padding: 10px 10px 10px 20px;
	font-family: var(--dt-sans);
	font-size: 25px;
	font-weight: 700;
	line-height: 32.5px;
	text-transform: uppercase;
	color: var(--dt-heading);
}

.dt-site .dt-member__desc,
.dt-site .dt-member__email {
	margin: 0;
	padding: 10px 10px 14px 20px;
	font-family: var(--dt-serif);
	font-size: 1rem;
	font-weight: 400;
	line-height: 14px;
	color: var(--dt-text);
}

.dt-site .dt-member__email {
	font-weight: 500;
}

.dt-site .dt-member__email a {
	color: var(--dt-accent);
}

.dt-site .dt-member__email a:hover,
.dt-site .dt-member__email a:focus-visible {
	color: var(--dt-hover);
}

.dt-docs {
	background: var(--dt-off);
}

.dt-docs__inner {
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 10px;
}

.dt-docs__head {
	width: 100%;
	padding: 10px;
}

.dt-site .dt-docs__title {
	text-align: center;
}

.dt-docs__col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 40%;
	padding: 10px;
}

.dt-site .dt-doc {
	display: inline-block;
	align-self: flex-start;
	max-width: 100%;
	padding: 20px;
	font-family: var(--dt-sans);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	color: var(--dt-heading);
	background: #fff;
	border-radius: 3px;
	transition: all .3s, transform .4s;
}

.dt-site .dt-doc:hover,
.dt-site .dt-doc:focus-visible {
	color: var(--dt-off);
	background: var(--dt-accent);
	transform: translateX(5px);
}

.dt-footer__main {
	padding: 0 10px;
	background: var(--dt-accent);
}

.dt-footer__inner {
	display: flex;
	max-width: 1140px;
	margin: 0 auto;
	padding: 100px 0;
}

.dt-footer__brand {
	display: flex;
	flex-direction: column;
	width: 40%;
	padding: 10px;
}

.dt-footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.dt-footer__cols {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	width: 60%;
	padding: 10px;
}

.dt-footer__contact,
.dt-footer__links {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
}

.dt-footer__contact {
	width: 60%;
}

.dt-footer__links {
	width: 40%;
}

.dt-site .dt-footer__title {
	margin: 0 0 10px;
	font-family: var(--dt-sans);
	font-size: 36px;
	font-weight: 600;
	line-height: 50.4px;
	color: #fff;
}

.dt-site .dt-footer__text p {
	margin: 0 0 4px;
	font-family: var(--dt-sans);
	font-size: 20px;
	font-weight: 400;
	line-height: 33px;
	color: #fff;
}

.dt-site .dt-footer a {
	color: #fff;
	text-decoration: none;
}

.dt-site .dt-footer__main a:hover,
.dt-site .dt-footer__main a:focus-visible {
	color: var(--dt-heading);
}

.dt-site .dt-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dt-site .dt-footer__menu li {
	margin: 0;
	font-family: var(--dt-sans);
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
}

.dt-bottom {
	padding: 0 10px;
	background: var(--dt-text);
}

.dt-bottom__inner {
	display: flex;
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px 0;
}

.dt-bottom__col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 33.3%;
	padding: 10px;
}

.dt-bottom__col--start {
	align-items: flex-start;
}

.dt-bottom__col--center {
	align-items: center;
}

.dt-bottom__col--end {
	align-items: flex-end;
}

.dt-site .dt-bottom a {
	display: inline-block;
	padding: 12px 24px;
	font-family: var(--dt-sans);
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	text-align: center;
	color: #fff;
	background: transparent;
	border-radius: 3px;
	transition: all .3s;
}

.dt-site .dt-bottom a:hover,
.dt-site .dt-bottom a:focus-visible {
	color: var(--dt-heading);
	background: #fff;
}

body.dt-site.dt-grey {
	background-color: var(--dt-off);
}

.dt-site.single-post .entry-header {
	margin-bottom: 0;
}

.dt-site .entry-content .dt-pc {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: none;
	margin: 0;
	padding: 10px;
}

.dt-site .entry-content .dt-pc--row {
	flex-direction: row;
}

.dt-site .entry-content .dt-pc--gap0 {
	gap: 0;
}

.dt-site .entry-content .dt-pc > * {
	min-width: 0;
	max-width: 100%;
	margin: 0;
}

.dt-site .entry-content .dt-pt {
	color: var(--dt-text);
}

.dt-site .entry-content .dt-pt p {
	margin: 0 0 4px;
}

.dt-site .entry-content .dt-ph {
	font-family: var(--dt-sans);
	font-weight: 600;
	color: #000;
}

.dt-site .entry-content .dt-pi {
	text-align: center;
	box-shadow: none;
}

.dt-site .entry-content .dt-pi img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
}

.dt-site .entry-content .dt-pc > .dt-mt0 {
	margin-top: 0;
}

.dt-site .entry-content .dt-pc > .dt-mt20 {
	margin-top: 20px;
}

.dt-site .entry-content .dt-pc.dt-mt30,
.dt-site .entry-content .dt-pc > .dt-mt30 {
	margin-top: 30px;
}

.dt-site .entry-content .dt-pc > .dt-mb20 {
	margin-bottom: 20px;
}

.dt-site .dt-list {
	margin: 50px 0;
}

.dt-list__inner {
	flex-direction: column;
	padding: 10px 0;
}

.dt-plist {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.dt-plist__item {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 15px;
}

.dt-plist__card {
	margin: 10px;
	padding: 50px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
	transition: all .4s;
}

.dt-plist__body {
	padding: 0 15px;
}

.dt-site .dt-plist__title {
	margin: 0 0 30px;
	font-family: var(--dt-serif);
	font-size: 36px;
	font-weight: 900;
	line-height: 43.2px;
	text-align: left;
	color: #1e293b;
}

.dt-site .dt-sec .dt-plist__title a {
	font-weight: 600;
	color: #000;
	text-decoration: underline;
}

.dt-site .dt-plist__excerpt {
	margin: 0 0 35px;
	font-family: var(--dt-serif);
	font-size: inherit;
	line-height: inherit;
	text-align: left;
	color: #8d8d8d;
	transition: .4s;
}

.dt-site .entry-content > .dt-sec.wp-block-group {
	padding: 0 10px;
}

.dt-site .dt-legal {
	width: 100%;
	font-family: var(--dt-serif);
	font-size: 16px;
	line-height: 1.65;
	color: var(--dt-text);
}

.dt-site .dt-legal h1,
.dt-site .dt-legal h3 {
	margin: 0 0 20px;
	padding: 0;
	font-family: var(--dt-serif);
	font-weight: 600;
	line-height: 1.3;
	color: #1e293b;
}

.dt-site .dt-legal h1 {
	font-size: 30px;
}

.dt-site .dt-legal h3 {
	font-size: 24px;
}

.dt-site .dt-legal h3 ~ h3 {
	padding-top: calc(1.3em + 20px);
}

.dt-site .dt-legal p {
	margin: 0 0 4px;
}

.dt-site .dt-legal .dt-legal__date {
	margin-bottom: 20px;
}

.dt-site .dt-legal ul {
	margin: 1em 0;
	padding: 0 0 0 20px;
	list-style: disc;
}

.dt-site .dt-legal li {
	margin: 0;
}

.dt-site .dt-legal a {
	color: var(--dt-accent);
	text-decoration: underline;
}

.dt-site .dt-legal a:hover,
.dt-site .dt-legal a:focus-visible {
	color: var(--dt-hover);
}

.dt-anim-ready [data-dt-anim]:not(.dt-in) {
	visibility: hidden;
}

.dt-animate {
	animation-duration: 1.25s;
}

.dt-animate[data-dt-anim="fadeIn"] {
	animation-name: dtFadeIn;
}

.dt-animate[data-dt-anim="fadeInUp"] {
	animation-name: dtFadeInUp;
}

.dt-animate[data-dt-anim="fadeInDown"] {
	animation-name: dtFadeInDown;
}

.dt-animate[data-dt-anim="fadeInLeft"] {
	animation-name: dtFadeInLeft;
}

.dt-animate[data-dt-anim="fadeInRight"] {
	animation-name: dtFadeInRight;
}

@keyframes dtFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes dtFadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes dtFadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes dtFadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes dtFadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1024px) {
	.dt-header__bar {
		width: 90%;
		justify-content: space-between;
	}

	.dt-header__brand {
		width: 60%;
	}

	.dt-header__nav {
		width: 40%;
		align-items: flex-end;
	}

	.dt-site .dt-menu-toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 45px;
		height: 43px;
		margin: 0;
		padding: 8px;
		color: #000;
		background: transparent;
		border: 0;
		border-radius: 4px;
		box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
		cursor: pointer;
		transition: all .4s ease-in;
	}

	.dt-site .dt-menu-toggle:hover,
	.dt-site .dt-menu-toggle:focus {
		color: #000;
		background: transparent;
	}

	.dt-menu-toggle__icon {
		display: block;
		flex: none;
		width: 25px;
		height: auto;
		fill: currentColor;
	}

	.dt-menu-panel {
		position: fixed;
		top: 0;
		bottom: 0;
		left: -100%;
		z-index: 1000;
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 350px;
		padding: 0 0 10px;
		overflow-y: auto;
		background: var(--dt-menu-bg);
		visibility: hidden;
		transition: left .6s cubic-bezier(.6, .1, .68, .53), visibility 0s linear .6s;
	}

	.dt-header__nav.is-open .dt-menu-panel {
		left: 0;
		visibility: visible;
		transition: left .6s cubic-bezier(.6, .1, .68, .53), visibility 0s;
	}

	.dt-menu-panel__head {
		display: block;
		padding: 10px 0;
	}

	.dt-site .dt-menu-close {
		display: block;
		width: 45px;
		margin: 12px 12px 12px auto;
		padding: 8px;
		font-family: var(--dt-serif);
		font-size: 1rem;
		font-weight: 500;
		line-height: 1;
		color: var(--dt-text);
		background: transparent;
		border: 0;
		border-radius: .25em;
		box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
		cursor: pointer;
	}

	.dt-site .dt-menu-close:hover,
	.dt-site .dt-menu-close:focus {
		color: var(--dt-text);
		background: transparent;
	}

	.dt-site .dt-menu {
		display: block;
		height: auto;
	}

	.dt-site .dt-menu > li > a {
		height: auto;
		padding: 10px 15px;
	}

	.dt-site .dt-menu > li > a:hover,
	.dt-site .dt-menu > li > a:focus-visible,
	.dt-site .dt-menu > .current-menu-item > a {
		color: #2b2b2b;
	}

	.dt-menu-overlay {
		position: fixed;
		inset: 0;
		z-index: 999;
		display: block;
		background: rgba(51, 51, 51, .5);
		opacity: 0;
		visibility: hidden;
		transition: all .6s cubic-bezier(.22, .61, .24, 1);
	}

	.dt-header__nav.is-open .dt-menu-overlay {
		opacity: 1;
		visibility: visible;
	}

	.dt-hero__content {
		width: 90%;
	}

	.dt-site .dt-hero__title {
		font-size: 38px;
		line-height: 53.2px;
	}

	.dt-site .dt-hero__subtitle {
		font-size: 25px;
		line-height: 32.5px;
	}

	.dt-site .dt-hero__text {
		font-size: 17px;
		line-height: 28.05px;
	}

	.dt-portal__deco {
		display: none;
	}

	.dt-site .dt-h2 {
		font-size: 38px;
	}

	.dt-about,
	.dt-manage {
		padding: 0 20px;
	}

	.dt-about__inner,
	.dt-manage__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
		gap: 10px 20px;
	}

	.dt-about__inner {
		grid-template-areas: "title title" "copy media" "pills pills";
	}

	.dt-manage__inner {
		grid-template-areas: "title title" "copy media" "actions actions";
	}

	.dt-about__text,
	.dt-manage__text {
		display: contents;
	}

	.dt-about__title,
	.dt-manage__title {
		grid-area: title;
	}

	.dt-about__copy,
	.dt-manage__copy {
		grid-area: copy;
	}

	.dt-about__media,
	.dt-manage__media {
		grid-area: media;
		width: auto;
		padding: 0;
	}

	.dt-about__pills {
		grid-area: pills;
		padding-top: 10px;
	}

	.dt-manage__actions {
		grid-area: actions;
		align-items: flex-end;
		padding-top: 10px;
	}

	.dt-site .dt-card__title {
		font-size: 38px;
	}

	.dt-site .dt-meet__list {
		margin: 0;
		list-style: none;
	}

	.dt-site .dt-meet__list li {
		margin: 0 0 4px;
	}

	.dt-site .dt-meet__list li + li {
		margin-top: 31px;
	}

	.dt-meet__list li::before {
		content: "-";
	}

	.dt-imc__row--contact {
		flex-direction: column;
		align-items: flex-start;
	}

	.dt-site .dt-imc__phone,
	.dt-site .dt-imc__email {
		width: auto;
		padding-bottom: 0;
	}

	.dt-posts {
		row-gap: 0;
	}

	.dt-post {
		flex-basis: 50%;
		max-width: 50%;
	}

	.dt-post__card {
		margin-bottom: 30px;
	}

	.dt-plist__item {
		flex-basis: 50%;
		max-width: 50%;
	}

	.dt-plist__card {
		margin: 0 0 30px;
	}

	.dt-plist__body {
		max-width: 50%;
	}

	.dt-site .dt-member__name,
	.dt-site .dt-member__desc,
	.dt-site .dt-member__email {
		padding-left: 10px;
	}

	.dt-site .dt-board__title,
	.dt-site .dt-docs__title {
		font-size: 38px;
		line-height: 53.2px;
	}

	.dt-site .dt-board__title {
		padding: 0 10px;
	}

	.dt-site .dt-docs__title {
		text-align: left;
	}

	.dt-site .dt-member__role {
		font-size: 20px;
		line-height: 28px;
	}

	.dt-footer__inner {
		flex-direction: column;
		padding: 70px 0;
	}

	.dt-footer__brand,
	.dt-footer__cols {
		width: 100%;
	}

	.dt-footer__cols {
		padding: 10px 20px;
	}

	.dt-bottom__col--start {
		width: 50%;
	}

	.dt-bottom__col--center,
	.dt-bottom__col--end {
		width: 25%;
	}

	.dt-anim-ready .dt-anim-desk:not(.dt-in) {
		visibility: visible;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.dt-h2 br {
		display: none;
	}

	.dt-anim-ready .dt-anim-notab:not(.dt-in) {
		visibility: visible;
	}
}

@media (max-width: 921px) {
	.dt-site .dt-footer__title {
		font-size: 27.36px;
		line-height: 38.304px;
	}

	.dt-site .dt-legal {
		font-size: 14.592px;
	}

	.dt-site .dt-legal h1 {
		font-size: 22.8px;
	}

	.dt-site .dt-legal h3 {
		font-size: 18.24px;
	}
}

@media (max-width: 767px) {
	.dt-header__inner,
	.dt-header__bar {
		flex-wrap: wrap;
	}

	.dt-header__bar {
		width: 100%;
		border-radius: 25px;
	}

	.dt-header__brand {
		width: 80%;
		justify-content: center;
		align-items: center;
	}

	.dt-header__nav {
		width: 20%;
		justify-content: center;
		align-items: center;
	}

	.dt-site .dt-menu-toggle {
		height: 38.6px;
	}

	.dt-menu-toggle__icon {
		width: 20px;
	}

	.dt-hero__content {
		width: 100%;
	}

	.dt-site .dt-hero__title {
		font-size: 35px;
		line-height: 49px;
	}

	.dt-site .dt-hero__text {
		font-size: 16px;
		line-height: 26.4px;
	}

	.dt-portal__inner {
		flex-wrap: wrap;
		justify-content: center;
	}

	.dt-site .dt-portal__title {
		font-size: 20px;
		line-height: 26px;
	}

	.dt-site .dt-h2 {
		font-size: 35px;
	}

	.dt-about__inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: "title" "copy" "media" "pills";
	}

	.dt-about__title,
	.dt-about__copy,
	.dt-manage__title,
	.dt-manage__lead,
	.dt-updates__head {
		text-align: center;
	}

	.dt-about__copy {
		margin-bottom: 10px;
	}

	.dt-about__pills {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.dt-meet__inner {
		flex-wrap: wrap;
	}

	.dt-card {
		width: 100%;
	}

	.dt-site .dt-card__title {
		font-size: 35px;
	}

	.dt-imc__row {
		flex-wrap: wrap;
	}

	.dt-site .dt-imc__name {
		width: 100%;
		font-size: 30px;
		line-height: 42px;
	}

	.dt-imc__org {
		width: 100%;
	}

	.dt-manage {
		padding: 0 10px;
	}

	.dt-manage__inner {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}

	.dt-manage__text {
		display: flex;
		width: 100%;
	}

	.dt-manage__media {
		width: 100%;
		padding: 10px;
	}

	.dt-manage__actions {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 15px;
		padding-top: 0;
	}

	.dt-post {
		flex-basis: 100%;
		max-width: 100%;
	}

	.dt-updates__more {
		justify-content: center;
	}

	.dt-site .dt-board__title,
	.dt-site .dt-docs__title {
		font-size: 35px;
		line-height: 49px;
		text-align: center;
	}

	.dt-board__row {
		flex-wrap: wrap;
	}

	.dt-member {
		width: 100%;
	}

	.dt-site .dt-member__role {
		font-size: 25px;
		line-height: 35px;
	}

	.dt-docs__col {
		width: 100%;
	}

	.dt-docs__col .dt-p {
		text-align: center;
	}

	.dt-site .dt-doc {
		align-self: center;
	}

	.dt-footer__brand {
		padding: 0;
	}

	.dt-footer__cols {
		flex-wrap: wrap;
		gap: 0;
	}

	.dt-footer__contact,
	.dt-footer__links {
		width: 100%;
	}

	.dt-bottom__inner {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.dt-bottom__col,
	.dt-bottom__col--start,
	.dt-bottom__col--center,
	.dt-bottom__col--end {
		align-items: center;
		width: 100%;
		padding: 0;
	}

	.dt-site .entry-content .dt-pc--row {
		flex-wrap: wrap;
	}

	.dt-plist__item {
		flex-basis: 100%;
		max-width: 100%;
	}

	.dt-plist__body {
		max-width: 100%;
	}
}
