@font-face {
  font-family: "Lato";
  src: local("Lato-Bold"), local("Lato"), url("/oapp-res/Lato-Bold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
* {box-sizing: border-box; border: none; margin: 0px; padding: 0px;}

body {
	background: #131515;
	background-image: url("/oapp-res/bg.png");
	color: #f1f1f1;
	font-family: "Calibri";
  min-width: 370px;
  font-size: 18px;
	}

header {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px;
  font-family: "Lato", sans-serif;
	font-weight: 600;
}
header > a > img { float: left; height: 130px; transition: filter .3s ease; }
header > a:hover > img { filter: grayscale(.5); }
header > span {
	font-size: 84px;
	letter-spacing: .1em;
	word-spacing: 40px;
  margin-left: 40px;
}
nav {
  margin-left: 140px;
  margin-right: 90px;
  text-transform: uppercase;
  display: block;
}
nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
nav > ul > li > a, nav > ul > li > a:visited {
  color: #dce1e3;
  letter-spacing: .2em;
  font-size: 14px;
	transition: all .3s ease;
	border-bottom: 2px solid #f000;
  padding: 0 3px 5px 3px;
}
nav > ul > li > a:hover {
  color: #dce1e399;
	border-bottom: 2px solid #f006;
}
#navbutton { display: none; }

@media (max-width: 1000px)
{
  header { max-width: 610px; min-width: 370px; }
  header > a > img { height: 80px; }
  header > span { font-size: 55px; word-spacing: 10px; margin-left: 20px; position: relative; top: 10px; }
  nav { margin: 0; clear: both; position: relative; top: 10px; display: block; }
  h1, h2 { margin-left: 5px; }
}

@media (max-width: 630px)
{
  header { max-width: 100vw; margin: 5px; position: relative; }
  header > a > img { height: 40px; }
  header > span { font-size: 30px; word-spacing: 5px; margin-left: 10px; top: 5px; }
  #navbutton { display: block; position: absolute; right: 7px; top: 17px; width: 27px; height: auto; cursor: pointer; transition: filter .3s ease; }
  #navbutton:hover { filter: brightness(.5); }
  nav { display: none; }
  nav.active { display: block; }
  nav > ul {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin: 15px 5px;
  }
  nav > ul > li > a { font-size: 17px; }
}
@media (pointer:coarse) and (max-width: 630px) {
  nav > ul { gap: 30px; }
  nav > ul > li > a { font-size: 20px; }
}
main { margin: 15px auto; max-width: 1000px; padding: 10px; }

footer {
  margin-top: 10px;
  padding: 15px 15px;
  background: #0004;
}



p { line-height: 1.5em; margin: 2em 10px; }
@media all and (max-width: 750px) { p {font-size: 1rem;}}
.tCenter {text-align: center;}
a, a:visited { color: #0288d9; text-decoration: none; }
a:hover { color: #4da4ea; }



div.highlight {
  padding: 15px 20px;
  background: linear-gradient(to right, #0000, #000f 20%, #000f 80%, #0000);
  color: red;
  text-transform: uppercase;
  text-align: center;
  font-family: "Lato";
  font-weight: 600;
  font-size: 1.35em;
  line-height: 2em;
}
div.highlight > h1 { display: inline; font-size: inherit; font-weight: 600; line-height: inherit; }
@media (max-width: 1000px) { div.highlight { font-size: 1em; }}

div.photo-backlight {
  width: clamp(360px, 100vw, 1000px);
  aspect-ratio: 1/0.36;
  padding: 15px;
  position: relative;
  left: -10px;
  margin: 0;
}
div.photo-backlight > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
}
div.photo-backlight > img:last-of-type {
  z-index: -1;
  filter: blur(20px);
}


ul.star {
  clear: both;
  list-style: none;
  padding-left: .5em;
  margin: 1em 0;
  font-size: 1.2em;
  z-index: 3;
}
@media (max-width: 650px) { ul.star { font-size: 1em;} }

ul.star li::before {
  content: "*";
  color: #f006;
  font-family: "Lato";
  font-weight: bold;
  position: relative;
  left: .15em;
  top: .25em;
  z-index: -1;
  font-size: 2em;
}

div.logo-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(to right, #fff0, #ffff 20%, #ffff 80%, #fff0);
  gap: 20px;
  padding: 20px 10px;
}

div.logo-list > img {
  height: 80px;
  width: auto;
}

div.team, div.services {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

div.team > div { position: relative; width: 200px; height: 275px; text-align: center; border-radius: 15px; overflow: hidden; padding: 0;}
div.team > div > img { position: relative; width: 200px; height: 275px; z-index: 1; margin: 0; }
div.team > div > span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #222;
  padding: 5px 0;
  opacity: .8;
  transition: opacity .3s ease;
}
div.team > div:hover > span { opacity: .3; }
div.team > div > span:first-of-type { top: 5px; }
div.team > div > span:last-of-type { bottom: 5px; }

div.services > a > div {
  width: clamp(340px, 100vw, 450px);
  height: clamp(340px, 100vw, 450px);
  border-radius: 30px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

div.services > a > div > img { width: clamp(340px, 100vw, 450px); height: clamp(340px, 100vw, 450px); }
div.services > a > div > span {
  padding: .3em 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  font-family: "Lato";
  font-weight: bold;
  font-size: 1.3em;
  background: #2228;
  color: #fff;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  text-transform: uppercase;
  transition: top .4s ease;
}
div.services > a:hover > div > span {top: 80%;}

div.contact { height: 2em; clear: both; margin: 2em 0; }
div.contact > img { float: left; width: 2em; height: 2em; margin-right: 1em; }
div.contact > a { font-size: 1.6em; margin: .2em 0; }

.collapseHead {
  background-color: #333;
  color: #eee;
  cursor: pointer;
  padding: 1em;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1em;
  border-top: 1px solid #222;
}
.collapseA, .collapseHead:hover {
  background-color: #444;
}
.collapseHead:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.collapseA:after {
  content: "\2212";
}
.collapseBody {
  padding: 0 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #f1f1f1;
  background: transparent;
  border: 1px solid #444;
}

.oawf-sec { display: none; }