/** COMMON ELEMENTS **/
/** Buttons **/
/** Listing Card **/
/** Sticky Navigation **/
/** NAVIGATION **/
/** SEARCH BAR **/
/** HERO MODULE **/
/** CONTENT WITH IMAGE MODULE **/
/** TESTIMONIALS MODUlE **/
/** RECENT LISTINGS MODULE **/
/** MEET THE TEAM MODULE **/
/** STEP BY STEP MODULE **/
/** CONTENT COLUMNS MODULE **/
.sticky-navigation {
  position: fixed;
  z-index: 20;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: rgb(51, 63, 72);
  background: linear-gradient(0deg, rgb(51, 63, 72) 0%, rgb(51, 63, 72) 40%, rgba(51, 63, 72, 0.6) 88%, rgba(51, 63, 72, 0) 100%);
}
.sticky-navigation .menu-items {
  font-size: 26px;
  font-family: "Gotham Bold";
  text-transform: uppercase;
  padding: 10px 0px;
}
.sticky-navigation .menu-items ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.sticky-navigation .menu-items ul li {
  flex: 1;
  text-align: center;
  border-right: 1px solid #ffffff;
  padding: 20px 0px;
}
.sticky-navigation .menu-items ul li:last-child {
  border-right: none;
}
.sticky-navigation .menu-items ul li a {
  color: #ffffff;
  text-decoration: none;
}
.sticky-navigation .menu-items .btn {
  display: flex;
  padding: 10px;
  font-size: 11px;
}
@media (min-width: 992px) {
  .sticky-navigation .menu-items .btn {
    margin: 0 15%;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .sticky-navigation .menu-items .btn {
    margin: 0 20%;
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .sticky-navigation .menu-items .btn {
    margin: 0 25%;
  }
}
@media (max-width: 991.98px) {
  .sticky-navigation {
    display: none;
  }
}

.hero-section {
  background-size: cover;
  background-position: center center;
  margin: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  min-height: 600px;
}

.step-by-step-section {
  padding: 100px 0px;
}
@media (max-width: 991.98px) {
  .step-by-step-section {
    padding: 50px 50px;
  }
}
.step-by-step-section .step-wrapper {
  display: flex;
  gap: 50px;
}
.step-by-step-section .step-wrapper > .step-column {
  flex: 1;
}
@media (max-width: 991.98px) {
  .step-by-step-section .step-wrapper {
    flex-direction: column;
  }
}
.step-by-step-section h4 {
  color: #b30c2f;
  font-weight: 800;
  font-family: "Gotham Bold";
}

.content-columns-section {
  background: #ECECE9;
  padding: 100px 0px;
}
@media (max-width: 991.98px) {
  .content-columns-section {
    padding: 50px 50px;
  }
}
.content-columns-section .column-wrapper {
  display: flex;
  gap: 50px;
}
.content-columns-section .column-wrapper > .column {
  flex: 1;
}
@media (max-width: 991.98px) {
  .content-columns-section .column-wrapper {
    flex-direction: column;
  }
}
.content-columns-section h4 {
  color: #b30c2f;
  font-weight: 800;
  font-family: "Gotham Bold";
}

.how-to-apply .how-to-apply-header {
  background: #333f48;
  padding: 30px 0px;
  color: #ffffff;
  font-size: 30px;
}
.how-to-apply .how-to-apply-header h1 {
  font-size: 64px;
  display: flex;
  align-items: center;
  font-family: "shelby";
}
.how-to-apply .how-to-apply-header h1 span {
  font-size: 28px;
  font-family: "Gotham Medium";
  top: -4px;
  position: relative;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .how-to-apply .how-to-apply-header {
    padding: 20px 0px;
  }
}
.how-to-apply .how-to-apply-header .container {
  display: flex;
  justify-content: space-between;
}
