.banner {
  position: relative;
  background: var(--mainColor);
  min-height: 800px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1310px) {
  .banner {
    min-height: 0;
  }
}
.banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--bannerBgColor);
  z-index: 1;
}
@media (max-width: 550px) {
  .banner:before {
    display: none;
  }
}
.banner > img, .banner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 550px) {
  .banner > img, .banner video {
    position: relative;
    height: auto;
  }
}
.banner.top-left > img, .banner.top-left video {
  object-position: top left;
}
.banner.top-right > img, .banner.top-right video {
  object-position: top right;
}
.banner.bottom-left > img, .banner.bottom-left video {
  object-position: bottom left;
}
.banner.bottom-right > img, .banner.bottom-right video {
  object-position: bottom right;
}
.banner.top-center > img, .banner.top-center video {
  object-position: top center;
}
.banner.bottom-center > img, .banner.bottom-center video {
  object-position: bottom center;
}
.banner.left-center > img, .banner.left-center video {
  object-position: left center;
}
.banner.right-center > img, .banner.right-center video {
  object-position: right center;
}
.banner .inner_section {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  flex: 1;
  padding: 122px 0 150px;
}
@media (max-width: 1024px) {
  .banner .inner_section {
    padding: 100px 0 80px;
  }
}
@media (max-width: 550px) {
  .banner .inner_section {
    padding: 40px 0 50px;
  }
}
.banner .inner_section .text {
  width: 70%;
  color: #fff;
}
@media (max-width: 1310px) {
  .banner .inner_section .text {
    width: 100%;
  }
}
.banner .inner_section .text h1, .banner .inner_section .text h2, .banner .inner_section .text h3, .banner .inner_section .text h4, .banner .inner_section .text h5, .banner .inner_section .text h6, .banner .inner_section .text p, .banner .inner_section .text ul, .banner .inner_section .text li, .banner .inner_section .text span, .banner .inner_section .text a:not(.wp-block-button__link) {
  color: #fff;
}
.banner .inner_section .text .wp-block-button > a.wp-block-button__link:not(.has-text-color) {
  background: #fff;
  color: var(--mainColor);
}
.banner .inner_section .text .wp-block-button > a.wp-block-button__link:not(.has-text-color)::before {
  display: none;
  content: none;
}
.banner .inner_section .text .wp-block-button > a.wp-block-button__link:not(.has-text-color):hover {
  color: var(--secondColor);
}
.banner .inner_section .text .wp-block-button.is-style-outline > a.wp-block-button__link:not(.has-text-color) {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}
.banner .inner_section .text .wp-block-button.is-style-outline > a.wp-block-button__link:not(.has-text-color):hover {
  color: var(--mainColor);
  background: #fff;
}
.banner .inner_section .text p.is-style-list-check:before, .banner .inner_section .text .external-link:not(.wp-block-button .external-link):after, .banner .inner_section .text ul.is-style-list-check li:before {
  filter: brightness(0) invert(1);
}
.banner .logo_section {
  position: absolute;
  top: calc(100% - 120px);
  right: 0;
  padding: 12px 19px;
  background: #fff;
  z-index: 4;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0px 5.74px 28.702px 6.378px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1024px) {
  .banner .logo_section {
    top: auto;
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    height: auto;
    order: 2;
  }
}
.banner .logo_section .single_logo {
  position: relative;
  width: auto;
  height: 100%;
}
.banner .logo_section .single_logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  font-size: 0;
  color: transparent;
}
.banner .logo_section .single_logo img {
  width: auto;
  max-width: 160px;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .banner .logo_section .single_logo img {
    max-width: 160px;
    max-height: 160px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .banner.with_logo_box {
    margin-bottom: 0;
  }
}
.banner .banner_linkto {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 56px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .banner .banner_linkto {
    bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .banner .banner_linkto {
    bottom: 20px;
    position: relative;
  }
}
.banner .banner_linkto a {
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 160%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner .banner_linkto .arrow_down_section {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--baseTransition);
}
.banner .banner_linkto .arrow_down_section svg {
  transition: var(--baseTransition);
}
.banner .banner_linkto:hover .arrow_down_section svg, .banner .banner_linkto:focus .arrow_down_section svg {
  animation: upDown 0.8s ease-in-out infinite;
}
.editor-styles-wrapper .banner .logo_section {
  position: relative;
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
