@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/* SCROLL BAR DISABLED */
html {
  overflow-y: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0px;
}

:root {
  --color-body: #000;
  --color-dark: #111;
  --color-accent: #e10000;
  --color-primary: rgba(255, 255, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  list-style: none;
}

body {
  margin-top: 0px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8rem;
  background: var(--color-body);
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}

hr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

/* NAVIGATION */
.bg-dark {
  background-color: var(--color-dark) !important;
  color: #fff !important;
  background-image: url(../resources/pattern.png);
}

.nav-link {
  color: var(--color-primary) !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.nav-link.active {
  color: #e10000 !important;
}

.contact {
  background-color: #e10000 !important;
  border-radius: 4px;
  padding: 2px 16px !important;
  color: #fff !important;
  margin: 6px 4px 0 !important;
}

.contact.active {
  color: #222 !important;
}

/* HERO */
.hero {
  position: relative;
}

.hero ul.social {
  position: absolute;
  top: 48%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}

.hero ul.social i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e10000;
  font-size: 1.5em;
  margin: 2px;
}

/* SECTION */
.main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main img {
  max-width: 400px;
}

.logo img {
  display: block;
  max-width: 100px;
  margin: 20px auto;
}

.goyye,
.fasy,
.sixx {
  position: absolute;
}

.goyye h6,
.fasy h6,
.sixx h6 {
  color: #e10000;
  font-weight: 500;
  margin: 0px;
}

.goyye p,
.fasy p,
.sixx p {
  color: #666;
  font-size: 0.8em;
  margin: 0px;
  line-height: 1.2em;
}

.goyye {
  top: 200px;
  left: 50%;
  -webkit-transform: translateX(-350px);
          transform: translateX(-350px);
  text-align: right;
}

.sixx {
  top: 430px;
  left: 50%;
  -webkit-transform: translateX(110px);
          transform: translateX(110px);
  text-align: left;
}

.fasy {
  top: 110px;
  left: 50%;
  -webkit-transform: translateX(170px);
          transform: translateX(170px);
  text-align: left;
}

/* TIMELINE */
.timeline .timeline-item {
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin: 6px auto;
}

.timeline header {
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  margin: 10px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.timeline header:hover,
.timeline .timeline-item.selected header {
  color: #e10000;
}

.timeline .details {
  background-color: var(--color-body);
  padding: 2em 1em;
}

.timeline .details .description {
  padding: 1em;
}

.timeline .member {
  text-align: center;
}

.timeline .member .name,
.timeline .member .role {
  text-transform: uppercase;
}

.timeline .member .role {
  font-size: 0.9rem;
}

.timeline .member img.timeline-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-filter: grayscale(0.95);
          filter: grayscale(0.95);
}

/* CONTENT */
.content .image {
  margin-top: 10px;
  background-color: #fff;
  padding: 4px;
}

.content .image .mask {
  overflow: hidden;
}

.content .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}

.content .image:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: grayscale(0.8);
          filter: grayscale(0.8);
}

.content .image p {
  padding: 0px;
  margin: 10px;
  margin-bottom: 6px;
  color: var(--color-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/* FOOTER */
.footer-text,
.footer-text a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9em;
}

.footer-text h6 {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.2em;
  font-weight: 100;
}

.footer-text p {
  margin: 0 !important;
}

.footer-text .fa,
.footer-text a .fab {
  color: #e10000;
  font-size: 1em;
  margin: 8px 10px 0 0 !important;
  width: 30px;
  text-align: center;
}

.footer-text .fa {
  float: left;
}

.footer-text a .fab {
  font-size: 1.6em;
  padding: 0px;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/*# sourceMappingURL=custom.css.map */