.btn-primary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-primary {
    padding: 16px 48px;
  }
}

.btn-secondary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}

header {
  padding: 16px 0;
  height: 80px;
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 99999;
}
header.dark {
  border-bottom: 1px solid rgba(237, 239, 242, 0.4);
}
header.dark .container .logo {
  background-image: url("../img/logo-dark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header.dark .container .menu span.fs-12 {
  color: #FFF;
}
header.dark .container .menu div {
  background-image: url("../img/menu-dark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header.dark .container nav a {
  color: #FFF;
}
header.dark .container nav a:last-child {
  background-color: #FFF;
  color: #000;
}
header.open {
  border-bottom-color: transparent;
  transition: 200ms ease;
}
header.open .container .logo {
  background-image: url("../img/logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header.open .container .menu span.fs-12 {
  color: #4F4F4F;
}
header.open .container .menu div {
  background-image: url("../img/menu-close.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .container {
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  height: 44px;
  width: 160px;
  transition: 200ms ease;
  background-image: url("../img/logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media all and (max-width: 767px) {
  header .container .logo {
    height: 37px;
    width: 136px;
  }
}
header .container .menu {
  align-items: center;
  display: none;
  cursor: pointer;
  margin-left: 24px;
}
@media all and (max-width: 1200px) {
  header .container .menu {
    display: flex;
  }
}
header .container .menu span.fs-12 {
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 16px;
}
header .container .menu div {
  height: 20px;
  width: 20px;
  transition: 200ms ease;
  background-image: url("../img/menu.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .container nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media all and (max-width: 1200px) {
  header .container nav {
    display: none;
  }
}
header .container nav a {
  text-transform: uppercase;
  margin: 0 24px;
  font-weight: 500;
}
header .container nav a:last-child {
  margin-right: 0;
}

.open-nav {
  display: none;
  position: absolute;
  height: 100vh;
  top: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 99998;
  padding: 0 40px;
}
@media all and (max-width: 767px) {
  .open-nav {
    padding: 0 16px;
  }
}
.open-nav .container {
  margin: 0 auto;
  padding-top: 160px;
  height: 100%;
}
.open-nav .container nav {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 40px;
}
@media all and (max-width: 767px) {
  .open-nav .container nav {
    padding: 0 16px;
  }
}
.open-nav .container nav a.fs-16 {
  margin: 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  padding: 24px 16px 16px;
  border-bottom: 1px solid #EDEFF2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 374px) {
  .open-nav .container nav a.fs-16 {
    padding: 24px 0 16px;
  }
}
.open-nav .container nav a.fs-16::after {
  content: "";
  height: 16px;
  width: 16px;
  background-image: url("../img/nav-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 16px;
}
.open-nav .container nav a.btn-primary {
  margin: 40px 0 0;
}
@media all and (max-width: 767px) {
  .open-nav .container nav a.btn-primary {
    width: 100%;
    text-align: center;
  }
}