/* CSS Document */
body {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  body {
    margin-top: 60px;
  }
}

.newHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  line-height: 1.2;
  letter-spacing: 0;
}
.newHeader__inner {
  display: flex;
  height: 70px;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .newHeader__inner {
    height: 60px;
  }
}
.newHeader__logo {
  width: 266px;
  max-width: 42%;
  margin-left: 5%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .newHeader__logo {
    margin-left: 3%;
  }
}
.newHeader__logo img {
  width: 100%;
  height: auto;
}
.newHeader__nav {
  align-self: stretch;
}
.newHeader__ctaBtn {
  height: 100%;
}
.newHeader__ctaBtn__a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #ff981a;
  height: 100%;
  padding: 0 10px;
  font-feature-settings: 'palt';
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .newHeader__ctaBtn__a {
    padding: 0 8px;
  }
}
.newHeader__ctaBtn__a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  transform: skewX(-20deg);
  background-color: #ff7f00;
  transition: .5s ease left;
  z-index: 1;
  left: -145%;
}
.newHeader__ctaBtn__a:hover {
  opacity: 1;
}
.newHeader__ctaBtn__a:hover:after {
  left: -15%;
}
.newHeader__ctaBtn__txt {
  display: block;
  font-size: 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .newHeader__ctaBtn__txt {
    font-size: 13px;
  }
}
.newHeader__ctaBtn__arrow {
  display: block;
  width: 33px;
  margin: 5px auto 0;
  font-size: 5px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .newHeader__ctaBtn__arrow {
    width: 30px;
  }
}
.newHeader__ctaBtn__arrow img {
  width: 100%;
  height: auto;
}

.circleCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background-color: #FF981A;
  color: #fff;
  font-size: 15px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  padding: 1em;
  border-radius: 50%;
  z-index: 100;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: "palt";
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .circleCta {
    display: none;
  }
}
.circleCta:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  transform: skewX(-20deg);
  background-color: #ff7f00;
  transition: .5s ease left;
  z-index: 1;
  left: -145%;
}
.circleCta:hover {
  opacity: 1;
}
.circleCta:hover:after {
  left: -15%;
}
.circleCta__txt {
  position: relative;
  z-index: 2;
}
