/*** Works on common browsers ***/
::selection {
    background-color: var(--accent-blue);
    color: var(--black);
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: var(--accent-blue);
    color: var(--black);
}

/***For Other Browsers ***/
::-o-selection {
    background-color: var(--accent-blue);
    color: var(--black);
}

::-ms-selection {
    background-color: var(--accent-blue);
    color: var(--black);
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: var(--accent-blue);
    color: var(--black);
}

:root {
  --black: #101825;
  --navy-blue: #002452;
  --delaware-blue: #4bc1d2;
  
  --delaware-blue-grid: #00819d;

  --accent-blue: #85eaf9;
  --red: #af304d;
  --light-red: #f4dede;
  --gray: rgba(232,235,239,0.75);
  --none-opacity-gray: rgb(232,235,239);
  --white: #ffffff;
  --blue-header-top: #165191;
  --red-text-alert: #920c37;
  --footer-bg: #001228;
  --program-title-colr: #4C4C4C;
}

/*btn*/
.common-button {
  display: inline-flex;
  padding: 9px 54px 9px 54px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: var(--navy-blue);
  text-decoration: none;
  position: relative;
  margin-top: 44px;
  border: 2px solid transparent;
}
.btn-white {
  color: var(--navy-blue);
  background: var(--white);
}
.btn-none {
  color: var(--navy-blue);
  background: transparent;
  border-color: var(--navy-blue);
}
.common-button svg, .common-button img {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-none svg path {
  fill: var(--navy-blue);
}
/*.common-button:hover, .common-button:focus {
  color: var(--white);
  background: var(--delaware-blue);
  box-shadow: 30px 30px 160px 0px rgba(0, 0, 0, 0.10);
  border-color: var(--delaware-blue);
}*/
.common-button:hover svg, .common-button:hover img, .common-button:focus svg, .common-button:focus img {
    transform: translateX(8px);
}

/*.common-button.eye-btn .eye-icon {
    transform: none;
}

.common-button:hover svg path, .common-button:focus svg path {
    fill: var(--white);
    stroke: var(--white);
}
.emergency-housing-wrap .common-button:hover , .common-button.eye-btn:hover{
    font-size: 17px;
}*/

/*Banner CSS*/
.banner-wrap>div{
  width: 50%;
}
/*.banner-image {
  height: 760px;
}*/
.banner-content-box {
  padding-left: 200px;
  padding-right: 35px;
}
/*.inside-banner-wrap {
    max-width: 595px;
}*/
.banner-content-box.two {
    padding-left: 35px;
    padding-right: 200px;
}
/*.no-image-banner-wrap {
    max-width: 575px;
}*/


/*Stat Bar Boxes*/
.background-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.stat-box .img {
    width: 75px;
    height: 75px;
    margin-bottom: 5px;
}
.stat-box .img.addMargin-bottom {
    margin-bottom: 15px;
}
.stat-box .title-bar {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    min-height: 75px;
}
.stat-box .number {
  color: var(--delaware-blue);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
}
.border-bar {
    width: 255px;
    height: 1px;
    display: block;
    margin: 25px auto 15px auto;
    background: var(--delaware-blue);
}
.stat-box .img svg, .stat-box .img img {
    transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.stat-box:hover .img img, .stat-box:focus .img img {
  transform: translateY(-10px);
}

/*Image CTA*/
.image-lists {
    display: grid;
    grid-template-columns: repeat(6 , 1fr);
    column-gap: 10px;
    row-gap: 75px;
}
.image-lists>div:nth-child(6n + 1) , .image-lists>div:nth-child(6n + 2) {
  grid-column: span 3;
}
.image-lists>div:nth-child(6n + 3) {
  grid-column: 1/-1;
  grid-row-end: span 6;
}
.image-lists>div:nth-child(6n + 4) , .image-lists>div:nth-child(6n + 5) , .image-lists>div:nth-child(6n + 6) {
  grid-column: span 2;
}
.image-list-box {
    height: 386px;
    padding: 65px;
      transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.image-list-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #001228 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}
.image-list-box h4 {
    z-index: 2;
      transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.image-list-box .image-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.10);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.image-list-box:hover .image-bg, .image-list-box:focus .image-bg {
  transform: scale(1);
}
.image-list-box:hover h4, .image-list-box:focus h4 {
  transform: translateY(-10px);
}
.image-lists.image-list-box-1 {
    display: block;
}
.image-lists.image-list-box-1 .image-list-box {
    width: 100% !important;
}

/*gallery css*/
.gallery {
    display: grid;
    grid-template-columns: repeat(8 , 1fr);
    gap: 14px;
}
.gallery img {
  object-fit: cover;
}
.gallery>a:nth-child(8n + 1) , .gallery>a:nth-child(8n + 2) , .gallery>a:nth-child(8n + 4) , .gallery>a:nth-child(8n + 7) , .gallery>a:nth-child(8n + 8) {
  grid-column: span 3;
}
.gallery>a:nth-child(8n + 3) , .gallery>a:nth-child(8n + 6) {
  grid-column: span 2;
}
.gallery>a:nth-child(8n + 5) {
  grid-column: span 5;
}
.gallery>a {
    height: 306px;
}
.gallery>a img {
  transform: scale(1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.gallery>a:hover img, .gallery>a:focus img {
  transform: scale(1.10);
  filter: brightness(0.75);
}

/*Image & Content Box*/
.section-image {
    width: 100%;
    max-width: 580px;
    /* margin: 0 auto; */
    height: 580px;
    padding: 15px;
}
.section-img {
    position: relative;
    z-index: 2;
    object-fit: cover;
    object-position: top center;
}
.gallerySlider .owl-stage {
    display: flex;
    align-items: center;
}
.gallerySlider .owl-stage-outer, .gallerySlider .owl-stage, .gallerySlider .owl-item {
  height: 100%;
}


/*ul-lists*/
.ul-lists ol, .ul-lists ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
}
.ul-lists li {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    background: url(/wp-content/uploads/2023/11/checked-light-blue.svg) no-repeat top 5px left 5px;
    padding-left: 35px;
    background-size: 19px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    list-style: none;
}
.component-image-content-boxes-banner .ul-lists li:hover {
    background-position: top 5px left 8px;
} 

/*Accordion*/
.accordion-item {
    margin-bottom: 10px;
    background: var(--gray) !important;
    border: 0;
    border-radius: 5px;
}
.accordion-item:last-child {
  margin-bottom: 0px;
}
.accordion-button {
    border-radius: 5px;
    background: 0 none !important;
    display: inline-flex;
    padding: 12px 26px;
    border: 0;
    box-shadow: inherit !important;
    color: var(--navy-blue) !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}
.acc-title.active .accordion-button , .accordion-button[aria-expanded="true"] {
    background: var(--navy-blue) !important;
    color: var(--white) !important;
}
.card-body {
    color: var(--black);
    padding: 20px 26px 30px 26px;
    border-radius: 0 0 5px 5px;
/*    border: 2px solid var(--delaware-blue);*/
    border-top: 0;
    /*position: relative;
    top: -2px;*/
}
.card-body ul {
    padding-left: 1.25rem;
}
.accordion-button .accordion-icon {
    position: absolute;
    top: 7px;
    width: 31px;
    height: 32px;
    right: 26px;
    cursor: pointer;
}
.acc-title.active .accordion-button .accordion-icon , .accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.acc-title.active .accordion-button .accordion-icon path , .accordion-button[aria-expanded="true"] .accordion-icon path {
    fill: #fff;
}
.acc-box .accordion-button::after , .acc-box .accordion-button::after, #accordionExample .accordion-button[aria-expanded="false"]::after , #accordionExample .accordion-button[aria-expanded="true"]::after{display: none !important;
}
.accordion-file-btn .files-icon-img {
    width: 28px;
    height: 28px;
}
.accordion-file-btn span {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding-left: 10px;
    width: calc(100% - 28px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.accordion-file-btn:hover span {
  color: var(--delaware-blue);
}
.accordion-button span {
    padding-right: 25px;
}

/*Icon/Title/Description Box*/
.icon-description-list-box {
    border: 2px solid var(--Stroke, rgba(0, 36, 82, 0.20));
    background: var(--gray);
    padding: 35px 20px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.icon-description-list-box-header .icon {
    width: 53px;
    margin-right: 30px;
}
.icon-description-list-box-title {
  width: calc(100% - 83px);
  font-weight: 700;
}
.icon-description-list-box-desc {
    padding-left: 83px;
}
.linksBox {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.icon-description-list-box:hover, .icon-description-list-box:focus {
  border-color: var(--navy-blue);
  background: var(--none-opacity-gray);
}

/*owl slider*/
.gallerySlider .owl-nav {
    position: absolute;
    bottom: 35px;
    z-index: 1;
    left: 35px;
}
.gallerySlider .owl-nav button {
    width: 59px;
    height: 59px;
    background-color: rgba(255,255,255,0.4) !important;
    margin-right: 10px;
    border: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gallerySlider .owl-nav button:hover, .gallerySlider .owl-nav button:focus {
    background-color: var(--navy-blue) !important;
}
.gallerySlider .owl-nav button span {
    display: none;
}
.gallerySlider .owl-nav button.owl-prev {
    background-image: url('/wp-content/uploads/2023/12/slide-back.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}
.gallerySlider .owl-nav button.owl-next {
    background-image: url('/wp-content/uploads/2023/12/slide-next.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}   


/*.section-image.section-image-slider {
  height: 624px;
}*/


/*Link Container*/
.component-link-container-group {
    overflow: hidden;
}
.container.position-relative {
  z-index: 2;
}
.link-container-header {
    max-width: 800px;
}
.link-container-list-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.10);
    border: 2px solid var(--navy-blue);
    padding: 50px 50px 28px 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.link-container-img-box {
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
}
/*.link-container-img-box::before {
    content: "";
    width: 15px;
    height: 100%;
    display: block;
    position: absolute;
    left: -15px;
    background: #fff;
    top: 0;
    bottom: 0;
}
.link-container-img-box::after {
    content: "";
    width: 15px;
    height: 100%;
    display: block;
    position: absolute;
    right: -15px;
    background: #fff;
    top: 0;
    bottom: 0;
}*/
.link-container-img-box .icon-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
.link-container-content-box-title {
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.link-container-content-box-title::after {
  content: "";
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--delaware-blue);
  display: block;
  height: 2px;
}
.linksList a {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin: 7.5px 0;
    padding: 7.5px 0;
}
.linksList a svg, .linksList a img {
    margin-left: 10px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.link-container-list-box:hover, .link-container-list-box:focus {
    border-color: var(--delaware-blue);
}
.linksList a:hover, .linksList a:focus {
    color: var(--delaware-blue);
}
.linksList a:hover svg, .linksList a:focus svg {
    transform: translateX(8px);
}
.linksList a:hover svg path, .linksList a:focus svg path {
    fill: var(--delaware-blue);
}
.bg-left-img {
    width: 821px;
    height: 845px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.bg-right-img {
    width: 821px;
    height: 617px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.bg-left-img.three {
    background: url(/wp-content/themes/dsha-theme/img/div.layer.svg) no-repeat top left;
    background-size: contain;
}
.bg-right-img.three {
    background: url(/wp-content/themes/dsha-theme/img/div.layer1.svg) no-repeat right bottom;
    background-size: contain;
}
.bg-left-img.two {
    background: url(/wp-content/themes/dsha-theme/img/div.layer01.svg) no-repeat top left;
    background-size: contain;
}
.bg-right-img.two {
    background: url(/wp-content/themes/dsha-theme/img/div.layer02.svg) no-repeat right bottom;
    background-size: contain;
}
.bg-left-img.one {
    background: url(/wp-content/themes/dsha-theme/img/div.layer2-1.svg) no-repeat top left;
    background-size: contain;
}
.bg-right-img.one {
    background: url(/wp-content/themes/dsha-theme/img/div.layer2-2.svg) no-repeat right bottom;
    background-size: contain;
}
.linksList a span {
  width: calc(100% - 34px);
}


/*Document Links*/
.fileslists>div {
  margin-bottom: 25px;
}
.fileslists a {
  margin-bottom: 25px;
  padding: 16px 21px;
  background: var(--white);
}
.fileslists a:last-child {
  margin-bottom: 0;
}
.fileslists .left-box {
  width: calc(100% - 24px);
  display: flex;
  align-items: center;
}
.files-icon-img {
  width: 29px;
  height: 29px;
}
.fileslists a span {
    margin-left: 13px;
    margin-right: 13px;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    width: calc(100% - 60px);
    display: inline-block;
}
.fileslists .arrow-icon {
  width: 24px;
  height: 24px;
    transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.fileslists a:hover, .fileslists a:focus {
  background: rgba(255, 255, 255, 0.75);
}
.fileslists a:hover span, .fileslists a:focus span {
  color: var(--delaware-blue);
}
.fileslists a:hover .arrow-icon, .fileslists a:focus .arrow-icon {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.fileslists a:hover .arrow-icon path, .fileslists a:focus .arrow-icon path {
    fill: var(--delaware-blue);
}

/*Tile Links Box*/
.tile-links-lists>div {
  margin-bottom: 20px;
}
.tile-links-lists a {
    background: #fff;
    padding: 26px 45px;
    border: 2px solid transparent;
}
.tile-links-lists .left-box {
    width: calc(100% - 28px);
}
.tile-icon-img {
    width: 72px;
}
.tile-icon-img svg, .tile-icon-img img {
    width: 100%;
}
.tile-icon-img svg path{
    fill: var(--delaware-blue);
    stroke: var(--delaware-blue);
        transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.tile-links-lists .left-box span {
    margin-left: 16px;
    margin-right: 16px;
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
        width: calc(100% - 104px);
    display: inline-block;
}
.tile-arrow-links {
    width: 27.075px;
    height: 29.331px;
            transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.tile-links-lists a:hover, .tile-links-lists a:focus {
/*  border: 2px solid var(--delaware-blue);*/
  background: var(--navy-blue);
  box-shadow: 30px 30px 160px 0px rgba(0, 0, 0, 0.10);
}
.tile-links-lists a:hover .tile-icon-img svg path, .tile-links-lists a:focus .tile-icon-img svg path {
    fill: var(--white);
    stroke: var(--white);
}
.tile-links-lists a:hover .left-box span, .tile-links-lists a:focus .left-box span {
    color: var(--white);
}
.tile-links-lists a:hover .tile-arrow-links path, .tile-links-lists a:focus .tile-arrow-links path {
    stroke: var(--white);
}
.tile-links-lists .even-colm:last-child {
    width: 100%;
}
.tile-links-lists a:hover .tile-arrow-links, .tile-links-lists a:focus .tile-arrow-links {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


/*Text box with Header*/
.text-box-with-header-list-box {
    margin-bottom: 60px;
}
.text-box-with-header-list-box:last-child {
    margin-bottom: 0px;
}
.text-box-with-header-list-box-header {
    padding: 25px;
    background: var(--navy-blue);
}
.text-box-with-header-list-box-header-right-sub-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.text-box-with-header-list-box-body {
  padding: 25px;
  border: 1px solid var(--Stroke, rgba(0, 36, 82, 0.20));
  background: var(--gray);
}
.text-box-with-header-list-box-header-left .icon-img {
    width: 100%;
    height: 100%;
}
.text-box-with-header-list-box-header-left {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}
.header-list-box-header-left {
  width: calc(100% - 75px);
}
.text-box-with-header-list-box-body-link-title {
  color: var(--black);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.text-box-links-lists a {
    padding: 16px 21px;
    background: var(--white);
    margin: 10px 10px 0 0;
}
.text-box-links-lists a svg, .text-box-links-lists a img {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.text-box-links-lists a span {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
/*    text-decoration-line: underline;*/
    margin-right: 13px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.text-box-links-lists a:hover, .text-box-links-lists a:focus {
    background: var(--navy-blue);
}
.text-box-links-lists a:hover span, .text-box-links-lists a:focus span {
    color: var(--white);
    text-decoration-line: none;
}
.text-box-links-lists a:hover svg path, .text-box-links-lists a:focus svg path {
    fill: var(--white);
}
.text-box-links-lists a:hover svg, .text-box-links-lists a:hover img, .text-box-links-lists a:focus svg, .text-box-links-lists a:focus img {
    transform: rotate(45deg);
}

/*Checklist Block*/
.checklist-boxes {
    background: var(--white);
    padding: 45px;
}
.checklist-box {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 25px;
    padding-left: 43px;
    background: url(/wp-content/uploads/2023/11/teenyicons_tick-circle-solid.svg) no-repeat left top 1px;
    background-size: 25px;
}
.checklist-box:last-child {
    margin-bottom: 0;
}


/*Contact Tiles*/
.contact-lists-box {
    background: var(--navy-blue);
    padding: 28px;
}
.phone-call-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}
.contact-details {
  width: calc(100% - 35px);
}
.phone-number-tilte {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.phone-number {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}
.contact-lists-box:hover, .contact-lists-box:focus {
    background: var(--delaware-blue);
}
.contact-lists-box:hover .phone-call-icon path, .contact-lists-box:focus .phone-call-icon path {
    fill: var(--white);
}

/*Table*/
.custom-table-wrap thead th {
    padding: 11px 15px 11px 50px;
    border-right: 1px solid #FFF;
    background: var(--navy-blue);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.custom-table-wrap tbody td {
    padding: 10px 15px 10px 50px;
    border-right: 1px solid #EBEBEB;
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.custom-table-wrap ul {
    margin: 0;
    padding: 0 0 0 18px;
}
.custom-table-wrap thead th:last-child, .custom-table-wrap tbody td:last-child {
    border-right: 0;
}
.custom-table-wrap tbody tr:nth-child(even){
    background: #F2F2F2;
}
.custom-table-wrap tbody tr:nth-child(odd){
    background: #FFF;
}

/*gallery-without-carousel*/
.gallery-without-carousel {
    gap: 1.50%;
}
.gallery-grid-item {
    width: 32.33%;
    height: 368px;
    margin-top: 1.50%;
}
.gallery-grid-item img {
    object-fit: cover;
    object-position: top center;
}
.gallery-with-carousel {
    padding-left: 55px;
    padding-right: 55px;
}
.gallery-with-carousel .owl-nav button {
    width: 32px;
    height: 32px;
    border: 0;
    background: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-with-carousel .owl-nav button.owl-prev {
    left: 0;
}
.gallery-with-carousel .owl-nav button.owl-next {
    right: 0;
}
button.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.gallery-with-carousel .owl-nav button svg, .gallery-with-carousel .owl-nav button img {
    width: 100%;
    height: 100%;
}


/*owl dots*/
.owl-dots {
    margin-top: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    margin: 0 2px;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50px;
    background: rgba(0, 36, 82, 0.20);
}
.owl-dots .owl-dot.active {
    background: var(--delaware-blue) !important;
}
.owl-dots .owl-dot.active span {
    background: var(--delaware-blue);
}


/*Contact Block - Location*/
.address-list {
    background: var(--navy-blue);
    padding: 30px 35px 30px 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.address-list-left {
    width: calc(100% - 550px);
    padding-right: 18%;
}
.address-list-right {
    display: flex;
    background: #fff;
    padding: 18px 38px 25px 32px;
    width: 550px;
}
.address-list-right svg, .address-list-right img {
    width: 28px;
    height: 28px;
}
.address-content-box {
    width: calc(100% - 28px);
    padding-left: 10px;
    top: -7px;
}
.address-content-box-desc {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.contact-list {
    background: var(--navy-blue);
    padding: 30px 35px 30px 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.contact-list-left {
    width: calc(100% - 550px);
    padding: 0 5%;
}
.contact-list-right-wrap {
    width: 550px;
}
.contact-list-right {
    width: 440px;
}
.member-name-title {
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.member-name-desc {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 190%;
}
.contact-list-right>div {
    display: flex;
    background: #fff;
    padding: 18px 38px 25px 32px;
}
.contact-list-right>div svg, .contact-list-right>div img {
    width: 25px;
    height: 25px;
}
.contact-list-right-button-content-box {
    width: calc(100% - 25px);
    padding-left: 10px;
    top: -5px;
}
.phone-email-title {
    color: var(--navy-blue);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.contact-list-right-button-phone-nub {
    color: var(--navy-blue);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
}
.emaiid-right-button .right-emailid-button {
    top: 0;
}
.contact-location-block {
    margin-bottom: 150px;
}
.contact-location-block:last-child {
    margin-bottom: 0px;
}
.address-content-box .address-content-box-desc , .contact-list-right-button-phone-nub , .phone-email-title{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.address-content-box a:hover .address-content-box-desc {
    color: var(--delaware-blue);
}
.contact-list-right>div .contact-list-right-button-content-box a:focus *, .contact-list-right>div .contact-list-right-button-content-box a:hover * {
    color: var(--delaware-blue);
}
.scrollup-wrap .svg {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.scrollup-wrap .svg:hover, .scrollup-wrap .svg:focus {
  opacity: 0.75;
}


/*Contact block - contact us*/
.contactus-list-box {
    background: var(--navy-blue);
    box-shadow: 30px 30px 160px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 30px;
    padding: 52px 70px;
    
}
.contactus-list-box:last-child {
    margin-bottom: 0px;
}
.contactus-list-box h3 {
    line-height: normal;
}
.cnt-list-bx {
    background: var(--white);
    padding: 30px 40px;
    word-wrap: break-word;
}
.cnt-list-bx-img {
    width: 28px;
    height: 28px;
}
.cnt-list-bx-content {
    padding-left: 12px;
    width: calc(100% - 28px);
    margin-top: 2px;
}
.cnt-list-bx-content h5 {
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.cnt-list-bx-contentb * {
    font-weight: 600;
}


/*Contact Form*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--black);opacity: 0.6;
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--black);opacity: 0.6;
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--black);opacity: 0.6;
}
:-moz-placeholder { /* Firefox 18- */
  color: var(--black);opacity: 0.6;
}

.contact-form-id {
    max-width: 900px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin-bottom: 10px;
}
.form-control {
    border: 2.5px solid rgba(0, 36, 82, 0.20);
    border-radius: 0;
    height: inherit;
    padding: 12px 21px;
    color: var(--black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    box-shadow: inherit !important;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    text-shadow: none;
}
.form-control:hover, .form-control:focus {
    border-color: var(--delaware-blue);
}
.wpcf7-not-valid-tip {
    background: #dc3232;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: #fff;
    line-height: 120%;
    padding: 8px 18px;
    display: none !important;
}
.common-button .wpcf7-spinner {
    display: none !important;
}
.contact-form-id .common-button {
    padding: 0;
}
.common-button .wpcf7-submit {
    background: transparent;
    padding: 11px 70px 11px 54px;
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    position: relative;
    z-index: 1;
}
.contact-form-id .common-button svg, .contact-form-id .common-button img {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.contact-form-id .common-button:hover svg, .contact-form-id .common-button:hover img {
    right: 30px;
}
/*.common-button .wpcf7-submit:hover, .common-button .wpcf7-submit:focus {
    padding: 11px 80px 11px 54px;
}*/
.form-control.wpcf7-not-valid {
  border-color: #dc3232;
}
.wpcf7-response-output {
  display: none !important;
}
.form-group select.form-control {
    appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -webkit-appearance: none;
    background: url(/wp-content/uploads/2023/12/blue-dropdown.svg) no-repeat right 15px center;
    background-size: 31px;
    background-color: #fff;
}
.component-contact-form-group .wpcf7-response-output {
    text-align: center;
    border: 0 !important;
	display: block !important;
}
.component-contact-form-group .wpcf7-form.invalid .wpcf7-response-output {
    color: #dc3232;
}

/*Cards - Large & Small*/
.grid-column {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
        display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.grid-column-img img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    object-fit: cover;
    object-position: center center;
}
.grid-column-img {
    padding-top: 78%;
}
.grid-column-content-box h4 , .grid-column-content-box h2{
    color: var(--black);
    font-weight: 700;
        transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
/*.grid-column:hover h4 , .grid-column:hover h2, .grid-column:focus h4 , .grid-column:focus h2{
    color: var(--delaware-blue);
}*/
.grid-column:hover .grid-column-img img, .grid-column:focus .grid-column-img img {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.30));
}
.cards-large .grid-column-img {
    padding-top: 60%;
}
.grid-column-content-box-desc p a {
    color: var(--delaware-blue-grid);
}
.grid-column-content-box-desc p a:hover {
    text-decoration: underline;
}
.grid-column-img img.no-feature.img {
    background-color: var(--navy-blue);
    background-size: 125px;
}

/*Testimonial Without Description*/
.testimonial-without-column {
    border: 1.898px solid rgba(0, 36, 82, 0.20);
    padding: 0 5px 45px 5px;
/*    opacity: 0.8;*/
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    box-shadow: 21.9653px 21.9653px 117.14826px 0px rgba(0, 0, 0, 0.10);
            transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
/*    height: 100%;*/
    margin-top: 116px;
}
.testimonial-without-column-img {
    width: 232px;
    height: 232px;
    border-radius: 50%;
    margin-top: -116px;
}
.testimonial-without-column-img img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}
.chair-head>div {
    max-width: 566px;
    margin-top: 150px;
/*    padding-bottom: 64px;*/
}
.chair-head .testimonial-without-column-img {
    width: 300px;
    height: 300px;
    margin-top: -150px;
}
.testimonial-without-column-content-box h4 {
    color: var(--black);
        transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    /*    font-size: 27px;
    line-height: 52px;*/
    font-size: 25px;
    line-height: 35px;
}
.testimonial-without-column-sub-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.testimonial-without-column-content-box {
    margin-top: 20px;
}
/*.chair-head .testimonial-without-column-content-box {
    margin-top: 25px;
}*/
.testimonial-without-description-lists>div {
    margin-bottom: 50px;
}
.testimonial-without-description-lists .chair-head {
    margin-top: 10px;
    margin-bottom: 75px;
}


/*.testimonial-without-description-lists>div {
    padding-top: 155px;
}
.testimonial-without-description-lists>.chair-head {
    padding-top: 215px;
}
.testimonial-without-column:hover {
    border-color: var(--delaware-blue);
}
.testimonial-without-column:hover h3 , .testimonial-without-column:hover .testimonial-without-column-sub-title {
    color: var(--delaware-blue);
}
.testimonial-without-column:hover .testimonial-without-column-img img {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.30));
}*/

/*Testimonial Carousel*/
/*.testimonial-post-lists .owl-stage-outer {
  padding-top: 135px;
}*/
.testimonial-post-box {
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  box-shadow: 30px 30px 160px 0px rgba(0, 0, 0, 0.10);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding: 0 15px 40px 15px;
  border: 2px solid rgba(0, 36, 82, 0.20);
  margin-top: 130px;
}
.testimonial-post-image {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  margin-top: -145px;
  filter: drop-shadow(30px 30px 160px rgba(0, 0, 0, 0.10));
  border: 15px solid #fff;
}
.testimonial-post-image img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.testimonial-post-heading {
  color: var(--black);
  font-weight: 700;
  line-height: normal;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.testimonial-designation {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 5px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.testimonial-post-image .no-feature {
  background-color: var(--navy-blue);
  background-repeat: no-repeat;
  background-size: 140px;
  background-position: center center;
}
/*.testimonial-post-box:hover {
  border-color: var(--delaware-blue);
}
.testimonial-post-box:hover .testimonial-post-heading , .testimonial-post-box:hover .testimonial-designation {
  color: var(--delaware-blue);
}
.testimonial-post-box:hover .testimonial-post-image img {
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.30));
}*/
.container.carousel-width {
  max-width: 100%;
  width: 100%;
}
.testimonial-posts-carousel-nav.owl-nav button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
}
.testimonial-posts-carousel-nav.owl-nav button.owl-prev {
  left: 12%;
}
.testimonial-posts-carousel-nav.owl-nav button.owl-next {
  right: 12%;
}
.testimonial-posts-with-carousel .owl-dots {
  margin-top: 50px;
}
.testimonial-posts-with-carousel .owl-item.active.center .testimonial-post-box {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-posts-with-carousel .owl-item {
  opacity: 0.5;
}
.testimonial-posts-with-carousel .owl-item.active.center {
  opacity: 1;
}

/*news card*/
.post--box {
  background-color: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding-bottom: 15px;
}
/*.archive .post--box {
  padding-bottom: 65px;
}*/
.posts-image {
  height: 295px;
  overflow: hidden;
  background: #D9D9D9;
}
.posts-image .no-feature {
  background-size: 125px;
  background-color: var(--navy-blue);
}
.posts-image .img {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.post-content-box {
  padding: 25px 25px 15px 25px;
}
.post-read-more-btn {
  position: absolute;
  bottom: 20px;
  left: 25px;
}
.post-heading h5 {
  color: var(--navy-blue);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.post-heading h5 {
    margin-bottom: 0.5rem!important;
}
.category-info {
  margin-bottom: 22px;
  padding-left: 30px;
  background: url(/wp-content/themes/dsha-theme/img/mdi_tags.svg) no-repeat left top 4px;
  background-size: 24px;
}
.category-info a {
  color: var(--navy-blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
}
.category-info a:hover, .category-info a:focus {
  color: var(--delaware-blue);  
}
/*.post--box:hover .post-heading h5 , .post-heading h5:hover, .post--box:focus .post-heading h5 , .post-heading h5:focus {
  text-decoration: underline;
}*/
.post--box:hover, .post--box:focus {
  background-color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
}
.post--box .common-button.btn-none {
  border: 0;
  padding: 0;
}
.post-heading:hover h5 {
  text-decoration: underline;  
  color: var(--delaware-blue);
}
/*.post--box .common-button.btn-none:hover, .post--box .common-button.btn-none:focus {
  color: var(--navy-blue);
  background: transparent;
  box-shadow: inherit;
  border-color: transparent;
}
.common-button.btn-none:hover svg path, .common-button.btn-none:focus svg path {
    fill: var(--navy-blue);
    stroke: var(--navy-blue);
}*/
.blog-posts-carousel-full-nav.owl-nav button , .blog-posts-carousel-half-nav.owl-nav button {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.blog-posts-carousel-full-nav.owl-nav button.owl-prev , .blog-posts-carousel-half-nav.owl-nav button.owl-prev {
  left: -10px;
}
.blog-posts-carousel-full-nav.owl-nav button.owl-next , .blog-posts-carousel-half-nav.owl-nav button.owl-next {
  right: -10px;
}
.component-news-cards-group .container {
  max-width: 1450px;
  padding-left: 37px;
  padding-right: 37px;
}
.emergency-housing-wrap {
  background: var(--light-red);
  box-shadow: 0px 0px 23px 7px rgba(164, 164, 164, 0.10);
  padding: 30px 35px;
  border-radius: 5px 5px 0 0;
  border-top: 6px solid var(--red-text-alert);
}
.emergency-housing-title.h5 span {
  color: var(--navy-blue);
  width: calc(100% - 49px);
}
.blog-half-carousel {
  padding-left: 25px;
  padding-right: 25px;
}

/*tab section*/
.tabbed-nav .tab-nav-link {
    border: 0;
    border-right: 1px solid var(--delaware-blue);
    border-bottom: 2.5px solid var(--delaware-blue);
    background: var(--white);
    display: block;
    padding: 12px 25px;
/*    width: 20%;*/
min-width: 175px;
    color: var(--black);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
	margin-bottom: 10px;
}
.tabbed-nav .tab-nav-link:last-child {
    border-right: 0;
}
.tabbed-nav .tab-nav-link:hover , .tabbed-nav .tab-nav-link.active, .tabbed-nav .tab-nav-link:focus , .tabbed-nav .tab-nav-link.active {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}
.tabbed-nav .tab-nav-link:hover , .tabbed-nav .tab-nav-link.active, .tabbed-nav .tab-nav-link:focus , .tabbed-nav .tab-nav-link.active {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    transform: scale(1.01,1.01);    
}
/*.tabbed-nav .tab-nav-link.active {
    transform: scale(1.01,1.01);
}*/
.tab-content>.active {
    display: block;
}
.awards-column {
    padding: 40px 45px 45px 45px;
    background: var(--white);
}
.tab-nav-tab-image {
    width: 80px;
    height: 85px;
}
.awards-column .tabbed-content-box {
    width: calc(100% - 80px);
    padding-left: 38px;
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.tab-awards-grid-layout.active , .tab-pdf-grid-layout.active {
    display: block;
    opacity: 1;
}
.awards-column .tabbed-content-box.w-100 {
    padding-left: 0;
}
.tabs-wrap-sec {
    padding: 50px 75px;
}

/*changes 01-Dec-23*/
.text-center ol, .text-center ul {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}
.image-lists.image-list-box-3 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: normal;
}
.image-lists.image-list-box-3 .image-list-box {
    grid-column: span 1;
}
.image-lists.image-list-box-4 {
    grid-template-columns: repeat(2, 1fr);
}
.image-lists.image-list-box-4 .image-list-box {
    grid-column: span 1;
}
.image-lists.image-list-box-5>div:nth-child(6n + 4), .image-lists.image-list-box-5>div:nth-child(6n + 5) {
    grid-column: span 3;
}

/*Video Component*/
.video-wrap {
    padding-bottom: calc(56.25% * 0.75);
    width: 75%;
    height: 0;
    margin: 0 auto;
}
.video-wrap .video-box {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: top center;
}
.video-wrap .img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-content-box {
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 0 15px 30px 20px;
}
.mp4-video-vdo-cnt-bx {
    padding-bottom: 70px;
}
.play-video-click {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-bottom: 5px;
}
.video-content-box h3 {
    padding-bottom: 5px;
}
.video-wrap::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
}
.video-wrap.youtube-active .img {
  display: none;
}
.video-wrap.youtube-active::after {
  display: none;
}
.video-wrap.youtube-active .video-content-box {
  display: none;
}
.video-wrap.mp4-active .img {
  display: none;
}
.video-wrap.mp4-active::after {
  display: none;
}
.video-wrap.mp4-active .video-content-box {
  display: none;
}

/*Subscribe To Our Newsletter*/
.our-newsletter-sec {
  background: var(--navy-blue);
  padding: 50px 0;
}
.our-newsletter-sec h2 {
  line-height: normal;
}
.newsletter-form .mc4wp-form-fields {
  width: 100%;
  display: block;
  max-width: 580px;
}
.newsletter-form .mc4wp-form-fields .form-group:last-child {
  margin-bottom: 0;
}
.newsletter-form .mc4wp-form-fields .form-group .form-control {
    padding: 13.34px 20px;
    background: transparent;
    border: 1px solid var(--white);
    color: #fff;
}
.newsletter-form .mc4wp-form-fields .form-group .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.newsletter-form .mc4wp-form-fields .form-group .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.newsletter-form .mc4wp-form-fields .form-group .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.newsletter-form .mc4wp-form-fields .form-group .form-control:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

.newsletter-form .mc4wp-form-fields .form-group svg, .newsletter-form .mc4wp-form-fields .form-group img {
  position: absolute;
  right: 38%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.newsletter-form .mc4wp-form-fields .form-group .wpcf7-submit {
  color: var(--black);
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.newsletter-form .mc4wp-form-fields .common-button {
    border: 0;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-form .mc4wp-form-fields .common-button font {
    width: 100%;
    position: relative;
}
.newsletter-form .mc4wp-form-fields .form-group .wpcf7-submit:hover + svg , .newsletter-form .mc4wp-form-fields .form-group .wpcf7-submit:hover + img{
    right: 36%;
}


/*.newsletter-form .mc4wp-form-fields .common-button:hover, .newsletter-form .mc4wp-form-fields .common-button:focus {
  color: var(--white);
}
.newsletter-form .mc4wp-form-fields .common-button .wpcf7-submit:hover, .newsletter-form .mc4wp-form-fields .common-button .wpcf7-submit:focus {
  color: var(--white);
}
*/

/*page - image with text*/
.content-box-img {
    width: 100%;
    max-width: 558px;
    height: 536px;
}

/*page - faq*/
.page-faq .component-accordion-group .container {
    max-width: 1200px;
}

/*page - Find Affordable Housing*/
.page-find-affordable-housing .text-box-with-header-lists .text-box-with-header-list-box {
    margin-bottom: 25px;
}
.page-find-affordable-housing .text-box-with-header-lists .text-box-with-header-list-box:last-child {
    margin-bottom: 0;
}

/*page - Delaware Housing Data*/
.page-delaware-housing-data .image-cta-header {
    width: 100%;
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/*page - Annual Reports*/
.page-annual-reports .fileslists a {
    margin-bottom: 18px;
}
.page-annual-reports .fileslists a:last-child {
    margin-bottom: 0;
}
.page-annual-reports .component-accordion-group .container {
    max-width: 1200px;
}

/*page - Council on Housing */
.page-council-on-housing .component-tile-links-group .container , .page-council-on-housing .component-accordion-group .container {
    max-width: 1200px;
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
}

/*page -*/
.division-list-group {
    margin-bottom: 45px;
}
.division-list-group:last-child {
    margin-bottom: 0;
}
.division-list-header {
    margin-bottom: 30px;
}
.division-list-header h2 {
    color: var(--black);
}
.division-list-group .text-box-with-header-list-box {
    margin-bottom: 20px;
}
.division-list-group .text-box-with-header-list-box:last-child {
    margin-bottom: 0px;
}
.division-list-group .left-box{
width: calc(100% - 24px);
} 
.division-list-group .left-box span {
    width: calc(100% - 29px);
    padding-left: 10px;
}
.division-list-group .left-box .files-icon-img {
    transform: none;
}
.division-dropdown-box>div {
    width: 100%;
    max-width: 625px;
    margin-bottom: 50px;
}
#division-wins-selectBox {
    border-radius: 0;
    border: 2.5px solid rgba(0, 36, 82, 0.20);
    background: #FFF;
    width: 100%;
    color: var(--black);
    font-size: 17px;
    font-weight: 300;
    line-height: normal;
    padding: 14px 35px 14px 25px;
    position: relative;
    text-align: left;
    appearance: none;
background: url(/wp-content/uploads/2023/11/dropicon.svg) no-repeat right 20px center;
    background-size: 14px;
}
#division-wins-selectBox:hover, #division-wins-selectBox:focus {
    border: 2.5px solid rgba(0, 36, 82, 0.20);
}

/**/
.left-sidebar-tabs {
    background: var(--white);
}
/*.image-tabsBx {
    object-fit: cover;
    object-position: top center;
}*/
.left-sidebar-tabs h4 {
    background: var(--navy-blue);
    padding: 25px 30px;
}
.tab-link-title {
    color: var(--program-title-colr);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 7px 30px;
    margin: 5px 0;
}
.tab-link-title:hover, .tab-link-title.active {
    color: var(--delaware-blue);
}
.tabs-wrapper-list-box {
    background: var(--white);
    padding: 30px 45px 30px 55px;
}
.tabs-wrapper-list-box h4 {
    font-weight: 700;
/*    margin-left: -23px;*/
}
.left-sidebar-tabs.fixed {
    position: fixed;
    top: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    width: 100%;
}
.accordion-header-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-radius: 5px;
    border-bottom: 1px solid #B6B6B6;
    cursor: pointer;
}
.accordion-header-tab span {
    color: var(--navy-blue);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding-right: 15px;
    width: calc(100% - 30px);
}
.accordion-header-tab .tabAcc-icon {
    width: 30px;
    height: 30px;
    display: block;
}   
.tab-accordion-description {
    padding: 10px 15px 15px;
}
.accordion-header-tab.active .tabAcc-icon {
    transform: rotate(180deg);
}
.accordion-items {
    margin-bottom: 30px;
}
.accordion-items:last-child {
    margin-bottom: 0px;
}

.available-programs-lists .text-box-links-lists a {
    border-radius: 5px;
    background: #F5F5F5;
}
.available-programs-lists .text-box-links-lists a:hover, .available-programs-lists .text-box-links-lists a:focus {
    background: var(--navy-blue);
}
/*.active-pdf-file-links-layout .left-sidebar-tabs {
    background: #F8F8F8;
    border: 1px solid #E5E5E5;
}
.active-pdf-file-links-layout .tabs-wrapper-list-box {
    padding: 0;
    border-radius: 5px;
    border: 1px solid #C0C0C0;
    padding-bottom: 35px;
}
.active-pdf-file-links-layout .tabs-wrapper-list-box h4 {
    margin-left: 0;
    border-radius: 5px 5px 0 0;
    background: #F8F8F8;
    padding: 25px 35px;
    border-bottom: 1px solid #C0C0C0;
    color: #4C4C4C;
    margin-bottom: 20px !important;
}
.active-pdf-file-links-layout .tab-contentbox, .active-pdf-file-links-layout .text-box-with-header-list-box-body-link-title, .pdf-file-links-showing {
    padding: 0 35px;
}*/
.tab-contentbox h6 {color: var(--program-title-colr);}
.tab-contentbox ul, .tab-contentbox ol {
    padding-left: 18px;
}
/* .accordion-items:last-child .accordion-header-tab {
    border-bottom: 0;
} */
.image-tabsBx {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

/*page - career*/
.career-iframe-box {
    width: 100% !important;
    margin: 0 auto;
/*    height: 110vw !important;*/
}

/*page - blog*/
.news-listing-group {
    margin: 25px 0 50px;
}
.category-page , .tags-page {
    margin-top: 25px;
}
.post-header {
    margin: 50px 0 25px;
}
.post-header-desc p a {
    color: var(--delaware-blue-grid);
}
.post-header-desc p a:hover {
    text-decoration: underline;
}
.media-inquiries-group {
    background: var(--navy-blue);
    padding: 37px 24px 24px 24px;
}
.media-inquiries-bloc-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.contact-block-media-box-header {
    margin-bottom: 30px;
}
.contact-block-media-box-links>a {
    background: var(--white);
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding: 13px 15px 13px 22px;
    margin-bottom: 15px;
    word-wrap: break-word;
}
.contact-block-media-box-links>a:last-child {
    margin-bottom: 0;
}
.contact-block-media-box-links>a .icons-bx {
    width: 24px;
    height: 24px;
    display: block;
}
.contact-block-media-box-links .media-button-ph-emil {
    padding-left: 10px;
    width: calc(100% - 24px);
}
.contact-block-media-box-links>a:hover {
    color: var(--delaware-blue);
}


/*breadcrumb*/
.breadcrumb {
    color: var(--navy-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
    padding: 10px 0;
}
.breadcrumb .breadcrumb_last {
    color: var(--navy-blue);
    text-transform: lowercase;
    text-decoration: underline;
    text-underline-position: under;
}


/*search field page search*/
.searchpage .form-group {
    max-width: 500px;
}
.searchpage .form-group .form-control {
    padding-right: 60px;
}
.searchpage .form-group .search-btn {
    border: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchpage .form-group .search-btn .svg {
    width: 24px;
    height: 24px;
    display: block;
}

/*single page*/
.single-thumbnail img {
    object-fit: cover;
    object-position: top center;
}
.author-info {
    margin-right: 35px;
}
.author-avatar {
    width: 41px;
    height: 41px;
    filter: drop-shadow(30px 30px 160px rgba(0, 0, 0, 0.10));
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.author-avatar svg, .author-avatar img {
    width: 100%;border-radius: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
h6.author-post__title {
    color: var(--navy-blue);
    font-weight: 400;
    text-transform: capitalize;
}
h6.author-post__title strong {
    font-weight: 700;
}


/*post share button*/
.share-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    background: rgba(232, 235, 239, 0.75);
    margin-bottom: 20px;
    padding: 12px;
    flex-wrap: wrap;
}
.share-btn h6 {
    margin-bottom: 0;
    color: var(--navy-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.social-share-button {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}
.social-share-button li a {
    width: 41px;
    height: 41px;
    background: var(--delaware-blue);
    justify-content: center;
    border-radius: 50%;
}
.social-share-button li a svg, .social-share-button li a img {
    width: 22px;
    height: 22px;
    display: block;
}
.social-share-button li a:hover {
    background: var(--navy-blue);
}

/*map*/
.map-iframe {
/*    display: none;*/
    width: calc(100% - 550px);
/*    height: 680px;*/
}
/*.map-iframe.active {
    display: block;
}*/
.map-list-block {
    width: 550px;
}
.map-details {
    background: var(--white);
    margin-bottom: 15px;
    display: flex;
    padding: 30px 35px;
    width: 100%;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.map-details:last-child {
    margin-bottom: 0;
}
.map-loc-icon {
    width: 42px;
    height: 42px;
}
.map-right-box {
    width: calc(100% - 42px);
    padding-left: 16px;
    position: relative;
    top: 6px;
}
.address-box * {
    color: var(--navy-blue);
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.map-details:hover, .map-details.active {
    background: var(--navy-blue);
    box-shadow: 30px 30px 160px 0px rgba(0, 0, 0, 0.10);
}
.get-direction-btn {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 190%;
    text-decoration-line: underline;
    display: inline-block;
}
.map-right-box h5 {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.map-details:hover .map-right-box h5 , .map-details.active .map-right-box h5 , .map-details:hover .get-direction-btn, .map-details.active .get-direction-btn, .map-details:hover .address-box * , .map-details.active .address-box * {
    color: var(--white);
}
.single-iframe {
    max-width: 1170px;
    height: 577px;
}


.mc4wp-response * {
    color: var(--white);
    margin-top: 10px;
    line-height: normal;
}
body.error404 #content {
    min-height: inherit;
}


.share-btn .social-icon-footer a {
    margin: 5px 5px 0 0;
}


/*Gutenberg Block Table*/
figure.wp-block-table {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    padding-right: 15px;
    padding-left: 15px;
    overflow: auto;
}
figure.wp-block-table table {
    width: 100%;
}
.wp-block-table thead th {
    padding: 11px 15px 11px 50px;
    border-right: 1px solid #FFF;
    background: var(--navy-blue);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    color: var(--white);
}
.wp-block-table thead th:last-child, .wp-block-table tbody td:last-child {
    border-right: 0;
}
.wp-block-table tbody tr:nth-child(odd) {
    background: #FFF;
}
.wp-block-table tbody tr:nth-child(even) {
    background: #F2F2F2;
}
.wp-block-table tbody td {
    padding: 10px 15px 10px 50px;
    border-right: 1px solid #EBEBEB;
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.custom-table-wrap table a , .wp-block-table table a {
    color: var(--navy-blue);
}
.custom-table-wrap table a:hover , .wp-block-table table a:hover {
    color: var(--delaware-blue);
}
























.wp-block-column {
  padding: 22px;
}

/*blockquote*/
body .wp-block-pullquote {
 border-bottom: 0;
 border-top: 0;
 margin-bottom: 0;
 padding: 0;
}
blockquote, blockquote.wp-block-quote {
    border: 0;
    padding: 50px 22px;
    background: var(--navy-blue);
    box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.09);
    border-radius: 10px;
    font-size: 18px;
    line-height: 30px;
    color: var(--white);
    margin: 30px 0;
    position: relative;
    text-align: left;
}
blockquote::before, blockquote.wp-block-quote::before {
    content: "";
    width: 72px;
    height: 72px;
    display: block;
    position: absolute;
    top: -8px;
    left: 8px;
    background: url(/wp-content/uploads/2023/12/quote-svgicon-white.svg) no-repeat top left;
    background-size: 72px;
}
blockquote::after, blockquote.wp-block-quote::after {
  content: "";
  width: 72px;
  height: 72px;
  display: block;
  position: absolute;
  bottom: -8px;
  right: 8px;
  background: url(/wp-content/uploads/2023/12/quote-svgicon-white.svg) no-repeat bottom right;
  background-size: 72px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
blockquote cite, blockquote.wp-block-quote cite {
    font-weight: 600;
}

.wp-block-embed__wrapper iframe {
  height: 350px;
}








.page-id-133 .no-image-banner-wrap {
    max-width: 575px;
}
.card-body p a , .tabs-wrapper-lists p a , .tabbed-content-box p a {
    color: var(--delaware-blue-grid);
}
.card-body p a:hover , .tabs-wrapper-lists p a:hover , .tabbed-content-box p a:hover  {
    text-decoration: underline;
}

.right-menu-bar .post-content-top img.no-feature {
    background-size: 75px;
}

.available-programs-bottom-box {
    height: 100px;
}

/*Contact Tile - Flex*/
.contact-flex-boxe-list {
    background: var(--navy-blue);
    padding: 28px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.contact-flex-boxe-list * {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
}
.contact-flex-number-tilte {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
/*.contact-flex-boxe-list:hover, .contact-flex-boxe-list:focus {
    background: var(--delaware-blue);
}*/
.website-link-title .website-link-arrow-icon {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.website-link-arrow-icon {
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 10px;
}
.website-link-arrow-icon path {
    fill: #4BC1D2;
}
/*.contact-flex-boxe-list:hover .website-link-arrow-icon path {
    fill: #ffffff;
}*/
.contact-flex-boxe-list * cite {
    width: calc(100% - 32px);
    font-style: normal;
display: inline-block;
    word-break: break-word;
}

@media (min-width: 1200px) and (max-width: 1400px){
.contact-flex-boxe-list {
    padding: 28px 15px;
}

}


/*news*/
.blog-posts-half-carousel .owl-stage {
    display: flex;
}
.blog-posts-half-carousel .owl-item>div {
    height: 100%;
}
.blog-posts-half-carousel .owl-stage .owl-item {
    margin-bottom: 15px;
}

/*header mega menu*/
.desktop-mega-menu_hover .right-menu-bar .post--box {
    padding-bottom: 10px;
}
.desktop-mega-menu_hover .post-heading h5 {
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.megamenu-box-contentbx * {
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
h3.fix-title-line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.menubx-header-description.fix-title-line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}


/*Available-Programs*/
.tab-accordion-description ul, .tab-accordion-description ol {
    padding: 0 0 0 18px;
    margin: 0;
}
.tab-contentbox ul, .tab-contentbox ol {
    padding: 0 0 0 33px;
    margin: 0 0 20px 0;
}
.text-white a {
    color: var(--white);
}
.text-white a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-position: under;
}
.website-links-button cite {
    font-style: normal;
}


/*default-block*/
.wp-block-columns, .wp-block-columns.container {
    max-width: 1500px;
    margin: 0 auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

.post-page-banner {
    background-color: rgba(232,235,239,0.75);
    padding-top: 50px;
    padding-bottom: 50px;
}
.post-page-banner .inside-banner-wrap {
    max-width: 100%;
}

.menubx-header-description * {
    line-height: normal;
}

.map-details .fix-on-div {
    position: absolute;
    width: 100%;
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}