/*
  Autumn Strategic — theme CSS restored from the 2018 "autumn" WordPress theme
  (Wayback capture 2025-02-23). WordPress/SiteOrigin/Contact Form 7 rules removed,
  webfont declarations and media queries folded in. Values are the originals.
*/

/* ----- Fonts ----- */
@font-face { font-family: 'OpenSans-Bold';      src: url('/assets/fonts/OpenSans-Bold.ttf') format('truetype');      font-weight: bold; font-style: normal; font-display: swap; }
@font-face { font-family: 'OpenSans-Regular';   src: url('/assets/fonts/OpenSans-Regular.ttf') format('truetype');   font-display: swap; }
@font-face { font-family: 'OpenSans-Semibold';  src: url('/assets/fonts/OpenSans-Semibold.ttf') format('truetype');  font-display: swap; }
@font-face { font-family: 'OpenSans-ExtraBold'; src: url('/assets/fonts/OpenSans-ExtraBold.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'OpenSans-Light';     src: url('/assets/fonts/OpenSans-Light.ttf') format('truetype');     font-display: swap; }

/* ----- Base ----- */
a:hover { transition: all 1s ease; }
html, body { overflow-x: hidden; }
body { width: 100%; height: 100%; font-family: 'OpenSans-Regular', 'Open Sans', Arial, sans-serif; }
a, input, a:focus, input:focus { outline: none; }
a:hover { text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid #35b3ed; outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ----- Header / navigation ----- */
/* Fixed white bar; the body gets matching top padding so the hero starts right below it.
   (position: sticky is defeated by the theme's overflow-x: hidden on html/body.) */
body { padding-top: 70px; }
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ececec;
  transition: box-shadow 0.3s ease;
}
#header .container { width: 100%; }
#header.is-scrolled,
#header.is-open {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}
#header .container { display: flex; align-items: center; justify-content: space-between; }
#header .brand {
  font-family: 'OpenSans-Light';
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}
#header .brand span { font-family: 'OpenSans-Bold'; }
#header .brand:hover { color: #35b3ed; }
.site-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; }
.site-nav a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'OpenSans-Semibold';
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: #35b3ed; border-bottom-color: #35b3ed; }
.site-nav .nav-phone a { color: #35b3ed; border-bottom-color: transparent; }
.site-nav .nav-phone a:hover { color: #000; }
.site-nav .nav-phone i { margin-right: 4px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  content: "";
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before { position: absolute; top: -7px; left: 0; }
.nav-toggle .bars::after { position: absolute; top: 7px; left: 0; }
#header.is-open .bars { background: transparent; }
#header.is-open .bars::before { transform: translateY(7px) rotate(45deg); }
#header.is-open .bars::after { transform: translateY(-7px) rotate(-45deg); }
section[id], #footer { scroll-margin-top: 70px; }

/* ----- Banner ----- */
#banner { float: left; width: 100%; }
#banner .img { float: left; width: 100%; position: relative; }
#banner .img img { float: left; width: 100%; height: 750px; object-fit: cover; }
#banner .img .banner_caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  display: table;
  text-align: center;
}
#banner .img .banner_caption h1 {
  color: #000;
  font-size: 22px;
  text-align: center;
  font-weight: 300;
  display: table;
  margin: 0 auto;
  line-height: 32px;
  font-family: 'OpenSans-Light';
}
#banner .img .banner_caption h1 span { font-family: 'OpenSans-Bold'; }

#mouse_scroll { float: left; width: 100%; position: relative; }
#mouse_scroll .Scroll-down { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
#mouse_scroll .Scroll-down a,
.scroll_up .scrollup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 2px 2px 18px rgba(0, 0, 0, 0.4);
}
.chevron { width: 12px; height: 12px; border-right: 2px solid #000; border-bottom: 2px solid #000; transform: translateY(-3px) rotate(45deg); }
.chevron.up { transform: translateY(3px) rotate(-135deg); }

/* ----- About ----- */
#about { float: left; width: 100%; padding-top: 105px; padding-bottom: 118px; }
#about .about_col .border_left {
  font-size: 25px;
  font-family: 'OpenSans-Bold';
  color: #000;
  float: left;
  width: 100%;
  margin-bottom: 19px;
}
.border_left { position: relative; z-index: 1; font-family: 'OpenSans-Semibold'; }
.border_left::after {
  content: "";
  width: 80px;
  height: 10px;
  background-color: #999;
  left: -25px;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
#about .about_col p { float: left; width: 100%; font-size: 15px; color: #666; line-height: 24px; margin-bottom: 24px; }
.name_text { float: left; }
.name_text .name { display: block; color: #9d9d9d; font-size: 18px; font-weight: 400; }
.name_text .name .bold {
  display: block;
  color: #000;
  font-size: 17px;
  font-family: 'OpenSans-Semibold';
  font-style: italic;
  margin-top: -5px;
}
.about_col.right { padding-right: 30px; }
.about_col.left { padding-left: 40px; }
.about_col .images { float: left; width: 100%; position: relative; }
.about_col .images img { float: left; width: 100%; }
.about_col .images .linked { position: absolute; color: #35b3ed; font-size: 31px; right: 24px; top: 19px; }

/* ----- Who we are ----- */
#who_we_are { float: left; width: 100%; }
#who_we_are .who_text_img {
  padding: 222px 0;
  float: left;
  width: 100%;
  text-align: center;
  background: url('/assets/images/who_we.png') no-repeat center fixed;
  background-size: cover;
}
#who_we_are .who_text_img .border_left {
  display: inline-block;
  color: #fff;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 600;
}
#who_we_are .who_text_pera { display: table; width: 91%; margin: 0 auto; padding: 80px 0; }
#who_we_are .who_text_pera p { font-size: 24px; color: #575a5b; text-align: center; line-height: 35px; }

/* ----- Commitment ----- */
#our_commitment {
  float: left;
  width: 100%;
  padding: 113px 0 116px;
  background: url('/assets/images/commitment.png') no-repeat center fixed;
  background-size: cover;
}
#our_commitment h2 { display: table; margin: 0 auto; color: #fff; font-size: 25px; margin-bottom: 44px; font-family: 'OpenSans-Bold'; }
#our_commitment .our_col { text-align: right; }
#our_commitment .our_col p { color: #fff; font-size: 15px; line-height: 25px; width: 77%; text-align: left; display: table; margin: 0 auto; }
#our_commitment .our_col.left p { margin: 0; }

/* ----- Vision / Momentum / Impact ----- */
#vision_impact { float: left; width: 100%; padding: 70px 0; }
#vision_impact .border_bottom {
  display: table;
  margin: 0 auto;
  font-size: 23px;
  font-family: 'OpenSans-Bold';
  color: #000;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 83px;
}
#vision_impact .border_bottom::before {
  content: "";
  width: 45px;
  border-bottom: 2px solid;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
}
#vision_impact .border_bottom i { font-size: 7px; display: inline-block; vertical-align: middle; }
#vision_impact .img_inner {
  float: left;
  width: 100%;
  background: url('/assets/images/vision_bk_img.png') no-repeat center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}
#vision_impact .col_inner {
  float: left;
  width: 100%;
  padding: 36px 15px 30px;
  background-color: rgba(244, 244, 244, 1);
  text-align: center;
  transition: all 0.4s ease-in-out;
  min-height: 330px;
}
#vision_impact .img_inner:hover { transform: scale(1.2); position: relative; z-index: 9; }
#vision_impact .img_inner:hover .col_inner { background-color: rgba(244, 244, 244, 0.7); }
#vision_impact .img_inner:hover ul li { color: #000; }
#vision_impact .col_inner h3 { font-size: 23px; color: #000; font-family: 'OpenSans-Bold'; }
#vision_impact .col_inner .vision_ul { float: left; width: 100%; margin-top: 20px; }
#vision_impact .col_inner .vision_ul li { line-height: 25px; font-size: 16px; color: #777777; transition: all 0.4s ease-in-out; }

/* ----- Capabilities ----- */
#our_object { float: left; width: 100%; }
#our_object .our_text_img {
  float: left;
  width: 100%;
  padding: 145px 0;
  background: url('/assets/images/capability.png') no-repeat center fixed;
  background-size: cover;
}
#our_object .our_text_img h2 { display: table; margin: 0 auto; color: #fff; font-size: 35px; }
.our_text { float: left; width: 100%; padding: 70px 0; }
.our_text h3 { color: #000; font-size: 20px; font-family: 'OpenSans-Bold'; margin-bottom: 31px; min-height: 44px; }
.our_text h4 { color: #000; font-size: 16px; text-transform: uppercase; margin-bottom: 19px; font-family: 'OpenSans-Semibold'; }
.our_text p { color: #777; font-size: 16px; margin-bottom: 16px; line-height: 23px; }
.our_text .our_inner { float: left; width: 100%; }
.our_text .our_inner.first { padding-right: 20px; }
.our_text .our_inner.middle { padding: 0 5px; }
.our_text .our_inner.last { padding-left: 24px; }
.border-le-ri { position: relative; }
.border-le-ri::before,
.border-le-ri::after {
  content: "";
  position: absolute;
  height: 270px;
  width: 1px;
  background-color: #bfbfbf;
  top: 55%;
  transform: translate(0, -50%);
}
.border-le-ri::before { left: -15px; }
.border-le-ri::after { right: 0; }

/* ----- What makes us different ----- */
#what_make { float: left; width: 100%; }
#what_make .what_text_img {
  float: left;
  width: 100%;
  padding: 162px 0;
  background: url('/assets/images/different.png') no-repeat center fixed;
  background-size: cover;
}
#what_make .what_text_img h2 { display: table; margin: 0 auto; color: #fff; font-size: 35px; }

/* ----- Key areas ----- */
#key_area {
  float: left;
  width: 100%;
  padding: 80px 0;
  background: url('/assets/images/key.png') no-repeat center fixed;
  background-size: cover;
}
#key_area span { color: #fff; font-size: 15px; text-transform: uppercase; display: table; margin: 0 auto; }
#key_area h2 { display: table; margin: 0 auto; color: #fff; font-size: 35px; margin-top: 15px; }
#key_area p { font-size: 15px; color: #fff; display: table; width: 641px; margin: 0 auto; text-align: center; margin-top: 25px; margin-bottom: 54px; }

/* ----- We believe ----- */
#relevance { float: left; width: 100%; padding: 60px 0; }
#relevance span { display: table; margin: 0 auto; color: #000; font-size: 15px; text-transform: uppercase; }
#relevance h2 { display: table; margin: 0 auto; margin-top: 12px; margin-bottom: 19px; font-family: 'OpenSans-Semibold'; }
#relevance p.head { display: table; margin: 0 auto; width: 516px; text-align: center; font-size: 15px; color: #666666; margin-bottom: 41px; }
#relevance .col_relevance p { color: #777777; font-size: 16px; }
#relevance .middle { position: relative; }
#relevance .middle::before,
#relevance .middle::after {
  content: "";
  width: 1px;
  height: 33px;
  background-color: #bfbfbf;
  position: absolute;
  top: 65%;
  transform: translate(0, -50%);
}
#relevance .middle::before { left: -15px; }
#relevance .middle::after { right: 15px; }

/* ----- Contact ----- */
#contact {
  float: left;
  width: 100%;
  padding: 70px 0;
  background: url('/assets/images/contactus.png') no-repeat center fixed;
  background-size: cover;
}
#contact h2 { display: table; margin: 0 auto; color: #fff; }
#contact p { display: table; margin: 0 auto; margin-top: 29px; color: #fff; font-size: 15px; }
#contact form { display: table; margin: 0 auto; width: 478px; margin-top: 57px; }
#contact form .form_input { float: left; width: 100%; margin-bottom: 13px; }
#contact form .form_input input {
  float: left;
  width: 100%;
  height: 47px;
  padding: 0 15px;
  font-size: 14px;
  color: #777777;
  font-family: 'OpenSans-Regular';
  border: 0;
}
#contact form .form_input textarea { height: 149px; width: 100%; float: left; border: 0; padding: 15px; resize: none; font-family: 'OpenSans-Regular'; font-size: 14px; color: #777777; }
#contact form .form_trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.submit input {
  float: left;
  width: 100%;
  height: 48px;
  background-color: #999;
  border: 0;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-family: 'OpenSans-Bold';
}
.submit input:hover { background-color: #000; color: #999; }
.submit input[disabled] { cursor: wait; opacity: 0.7; }
#contact form .form-response { float: left; width: 100%; margin-top: 18px; padding: 12px 15px; font-size: 14px; text-align: center; background: rgba(255, 255, 255, 0.92); color: #000; }
#contact form .form-response.is-error { background: #fbe3e3; color: #7a1c1c; }

/* ----- Footer ----- */
#footer { float: left; width: 100%; }
.map {
  float: left;
  width: 100%;
  padding: 100px 0 95px;
  background: url('/assets/images/map.png') no-repeat center;
  background-size: 420px;
}
.social_ul { display: table; margin: 30px auto 0; }
.social_ul li { display: inline-block; width: 50px; height: 50px; margin: 0 5px; text-align: center; }
.social_ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 2px solid #000;
  color: #000;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.social_ul li a:hover { background-color: #999; border: 2px solid #999; }
.address_ul li { float: left; width: 92%; padding-left: 30px; font-size: 18px; color: #000; margin-bottom: 20px; position: relative; }
#footer .logo { float: left; margin-top: 40px; }
.address_ul li a { color: #000; transition: all 0.4s ease-in-out; }
.address_ul li a:hover { color: #999; }
.location::before { position: absolute; content: "\f041"; left: 0; top: 0; font-family: FontAwesome; font-size: 20px; }
.mail::before { position: absolute; content: "\f0e0"; left: 0; top: 0; font-family: FontAwesome; font-size: 18px; }
.call::before { position: absolute; content: "\f095"; left: 0; top: 0; font-family: FontAwesome; font-size: 20px; }
.scroll_up { float: left; width: 100%; position: relative; height: 1px; background-color: #bbbbbb; }
.scroll_up .scrollup { position: absolute; top: 50%; right: 15px; transform: translate(0, -50%); }
.copy_right_se { float: left; width: 100%; padding: 15px 0; text-align: center; }
.copy_right_se span { color: #000; font-size: 14px; letter-spacing: 1px; }

/* ----- Media queries (original mediaQuery.css) ----- */
@media only screen and (max-width: 1366px) {
  #banner .img img { height: 550px; }
  #banner .img .banner_caption { width: 90%; top: 50%; }
}
@media only screen and (max-width: 1280px) {
  #banner .img .banner_caption h1 br { display: none; }
}
@media only screen and (max-width: 1024px) {
  #banner .img .banner_caption { width: 80%; }
  #vision_impact .col_inner .vision_ul li { font-size: 14px; }
  .our_text h4 { font-size: 15px; }
  .our_text p { font-size: 14px; }
  .our_text h3 { margin-bottom: 8px; font-size: 17px; }
  #relevance .col_relevance p { font-size: 14px; }
  .address_ul li { font-size: 16px; }
  #footer .logo { margin-bottom: 48px; }
  #who_we_are .who_text_pera p { font-size: 17px; }
  /* fixed backgrounds are ignored or janky on touch devices */
  #who_we_are .who_text_img, #our_commitment, #our_object .our_text_img,
  #what_make .what_text_img, #key_area, #contact { background-attachment: scroll; }
}
@media only screen and (max-width: 1100px) {
  .site-nav ul { gap: 18px; }
  .site-nav a { font-size: 12px; letter-spacing: 0.5px; }
}
@media only screen and (max-width: 991px) {
  body { padding-top: 64px; }
  #header { height: 64px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  #header.is-open .site-nav { grid-template-rows: 1fr; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0; min-height: 0; overflow: hidden; }
  #header.is-open .site-nav ul { padding: 8px 0; }
  .site-nav li { border-top: 1px solid #eee; }
  .site-nav a { display: block; padding: 14px 15px; border-bottom: 0; font-size: 14px; }
  .site-nav a:hover, .site-nav a.is-active { border-bottom: 0; background: #f6f6f6; }
  section[id], #footer { scroll-margin-top: 64px; }
}
@media only screen and (max-width: 1000px) {
  .border-le-ri::before, .border-le-ri::after { content: none; }
  .our_text .our_inner.last { padding-left: 0; }
  .our_text .our_inner.middle { padding: 0; }
  .col_relevance { margin-bottom: 15px; }
  #relevance .middle::before { left: 0; }
  #relevance .middle::after { right: 0; }
  #banner .img .banner_caption { width: 90%; top: 50%; }
  #about { padding-top: 105px; padding-bottom: 25px; }
  #who_we_are .who_text_pera { padding: 50px 0; }
}
@media only screen and (max-width: 960px) {
  #our_commitment .our_col p { width: 95%; margin: 0; }
  #vision_impact .col_vision { margin-bottom: 30px; }
  .our_text .our_inner.first { padding-right: 0; }
  #our_object .our_text_img h2 { width: 96%; }
  #vision_impact .img_inner:hover { transform: scale(1.05); }
}
@media only screen and (max-width: 767px) {
  .about_col.left { margin-top: 30px; padding-left: 15px; }
  .about_col.right { padding-right: 15px; }
  #banner .img .banner_caption h1 { font-size: 18px; }
  #who_we_are .who_text_img { padding: 150px 0; }
  #who_we_are .who_text_pera p { font-size: 17px; line-height: 30px; }
  #our_commitment .our_col { margin-bottom: 15px; }
  .social_ul { margin: 20px 0; }
  #footer .logo { margin-bottom: 48px; }
  #relevance .middle::before, #relevance .middle::after { content: none; }
  #who_we_are .who_text_img .border_left, #our_object .our_text_img h2, #what_make .what_text_img h2, #key_area h2, #relevance h2, #contact h2 { font-size: 24px; }
  .border_left::after { left: 0; bottom: -15px; }
  #about .about_col h2 { margin-bottom: 30px; }
  #relevance p.head, #key_area p { width: 96%; margin-top: 30px; }
  #banner .img img { height: 300px; }
  #banner .img .banner_caption { width: 90%; top: 50%; }
  #what_make .what_text_img h2 { width: 90%; }
  #our_object .our_text_img h2, #what_make .what_text_img h2, #key_area h2, #relevance h2 { text-align: center; }
}
@media only screen and (max-width: 580px) {
  #contact form { width: 94%; }
  #banner .img .banner_caption h1 { font-size: 16px; line-height: 24px; }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #vision_impact .col_inner { min-height: 350px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  #vision_impact .img_inner:hover { transform: none; }
}
