.rc-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
.rc-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding-left: 24px;
}
@media screen and (max-width: 787px) {
  .rc-header-inner {
    padding-left: 16px;
  }
}
.rc-header-logo-link {
  display: flex;
  align-items: center;
  padding: 8px 8px 0;
}
@media screen and (max-width: 787px) {
  .rc-header-logo-link {
    padding: 0;
  }
}
.rc-header-logo-img {
  width: 187px;
  min-width: 187px;
}
@media screen and (max-width: 787px) {
  .rc-header-logo-img {
    width: 139px;
    min-width: 139px;
  }
}

.rc-header-nav {
  width: 100%;
  height: 100%;
  padding: 8px 24px 0;
}
@media screen and (max-width: 940px) {
  .rc-header-nav {
    display: none;
  }
}
.rc-header-nav-list {
  gap: 16px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1050px) {
  .rc-header-nav-list {
    gap: 0;
  }
}
.rc-header-nav-link {
  font-size: 14px;
  padding: 0 8px;
}
@media screen and (max-width: 1050px) {
  .rc-header-nav-link {
    font-size: 12px;
  }
}
.rc-header-nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  transition: all 0.3s ease;
  border-radius: 2px;
  background-color: #fc7400;
}
@media screen and (max-width: 940px) {
  .rc-header-nav-underline {
    display: none;
  }
}
.rc-header-cta {
  height: 100%;
}
.rc-header-cta-button {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  height: 100%;
  padding: 0 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #fff;
  border-radius: 10px 0 0 10px;
  background-color: #fc7400;
}
@media screen and (max-width: 787px) {
  .rc-header-cta-button {
    padding: 0 8px;
  }
}
.rc-header-cta-button:hover {
  background-color: #db6501;
}
