@charset "UTF-8";
/*!
Theme Name: agora-bau
Theme URI: http://underscores.me/
Author: Tasarlab
Author URI: http://tasarlab.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: agora-bau
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

agora-bau is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #666666;
  --color-accent: #1f6f5f;
  --color-border: #ffffff;
  --container-max: 1200px;
  --container-gap: 24px;
  --radius-md: 10px;
  --font-primary: Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1170px;
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
  padding: 48px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #000 !important;
}

.home .site-header {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.home .site-header.sticky {
  background-color: #000 !important;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding-left: var(--container-gap);
  padding-right: var(--container-gap);
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-branding {
  flex-shrink: 0;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: auto;
  max-height: 52px;
}

.main-navigation {
  position: relative;
}

.menu-toggle {
  display: none;
}

.main-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation a {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 5px 15px;
  opacity: 0.7;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  color: #fff;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  opacity: 1;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .site-logo {
    max-height: 60px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
  }
  .menu-toggle::before {
    content: "☰";
    font-size: 21px;
    font-weight: 400;
  }
  .main-navigation.toggled .menu-toggle::before {
    content: "✕";
    font-size: 19px;
  }
  .main-navigation ul {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: calc(var(--container-gap) * -1);
    width: calc(100vw - var(--container-gap) * 2);
    padding: 20px;
    margin: 0;
    background-color: #ececec;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 30;
  }
  .main-navigation.toggled ul {
    display: flex;
  }
  .main-navigation a {
    color: #7f7f7f;
    opacity: 1;
    padding: 6px 0;
  }
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_item > a {
    color: #111;
  }
}
#primary {
  width: min(100% - var(--container-gap) * 2, var(--container-max));
  margin-inline: auto;
}

.home-main {
  width: 100% !important;
  padding: 0;
}

.home-hero {
  width: 100%;
  position: relative;
}

.home-hero__image {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.top-banner .top-banner-cursor {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.top-banner.show-cursor .top-banner-cursor {
  opacity: 1;
  visibility: visible;
}

.top-banner .top-banner-cursor img {
  width: 24px;
  margin: 0 auto;
  transform: translateY(35%);
}

.top-banner.show-cursor .top-banner-cursor img {
  animation: top-banner-cursor-slide 1.6s ease-in-out infinite;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-section-2__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  margin: 0 auto;
}

.home-section-2__image-wrap {
  flex: 0 0 auto;
}

.home-section-2__image {
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.home-section-2__description {
  max-width: 560px;
  text-align: center;
  color: #6e6e6e;
}

.home-section-2__description p {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #7e7d7d;
}

.home-section-2__description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .section-padding:not(.home-hero) {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .home-section-2__inner {
    flex-direction: column;
    gap: 24px;
  }
}
@keyframes top-banner-cursor-slide {
  0% {
    transform: translateY(0);
    opacity: 0.95;
  }
  60% {
    transform: translateY(22px);
    opacity: 0.35;
  }
  100% {
    transform: translateY(28px);
    opacity: 0;
  }
}
article {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

article + article {
  margin-top: 20px;
}

.entry-title,
.page-title {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.25;
}

.entry-content p {
  margin: 0 0 16px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 48px;
  background-color: #000;
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  padding: 56px 0 26px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.site-footer__contact {
  max-width: 360px;
  margin-left: auto;
  margin-bottom: 52px;
  text-align: right;
}

.site-footer__contact p {
  margin: 0 0 8px;
  color: #fff;
}

.site-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

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