.header {
  display: flex;
  height: 200px;
  max-width: 800px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .header {
      height: 101px;
      background-color: #fff;
      align-items: center;
      z-index: 1000; } }
  .header.active {
    position: fixed;
    width: 100vw;
    margin-top: -101px; }
  .header__logo {
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 100%;
    min-width: 300px;
    flex: 1;
    padding: 1rem;
    padding-left: 1rem;
    z-index: 1000; }
    @media screen and (max-width: 480px) {
      .header__logo {
        justify-content: space-between;
        min-width: 100px; } }
    .header__logo h1 {
      display: inline-block;
      margin-left: 25px;
      max-width: 170px; }
      @media screen and (max-width: 480px) {
        .header__logo h1 {
          font-size: 1.2rem;
          max-width: 100px;
          margin-left: 5px; } }
    .header__logo .header-arrow-left {
      margin-top: 30px; }
      @media screen and (max-width: 480px) {
        .header__logo .header-arrow-left {
          margin-top: 18px; } }
    .header__logo .header-arrow-right {
      margin-top: 68px;
      margin-right: 25px; }
      @media screen and (max-width: 480px) {
        .header__logo .header-arrow-right {
          margin-top: 40px; } }
  .header__burger {
    display: none;
    width: 30px;
    height: 30px;
    margin: 0 1rem;
    cursor: pointer;
    z-index: 1000; }
    @media screen and (max-width: 768px) {
      .header__burger {
        display: block; } }
    .header__burger .burger-line {
      width: 100%;
      height: 3px;
      margin-bottom: 5px;
      background-color: #f98c10;
      transition: all 0.3s ease-in-out; }
    .header__burger.active .burger-line.first {
      transform: translate(4px, 11px) rotateZ(45deg); }
    .header__burger.active .burger-line.second {
      opacity: 0; }
    .header__burger.active .burger-line.third {
      transform: translate(5px, -5px) rotateZ(-45deg); }
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff; }
    @media (max-width: 768px) {
      .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        font-size: 2rem; } }
    .header__menu.active {
      transform: translateX(0); }
    .header__menu ul {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%; }
      @media (max-width: 768px) {
        .header__menu ul {
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          margin-top: 150px; } }
      .header__menu ul li {
        list-style: none;
        text-align: center;
        padding: 1rem 0;
        margin: 0 0.5rem; }
        @media (max-width: 768px) {
          .header__menu ul li {
            margin: 0;
            text-align: left; } }
        .header__menu ul li a::after {
          content: '';
          display: block;
          height: 2px;
          margin-top: 2px;
          background-color: #000;
          transition: all 0.3s ease-in-out;
          opacity: 0; }
        .header__menu ul li a:hover::after {
          opacity: 1; }
        .header__menu ul li a.active::after {
          opacity: 1;
          background-color: #f98c10; }

main.home section.hero {
  padding: 0; }
  main.home section.hero figure {
    margin: 0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0; }
  main.home section.hero img {
    object-fit: contain;
    width: 100%; }

main.about .block {
  display: flex; }
  main.about .block.blue .content h3 {
    border-color: #40a4a7; }
  main.about .block .box {
    flex: 1; }
    main.about .block .box.blue {
      background-color: #40a4a7; }
    main.about .block .box.orange {
      background-color: #f98c10; }
    @media screen and (max-width: 630px) {
      main.about .block .box {
        display: none; } }
  main.about .block section {
    flex: 1;
    padding: 1rem 0; }
    main.about .block section .content {
      padding: 1rem; }

.arrow-title-container {
  display: flex;
  align-items: center; }
  .arrow-title-container .arrow-title-arrows {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #f98c10;
    margin-right: 15px; }
    .arrow-title-container .arrow-title-arrows::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.6rem;
      height: 0.6rem;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(135deg);
      animation: double-arrow-gt 1s infinite; }
    .arrow-title-container .arrow-title-arrows::after {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      width: 0.6rem;
      height: 0.6rem;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(135deg); }

* {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333; }

a {
  text-decoration: none;
  color: #333; }

body {
  background: #ededed; }

.heading-double-arrow-gt {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #f98c10; }
  .heading-double-arrow-gt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-top: 4px solid #f98c10;
    border-left: 4px solid #f98c10;
    transform: rotate(135deg);
    animation: double-arrow-gt 1s infinite; }
  .heading-double-arrow-gt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 1rem;
    height: 1rem;
    border-top: 4px solid #f98c10;
    border-left: 4px solid #f98c10;
    transform: rotate(135deg); }

.heading-double-arrow-lt {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #f98c10; }
  .heading-double-arrow-lt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-top: 4px solid #f98c10;
    border-left: 4px solid #f98c10;
    transform: rotate(-45deg); }
  .heading-double-arrow-lt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 1rem;
    height: 1rem;
    border-top: 4px solid #f98c10;
    border-left: 4px solid #f98c10;
    transform: rotate(-45deg);
    animation: double-arrow-gt 1s infinite; }

@media screen and (max-width: 480px) {
  .heading-double-arrow-lt {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.5;
    color: #f98c10; }
    .heading-double-arrow-lt::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.4em;
      height: 0.4em;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(-45deg); }
    .heading-double-arrow-lt::after {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      width: 0.4em;
      height: 0.4em;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(-45deg);
      animation: double-arrow-gt 1s infinite; }
  .heading-double-arrow-gt {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.5;
    color: #f98c10; }
    .heading-double-arrow-gt::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.4em;
      height: 0.4em;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(135deg);
      animation: double-arrow-gt 1s infinite; }
    .heading-double-arrow-gt::after {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      width: 0.4em;
      height: 0.4em;
      border-top: 4px solid #f98c10;
      border-left: 4px solid #f98c10;
      transform: rotate(135deg); } }

main {
  margin: 0 auto;
  max-width: 800px;
  background-color: #fff;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  z-index: 0; }
  main a {
    color: #f98c10;
    font-weight: bold; }
  main.active {
    margin-top: 101px;
    opacity: 0; }

section {
  padding: 1rem;
  margin: 0 auto;
  max-width: 100%;
  background-color: #fff; }

.separator {
  min-height: 75px;
  background-color: #f6f6f6;
  padding: 2rem 1rem;
  margin-bottom: 2rem; }
  .separator h3 {
    margin: 0; }
  .separator.mobile {
    display: none; }
    @media screen and (max-width: 630px) {
      .separator.mobile {
        display: block; } }
  .separator.orange {
    background-color: #f98c10;
    color: #000; }

h2, h3 {
  border-bottom: 2px solid #f98c10;
  display: inline-block; }

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