header {
  height: 85px;
  width: 100%;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  header {
    height: 64px;
  }
}
header #header-container {
  width: inherit;
  height: inherit;
  position: fixed;
  z-index: 10;
  background-color: #d7000f;
  transition: 0.3s background-color ease;
}
header #header-container nav {
  height: 100%;
  display: flex;
  padding-bottom: 20px;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  header #header-container nav {
    padding-bottom: 0;
  }
}
header #header-container nav .header-logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  header #header-container nav .header-logo {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 12px;
  }
}
header #header-container nav .header-logo .logo-container {
  width: 180px;
  margin-left: 24px;
}
@media only screen and (max-width: 768px) {
  header #header-container nav .header-logo .logo-container {
    width: 140px;
    margin: 0;
  }
}
header #header-container nav .header-logo .company-name-container {
  margin-left: 24px;
  width: 320px;
}
@media only screen and (max-width: 768px) {
  header #header-container nav .header-logo .company-name-container {
    width: 220px;
    margin: 0;
  }
}
header #header-container nav .header-logo .company-name-container svg {
  width: 100%;
}
header #header-container ol {
  display: flex;
  justify-content: space-between;
  width: 560px;
  margin-right: 28px;
}
@media only screen and (max-width: 1200px) {
  header #header-container ol {
    display: none;
  }
}
header #header-container ol li {
  height: 100%;
  position: relative;
}
header #header-container ol li a {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all ease 0.3s;
  cursor: pointer;
  background-clip: text;
  -webkit-background-clip: text;
  color: white;
}
header #header-container ol li a h2 {
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.2;
}
header #header-container ol li a span {
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: "Poppins";
}
header #header-container ol li:before {
  content: "";
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  display: block;
  height: 4px;
  width: 100%;
  background-color: black;
  transition: all ease 0.3s;
}
header #header-container ol li:hover a {
  color: transparent;
  background-color: black;
}
header #header-container ol li:hover::before {
  display: block;
  opacity: 1;
}
header #header-container .sp-nav-icon-container {
  display: none;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  header #header-container .sp-nav-icon-container {
    display: flex;
    align-items: center;
  }
}
header #header-container .sp-nav-icon-container .sp-nav-icon {
  height: 100%;
  margin-right: 40%;
}
@media only screen and (max-width: 1200px) {
  header #header-container .sp-nav-icon-container .sp-nav-icon {
    width: 64px;
  }
}
@media only screen and (max-width: 768px) {
  header #header-container .sp-nav-icon-container .sp-nav-icon {
    width: 50px;
  }
}
header #header-container .sp-nav-icon-container .sp-nav-icon svg {
  cursor: pointer;
}
header #header-container .sp-nav-icon-container .sp-nav-icon svg line {
  transition: transform 0.3s;
  transform-origin: center;
}
header #header-container .sp-nav-icon-container .sp-nav-btn-open line:first-of-type {
  transform: translate(-4px, -4.35px) rotate(-225deg);
}
header #header-container .sp-nav-icon-container .sp-nav-btn-open line:nth-last-of-type(2) {
  opacity: 0;
}
header #header-container .sp-nav-icon-container .sp-nav-btn-open line:last-of-type {
  transform: translate(-4px, 4.25px) rotate(225deg);
}
header .sp-side-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
header .sp-side-nav-wrapper #sp-side-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  transition: 0.3s all ease;
}
header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg {
  margin-left: auto;
  width: 30%;
  height: 100%;
  padding-top: 50px;
  background-color: rgba(62, 58, 57, 0.9);
}
@media only screen and (max-width: 768px) {
  header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg {
    width: 80%;
  }
}
header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg li {
  height: 100px;
}
header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg li a {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: white;
  transition: all ease 0.3s;
  cursor: pointer;
}
header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg li a h2 {
  font-size: 1.4rem;
  line-height: 24px;
}
header .sp-side-nav-wrapper #sp-side-nav .sp-side-nav-bg li a span {
  color: #d7000f;
  font-size: 2rem;
  font-family: "Poppins";
}
header .sp-side-nav {
  transform: translateX(100%);
}
header .sp-side-nav-open {
  transform: translateX(0);
}

#header-padding {
  position: fixed;
  margin-top: 85px;
  z-index: 1;
  height: 16vw;
  width: 100%;
  background-color: #d7000f;
  clip-path: polygon(0% 0%, 100% 0%, 100% 1px, 0% 100%);
  transition: 0.3s background-color ease;
}
@media only screen and (max-width: 768px) {
  #header-padding {
    margin-top: 64px;
  }
}/*# sourceMappingURL=header.css.map */