.banner-section {
  width: 100%;
  height: 220vh;
  overflow: visible;
}
.banner-section .background, .banner-section .background--secondary {
  background-color: #4b545e;
  color: #4b545e;
  position: absolute;
  width: 100%;
  height: 120vh;
  z-index: 2;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-mask-image: url(../images/subtract.svg);
  mask-image: url(../images/subtract.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 110%;
  mask-size: 110%;
  -webkit-mask-position: 50% 100%;
  mask-position: 50% 100%;
}
@media (max-width: 73.8025em) {
  .banner-section .background, .banner-section .background--secondary {
    -webkit-mask-image: url(../images/subtract-mobile.svg);
    mask-image: url(../images/subtract-mobile.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
@media (min-width: 48em) and (max-width: 73.8025em) {
  .banner-section .background, .banner-section .background--secondary {
    height: 140vh;
  }
}
.banner-section .background--secondary, .banner-section .background--secondary--secondary {
  z-index: 1;
  background: none;
}
.banner-section .background-image {
  position: absolute;
  width: 100%;
/*
  height: 100vh;
*/
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
/*
  top: 125px;
*/
}
.banner-section .circle-mask, .banner-section .circle-mask--secondary {
  -webkit-mask-image: url(../images/circle-mask.svg);
  mask-image: url(../images/circle-mask.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 560px;
  mask-size: 560px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.banner-section .circle-mask--secondary, .banner-section .circle-mask--secondary--secondary {
  background-color: #f9f5ec;
}
@media (max-width: 61.99em) {
  .banner-section .circle-mask, .banner-section .circle-mask--secondary {
    -webkit-mask-image: url(../images/circle-mask-mobile.svg);
    mask-image: url(../images/circle-mask-mobile.svg);
    -webkit-mask-size: 90%;
    mask-size: 90%;
  }
}
@media (min-width: 48em) and (max-width: 61.99em) {
  .banner-section .circle-mask, .banner-section .circle-mask--secondary {
    -webkit-mask-size: 60%;
    mask-size: 56%;
  }
}
.banner-section .circle-mask--secondary img, .banner-section .circle-mask img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.banner-section .circle-mask--secondary__container, .banner-section .circle-mask__container {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.banner-section .circle, .banner-section .circle-mask--secondary__container, .banner-section .circle-mask__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}
.banner-section .circle {
  width: 100%;
  position: absolute;
}
@media (max-width: 61.99em) {
  .banner-section .circle.dsktp {
    display: none;
  }
}
@media (max-width: 61.99em) {
  .banner-section .circle.hidden-from-lg {
    opacity: 0.3;
  }
}
@media (max-width: 47.99em) {
  .banner-section .circle.hidden-from-lg {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
    opacity: 0.3;
  }
}
.banner-section .circle .circle-container1 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  width: var(--size-circle-one);
  height: var(--size-circle-one);
  padding: 0;
  border-radius: 50%;
  list-style: none;
  margin: 0;
}
.banner-section .circle .circle-container1 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9em;
  height: 9em;
  margin: -4.5em;
}
.banner-section .circle .circle-container1 > :first-of-type {
  -webkit-transform: rotate(0deg) translate(var(--size-circle-one)) rotate(0deg);
  transform: rotate(0deg) translate(var(--size-circle-one)) rotate(0deg);
}
.banner-section .circle .circle-container1 > :nth-of-type(2) {
  -webkit-transform: rotate(90deg) translate(var(--size-circle-one)) rotate(-90deg);
  transform: rotate(90deg) translate(var(--size-circle-one)) rotate(-90deg);
}
.banner-section .circle .circle-container1 > :nth-of-type(3) {
  -webkit-transform: rotate(180deg) translate(var(--size-circle-one)) rotate(-180deg);
  transform: rotate(180deg) translate(var(--size-circle-one)) rotate(-180deg);
}
.banner-section .circle .circle-container1 > :nth-of-type(4) {
  -webkit-transform: rotate(270deg) translate(var(--size-circle-one)) rotate(-270deg);
  transform: rotate(270deg) translate(var(--size-circle-one)) rotate(-270deg);
}
.banner-section .circle .circle-container1 img {
  display: block;
  max-width: 100%;
  -webkit-transition: 15s;
  transition: 15s;
}
.banner-section .circle .circle-container2 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  width: var(--size-circle-two);
  height: var(--size-circle-two);
  padding: 0;
  border-radius: 50%;
  list-style: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  margin: 0;
}
.banner-section .circle .circle-container2 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9em;
  height: 9em;
  margin: -4.5em;
}
.banner-section .circle .circle-container2 > :first-of-type {
  -webkit-transform: rotate(0deg) translate(var(--size-circle-two)) rotate(0deg);
  transform: rotate(0deg) translate(var(--size-circle-two)) rotate(0deg);
}
.banner-section .circle .circle-container2 > :nth-of-type(2) {
  -webkit-transform: rotate(90deg) translate(var(--size-circle-two)) rotate(-90deg);
  transform: rotate(90deg) translate(var(--size-circle-two)) rotate(-90deg);
}
.banner-section .circle .circle-container2 > :nth-of-type(3) {
  -webkit-transform: rotate(180deg) translate(var(--size-circle-two)) rotate(-180deg);
  transform: rotate(180deg) translate(var(--size-circle-two)) rotate(-180deg);
}
.banner-section .circle .circle-container2 > :nth-of-type(4) {
  -webkit-transform: rotate(270deg) translate(var(--size-circle-two)) rotate(-270deg);
  transform: rotate(270deg) translate(var(--size-circle-two)) rotate(-270deg);
}
.banner-section .circle .circle-container2 img {
  display: block;
  max-width: 100%;
  -webkit-transition: 15s;
  transition: 15s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner-section .circle .circle-mobile1 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin: 0;
  position: relative;
  width: var(--size-circle-one);
  height: var(--size-circle-one);
  padding: 0;
  border-radius: 50%;
  list-style: none;
}
.banner-section .circle .circle-mobile1 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9em;
  height: 9em;
  margin: -4.5em;
}
.banner-section .circle .circle-mobile1 > :first-of-type {
  -webkit-transform: rotate(0deg) translate(var(--size-circle-one)) rotate(0deg);
  transform: rotate(0deg) translate(var(--size-circle-one)) rotate(0deg);
}
.banner-section .circle .circle-mobile1 > :nth-of-type(2) {
  -webkit-transform: rotate(90deg) translate(var(--size-circle-one)) rotate(-90deg);
  transform: rotate(90deg) translate(var(--size-circle-one)) rotate(-90deg);
}
.banner-section .circle .circle-mobile1 > :nth-of-type(3) {
  -webkit-transform: rotate(180deg) translate(var(--size-circle-one)) rotate(-180deg);
  transform: rotate(180deg) translate(var(--size-circle-one)) rotate(-180deg);
}
.banner-section .circle .circle-mobile1 > :nth-of-type(4) {
  -webkit-transform: rotate(270deg) translate(var(--size-circle-one)) rotate(-270deg);
  transform: rotate(270deg) translate(var(--size-circle-one)) rotate(-270deg);
}
.banner-section .circle .circle-mobile1 img {
  display: block;
  max-width: 100%;
  -webkit-transition: 15s;
  transition: 15s;
}
.banner-section .circle .circle-mobile2 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin: 0;
  position: relative;
  width: var(--size-circle-two);
  height: var(--size-circle-two);
  padding: 0;
  border-radius: 50%;
  list-style: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}
.banner-section .circle .circle-mobile2 > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9em;
  height: 9em;
  margin: -4.5em;
}
.banner-section .circle .circle-mobile2 > :first-of-type {
  -webkit-transform: rotate(0deg) translate(var(--size-circle-two)) rotate(0deg);
  transform: rotate(0deg) translate(var(--size-circle-two)) rotate(0deg);
}
.banner-section .circle .circle-mobile2 > :nth-of-type(2) {
  -webkit-transform: rotate(90deg) translate(var(--size-circle-two)) rotate(-90deg);
  transform: rotate(90deg) translate(var(--size-circle-two)) rotate(-90deg);
}
.banner-section .circle .circle-mobile2 > :nth-of-type(3) {
  -webkit-transform: rotate(180deg) translate(var(--size-circle-two)) rotate(-180deg);
  transform: rotate(180deg) translate(var(--size-circle-two)) rotate(-180deg);
}
.banner-section .circle .circle-mobile2 > :nth-of-type(4) {
  -webkit-transform: rotate(270deg) translate(var(--size-circle-two)) rotate(-270deg);
  transform: rotate(270deg) translate(var(--size-circle-two)) rotate(-270deg);
}
.banner-section .circle .circle-mobile2 img {
  display: block;
  max-width: 100%;
  -webkit-transition: 15s;
  transition: 15s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner-section__wrapper {
  width: 100%;
  height: 100vh;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  z-index: 3;
}
/*
.header.header-hide {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header.header-show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
     background: #4B545E;
}
*/
