:root {
  --white: #fff;
  --blue: #187fcf;
  --orange: #ff520e;
  --montserrat: "Montserrat", sans-serif;
  --off-black: #191919;
  --off-white: #e5e5e5;
  --gray-dark: #000000;
  --gray: #7f7f7f;
  --gray-light: #ccc;
  overflow: auto;
}

body {
  line-height: 1.75;
  color: var(--gray-dark);
  font-family: var(--montserrat);
  min-width: 1120px;
}

::after,
::before {
  box-sizing: border-box;
}

p {
  margin-top: 2em;
  /* intentional on this site */
  margin-bottom: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--montserrat);
  margin-top: 0;
  margin-bottom: 0.75em;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.3125em;
}

h5 {
  font-size: 1.1875em;
}

h6 {
  font-size: 1em;
}

blockquote {
  margin: 0;
  padding: 0 2.5rem;
  font-size: 0.9375em;
}

a {
  text-decoration: underline;
  color: var(--blue);
}

/* p a {
  text-decoration: underline;
} */

address {
  font-style: normal;
}

hr {
  border: none;
  border-bottom: 1px solid var(--off-white);
  margin: 2.25rem 0;
}

dl {
  margin-top: 0;
}

dd,
dt {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 1em;
}
/* Form elements */
form ol,
.form ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

form li,
.form li {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

button {
  font-family: var(--montserrat);
}

:focus {
  outline: none;
}

fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

legend {
  font-family: var(--montserrat);
  font-size: 2em;
  margin-bottom: 1rem;
  font-style: italic;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ccc;
  padding: 1em;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border-radius: 4px;
}

textarea {
  min-height: 100px;
  max-width: 100%;
}

form [type="submit"],
.form [type="submit"] form button,
.form button {
  cursor: pointer;
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 700;
  padding: 1em 2em;
  border: 1px solid;
  border-radius: 4px;
}
/* Load more */

.load-more {
  cursor: pointer;
  background-color: transparent;
  color: var(--blue);
  font-family: var(--montserrat);
  font-weight: 700;
  padding: 1em 2em;
  border: 1px solid var(--blue);
  border-radius: 4px;
}

/* Colors */
.white {
  color: var(--white);
}

.blue {
  color: var(--blue);
}

.orange {
  color: var(--orange);
}

.off-black {
  color: var(--off-black);
}

.off-white {
  color: var(--off-white);
}

.gray-dark {
  color: var(--gray-dark);
}

.gray {
  color: var(--gray);
}

.gray-light {
  color: var(--gray-light);
}

.hover-white:hover {
  color: var(--white);
}

.hover-blue:hover {
  color: var(--blue);
}

.hover-orange:hover {
  color: var(--orange);
}

.hover-off-black:hover {
  color: var(--off-black);
}

.hover-off-white:hover {
  color: var(--off-white);
}

.hover-gray-dark:hover {
  color: var(--gray-dark);
}

.hover-gray:hover {
  color: var(--gray);
}

.hover-gray-light:hover {
  color: var(--gray-light);
}
/* Background Colors */
.bg-white {
  background-color: var(--white);
}

.bg-blue {
  background-color: #187fcf;
}

.bg-orange {
  background-color: #ff520e;
}

.bg-red {
  background-color: red;
}

.bg-dark-black {
  background-color: #1a1a1a;
}

.bg-light-black {
  background-color: #232323;
}

.bg-off-black {
  background-color: var(--off-black);
}

.bg-off-white {
  background-color: var(--off-white);
}

.bg-gray-dark {
  background-color: var(--gray-dark);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-gray-light {
  background-color: var(--gray-light);
}
/* Fonts */
[class*="montserrat"] {
  font-family: var(--montserrat);
}
.montserrat-regular {
  font-weight: 400;
}
.montserrat-medium {
  font-weight: 500;
}
.montserrat-semi-bold {
  font-weight: 600;
}
.montserrat-bold {
  font-weight: 700;
}

/* Search Form */
.ais-SearchBox-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ais-SearchBox-loadingIndicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 104px;
  z-index: 10;
  line-height: 1;
}

.ais-SearchBox-input,
.ais-SearchBox-submit {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03), 0 2px 8px 0 rgba(0, 0, 0, 0.02);
}

.ais-SearchBox-input {
  height: 72px;
  flex-grow: 1;
  border: 1px solid var(--off-white);
  outline: none;
  padding: 1.75rem;
  font-size: 1.1875em;
  border-radius: 4px;
}

.ais-SearchBox-submit {
  background: linear-gradient(0deg, #333333 4%, #4c4c4c 100%);
  border: 1px solid #222 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 !important;
  height: 72px;
  width: 80px;
  margin-left: -1px;
}

.ais-SearchBox-submitIcon {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.ais-SearchBox-reset {
  display: none;
}

.ais-Hits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ais-Stats {
  text-align: center;
  font-size: 1.3125em;
  font-weight: 500;
}
/* Filters */
.ais-RefinementList-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.ais-RefinementList-list input[type="checkbox"] {
  display: none;
}

.ais-RefinementList-item label {
  padding: 8px 24px;
  margin-bottom: 0;
  font-size: 0.875em;
  min-width: 192px;
  text-align: center;
  background: linear-gradient(-180deg, #ffffff 1%, #f4f4f4 99%);
  border: 1px solid var(--gray-light);
  z-index: 1;
  position: relative;
  color: var(--gray);
  cursor: pointer;
}

.ais-RefinementList-item:first-child label {
  border-radius: 32px 0 0 32px;
}

.ais-RefinementList-item:last-child label {
  border-radius: 0 32px 32px 0;
  margin-left: -1px;
}

.ais-RefinementList-item:first-child:last-child label {
  border-radius: 32px;
}

.ais-RefinementList-item--selected label {
  background: var(--blue);
  border-color: #1365a5;
  color: #fff;
  z-index: 2;
}
/* Pagination */
ul.ais-Pagination-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  justify-content: center;
}

.ais-Pagination-item--firstPage,
.ais-Pagination-item--lastPage {
  display: none;
}

.ais-Pagination-item > * {
  display: block;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  margin: 0 -1px;
  font-size: 0.875em;
  background: linear-gradient(-180deg, #ffffff 1%, #f4f4f4 99%);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  z-index: 1;
  position: relative;
}

.ais-Pagination-item--selected > * {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  z-index: 2;
}

.ais-Pagination-item--nextPage,
.ais-Pagination-item--previousPage {
  font-size: 1.1375em;
}

.ais-Pagination-item--previousPage > * {
  border-radius: 4px 0 0 4px;
}

.ais-Pagination-item--nextPage > * {
  border-radius: 0 4px 4px 0;
}

/* Tooltip */

[tooltip] {
  position: relative;
}
[tooltip]::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  z-index: 99;
  opacity: 0;
}

[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%) translateY(-100%);
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  font-size: 0.75em;
  line-height: 1;
  font-weight: normal;
  text-transform: none;
  min-width: 80px;
  border-radius: 3px;
  pointer-events: none;
  padding: 6px;
  z-index: 99;
  opacity: 0;
}

[tooltip]:hover::after,
[tooltip]:hover::before {
  opacity: 1;
}

[tooltip-position="left"]::before {
  left: 0%;
  top: 50%;
  margin-left: -12px;
  transform: translatey(-50%) rotate(-90deg);
}
[tooltip-position="top"]::before {
  left: 50%;
}
[tooltip-position="bottom"]::before {
  top: 100%;
  margin-top: 8px;
  transform: translateX(-50%) translatey(-100%) rotate(-180deg);
}
[tooltip-position="right"]::before {
  left: 100%;
  top: 50%;
  margin-left: 1px;
  transform: translatey(-50%) rotate(90deg);
}

[tooltip-position="left"]::after {
  left: 0%;
  top: 50%;
  margin-left: -8px;
  transform: translateX(-100%) translateY(-50%);
}
[tooltip-position="top"]::after {
  left: 50%;
}
[tooltip-position="bottom"]::after {
  top: 100%;
  margin-top: 8px;
  transform: translateX(-50%) translateY(0%);
}
[tooltip-position="right"]::after {
  left: 100%;
  top: 50%;
  margin-left: 8px;
  transform: translateX(0%) translateY(-50%);
}

.of-hidden {
  overflow: hidden;
}

.button-small {
  background-image: linear-gradient(-180deg, #ff4901 0%, #ff4901 100%);
  border: 1px solid #cf3b00;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 13;
  text-shadow: 0 -1px 1px #cf3b00;
  color: #fff;
  text-decoration: none;
  line-height: 3;
  padding: 0 24px;
  display: inline-block;
  font-weight: 600;
}

.button-default {
  background-image: linear-gradient(-180deg, #ff4901 0%, #ff4901 100%);
  border: 1px solid #cf3b00;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 16;
  text-shadow: 0 -1px 1px #cf3b00;
  color: #fff;
  text-decoration: none;
  height: 56;
  line-height: 56px;
  padding: 0 32px;
  display: inline-block;
  font-weight: 600;
}

.mw-340 {
  max-width: 340px;
}

.live-search-header {
  margin: 0px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1;
  color: #7f7f7f;
}

/* extras */

.front-page-search-container {
  max-width: 578px;
  margin-left: auto;
  margin-right: auto;
}
.ais-SearchBox-input,
.ais-SearchBox-form label {
  width: 100%;
}
.front-page-form-subtext {
  color: white;
  text-shadow: rgb(0 0 0 / 20%) 0px 2px 4px;
}
.search-submit {
  display: none;
}
.section-title.jsx-2727454906 {
  background: url(/wp-content/themes/dtn/assets/section-title-hr.svg) 50% 100%
    no-repeat;
}
.inside-article-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}
.inside-article-container h3 {
  font-size: 21px;
  line-height: 1.25;
  position: relative;
  margin: -40px 32px 0 0;
  padding: 16px 24px 0 0;
  background-color: #fff;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.inside-article-container a {
  color: #000000;
}
.inside-article-container article:hover a {
  color: #187fcf;
}
.archive-list {
  padding-left: 2em;
  padding-right: 2em;
  margin: auto;
}
.news-body-container {
  padding-left: 2rem;
  padding-right: 2rem;
}
.news-body-container > img {
  display: block;
  margin: auto;
  margin-bottom: 2em;
}
/* pagination */
.prev-next-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3em;
}
.prev-posts-link {
  display: flex;
  justify-content: center;
}
.next-posts-link {
  display: flex;
  justify-content: center;
}
/* subscribe modal */
#subscribe-modal-overlay {
  width: 100vw;
  height: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 5;
  display: none;
}
#subscribe-modal-popup {
  position: fixed;
  top: 0px;
  left: 0px;
  margin: auto;
  justify-content: center;
  bottom: 0px;
  right: 0px;
  max-width: 600px;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 8fr;
  grid-column-gap: 10px;
  display: none;
}
#subscribe-modal-popup a {
  font-size: 64px;
  position: relative;
  top: -24px;
}
#subscribe-modal-popup .search-form {
  width: 100%;
}
#subscribe-modal-popup .search-form-input {
  width: 75%;
  margin-right: 10px;
}
#subscribe-modal-popup .search-form-submit {
  background-color: #641416;
}
.frm_screen_reader,
.frm_verify,
.frm_start_over,
.frm_primary_label {
  display: none;
}
#frm_field_2_container {
  display: inline-block;
  width: 50%;
}
.frm_submit {
  display: inline-block;
}

/* subscribe modal end */

footer.footer {
  margin-top: 5em;
}

p {
  /* padding-left: 50px; */
  padding-right: 50px;
}
p.subheading {
  padding-left: 0px;
  padding-right: 0px;
}

#frm_form_1_container .frm_fields_container {
  display: flex;
  flex-direction: row-reverse;
}
#frm_field_1_container {
  margin: 0 10px;
  flex: 1;
}
.group-connections.jsx-1549523575 ul.jsx-1549523575::before {
  content: unset !important;
}
.group-connections.jsx-1549523575 {
  overflow-y: auto !important;
}
aside.jsx-570727026.py-1 {
  position: fixed;
  top: 100px;
  right: 100px;
  width: 344px;
  transform: translateZ(0px);
}
@media screen and (max-width: 1150px) {
  aside.jsx-570727026.py-1 {
    display: none;
  }
}
.search-pagination {
  display: flex;
  justify-content: space-between;
}

.group-connections,
.group-connections {
  min-height: 200px !important;
}

/* .page-template-homePageTemplate.page-template-homePageTemplate-php .frm_submit{
	display:none;
} */

#archive-pagination {
  margin-top: 50px;
}

/* ajax search */
.ajax-results p {
  color: red;
}
.ais-SearchBox-form
  .relevanssi-live-search-results.relevanssi-live-search-results-showing {
  left: 0 !important;
  top: 75px !important;
}

.front-page-featured-four {
  padding-left: 0px;
  padding-right: 0px;
}

#image-copyright-subtext {
  display: block;
}

.postid-25762 .jsx-2660288888.jsx-2789811960,
.postid-25762 h3,
.postid-26236 .jsx-2660288888.jsx-2789811960,
.postid-26236 h3 {
  display: none;
}

#addthis_inline_share_toolbox {
  padding-top: 10px;
}

..profile-body.jsx-1128368649 {
  display: block;
  margin: auto;
}
