/*transform origin*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
   * Basic styles for links
   */
a {
  color: #E1D4A6;
  text-decoration: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

textarea {
  resize: vertical;
}

button:focus {
  outline-width: 1px;
  outline-style: dotted;
  outline-color: transparent;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*!
 * Web Fonts from Fontspring.com
 *
 * All OpenType features and all extended glyphs have been removed.
 * Fully installable fonts can be purchased at https://www.fontspring.com
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Fontspring. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2010-2023 Fontspring
 *
 *
 *
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * Vendor:      Hamilton Wood Type
 * License URL: https://www.fontspring.com/licenses/hamilton-wood-type/webfont
 *
 *
 */
@font-face {
  font-family: "hwtaetna-condensed";
  src: url("../font/hwtaetna_condensed_macroman/hwtaetna-condensed-webfont.woff2") format("woff2"), url("../font/hwtaetna_condensed_macroman/hwtaetna-condensed-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hwtaetna-regular";
  src: url("../font/hwtaetna_regular_macroman/hwtaetna-regular-webfont.woff2") format("woff2"), url("../font/hwtaetna_regular_macroman/hwtaetna-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hwt_unit_gothic_717";
  src: url("../font/hwtunitgothic_717_macroman/hwt_unit_gothic_717-webfont.woff2") format("woff2"), url("../font/hwtunitgothic_717_macroman/hwt_unit_gothic_717-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hwt-unit-gothic-720";
  src: url("../font/hwtunitgothic_720_macroman/hwt-unit-gothic-720-webfont.woff2") format("woff2"), url("../font/hwtunitgothic_720_macroman/hwt-unit-gothic-720-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABCArizonaText-Regular";
  src: url("../font/Arizona-Text/ABCArizonaText-Regular.woff2") format("woff2"), url("../font/Arizona-Text/ABCArizonaText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABCArizonaText-RegularItalic";
  src: url("../font/Arizona-Text/ABCArizonaText-RegularItalic.woff2") format("woff2"), url("../font/Arizona-Text/ABCArizonaText-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "ABCArizonaText-Regular", sans-serif;
  line-height: 120%;
  color: #E1D4A6;
  font-size: 18px;
  font-weight: 400;
  background-color: #2A343A;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.3;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "ABCArizonaText-Regular", sans-serif;
  font-weight: normal;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
}

.skip-nav {
  background: transparent;
  color: #E1D4A6;
  left: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: -4.2rem;
  z-index: 99999;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.skip-nav:focus {
  box-shadow: 0 0 3px #E1D4A6, 0 0 7px #E1D4A6;
  background: #2A343A;
  left: 0;
  outline: 0;
  position: fixed;
  top: 0;
}

button {
  cursor: pointer;
}

a:focus,
button:focus,
input:focus,
*:focus {
  text-decoration: none;
}

a:focus,
button:focus,
*:focus {
  outline-width: 1px;
  outline-style: dotted;
  outline-color: transparent;
}
.using-keytab a:focus,
.using-keytab button:focus,
.using-keytab *:focus {
  outline-color: #E1D4A6;
}

.using-keytab footer *:focus,
.using-keytab header *:focus,
.using-keytab nav *:focus,
.using-keytab .form_wrap .checkbox_wrap .checkbox + label:focus {
  outline-color: #ffffff;
}

.hidden-text {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.disable_link {
  cursor: default;
  pointer-events: none;
}

.hide_cnt {
  display: none !important;
}

@media (min-width: 992px) {
  .show_mob {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show_mob_only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show_desk_tab {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .show_desk {
    display: none !important;
  }
}

.mainCopy,
p {
  font: 400 18px/120% "ABCArizonaText-Regular", sans-serif;
}
.biggerCopy {
  font: 400 24px/120% "ABCArizonaText-Regular", sans-serif;
}
@media (max-width: 991px) {
  .biggerCopy {
    font-size: 16px;
  }
}
.biggerCopy .caps_copy {
  font-size: 20px;
  font-family: "hwtaetna-regular", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .biggerCopy .caps_copy {
    font-size: 16px;
  }
}

.smallerCopy {
  font: 400 14px/120% "ABCArizonaText-Regular", sans-serif;
}

.secTitleFontBig {
  font: 400 96px/98.328px "hwt_unit_gothic_717", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secTitleFontBig {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 499px) {
  .secTitleFontBig {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 389px) {
  body.neighborhood .secTitleFontBig {
    font-size: 26px;
    line-height: 26px;
  }
}

.secTitleFont {
  font: 400 80px/80px "hwt-unit-gothic-720", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .secTitleFont {
    font-size: 48px;
    line-height: 48px;
  }
}

@media (max-width: 991px) {
  .fp_grid_row .secTitleFont {
    font-size: 44px;
  }
}

.secSubTitleFont {
  font: 400 16px/120% "hwtaetna-regular", sans-serif;
  text-transform: uppercase;
}
.link,
.btn,
.h_middle_sec li a,
.nav_mob_links a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 400 16px/normal "hwtaetna-regular", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link {
  border-bottom: 2px solid #7D8890;
}
.system .link:hover {
  color: #7D8890;
}

.link_inline {
  display: inline-block;
  text-transform: none;
  font: inherit;
}

.btn,
.h_middle_sec li a,
.nav_mob_links a {
  text-align: center;
}
.system .btn:hover,
.system .h_middle_sec li a:hover,
.system .nav_mob_links a:hover {
  color: #7D8890;
}
.btn:after, .btn:before,
.h_middle_sec li a:after,
.h_middle_sec li a:before,
.nav_mob_links a:after,
.nav_mob_links a:before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #9F7015;
}
@media (max-width: 991px) {
  .btn:after, .btn:before,
  .h_middle_sec li a:after,
  .h_middle_sec li a:before,
  .nav_mob_links a:after,
  .nav_mob_links a:before {
    width: 4.7px;
    height: 4.7px;
  }
}
.btn::before,
.h_middle_sec li a::before,
.nav_mob_links a::before {
  margin-right: 10px;
}
@media (max-width: 991px) {
  .btn::before,
  .h_middle_sec li a::before,
  .nav_mob_links a::before {
    margin-right: 7px;
  }
}
.btn::after,
.h_middle_sec li a::after,
.nav_mob_links a::after {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .btn::after,
  .h_middle_sec li a::after,
  .nav_mob_links a::after {
    margin-left: 7px;
  }
}
@media (max-width: 991px) {
  .btn,
  .h_middle_sec li a,
  .nav_mob_links a {
    font-size: 12px;
    line-height: 15px;
  }
}

.home-page header:not(.header-scroll):not(.menu-open) .h_middle_sec li a:after, .home-page header:not(.header-scroll):not(.menu-open) .h_middle_sec li a:before {
  background-color: #E1D4A6;
}

@media (max-width: 991px) {
  .nav_mob_links a::after {
    margin-left: 5px;
  }
}
@media (max-width: 991px) {
  .nav_mob_links a::before {
    margin-right: 5px;
  }
}

main {
  min-height: 100vh;
}

.common_padding_lr {
  padding-left: 5.35vw;
  padding-right: 5.35vw;
}
@media (max-width: 991px) {
  .common_padding_lr {
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}

.horz_sep_top {
  border-top: 2px solid #7D8890;
}

.color_gray {
  color: #7D8890;
}

.page_title_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.page_title_copy p {
  max-width: 706px;
  width: 100%;
  margin: 15px auto 0;
}
@media (max-width: 991px) {
  .page_title_copy p {
    margin-top: 10px;
  }
}
.page_title_copy .link {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .page_title_copy .link {
    margin-top: 6px;
  }
}

.inner_page {
  padding-top: 76px;
}

/*...Animation...*/
.animate_text {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: translate3d(0, 50px, 50px);
  -o-transform: translate3d(0, 50px, 50px);
  -ms-transform: translate3d(0, 50px, 50px);
  -webkit-transform: translate3d(0, 50px, 50px);
  transform: translate3d(0, 50px, 50px);
}
.animate_text.inposition {
  opacity: 1;
  visibility: visible;
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*...... Error Page ......*/
.error_img_sec {
  width: 100%;
  height: 86.7vh;
}
.error_img_sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider_section {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .slider_section {
    width: calc(100% - 10vw);
    margin: 0px auto 0;
    border-top: 0;
  }
}
.slider_section .slider_wrapper {
  padding: 0px 5.35vw;
  width: 100%;
}
@media (max-width: 991px) {
  .slider_section .slider_wrapper {
    position: relative;
    padding: 0;
  }
}
.slider_section .slider_wrapper .amenities_slider img,
.slider_section .slider_wrapper .amenities_slider video {
  object-fit: cover;
  height: 85vh;
  width: 100%;
}
@media (max-width: 991px) {
  .slider_section .slider_wrapper .amenities_slider img,
  .slider_section .slider_wrapper .amenities_slider video {
    height: 45vh;
  }
}
.slider_section .slider_wrapper .amenities_slider .slick-arrow {
  font-size: 0;
  width: 39px;
  height: 84px;
  padding: 0;
  border: 0;
  background: url(../images/icons/next.svg) no-repeat center;
  transform: rotate(-180deg);
  background-size: 100%;
  cursor: pointer;
  top: 45%;
  z-index: 9;
  position: absolute;
}
@media (max-width: 991px) {
  .slider_section .slider_wrapper .amenities_slider .slick-arrow {
    width: 43px;
    height: 25px;
  }
}
.slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-prev {
  left: 1.65vw;
}
@media (max-width: 991px) {
  .slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-prev {
    left: 0px;
    bottom: -97px;
    top: auto;
  }
}
@media (min-width: 3000) {
  .slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-prev {
    left: 2.2vw;
  }
}
.slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-next {
  transform: rotate(0deg);
  right: 1.65vw;
}
@media (max-width: 991px) {
  .slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-next {
    left: auto;
    right: 0px;
    bottom: -97px;
    top: auto;
  }
}
@media (min-width: 3000) {
  .slider_section .slider_wrapper .amenities_slider .slick-arrow.slick-next {
    right: 2.2vw;
  }
}

.slick-slider {
  touch-action: auto;
  -ms-touch-action: auto;
  overflow: hidden;
}

.slider_caption {
  background-color: #2A343A;
}
.slider_caption .caption_counter_wrapper {
  padding: 30px 5.35vw;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-top: 2px solid #7D8890;
  height: 5.35vw;
}
@media (max-width: 991px) {
  .slider_caption .caption_counter_wrapper {
    padding: 30px 5.35vw 100px !important;
    height: auto;
    border-top: 0;
  }
}
.slider_caption .caption_counter_wrapper .slider_caption_text p {
  margin-left: 23px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 991px) {
  .slider_caption .caption_counter_wrapper .slider_caption_text p {
    margin-top: 25px;
    margin-left: 0px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .slider_caption .caption_counter_wrapper .slider_caption_text {
    width: 100%;
    text-align: center;
  }
}

.caption_counter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .caption_counter {
    justify-content: center;
    width: 100%;
  }
}
.caption_counter button {
  font-size: 0;
  width: 30px;
  height: 44px;
  padding: 0;
  border: 0;
  background: url(../images/icons/next.svg) no-repeat center;
  transform: rotate(-180deg);
  background-size: 100%;
  cursor: pointer;
  top: 50%;
  z-index: 9;
  opacity: 0;
  display: inline-block;
  width: 0;
}
@media (max-width: 991px) {
  .caption_counter button {
    width: 43px;
    height: 25px;
    opacity: 1;
  }
}

/*Virtual Tour*/
.virtual_tour_wrap {
  width: 100%;
  height: 100vh;
  padding: 30px 5.35vw;
}
.virtual_tour_wrap iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .virtual_tour_wrap {
    padding: 25px 5.12vw;
  }
}

#banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.banner-video-desktop {
  display: block;
}
@media (max-width: 767px) {
  .banner-video-desktop {
    display: none;
  }
}

.banner-video-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (max-width: 767px) {
  .banner-video-mobile {
    display: block;
  }
}

.control-btn button {
  -webkit-appearance: none;
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  right: 17px;
  bottom: 30px;
  z-index: 2;
  border: 0;
  text-indent: -9999px;
}

.control-btn #play-button {
  display: none;
  background: url(../images/icons/play-icon.svg) no-repeat center center;
  background-size: contain;
}

.control-btn #pause-button {
  background: url(../images/icons/pause-icon.svg) no-repeat center center;
  background-size: contain;
}

.img-wrapper {
  position: relative;
}
.img-wrapper.aspect-ratio--16-9:after {
  padding-bottom: 56.25%;
}
.img-wrapper.aspect-ratio--1-1:after {
  padding-bottom: 100%;
}
.img-wrapper:after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
  padding: 68px 5.35vw 64px;
  border-top: 2px solid #7D8890;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.system footer a:hover {
  color: #7D8890;
}
footer a.resident-portal-link {
  font-size: 18px;
}
@media (max-width: 991px) {
  footer a.resident-portal-link {
    font-size: 16px;
    width: 100%;
    text-align: end;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 30px 5.12vw;
    flex-wrap: wrap;
  }
}
footer > * {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 991px) {
  footer > * {
    width: 100%;
    padding-top: 30px;
  }
  footer > * > * {
    margin-bottom: 30px;
  }
}
footer > *:not(:first-child) {
  margin-left: 10px;
}
@media (max-width: 991px) {
  footer > *:not(:first-child) {
    margin-left: 0;
    border-top: 2px solid #7D8890;
  }
}
footer .footer_right {
  flex-grow: 0;
}
@media (min-width: 992px) {
  footer .footer_right {
    flex-shrink: 0;
  }
}

.footer_logo img {
  width: 169px;
}

.footer_left {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1299px) {
  .footer_left {
    font-size: 16px;
    line-height: 20px;
  }
}
.footer_left > *:not(:first-child) {
  margin-left: 2.18vw;
}
@media (max-width: 991px) {
  .footer_left > *:not(:first-child) {
    margin-left: 10px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) {
  .footer_left {
    justify-content: space-between;
    font-size: 12px;
    line-height: 15px;
  }
}

.footer_right {
  font-size: 12px;
  line-height: 12px;
}
.footer_right > *:not(:first-child) {
  margin-left: 4.4vw;
}
@media (max-width: 1399px) {
  .footer_right > *:not(:first-child) {
    margin-left: 2vw;
  }
}
@media (max-width: 991px) {
  .footer_right:not(.no_hines_logo) {
    flex-wrap: wrap;
  }
}

.f_address_phone {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.f_address_phone .address span {
  display: inline-block;
}
.f_address_phone > *:not(:first-child):before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background-color: #9F7015;
  margin: 0 10px;
}
@media (max-width: 991px) {
  .f_address_phone > *:not(:first-child):before {
    width: 4.7px;
    height: 4.7px;
  }
}
.f_address_phone > *:not(:first-child).f_social_icons:before {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .f_address_phone > *:not(:first-child).tel-link::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .f_address_phone .f_address {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .f_address_phone {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .f_address_phone > *:not(:first-child) {
    margin-top: 5px;
  }
  .f_address_phone > *:not(:first-child):before {
    display: none;
  }
}

.f_partner_logo img {
  width: 81px;
}
.f_partner_logo > * {
  margin-right: 18px;
}
@media (max-width: 991px) {
  .f_partner_logo {
    flex-grow: 1;
  }
}

.privacy_copytight_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}
.privacy_copytight_wrap > *:not(:first-child) {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .privacy_copytight_wrap {
    order: 3;
  }
  .privacy_copytight_wrap:nth-child(1) {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-left: 13px;
  }
  .privacy_copytight_wrap:nth-child(1) > *:first-child {
    margin-top: 5px;
  }
  .privacy_copytight_wrap:nth-child(1) > *:not(:first-child) {
    margin-left: 13px;
  }
  .privacy_copytight_wrap:not(:nth-child(1)) {
    width: 100%;
    border-top: 2px solid #7D8890;
    margin-left: 0;
    padding-top: 30px;
  }
}

.ada_eho {
  display: flex;
  align-items: center;
}
.ada_eho img {
  height: 16px;
}
.ada_eho > *:not(:first-child) {
  margin-left: 8px;
}
@media (max-width: 991px) {
  .ada_eho:nth-child(2) {
    flex-grow: 1;
    margin-left: 0;
  }
}

.f_social_icons {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .f_social_icons {
    margin-top: 10px !important;
  }
}
.f_social_icons a {
  padding: 0 5px;
}
.f_social_icons a:first-child {
  padding-left: 0;
}
.f_social_icons img {
  height: 16px;
}
@media (max-width: 991px) {
  .f_social_icons img {
    height: 18px;
  }
}

.hero_section {
  position: relative;
  min-height: 100vh;
  z-index: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.hero_section > * {
  width: 100%;
}
@media (max-width: 991px) {
  .hero_section {
    justify-content: flex-end;
    padding-bottom: 12vh;
  }
}
.hero_section .hero_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_section .hero_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_section .hero_img:before {
  content: "";
  width: 100%;
  height: 310px;
  display: block;
  background: linear-gradient(to top, rgba(42, 52, 58, 0.99) 13.53%, rgba(42, 53, 58, 0) 84.28%);
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 991px) {
  .hero_section .hero_img:before {
    height: 45vh;
  }
}
.hero_section .hero_logo {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
}
@media (max-width: 991px) {
  .hero_section .hero_logo {
    flex-grow: 0;
  }
}
.hero_section .hero_logo img {
  width: 50.4vw;
}
@media (max-width: 991px) {
  .hero_section .hero_logo img {
    width: 100%;
  }
}
.hero_section .hero_tagline {
  align-self: flex-end;
  flex-grow: 0;
  flex-shrink: 0;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 2px solid #7D8890;
}
@media (max-width: 991px) {
  .hero_section .hero_tagline {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.h_image_copy_block {
  text-align: center;
}
@media (min-width: 992px) {
  .h_image_copy_block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.h_image_copy_block .h_copy_sec > *:not(.graphic_heading) {
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .h_image_copy_block .h_copy_sec > *:not(.graphic_heading) {
    padding-bottom: 25px;
  }
}
.h_image_copy_block .h_copy_sec > *:not(h2) {
  padding-top: 15px;
  border-top: 2px solid #7D8890;
}
@media (min-width: 992px) {
  .h_image_copy_block .h_copy_sec > *:not(h2) {
    padding-top: 25px;
  }
}
.h_image_copy_block .h_img_caption {
  margin-top: 25px;
  text-align: left;
}
@media (max-width: 991px) {
  .h_image_copy_block .h_img_caption {
    margin-top: 15px;
  }
}
.h_image_copy_block .h_image_sec, .h_image_copy_block .h_image_sec img {
  width: 100%;
}
@media (max-width: 991px) {
  .h_image_copy_block .h_image_sec, .h_image_copy_block .h_image_sec img {
    height: 89vw;
  }
}
.h_image_copy_block .h_image_sec img {
  object-fit: cover;
  height: 100%;
}
@media (min-width: 992px) {
  .h_image_copy_block .h_image_sec img {
    min-height: 495px;
  }
}
.h_image_copy_block .col {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 2px solid #7D8890;
}
@media (min-width: 992px) {
  .h_image_copy_block .col:nth-child(2n) {
    border-left: 2px solid #7D8890;
  }
  .h_image_copy_block .col:nth-child(4n-2) {
    grid-column: 2/4;
  }
  .h_image_copy_block .col:nth-child(4n-1) {
    grid-column: 1/3;
  }
  .h_image_copy_block .col:nth-child(4n-1) .h_image_sec img {
    min-height: 632px;
  }
}
.h_image_copy_block .graphic_heading {
  font: normal 52.65px/1 "hwt-unit-gothic-720", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .h_image_copy_block .graphic_heading {
    font-size: 21.462px;
  }
}
.h_image_copy_block .graphic_heading + p {
  border-top: 0;
}
.h_image_copy_block .graphic_heading img {
  width: 100%;
}
.h_image_copy_block .graphic_heading > span:not(.has_heading_font) {
  padding-bottom: 25px;
}
.h_image_copy_block .graphic_heading > span:not(.has_heading_font):not(:first-child) {
  padding-top: 25px;
  border-top: 2px solid #7D8890;
}
@media (max-width: 991px) {
  .h_image_copy_block .graphic_heading > span:not(.has_heading_font) {
    padding-bottom: 8px;
  }
  .h_image_copy_block .graphic_heading > span:not(.has_heading_font):not(:first-child) {
    padding-top: 8px;
  }
}
.h_image_copy_block .graphic_heading span {
  display: flex;
  width: 100%;
  justify-content: stretch;
}
.h_image_copy_block .graphic_heading span .heading_font {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 2.3vw;
  width: auto;
  display: flex;
  align-items: center;
  border-top: 2px solid #7D8890;
  border-bottom: 2px solid #7D8890;
}

.h_full_width_img {
  width: 100%;
  height: 86.7vh;
}
@media (max-width: 991px) {
  .h_full_width_img {
    height: 68.8vh;
  }
}
.h_full_width_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer_sec {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .developer_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.developer_sec > * {
  max-width: 590px;
  width: 100%;
}
@media (max-width: 991px) {
  .developer_sec > * {
    width: 100%;
  }
}
.developer_sec p {
  padding-top: 45px;
}
.developer_sec .secSubTitleFont {
  display: flex;
  flex-direction: column;
}
.developer_sec .secSubTitleFont img {
  width: 265px;
}
.developer_sec .secSubTitleFont > * {
  padding-bottom: 45px;
}

/*# sourceMappingURL=home.css.map */
