@import url(greatvibes-font.css);
@import url(worksans-font.css);

body,p {
  font-family: 'Work Sans Regular';
}
.container {
  max-width: 1650px;
  padding-left: 0px;
  padding-right: 0px;
}
/* Header */
.main-header {
  background: #000;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}
/* Navbar */
.navbar {
  padding: 0;
}
/* Logo */
.navbar-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}
/* Navigation */
.navbar-nav {
  gap: 25px;
}
.navbar-nav .nav-link {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  transition: 0.3s ease;
  padding: 0;
}
.navbar-nav .nav-link:hover {
  color: #c8d8d5;
}
/* Mobile Toggle */
.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: brightness(0) invert(1);
  width: 2rem;
  height: 2rem;
}
/*-----------------------------------------------------------------------*/
.home-hero {
  background: url('../img/herobanner_img.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 200px 0px 90px;
}
.home-hero .container {
  padding: 150px 0px 0px;
}
.home-hero h1 {
  font-size: 70px;
}
.home-hero h1 span {
  font-family: 'Great Vibes Regular';
}
.services-section {
  padding: 100px 0px;
}
.weatherwidget-row {
  margin-bottom: 100px;
}
.services-section h2 {
  font-size: 36px;
  line-height: 40px;
  color: #000;
  width: 8em;
  margin-bottom: 0px;
  padding: 30px 0px;
}
.services-section .col-md-3 {
  margin-top: 0px;
}
.services-section .col-md-3 .p-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-section a {
  font-size: 26px;
  font-weight: 700;
  color: #090807;
  padding: 17px 27px;
  line-height: 22px;
}
.icon {
  margin-bottom: 10px;
}
.btn {
  border-radius: 0px;
}
.lightblue,
.lightblue:hover {
  background: #c1e8e3;
}
.gray,
.gray:hover {
  background: #c9d6d4;
}
.beige,
.beige:hover {
  background: #ebe0d1;
}
.brown,
.brown:hover {
  background: #c9baa6;
}
.fc-cnt-btn {
  margin-bottom: 45px;
  flex-wrap: wrap;
  align-content: space-around;
  flex-direction: column;
}
.btn-txt {
  display: flex;
  justify-content: space-between;
}
.calendar {
  background: url('../img/calendar-bg.jpg') center/cover no-repeat;
}
.calendar-title,
.btn-txt h2 {
  color: #c1e8e3;
}
.btn-txt h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #B9E0DB;
  margin-bottom: 0px;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.btn-blk,
.btn-blk:hover {
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
}
.btn-grey,
.btn-grey:hover {
  color: #000;
  background-color: #bae0db;
}
.fair-housing-section {
  padding: 70px 0px;
}
.fair-housing-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.fair-housing-section p {
  font-size: 24px;
  color: #fff;
}
.info-box {
  padding: 30px;
  color: white;
}
.info-box.dark {
  background: #000;
}
.info-box.red {
  background: #8b1d1d;
}
.housing-card {
  padding: 30px 30px 39px;
  color: #fff;
}
.dark-card {
  background: #000;
}
.red-card {
  background-color: #630a1b;
}
.housing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.btn-purple {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: #61205E;
  padding: 12px 27px;
  line-height: 30px;
  width: fit-content;
}
.btn-purple:hover {
  background: #61205E;
}
.housing_card_content a.btnshover {
  font-size: 24px;
  font-weight: 600;
  color: #630A1C;
  padding: 12px 27px;
  line-height: 30px;
  width: fit-content;
}
.btnshover:hover {
  background-color: #fff;
}
.logo-circle {
  position: absolute;
  left: -7em;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-circle img {
  width: 80%;
}
.housing-card {
  display: flex;
  justify-content: flex-end;
}
.housing_card_content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logo-oval {
  position: absolute;
  left: -8em;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-oval img {
  width: 85%;
}
.gallery .container {
  max-width: 100%;
}
.gallery .row {
  margin-right: 0px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover::after {
  opacity: 1;
}
.mission {
  background: url('../img/our_mission-bg.jpg') center/cover no-repeat;
  padding: 80px 0px;
  margin-top: 70px;
  display: flex;
  justify-content: center;
}
.mission::before {
  content: "OUR MISSION";
  position: absolute;
  font-size: 34px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
  margin: 0px auto;
  background-color: #C9D5D4;
  padding: 12px 24px;
  margin-top: -3.1em;
}
.mission p {
  font-size: 24px;
  color: #fff;
}
.mission p:nth-child(2) {
  text-align: left;
  width: 1255px;
}
.public-housing {
  padding: 80px 0px;
}
.public-housing h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}
.public-housing p {
  font-size: 24px;
  color: #000;
}
.ph-btn-one {
  margin-right: 30px;
}
.ph-btn-one,
.ph-btn-one:hover {
  background-color: #606A6C;
  padding: 6px 30px;
}
.ph-btn-one a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.ph-btn-two,
.ph-btn-two:hover {
  background-color: #2C6085;
  padding: 6px 30px;
}
.ph-btn-two a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 30px;
  font-family: Arial, sans-serif;
}
.footer-logo img {
  margin-bottom: 0px;
}
.footer-logo h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0;
}
.footer-logo h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 5px 0 20px;
}
.title-one h2 {
  font-size: 24px;
  line-height: 30px;
  color: #a8d0c6;
  font-weight: bold;
  margin-bottom: 10px;
}
.title-one p,
.title-one p a {
  font-family: 'Work Sans Light';
  font-size: 24px !important;
  line-height: 30px;
  color: #FFFFFF;
}
.title-two h2 {
  font-size: 24px;
  line-height: 30px;
  color: #d8cbb9;
  font-weight: bold;
  margin-bottom: 10px;
}
.title-two p,
.title-two p a {
  font-family: 'Work Sans Light';
  font-size: 24px !important;
  line-height: 30px;
  color: #FFFFFF;
}
.ftr_icons {
  padding-left: 10px;
}
.site-footer p {
  margin: 5px 0;
}
.footer-text {
  font-size: 12px;
  opacity: 0.7;
}
.footer-bottom p {
  font-family: 'Work Sans Light';
  font-size: 17px;
}
.footer-icon {
  margin: 10px;
}
.footer-text {
  font-family: 'Work Sans Light';
  font-size: 12px;
  line-height: 15px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #ffffff9c;
}
.footer-bottom p a {
  color: #ffffff9c;
}
.mar-rig {
  margin-right: -12em;
}
.ftr-icon {
  width: 22px;
  margin-right: 7px;
}
.site-footer .col-md-6.mb-4.title-one,
.site-footer .col-md-6.mb-4.title-two {
  padding: 0px;
  margin: 0px;
}
.flex-start {
  align-items: flex-start;
}
.contact-row {
  margin-bottom: 50px;
}
.contact-item {
  text-align: justify;
}
.contact-item h2 {
  font-family: 'Work Sans Regular';
  font-size: 24px;
  line-height: 30px;
  color: #cde3df;
  font-weight: 800;
  margin-bottom: 0px;
}
.contact-item a {
  font-family: 'Work Sans Light';
  font-size: 24px;
  line-height: 30px;
  color: #d7d7d7;
  margin: 0;
  text-decoration: none;
}
.footer-logo .address-text {
  font-family: 'Work Sans light';
  font-size: 24px;
  line-height: 30px;
}
.heber_springs {
  position: relative;
  background: url('../img/heber_springs-bg.jpg') center center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.kensett {
  position: relative;
  background: url('../img/kensett_public-bg.jpg') center center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.heber-springs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.kensett-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.sub-title {
  font-family: 'Great Vibes Regular';
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 10px;
}
.main-title {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}
.housing-section {
  padding: 100px 0;
  background: #fff;
}
.housing-content {
  padding-right: 40px;
}
.housing-title {
  font-size: 40px;
  font-weight: 700;
  color: #090807;
  line-height: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.housing-text {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
}
.housing-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.public-housing-section {
  padding: 100px 0px 70px;
  background-color: #F4F8F7;
}
.phs-section {
  background-color: #F2EFEA !important;
}
.property-section {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 75px;
}
.section-title span {
  font-size: 40px;
  line-height: 32px;
  font-weight: 700;
  color: #090807;
  background: #C9D5D4;
  padding: 14px 25px;
  text-transform: uppercase;
  display: inline-block;
}
.property-card {
  background: #F0EFEB;
  overflow: hidden;
  height: 100%;
  transition: 0.3s ease;
}
.property-card:hover {
  transform: translateY(-5px);
}
.property-image {
  position: relative;
  overflow: hidden;
}
.property-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.property-overlay {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.9;
  padding: 0 15px;
}
.property-overlay .small-text {
  font-size: 26px;
  display: block;
}
.property-overlay .big-text {
  font-size: 58px;
  display: block;
}
.property-content {
  padding: 25px;
  text-align: center;
}
.property-content h3 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
}
.property-content p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
  margin: 0;
}
.apply-buttons {
  margin-top: 70px;
}
.apply-btn {
  font-size: 22px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  background: #7B8E8C;
  padding: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  text-transform: uppercase;
}
.apply-btn:hover {
  background: #7f8f8c;
  color: #fff;
}
.photo-gallery-section {
  padding: 24px 0px 96px;
  position: relative;
  background-color: #E6ECEA;
}
.gallery-title {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-title h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  text-transform: uppercase;
  color: #090807;
  margin: 0;
}
.gallery-wrapper {
  position: relative;
  padding: 0 60px;
}
.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}
.nav-icon {
  font-size: 50px;
  color: #000;
  font-weight: 700;
}
.carousel-control-prev,
.carousel-control-next {
  background: none;
  border: none;
}
.tenant-section {
  padding: 80px 0;
}
.tenant-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
/* Icon Area *
.tenant-icon {
  flex-shrink:0;
  text-align:center;
}
.tenant-icon i {
  font-size:140px;
  color:#97a5a2;
  line-height:1;
}*/
.tenant-content h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  text-transform: uppercase;
  color: #090807;
  margin-bottom: 25px;
}
.tenant-content p {
  font-size: 24px;
  line-height: 28px;
  color: #090807;
  max-width: 840px;
  margin-bottom: 30px;
}
.tenant-btn {
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  background: #97a5a2;
  text-decoration: none;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.tenant-btn:hover {
  background: #7f8c89;
  color: #fff;
}
.property-section-two {
  padding: 70px 0;
}
.section-title,
.values-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.property-section-two .section-title span {
  display: inline-block;
  background: #e8ddd2;
  padding: 14px 30px;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
}
.property-card-two {
  background: #ebe9e5;
  overflow: hidden;
  height: 100%;
}
.card-image {
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  padding: 0 10px;
}
.overlay-small {
  display: block;
  font-size: 22px;
}
.overlay-big {
  display: block;
  font-size: 58px;
}
.property-content {
  padding: 25px;
  text-align: center;
}
.property-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #090807;
  margin: 0;
}
.large-image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  display: block;
}
.apply-row {
  margin-top: 40px;
}
.apply-btn {
  display: block;
  background: #7B8E8C;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.apply-btn:hover {
  background: s#7c8c89;
  color: #fff;
}
.site-footer .contact-item h2 {
  display: flex;
  justify-content: space-between;
}
.site-footer .email h2 {
  display: block;
}
.title-one p a,
.title-two p a {
  text-decoration: none;
}
.whoweare {
  background: url('../img/who_we_are-bg.jpg') center center/cover no-repeat;
  padding: 207px 0px;
}
.whoweare h1 {
  font-size: 70px;
  line-height: 82px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
/* Section */
.values-section {
  padding: 100px 0;
}
.circle_icon {
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 40px;
  line-height: 30px;
  font-weight: 800;
  color: #090807;
  display: inline-block;
  background: #cfd8d5;
  padding: 15px 25px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
/* Value Box */
.value-box {
  text-align: center;
  padding: 10px 20px;
  transition: 0.3s ease;
}
.value-box:hover {
  transform: translateY(-5px);
}
/* Heading */
.value-box h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
/* Text */
.value-box p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
  margin: 0 auto;
}
/* Section */
.board-section {
  padding: 100px 0;
  background: #F2EFEA;
}
/* Main Title */
.board-title {
  text-align: center;
  margin-bottom: 60px;
}
.board-title h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
  margin: 0;
}
/* Sub Title */
.board-subtitle {
  margin-bottom: 30px;
}
.board-subtitle h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
/* Member Card */
.member-card {
  position: relative;
  overflow: hidden;
}
.member-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
/* Overlay */
.member-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0));
  text-align: center;
}
.member-overlay h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.member-overlay p {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
/* Section Space */
.board-section .board-group-one {
  margin-bottom: 70px;
}
.tenant {
  background: url('../img/tenant-bg.jpg') center center/cover no-repeat;
  padding: 207px 0px;
}
.tenant-content h1 {
  font-size: 70px;
  line-height: 82px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
/* Section */
.maintenance-section {
  padding: 100px 0;
  background: #F2EFEA;
}
/* Main Title */
.maintenance-section-title {
  text-align: center;
  margin-bottom: 20px;
}
.maintenance-section-title h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
}
/* Intro Text */
.section-text {
  margin: 0 auto 50px;
  text-align: center;
}
.section-text p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
}
/* Routing Title */
.routing-title {
  text-align: center;
  margin-bottom: 36px;
}
.routing-title h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
/* Card */
.request-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.request-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
/* Overlay */
.card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 20px;
  text-align: center;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0));
}
.card-overlay h4 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
/* Bottom Text */
.bottom-text {
  max-width: 1600px;
  margin: 25px auto 0;
  text-align: center;
}
.bottom-text p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
  margin: 0;
}
.resident-information-section {
  padding: 100px 0px;
}
p.resident_information {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
  text-align: center;
}
.maintenance {
  background: url('../img/maintenance_request-bg.jpg') center center/cover no-repeat;
  padding: 207px 0px;
}
.maintenance-content h1 {
  font-size: 70px;
  line-height: 82px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.mtrequest-section {
  padding: 100px 0px;
  text-align: center;
}
.mtrequest-section h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mtrequest-section p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
}
.form-section {
  padding: 100px 0px;
  background: #F2EFEA;
}
.left-content h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.form-area h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.left-content p {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
}
.image-row {
  margin-top: 35px;
}
.image-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.mt-20 {
  margin-top: 30px;
}
.custom-form .form-control,
.custom-form .form-select {
  font-size: 18px;
  line-height: 30px;
  color: #696969;
  border: none;
  border-radius: 0;
  margin-bottom: 24px;
  padding: 10px 20px;
}
.custom-form textarea.form-control {
  height: 140px;
  resize: none;
}
.submit-btn {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  border: none;
  background: #7B8E8C;
  text-transform: uppercase;
  padding: 16px;
  transition: 0.3s ease;
}
.submit-btn:hover {
  background: #7c8d8a;
}
.info-section {
  padding: 100px 0px;
  text-align: center;
}
.info-title {
  margin-bottom: 40px;
}
.info-title span {
  font-size: 32px;
  line-height: 28px;
  font-weight: 800;
  color: #090807;
  display: inline-block;
  background: #C9D5D4;
  padding: 15px 25px;
  text-transform: uppercase;
}
.info-section p,
.info-section p.text-left a {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
}
.contact {
  background: url('../img/contact-bg.jpg') center center/cover no-repeat;
  padding: 207px 0px;
}
.contact-content h1 {
  font-size: 70px;
  line-height: 82px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.text-left {
  text-align: left;
}
.cnt-section {
  padding: 100px 0px;
  background: #F2EFEA;
}
/* Card */
.cnt-housing-card {
  margin-bottom: 30px;
}
/* Image */
.cnt-housing-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
/* Title */
.cnt-housing-title {
  background: #C9D5D4;
  text-align: center;
  padding: 15px 25px;
  margin: 30px 0px;
}
.cnt-housing-title h3 {
  font-size: 32px;
  line-height: 26px;
  font-weight: 700;
  color: #090807;
  margin: 0;
  text-transform: uppercase;
}
/* Content */
.cnt-housing-content p,
.cnt-housing-content p a {
  font-size: 24px;
  line-height: 28px;
  color: #090807;
  margin-bottom: 20px;
}
.cnt-housing-content p a {
  text-decoration: none;
}
.cnt-housing-content strong {
  color: #090807;
  font-weight: 700;
}
.cnt-number {
  margin-bottom: 10px;
}
.cnt-housing-content .cnt-number p {
  margin-bottom: 10px;
}
.application {
  background: url('../img/application-bg.jpg') center center/cover no-repeat;
  padding: 207px 0px;
}
.application-content h1 {
  font-size: 70px;
  line-height: 82px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
h2.online-application-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #090807;
  text-transform: uppercase;
}
h3.online-application-title {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-top: 50px;
}
p.application-txt {
  margin-top: 10px;
  margin-bottom: 0px;
}
p.application-txt span {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
}
p.app-txt {
  margin-top: 10px;
}
.documents-section {
  padding: 100px 0;
}
/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title span {
  font-size: 32px;
  line-height: 38px;
  font-weight: 800;
  color: #000;
  display: inline-block;
  background: #C9D5D4;
  padding: 15px 25px;
  text-transform: uppercase;
}
/* Subtitle */
.section-subtitle {
  text-align: center;
  margin: 0 auto 40px;
}
.section-subtitle p {
  font-size: 24px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
/* Card */
.document-card {
  background: #F0EFEB;
  padding: 50px;
  height: 100%;
}
/* Icon */
.document-icon {
  text-align: center;
  margin-bottom: 30px;
}
.document-icon i {
  font-size: 70px;
  color: #111;
}
/* Card Title */
.document-card h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
/* List */
.document-card ul {
  padding-left: 28px;
  margin: 0;
}
.document-card ul li {
  font-size: 24px;
  line-height: 30px;
  color: #090807;
  padding: 5px 0px;
}
.mission_wdth {
  max-width: 1250px;
}
.mobile_view,
.ftr_icons p br {
  display: none;
}
/*---------------------------------------- Media Query Start ----------------------------------------*/
@media screen and (min-width: 1801px) and (max-width: 2500px) {
  .main-header .container {
    display: flex;
    justify-content: center;
  }
  .fair-housing-section .col-lg-5 {
    width: 46%;
  }
  .fair-housing-section .housing-card {
    height: 32em;
  }
  .public-housing p {
    width: 970px;
  }
  .site-footer .container {
    max-width: 1200px;
  }
  .mb-55 {
    margin-bottom: 55px;
  }
  .icon-logo {
    text-align: left !important;
  }
  .footer-icon {
    margin: 0px;
    margin-right: 10px;
  }
  .site-footer .title-one {
    width: 51% !important;
  }
  .site-footer .title-two {
    width: 47% !important;
  }
}

@media screen and (min-width: 1401px) and (max-width: 1800px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: center;
  }
  .main-header {
    padding: 20px;
  }
  .home-hero {
    padding: 200px 50px 90px;
  }
  .services-section {
    padding: 80px 20px;
  }
  .services-section .icon {
    width: 80%;
  }
  .services-section h2 {
    font-size: 32px !important;
    line-height: 38px;
    padding: 20px 0px;
  }
  .services-section a {
    font-size: 22px;
  }
  .calendar {
    padding: 0px 20px;
  }
  .fair-housing-section,
  .public-housing {
    padding: 60px 20px;
  }
  .fair-housing-section .row {
    flex-direction: column;
  }
  .fair-housing-section .row .col-lg-5 {
    width: 100%;
  }
  .fair-housing-section .row .logo-circle,
  .fair-housing-section .row .logo-oval {
    left: 0px;
  }
  .fair-housing-section .row .col-lg-5:nth-child(1) {
    margin-bottom: 20px;
  }
  #whoweares2,#whoweares3,#whoweares4,#whoweares5,
  #heberspringss2,#heberspringss3,#heberspringss4,#heberspringss6,
  #kensetts2,#kensetts3,#kensetts6,
  #tenants2,#tenants3,#tenants4,#tenants5,
  #contacts2,#contacts3,#contacts4 {
    padding: 70px 20px;
  }
  .whoweare,.tenant,.contact {
    padding: 170px 0px;
  }
  .whoweare h1,.tenant h1,.contact h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 36px !important;
  }
  p {
    font-size: 22px !important;
  }
  #whoweares4 .section-title h2 {
    padding: 12px 20px;
  }
  #whoweares4 .value-box img {
    width: 64%;
  }
  #whoweares4 .value-box h3, #whoweares5 .board-subtitle h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .site-footer p {
    font-size: 14px !important;
  }
  .site-footer .title-one h2, .site-footer .title-two h2 {
    font-size: 24px !important;
  }
  .title-one p, .title-one p a, .title-two p, .title-two p a {
    font-size: 20px !important;
  }
  .heber_springs, #kensetts1 {
    min-height: 340px;
  }
  #heberspringss4 .section-title span, #kensetts4.property-section-two .section-title span {
    font-size: 28px;
    line-height: 30px;
    padding: 15px;
  }
  #heberspringss4 .property-overlay .big-text, #kensetts4 .overlay-big {
    font-size: 50px;
  }
  #heberspringss4 .property-content h3, #kensetts4 .property-content h3 {
    font-size: 28px;
  }
  #heberspringss5, #kensetts5 {
    padding: 24px 0px 50px;
  }
  #hebersprings_page .footer-logo img {
    margin-bottom: 20px;
  }
  #hebersprings_page .footer-logo .address-text {
    font-size: 24px !important;
  }
  #hebersprings_page .tablets:nth-child(1) {
    width: 24%;
  }
  #hebersprings_page .tablets:nth-child(2) {
    width: 33%;
  }
  #hebersprings_page .contact-item h2 {
    font-size: 24px !important;
  }
  #kensetts4 {
    padding: 60px 20px;
  }
  #tenants5 img, #contacts3 img {
    width: 100%;
  }
  .desktop_view {
    display: none;
  }
  .mobile_view {
    display: block;
  }
  .site-footer .container {
    max-width: 1200px;
  }
  .mb-55 {
    margin-bottom: 55px;
  }
  .icon-logo {
    text-align: left !important;
  }
  .footer-icon {
    margin: 0px;
    margin-right: 10px;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1400px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: center;
  }
  .main-header {
    padding: 20px;
  }
  .home-hero {
    padding: 200px 50px 90px;
  }
  .services-section {
    padding: 80px 20px;
  }
  .services-section .icon {
    width: 80%;
  }
  .services-section h2 {
    font-size: 32px !important;
    line-height: 38px;
    padding: 20px 0px;
  }
  .services-section a {
    font-size: 22px;
  }
  .calendar {
    padding: 0px 20px;
  }
  .fair-housing-section,
  .public-housing {
    padding: 60px 20px;
  }
  .fair-housing-section .row {
    flex-direction: column;
  }
  .fair-housing-section .row .col-lg-5 {
    width: 100%;
  }
  .fair-housing-section .row .logo-circle,
  .fair-housing-section .row .logo-oval {
    left: 0px;
  }
  .fair-housing-section .row .col-lg-5:nth-child(1) {
    margin-bottom: 20px;
  }
  #whoweares2,#whoweares3,#whoweares4,#whoweares5,
  #heberspringss2,#heberspringss3,#heberspringss4,#heberspringss6,
  #kensetts2,#kensetts3,#kensetts6,
  #tenants2,#tenants3,#tenants4,#tenants5,
  #contacts2,#contacts3,#contacts4 {
    padding: 70px 20px;
  }
  .whoweare,.tenant,.contact {
    padding: 170px 0px;
  }
  .whoweare h1,.tenant h1,.contact h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 36px !important;
  }
  p {
    font-size: 22px !important;
  }
  #whoweares4 .section-title h2 {
    padding: 12px 20px;
  }
  #whoweares4 .value-box img {
    width: 64%;
  }
  #whoweares4 .value-box h3, #whoweares5 .board-subtitle h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .site-footer p {
    font-size: 14px !important;
  }
  .site-footer .title-one h2, .site-footer .title-two h2 {
    font-size: 24px !important;
  }
  .title-one p, .title-one p a, .title-two p, .title-two p a {
    font-size: 20px !important;
  }
  .heber_springs, #kensetts1 {
    min-height: 340px;
  }
  #heberspringss4 .section-title span, #kensetts4.property-section-two .section-title span {
    font-size: 28px;
    line-height: 30px;
    padding: 15px;
  }
  #heberspringss4 .property-overlay .big-text, #kensetts4 .overlay-big {
    font-size: 50px;
  }
  #heberspringss4 .property-content h3, #kensetts4 .property-content h3 {
    font-size: 28px;
  }
  #heberspringss5, #kensetts5 {
    padding: 24px 0px 50px;
  }
  #hebersprings_page .footer-logo img {
    margin-bottom: 20px;
  }
  #hebersprings_page .footer-logo .address-text {
    font-size: 24px !important;
  }
  #hebersprings_page .tablets:nth-child(1) {
    width: 26%;
  }
  #hebersprings_page .tablets:nth-child(2) {
    width: 38%;
  }
  #hebersprings_page .contact-item h2 {
    font-size: 24px !important;
  }
  #kensetts4 {
    padding: 60px 20px;
  }
  #tenants5 img, #contacts3 img {
    width: 100%;
  }

  .desktop_view {
    display: none;
  }
  .mobile_view {
    display: block;
  }
  .site-footer .container {
    max-width: 1200px;
  }
  .mb-55 {
    margin-bottom: 55px;
  }
  .icon-logo {
    text-align: left !important;
  }
  .site-footer {
    padding: 60px 30px 30px;
  }
  .footer-icon {
    margin: 0px;
    margin-right: 10px;
  }
}

@media screen and (min-width: 981px) and (max-width: 1100px) {
  .desktop_view {
    display: none;
  }
  .mobile_view {
    display: block;
  }
  .main-header {
    padding: 20px;
  }
  .main-header .navbar-nav {
    gap: 12px;
  }
  .main-header .navbar-nav li a {
    font-size: 20px;
  }
  .home-hero {
    padding: 200px 100px 90px;
  }
  .home-hero h1 {
    font-size: 60px;
  }
  .services-section,.calendar,.fair-housing-section,.mission,.public-housing,
  #whoweares2,#whoweares3,#whoweares4,#whoweares5,
  #heberspringss2,#heberspringss3,#heberspringss4,#heberspringss6,
  #kensetts2,#kensetts3,#kensetts6,
  #tenants2,#tenants3,#tenants4,#tenants5,
  #contacts2,#contacts3,#contacts4 {
    padding: 70px 20px;
  }
  .services-section .weatherwidget-row {
    margin-bottom: 70px;
  }
  .services-section .icon {
    width: 80%;
  }
  .services-section h2 {
    font-size: 30px !important;
    line-height: 36px !important;
    padding: 20px 0px;
  }
  .services-section a {
    font-size: 24px;
    padding: 12px;
  }
  .fair-housing-section .row {
    flex-direction: column;
  }
  .fair-housing-section .row .col-lg-5 {
    width: 100%;
  }
  .fair-housing-section .row .col-lg-5:nth-child(1) {
    margin-bottom: 20px;
  }
  .fair-housing-section .logo-circle {
    left: 0px;
  }
  .fair-housing-section .housing_card_content {
    width: 76%;
  }
  .fair-housing-section .logo-oval {
    left: -15px;
  }
  .fair-housing-section .logo-oval img {
    width: 76%;
  }
  .fair-housing-section h2 {
    font-size: 36px !important;
  }
  .mission::before {
    margin-top: -2.9em;
  }
  .mission p:nth-child(2) {
    width: auto;
  }
  .ph-btn-one a,.ph-btn-two a {
    font-size: 22px;
  }
  .site-footer {
    padding: 60px 30px 30px;
  }
  .footer-logo img {
    margin-bottom: 40px;
  }
  .site-footer .row.text-start {
    margin: 10px 0px !important;
  }
  .site-footer p {
    font-size: 14px !important;
  }
  .title-one p, .title-one p a,
  .title-two p, .title-two p a {
    font-size: 19px !important;
  }
  .site-footer .title-one h2,
  .site-footer .title-two h2 {
    font-size: 24px !important;
  }
  .whoweare,.tenant,.contact {
    padding: 150px 0px;
  }
  .whoweare h1,.tenant h1,.contact h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 34px !important;
  }
  p {
    font-size: 20px !important;
  }
  #whoweares4 .section-title h2 {
    padding: 12px 20px;
  }
  #whoweares4 .value-box img {
    width: 60%;
  }
  #whoweares4 .value-box h3,
  #whoweares5 .board-subtitle h3 {
    font-size: 24px;
    line-height: 32px;
  }
  #whoweares5 .board-title,
  #whoweares5.board-section .board-group-one {
    margin-bottom: 40px;
  }
  #whoweares5 .member-overlay h4 {
    font-size: 20px;
    line-height: 24px;
  }
  #whoweares5 .member-overlay p {
    font-size: 16px !important;
  }
  .heber_springs,
  #kensetts1 {
    min-height: 270px;
  }
  #heberspringss4 .section-title span,
  #kensetts4.property-section-two .section-title span {
    font-size: 28px;
    line-height: 30px;
    padding: 15px;
  }
  #heberspringss4 .property-overlay .big-text,
  #kensetts4 .overlay-big {
    font-size: 42px;
  }
  #heberspringss4 .property-content h3,
  #kensetts4 .property-content h3 {
    font-size: 26px;
  }
  #heberspringss4 .apply-buttons,
  #kensetts4 .apply-btn {
    margin-top: 50px;
  }
  #heberspringss4 .apply-btn {
    padding: 15px;
  }
  #heberspringss5,
  #kensetts5 {
    padding: 24px 0px 50px;
  }
  #hebersprings_page .footer-logo .address-text {
    font-size: 24px !important;
  }
  #hebersprings_page .footer-logo img {
    margin-bottom: 20px;
  }
  #hebersprings_page .contact-item h2 {
    font-size: 24px !important;
  }
  #hebersprings_page .tablets:nth-child(1) {
    width: 30%;
  }
  #hebersprings_page .tablets:nth-child(2) {
    width: 42%;
  }
  #hebersprings_page .mar-rig {
    margin-right: -6em;
  }
  #kensetts4 {
    padding: 60px 20px;
  }
  #tenants5 img,
  #contacts3 img {
    width: 100%;
  }
  .custom-form .form-control, .custom-form .form-select {
    padding: 8px 20px;
    margin-bottom: 15px;
  }
  .form-area h3 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .form-area h3.mt-20 {
    margin-top: 10px;
  }
  .submit-btn {
    font-size: 22px;
    line-height: 22px;
  }
}

@media screen and (min-width: 501px) and (max-width: 980px) {
  .desktop_view {
    display: none;
  }
  .mobile_view {
    display: block;
  }
  .main-header {
    padding: 15px;
  }
  .home-hero {
    padding: 90px 0px;
    background-position: right;
    text-align: center;
  }
  .home-hero h1 {
    font-size: 60px;
  }
  .weatherwidget-row {
    flex-direction: column;
    align-items: center;
  }
  .row {
    margin-right: 0px;
  }
  .row>* {
    padding-right: 0px;
  }
  .services-section {
    padding: 70px 0px;
  }
  .services-section .row {
    justify-content: space-around;
  }
  .services-section .four-box {
    width: 35%;
  }
  .services-section .four-box .icon {
    width: 180px;
  }
  .services-section h2 {
    font-size: 26px;
    line-height: 30px;
    padding: 20px 0px;
  }
  .services-section a {
    font-size: 22px;
    padding: 12px;
  }
  .calendar {
    padding: 48px 20px;
  }
  .fair-housing-section {
    padding: 60px 20px;
  }
  .fair-housing-section .row {
    gap: 30px;
  }
  .fair-housing-section h2 {
    font-size: 30px;
  }
  .fair-housing-section p {
    font-size: 20px;
  }
  .btn-purple,
  .housing_card_content a.btnshover {
    font-size: 20px;
    padding: 14px;
  }
  .gallery {
    padding: 0px 20px;
  }
  .gallery .row>* {
    padding-right: 0px;
    margin-top: 0.7em;
  }
  .mission {
    padding: 80px 20px;
  }
  .mission::before {
    font-size: 30px;
    line-height: 26px;
    padding: 12px;
    margin-top: -3.5em;
  }
  .mission p:nth-child(2) {
    font-size: 20px;
    width: auto;
    text-align: center;
  }
  .public-housing {
    padding: 60px 20px;
  }
  .public-housing h2 {
    font-size: 30px;
  }
  .public-housing p {
    font-size: 20px;
  }
  .ph-btn-one,
  .ph-btn-two {
    padding: 6px 20px;
    margin-right: 0px;
  }
  .ph-btn-one {
    margin-bottom: 20px;
  }
  .site-footer {
    padding: 60px 20px 30px;
  }
  .icon-logo {
    padding: 0px;
    margin-bottom: 0px !important;
  }
  .site-footer .title-one,
  .site-footer .title-two {
    width: 49%;
  }
  .footer-logo img {
    margin-bottom: 40px;
  }
  .title-one h2,
  .title-two h2 {
    font-size: 20px;
  }
  .title-one p,
  .title-one p a,
  .title-two p,
  .title-two p a {
    font-size: 20px !important;
    display: flex;
    align-items: center;
  }
  .heber_springs,
  .kensett {
    min-height: auto;
    padding: 100px 0px;
  }
  .housing-section,
  .public-housing-section,
  .property-section,
  .tenant-section,
  #whoweares4,#whoweares5,
  #tenants3,#tenants4,
  #contacts2,#contacts3,#contacts4,
  #maintenances2,#maintenances3,#maintenances4,
  #applications4,#applications6 {
    padding: 60px 20px;
  }
  .housing-title {
    font-size: 30px;
  }
  .housing-content {
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .apply-buttons {
    margin-top: 40px;
  }
  .apply-btn {
    font-size: 18px;
    line-height: 22px;
    padding: 15px;
  }
  .photo-gallery-section {
    padding: 50px 0px;
  }
  .gallery-title h2,
  .tenant-content h2 {
    font-size: 30px;
  }
  .gallery-title {
    margin-bottom: 20px;
  }
  .tenant-wrapper {
    gap: 25px;
  }
  .tenant-content h2 {
    margin-bottom: 10px;
  }
  .tenant-btn {
    font-size: 18px;
  }
  .tablets {
    max-width: 49%;
  }
  .site-footer .contact-item h2 {
    justify-content: flex-start;
  }
  .contact-item a {
    font-size: 20px;
    line-height: 28px;
  }
  .navbar-brand img {
    width: 180px;
  }
  .navbar-collapse {
    background: #000;
    padding-top: 25px;
  }
  .navbar-nav {
    gap: 15px;
  }
  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }
  .property-section-two {
    padding: 50px 0;
  }
  #kensetts4.property-section-two {
    padding: 50px 20px;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title span {
    font-size: 20px;
    padding: 12px 20px;
  }
  .card-image img {
    height: 240px;
  }
  .overlay-small {
    font-size: 18px;
  }
  .overlay-big {
    font-size: 32px;
  }
  .property-content {
    padding: 20px;
  }
  .property-content h3 {
    font-size: 22px;
  }
  .property-content p {
    font-size: 15px;
  }
  .large-image img {
    min-height: 280px;
  }
  .property-content h3 {
    font-size: 24px;
  }
  .property-content p {
    font-size: 16px;
  }
  .overlay-big {
    font-size: 42px;
  }
  .large-image img {
    min-height: 400px;
  }
  .tenant-content p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .tenant-icon i {
    font-size: 110px;
  }
  .gallery-img {
    height: 240px;
  }
  .property-content h3 {
    font-size: 26px;
  }
  .property-overlay .small-text {
    font-size: 22px;
  }
  .property-overlay .big-text {
    font-size: 44px;
  }
  .housing-text,
  .section-text p,
  .bottom-text p,
  p.resident_information,
  .mtrequest-section p,
  .left-content p,
  #maintenances4 p,
  .section-subtitle p,
  #applications6.info-section p {
    font-size: 18px;
  }
  .contact-item h2 {
    font-size: 22px;
  }
  .contact-item p {
    font-size: 20px;
  }
  .footer-logo h2 {
    font-size: 20px;
  }
  .footer-text {
    text-align: center;
  }
  .sub-title {
    font-size: 50px;
  }
  .main-title {
    font-size: 42px;
  }
  .logo-circle,
  .logo-oval {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }
  .housing-card {
    text-align: center;
  }
  .section-title {
    margin-bottom: 45px;
  }
  #kensetts4 .section-title span {
    font-size: 22px;
    line-height: 28px;
  }
  #kensetts4 .apply-row {
    margin-top: 20px;
  }
  .icon-circle {
    width: 110px;
    height: 110px;
  }
  .icon-circle i {
    font-size: 52px;
  }
  #whoweares1,
  #tenants1,
  #contacts1,
  #maintenances1,
  #applications1 {
    padding: 130px 0px;
  }
  #whoweares1 h1,
  #tenants1 h1,
  #contacts1 h1,
  #maintenances1 h1,
  #applications1 h1 {
    font-size: 50px;
    line-height: 62px;
  }
  #whoweares2 .housing-image img,
  #heberspringss3 .housing-image img,
  #kensetts3 .housing-image img {
    padding-bottom: 30px;
  }
  #whoweares3 .housing-image img {
    padding-top: 10px;
  }
  #whoweares4 .section-title h2 {
    font-size: 32px;
    line-height: 28px;
  }
  #whoweares4 .col-lg-4 {
    width: 100%;
  }
  #whoweares4 .col-lg-4:nth-child(1),
  #whoweares4 .col-lg-4:nth-child(2) {
    padding-bottom: 30px;
  }
  #whoweares4 .value-box h3 {
    font-size: 28px;
  }
  #whoweares5 .board-title h2,
  #tenants3 .maintenance-section-title h2,
  #contacts2 h2,
  #maintenances2 .mtrequest-section h2 {
    font-size: 36px;
    line-height: 44px;
  }
  #whoweares5 .board-subtitle h3,
  #tenants3 .routing-title h3,
  #maintenances3 .left-content h3 {
    font-size: 28px;
    line-height: 32px;
  }
  #whoweares5 .member-overlay h4 {
    font-size: 24px;
    line-height: 26px;
  }
  #whoweares5 .board-title,
  #whoweares5 .board-group-one {
    margin-bottom: 30px;
  }
  .contact-item {
    margin-bottom: 25px;
  }
  #tenants3 .section-text {
    margin: 0px auto 25px;
  }
  #tenants3 .bottom-text {
    margin: 0px auto 0px;
  }
  #tenants4 .section-title h2 {
    font-size: 34px;
    line-height: 24px;
  }
  #tenants5 .app-ass-img,
  #applications5 .app-ass-img {
    text-align: center;
    margin-bottom: 30px;
  }
  #contacts3 .cnt-housing-title {
    padding: 12px 25px;
  }
  #contacts3 .cnt-housing-title h3,
  #contacts4 .info-title span,
  #maintenances4 .info-title span,
  #applications3 h2.online-application-title,
  #applications6 .info-title span {
    font-size: 28px;
    line-height: 24px;
  }
  #contacts3 .cnt-housing-card {
    margin-bottom: 0px;
  }
  #contacts3 .cnt-housing-content p, #contacts3 .cnt-housing-content p a,
  #contacts4 .info-section p {
    font-size: 20px;
    line-height: 24px;
  }
  .submit-btn {
    font-size: 22px;
    padding: 12px;
  }
  #applications2 .housing-image img {
    padding-bottom: 30px;
  }
  #applications3 h3.online-application-title {
    font-size: 24px;
    margin-top: 30px;
  }
  #applications3 p.application-txt span {
    font-size: 20px;
    line-height: 20px;
  }
  .document-card {
    padding: 30px;
  }
  .btn-blk, .btn-blk:hover {
    margin-bottom: 0px;
  }
  .btn-txt {
    flex-direction: column;
  }
  .btn-txt h2 {
    margin-bottom: 10px;
  }
  #tenants5 img,
  #contacts3 img {
    width: 100%;
  }
}

@media screen and (min-width: 501px) and (max-width: 750px) {}

@media screen and (min-width: 500px) and (max-width: 750px) {
  .btn-blk, .btn-blk:hover {
    margin-bottom: 0px;
  }
  #hebersprings_page .tablets {
    max-width: 100%;
  }
  #hebersprings_page .mar-rig {
    margin-right: 0px;
  }
  #hebersprings_page .tablets .contact-item {
    text-align: center;
  }
  #hebersprings_page.site-footer .contact-item h2 {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 3000px) {
  a.btn-purple br,
  a.btnshover br {
    display: none;
  }
}
@media screen and (min-width: 250px) and (max-width: 500px) {
  .desktop_view {
    display: none;
  }
  .mobile_view {
    display: block;
  }
  .main-header {
    padding: 15px 20px;
  }
  .navbar-brand img {
    width: 180px;
  }
  .navbar-collapse {
    background: #000;
    padding-top: 25px;
  }
  .container {
    max-width: 90%;
  }
  .fc-cnt-btn {
    margin-bottom: 20px;
  }
  .board-title h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Work Sans Bold';
    justify-self: center;
  }
  .board-subtitle h3 {
    font-size: 26px;
    font-family: 'Work Sans Bold';
    text-align: center;
    font-weight: 700;
    width: 90%;
    justify-self: center;
  }
  .mission p,
  .public-housing p {
    font-size: 20px;
  }
  #whoweares5 .member-overlay {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    padding: 0 0 15px 0;
    text-align: center;
  }
  .btn-txt {
    flex-direction: column;
  }
  .btn-blk, .btn-blk:hover {
    margin-bottom: 10px;
  }
  #whoweares5 .member-overlay p {
    font-size: 20px;
  }
  #whoweares5.board-section .board-group-one {
    margin-bottom: 40px;
  }
  .whoweare h1,
  #tenants1 h1,
  #maintenances1 h1,
  #contacts1 h1,
  #applications1 h1 {
    font-size: 45px;
  }
  .housing-title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .housing-text {
    font-size: 20px !important;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
  }
  img {
    width: 98%;
  }
  .section-title h2 {
    font-size: 34px;
    line-height: 24px;
  }
  .footer-icon {
    margin-left: 0px;
    width: 90px;
  }
  .navbar-nav {
    gap: 15px;
  }
  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }
  .navbar-brand img {
    width: 150px;
  }
  .navbar-nav .nav-link {
    font-size: 16px;
  }
  .home-hero {
    background-position: right -12em center;
    padding: 150px 20px 90px;
  }
  .home-hero h1 span:nth-child(1) {
    font-size: 84px;
  }
  .home-hero h1 {
    font-size: 42px;
  }
  .services-section {
    padding: 60px 20px;
  }
  .weatherwidget-row {
    margin-bottom: 60px;
  }
  .icon {
    width: 190px;
  }
  .services-section h2 {
    font-size: 26px;
    line-height: 34px;
    padding: 20px 0px;
  }
  .services-section a {
    padding: 12px 20px;
  }
  .calendar .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .fair-housing-section {
    padding: 100px 20px 60px;
  }
  .housing-card {
    flex-direction: column;
    padding: 20px;
  }
  .logo-circle img {
    width: 60%;
  }
  .logo-circle,
  .logo-oval {
    position: relative;
    left: 0em;
    top: 0%;
    transform: translateY(-40%);
  }
  .housing_card_content {
    width: 100%;
    margin-top: -3em;
    text-align: center;
    align-items: center;
  }
  .fair-housing-section h2 {
    font-size: 26px;
    line-height: 38px;
  }
  .fair-housing-section p {
    font-size: 20px;
  }
  .btn-purple,
  .housing_card_content a.btnshover {
    font-size: 20px;
    padding: 12px;
  }
  .fair-housing-section .col-lg-5:nth-child(1) {
    margin-bottom: 4em;
  }
  .gallery .container {
    padding: 0px 20px;
  }
  .gallery .container .col-lg-3 {
    padding-right: 0px;
  }
  .glightbox-container .ginner-container {
    width: 80%;
  }
  .mission {
    padding: 60px 20px;
  }
  .mission p:nth-child(2) {
    text-align: center;
    width: auto;
  }
  .mission::before {
    padding: 12px 20px;
    margin-top: -2.5em;
  }
  .public-housing {
    padding: 60px 20px;
  }
  .public-housing h2 {
    font-size: 36px;
  }
  .public-housing .ph-btn-one {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .ph-btn-one a,
  .ph-btn-two a {
    font-size: 20px;
  }
  .site-footer {
    padding: 60px 20px 30px;
  }
  .heber_springs,
  .kensett {
    min-height: auto;
    padding: 74px 0px;
  }
  .housing-section {
    padding: 50px 20px;
  }
  .public-housing-section {
    padding: 60px 20px;
  }
  .whoweare {
    background-image: url('../img//mobile_image/who_we_are_hero-mobile-bg.jpg');
    padding: 130px 0px;
  }
  #whoweares3 .housing-image img,
  #heberspringss2 .housing-image img,
  #kensetts2 .housing-image img,
  #applications3 .housing-image img {
    padding-top: 30px;
  }
  #whoweares2 .housing-image img,
  #heberspringss3 .housing-image img,
  #kensetts3 .housing-image img,
  #tenants5 .app-ass-img img,
  #applications2 .housing-image img,
  #applications5 .app-ass-img img {
    padding-bottom: 30px;
  }
  #whoweares4 .section-title {
    margin-bottom: 40px;
  }
  #whoweares4 .circle_icon img {
    width: auto;
  }
  #whoweares4 .circle_icon {
    margin-bottom: 20px;
  }
  #whoweares4 .value-box h3 {
    font-size: 26px;
    line-height: 35px;
  }
  #whoweares4 .value-box p {
    font-size: 20px;
    line-height: 28px;
  }
  #whoweares4 .col-lg-4:nth-child(1),
  #whoweares4 .col-lg-4:nth-child(2) {
    margin-bottom: 30px;
  }
  #whoweares5.board-section,
  #tenants3,#tenants4,
  #maintenances2,#maintenances3,#maintenances4,
  #contacts2,#contacts3,#contacts4,
  #applications4,#applications6 {
    padding: 60px 0px;
  }
  #whoweares5 .board-title {
    margin-bottom: 40px;
  }
  #tenants1 {
    background-image: url('../img//mobile_image/tenant_mobile-bg.jpg');
    padding: 130px 0px;
  }
  #tenants3 .maintenance-section-title h2,
  #tenants4 .section-title h2,
  #maintenances2 h2,
  #contacts2 h2,
  #applications2 h2,
  #applications5 .housing-content h2 {
    font-size: 32px;
    line-height: 38px;
  }
  #maintenances1,
  #applications1 {
    background-image: url('../img//mobile_image/maintenance_request_mobile-bg.jpg');
    padding: 130px 0px;
  }
  #maintenances3 h3,
  #applications6 .info-title span {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }
  #maintenances3 p {
    text-align: center;
  }
  #maintenances3 .form-area h3,
  #applications3 p.housing-text {
    text-align: left;
  }
  #maintenances4 .info-title span,
  #applications3 .housing-content h2 {
    font-size: 28px;
    line-height: 32px;
  }
  #contacts1 {
    background-image: url('../img//mobile_image/contact_mobile-bg.jpg');
    padding: 130px 0px;
  }
  #contacts3 .cnt-housing-title h3 {
    font-size: 28px;
    line-height: 32px;
    text-align: left;
  }
  #contacts4 .info-title span {
    font-size: 28px;
    line-height: 32px;
  }
  #contacts4 .text-left a {
    font-size: 20px;
  }
  #applications4 .document-icon img {
    width: auto;
  }
  #applications4 .document-card {
    padding: 30px;
  }
  .housing-content {
    padding-right: 0px;
  }
  .property-section,
  .property-section-two {
    padding: 50px 20px;
  }
  .apply-buttons {
    margin-top: 30px;
  }
  .apply-buttons .col-md-6:nth-child(1) .apply-btn {
    margin-bottom: 20px;
  }
  .apply-btn {
    font-size: 18px;
    padding: 15px;
  }
  .photo-gallery-section {
    padding: 50px 0px;
  }
  .gallery-wrapper {
    padding: 0px;
  }
  .gallery-title {
    margin-bottom: 30px;
  }
  .tenant-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .tenant-section {
    padding: 50px 20px;
  }
  .tenant-content h2 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .tenant-content p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  .tenant-btn {
    font-size: 20px;
    line-height: 20px;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .tenant-icon i {
    font-size: 90px;
  }
  .footer-logo img {
    margin-bottom: 40px;
  }
  .title-one h2,
  .title-two h2 {
    font-size: 20px;
  }
  .title-one p,
  .title-one p a,
  .title-two p,
  .title-two p a {
    font-size: 20px !important;
    display: flex;
    align-items: center;
  }
  .footer-logo .address-text {
    font-size: 22px;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  .site-footer .contact-item h2 {
    justify-content: flex-start;
  }
  #hebersprings_page .contact-item a {
    font-size: 20px;
    line-height: 30px;
  }
  .section-title span,
  .property-section-two .section-title span {
    font-size: 20px;
    padding: 12px 20px;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .card-image img {
    height: 240px;
  }
  .overlay-small {
    font-size: 18px;
  }
  .overlay-big {
    font-size: 32px;
  }
  .property-content {
    padding: 20px;
  }
  .property-content h3 {
    font-size: 22px;
  }
  .property-content p {
    font-size: 15px;
  }
  .large-image img {
    min-height: 280px;
  }
  .apply-btn {
    font-size: 18px;
    padding: 15px;
  }
  .gallery-title h2 {
    font-size: 28px;
  }
  .gallery-img {
    height: 220px;
  }
  .nav-icon {
    font-size: 36px;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .property-image img {
    height: 250px;
  }
  .property-content {
    padding: 20px;
  }
  .property-content h3 {
    font-size: 22px;
  }
  .property-content p {
    font-size: 20px;
  }
  .property-overlay .small-text {
    font-size: 18px;
  }
  .property-overlay .big-text {
    font-size: 34px;
  }
  .contact-row {
    margin-bottom: 35px;
  }
  .contact-item {
    margin-bottom: 25px;
  }
  .contact-item h2 {
    font-size: 18px;
  }
  .contact-item p {
    font-size: 16px;
  }
  .hero-section {
    min-height: 300px;
    padding: 40px 20px;
  }
  .sub-title {
    font-size: 38px;
  }
  .main-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .footer-logo h2 {
    font-size: 20px;
  }
  .footer-text {
    text-align: center;
  }
  .section-title {
    margin-bottom: 45px;
  }
  .section-title span {
    font-size: 22px;
  }
  .icon-circle {
    width: 110px;
    height: 110px;
  }
  .icon-circle i {
    font-size: 52px;
  }
  .value-box h3 {
    font-size: 22px;
  }
  .values-section {
    padding: 55px 0;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title span {
    font-size: 18px;
    padding: 10px 20px;
  } 
  .icon-circle {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
  }
  .icon-circle i {
    font-size: 42px;
  }
  .submit-btn {
    font-size: 20px;
    padding: 10px;
  }
  #hebersprings_page .mar-rig {
    margin-right: 0px;
  }
  .ftr_icons p br {
    display: block;
  }
}
/*---------------------------------------- Media Query End ----------------------------------------*/
/* Mobile fixed header and menu overlay fix */
@media screen and (max-width: 980px) {
  .main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: #000000;
  }

  .main-header + section {
    margin-top: 96px;
  }

  .main-header .container,
  .main-header .navbar {
    position: relative;
  }

  .main-header .navbar-collapse,
  .main-header .navbar-collapse.collapsing {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff !important;
    padding: 0 !important;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    border-radius: 0;
    overflow: hidden;
  }

  .main-header .navbar-nav {
    width: 100%;
    gap: 0 !important;
  }

  .main-header .navbar-nav .nav-item {
    width: 100%;
  }

  .main-header .navbar-nav .nav-link {
    display: block;
    width: 100%;
    color: #222222 !important;
    background: #ffffff;
    font-size: 16px;
    font-family: 'Work Sans SemiBold';
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    padding: 15px 18px !important;
    border-bottom: 1px solid #e5e5e5;
  }

  .main-header .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }

  .main-header .navbar-nav .nav-link:hover,
  .main-header .navbar-nav .nav-link:focus {
    color: #000000 !important;
    background: #f5f5f5;
  }

  .main-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none !important;
    filter: none;
    position: relative;
  }

  .main-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .main-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transform-origin: center;
  }

  .main-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .main-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* Scroll and footer bottom space fix */
html,
body {
  min-height: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  background: #000000;
}

body {
  background: #ffffff;
}

.site-footer {
  background: #000000;
}

@media screen and (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }
/*
  body {
    background: #000000;
  }*/
}

/* Latest mobile fixed header override and cache-bust release fix */
@media screen and (max-width: 991.98px) {
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: #000000 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .main-header + section,
  .main-header + main,
  .main-header + div {
    margin-top: 96px !important;
  }

  .main-header .navbar-collapse,
  .main-header .navbar-collapse.collapsing {
    position: absolute !important;
    top: calc(100% + 15px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999998 !important;
  }
}
