:root {
  --edge-space: 16px;
  --outside-space: calc((150px * -0.4) + (150 / 1600 * 100vw * 1.4));
  --inside-space: calc((240px * -0.4) + (240 / 1600 * 100vw * 1.4));
  --vertical-space: calc((80px * -0) + (80 / 1600 * 100vw * 1));
  --max-width: 1700px;
}
@media screen and (min-width: 1601px) {
  :root {
    --vertical-space: 80px;
    --outside-space: 150px;
    --inside-space: 240px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --outside-space: 30px;
    --vertical-space: 30px;
    --inside-space: 30px;
  }
}
#home-banner {
  position: relative;
  height: 100vh;
  z-index: 100;
  min-height: 880px;
}
@media screen and (max-width: 1250px) {
  #home-banner {
    max-height: 1300px;
  }
}
#home-banner .inside {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#home-banner .inside .top {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-banner .inside .top .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
}
#home-banner .inside .top .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-banner .inside .top .background .gradient {
  background: #003b5c;
  opacity: 0.85;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#home-banner .inside .top .background .gradient-alert {
  background: transparent;
}

#home-banner .inside .top .banner-btn-group {
  margin-top: 35px;
  margin-bottom: 35px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

#home-banner .inside .top .banner-btn-group .banner-btn {
  border: none;
  background: transparent;
  padding: 0;
}

#home-banner .inside .top .banner-btn-group .banner-btn::before {
  background: #fff;
  color: #de7008;
}

#home-banner .inside .top .banner-btn-group .banner-btn a {
  color: #fff;
  border: 1.5px solid #fff;
  padding: 15px 40px 15px 20px;
}

#home-banner .inside .top .banner-btn-group .banner-btn a:after {
  filter: brightness(0) invert(1);
  right: 20px;
}

#home-banner .inside .top .banner-btn-group .banner-btn:hover a {
  color: #de7008;
}

#home-banner .inside .top .banner-btn-group .banner-btn:hover a:before {
  background: #de7008;
}

#home-banner .inside .top .banner-btn-group .banner-btn:hover a:after {
  filter: none;
  right: 15px;
}

#home-banner .inside .top .background svg {
  height: 100%;
  width: auto;
}

#home-banner .inside .top .background .banner-svg,
#home-banner .inside .top .background .critical-banner-svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

#home-banner .inside .top .background .critical-banner-svg {
  left: -60px;
}

#home-banner .inside .top .content-wrap {
  max-width: var(--max-width);
  margin: auto;
  width: 100%;
}
#home-banner .inside .top .content {
  position: relative;
  padding: 80px var(--outside-space) 0 var(--outside-space);
  width: 1160px;
  color: #fff;
}

#home-banner .inside .top .content .small-heading {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  #home-banner .inside .top .background .critical-banner-svg {
    left: -160px;
  }

  #home-banner .inside .top .content {
    width: calc(300px + 51.5625vw);
  }
}
@media screen and (max-width: 800px) {
  #home-banner .inside .top .content {
    width: 100%;
  }
}
@media screen and (max-width: 1600px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 64px;
  }
}
@media screen and (max-width: 1500px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 61px;
  }
}
@media screen and (max-width: 1400px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 58px;
  }
}
@media screen and (max-width: 1100px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 54px;
  }
}
@media screen and (max-width: 1000px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 47px;
  }
}
@media screen and (max-width: 800px) {
  #home-banner .inside .top .content .primary-heading {
    font-size: 39px;
  }
}
#home-banner .inside .bottom {
  background: #f5f5f5;
}
#home-banner .inside .bottom .inside-bottom {
  display: flex;
  column-gap: 45px;
  max-width: var(--max-width);
  margin: auto;
  padding: 62px var(--outside-space) 70px var(--outside-space);
}
@media screen and (max-width: 1600px) {
  #home-banner .inside .bottom .inside-bottom {
    padding: calc(23.1px + 2.93125vw - 10px) var(--outside-space)
      calc(23.1px + 2.93125vw) var(--outside-space);
  }
}
@media screen and (max-width: 1400px) {
  #home-banner .inside .bottom .inside-bottom {
    column-gap: 25px;
  }
}
@media screen and (max-width: 800px) {
  #home-banner .inside .bottom .inside-bottom {
    flex-direction: column;
    row-gap: 21px;
  }
}
#home-banner .inside .bottom .left,
#home-banner .inside .bottom .right {
  flex: 0 0 calc(50% - 22.5px);
}
@media screen and (max-width: 1400px) {
  #home-banner .inside .bottom .left,
  #home-banner .inside .bottom .right {
    flex: 0 0 calc(50% - 12.5px);
  }
}
#home-banner .inside .bottom .left .list-container,
#home-banner .inside .bottom .right .list-container {
  display: flex;
}
@media screen and (max-width: 1250px) {
  #home-banner .inside .bottom .left .list-container,
  #home-banner .inside .bottom .right .list-container {
    flex-direction: column;
    row-gap: 15px;
  }
}
#home-banner .inside .bottom .left .nice-select,
#home-banner .inside .bottom .right .nice-select {
  flex-grow: 1;
  align-self: stretch;
  height: initial;
  border: solid 1.5px #b7b7b7;
  border-radius: 0;
  background-color: #f5f5f5;
  height: 52px;
}
#home-banner .inside .bottom .left .nice-select:after,
#home-banner .inside .bottom .right .nice-select:after {
  background: url(/wp-content/themes/array-blank/images/shell/nice-select-arrow.svg);
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
  width: 8px;
  height: 12px;
  right: 20px;
}
#home-banner .inside .bottom .left .nice-select .current,
#home-banner .inside .bottom .right .nice-select .current {
  color: #b7b7b7;
  font-size: 21px;
  font-weight: 700;
  font-family: "Roboto", "Times New Roman", Times, serif;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  #home-banner .inside .bottom .left .nice-select .current,
  #home-banner .inside .bottom .right .nice-select .current {
    font-size: 19px;
  }
}
@media screen and (max-width: 1300px) {
  #home-banner .inside .bottom .left .nice-select .current,
  #home-banner .inside .bottom .right .nice-select .current {
    font-size: 17px;
  }
}
#home-banner .inside .bottom .left .nice-select .option,
#home-banner .inside .bottom .right .nice-select .option {
  font-weight: 700;
}
#home-banner .inside .bottom .left .nice-select .option.disabled,
#home-banner .inside .bottom .right .nice-select .option.disabled {
  color: #b7b7b7;
}
#home-banner .inside .bottom .left .nice-select .option:hover,
#home-banner .inside .bottom .right .nice-select .option:hover {
  color: #767676;
}
#home-banner .inside .bottom .left .nice-select .list,
#home-banner .inside .bottom .right .nice-select .list {
  color: #b7b7b7;
  font-size: 21px;
  font-weight: 700;
  font-family: "Roboto", "Times New Roman", Times, serif;
  width: 100%;
  border-radius: 0;
  border: solid 1.5px #b7b7b7;
  top: -5px;
  background-color: #f5f5f5;
  transform: translateY(0%);
  transition:
    transform 0.3s ease,
    opacity 0.1s ease;
}
@media screen and (max-width: 1400px) {
  #home-banner .inside .bottom .left .nice-select .list,
  #home-banner .inside .bottom .right .nice-select .list {
    font-size: 19px;
  }
}
@media screen and (max-width: 1300px) {
  #home-banner .inside .bottom .left .nice-select .list,
  #home-banner .inside .bottom .right .nice-select .list {
    font-size: 17px;
  }
}
#home-banner .inside .bottom .left .nice-select.open .list,
#home-banner .inside .bottom .right .nice-select.open .list {
  transform: translateY(-100%);
  transition:
    transform 0.3s ease,
    opacity 0.4s cubic-bezier(0.39, -0.07, 1, 0.93);
}
#home-banner .inside .bottom .left .custom-button,
#home-banner .inside .bottom .right .custom-button {
  margin-left: 10px;
}
@media screen and (max-width: 1250px) {
  #home-banner .inside .bottom .left .custom-button,
  #home-banner .inside .bottom .right .custom-button {
    margin-left: 0;
    align-self: flex-start;
  }
}
@media screen and (max-width: 800px) {
  #home-banner .inside .bottom .left .custom-button,
  #home-banner .inside .bottom .right .custom-button {
    width: 100%;
  }
  #home-banner .inside .bottom .left .custom-button a,
  #home-banner .inside .bottom .right .custom-button a {
    width: 100%;
    text-align: center;
  }
}
#home-banner .inside .bottom .help-header {
  color: #003b5c;
  font-weight: 700;
  font-family: "Roboto", "Times New Roman", Times, serif;
  margin-bottom: 0.55em;
}
#who-we-are {
  overflow: hidden;
}
#who-we-are .inside {
  max-width: var(--max-width);
  margin: auto;
  padding: var(--vertical-space) 0 var(--vertical-space) var(--outside-space);
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #who-we-are .inside {
    flex-direction: column;
    padding: var(--vertical-space) var(--outside-space) var(--vertical-space)
      var(--outside-space);
    row-gap: var(--vertical-space);
  }
}
#who-we-are .inside .graphic {
  position: absolute;
  right: 92px;
  top: 70px;
}
@media screen and (max-width: 1000px) {
  #who-we-are .inside .graphic {
    display: none;
  }
}
#who-we-are .inside .left {
  flex: 0 0 35%;
}
@media screen and (max-width: 1200px) {
  #who-we-are .inside .left {
    flex: 0 0 40%;
  }
}
#who-we-are .inside .left .secondary-heading {
  margin: 0.8em 0 0.8em 0;
}
#who-we-are .inside .left .legend {
  font-size: 13px;
}
#who-we-are .inside .left .legend > p:last-child {
  margin-bottom: 0;
}
#who-we-are .inside .left .legend .mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
  #who-we-are .inside .left .legend {
    display: flex;
  }
  #who-we-are .inside .left .legend .content {
    flex: 0 0 350px;
  }
  #who-we-are .inside .left .legend .mobile {
    display: block;
    margin-left: -3%;
    margin-right: -3%;
  }
}
@media screen and (max-width: 800px) {
  #who-we-are .inside .left .legend {
    flex-direction: column;
    row-gap: 30px;
  }
  #who-we-are .inside .left .legend .content {
    flex: initial;
  }
  #who-we-are .inside .left .legend .mobile {
    display: block;
    margin: -6% -8%;
  }
}
#who-we-are .inside .right {
  margin-left: -100px;
  max-width: 1045px;
}
@media screen and (max-width: 1300px) {
  #who-we-are .inside .right {
    margin-left: 0px;
  }
}
@media screen and (max-width: 1000px) {
  #who-we-are .inside .right {
    margin: -8%;
    margin-bottom: -8%;
    max-height: 400px;
    position: relative;
    display: none;
  }
  #who-we-are .inside .right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
#join {
  background: #f5f5f5;
  overflow: hidden;
}
#join .inside {
  max-width: var(--max-width);
  margin: auto;
  padding: var(--vertical-space) var(--inside-space) var(--vertical-space)
    var(--outside-space);
  display: flex;
  justify-content: space-between;
  position: relative;
  column-gap: 100px;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  #join .inside {
    column-gap: calc(-40px + 8.75vw);
  }
}
@media screen and (max-width: 1300px) {
  #join .inside {
    padding: var(--vertical-space) var(--outside-space) var(--vertical-space)
      var(--outside-space);
  }
}
@media screen and (max-width: 1000px) {
  #join .inside {
    flex-direction: column;
    row-gap: calc(var(--vertical-space) - 12px);
    row-gap: calc(2 * var(--vertical-space));
    align-items: initial;
  }
}
#join .inside > .graphic {
  position: absolute;
  top: 0;
  left: 0;
  bottom: initial;
  height: 100%;
}
#join .inside > .graphic svg {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 1000px) {
  #join .inside > .graphic svg {
    height: auto;
    width: 110%;
  }
}
#join .inside .left {
  flex: 0 0 54%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #join .inside .left {
    height: 345px;
    flex: initial;
  }
}
@media screen and (max-width: 800px) {
  #join .inside .left {
    height: 217px;
  }
}
#join .inside .left > .graphic {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -100%);
}
#join .inside .left > .graphic svg {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #join .inside .left > .graphic {
    width: 58px;
  }
}
@media screen and (max-width: 800px) {
  #join .inside .left > .graphic {
    width: 38px;
  }
}
#join .inside .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#join .inside .right {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  #join .inside .right:before {
    content: "";
    position: absolute;
    width: calc(100% + 2 * var(--vertical-space));
    height: calc(100% + 2 * var(--vertical-space));
    left: 0;
    top: 0;
    background: #f5f5f5;
    z-index: -1;
    margin: calc(-1 * var(--vertical-space));
  }
} /*# sourceMappingURL=home.css.map */

#news-updates {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

#news-updates .inside {
  padding: 0 var(--outside-space) var(--vertical-space) var(--outside-space);
}

#news-updates .inside .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#news-updates .inside .top .secondary-heading {
  margin-bottom: 0;
}

#news-updates .content {
  width: 100%;
  margin-top: 40px;
  overflow-x: hidden;
}

#news-updates .content .scroll-box {
  width: 100%;
  overflow-x: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.news-card a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  min-width: 290px;
}

.news-card .inside {
  padding: 0 !important;
}

.news-card .inside .card-title {
  margin-top: 16px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card .inside .card-date {
  margin-bottom: 12px;
  color: #767676;
  font-size: 13px;
}

.news-card .inside .card-content-txt {
  color: #1d1d1d;
}

.news-card .inside .img,
.video-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.news-card .inside .img-placeholder .graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.news-card .inside .img-placeholder svg {
  position: absolute;
  left: 0;
  bottom: 0;
}

.news-card .inside .img-placeholder {
  width: 100%;
  height: 250px;
  background: #003b5c;
  overflow: hidden;
}

.news-card .inside .card-content-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 800px) {
  #news-updates .content .scroll-box {
    gap: var(--vertical-space);
  }
}

@media screen and (max-width: 600px) {
  #news-updates {
    padding-top: var(--vertical-space);
  }

  #news-updates .inside .top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.8em;
  }
}

#news-updates .content .scroll-box {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  &::-webkit-scrollbar {
    display: none;
  }
}
