@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  contain: strict;
  display: inline-block;
  height: 20px;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 90;
}

.menuWrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 19px 19px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: end;
}

@media (min-width: 1025px) {
  .menuWrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}

.mainMenu {
  display: flex;
  flex-direction: column;
  margin: 25px 0 0;
  padding: 0;
  gap: 50px;
}

@media (min-width: 1025px) {
  .mainNav,
  .mainNav.active .mainMenu {
    animation: visible 0.3s forwards;
  }

  .mainNav.close .mainMenu {
    animation: hidden 0.3s forwards;
  }
}

@media (max-width: 1024px) {
  .mainNav.active {
    animation: visible 0.3s forwards;
  }

  .mainNav.close {
    animation: hidden 0.3s forwards;
    display: flex;
  }
}

.mainNav {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .mainNav {
    display: none;
  }
}

@media (min-width: 1025px) {
  .mainMenu {
    flex-direction: row;
    margin-top: 0;
  }

  .mainNav {
    flex-direction: row;
  }

  .mainNav.hidden {
    animation: hidden 0.3s forwards;
  }

  .mainNav.visible {
    animation: visible 0.3s forwards;
  }
}

@keyframes hidden {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes visible {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainNav.hidden.active {
  animation: visible 0.3s forwards;
}

.mainNav.hidden.close {
  animation: hidden 0.3s forwards;
}

.menuItemLink {
  font-size: 16px;
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.menuItemLink:not(:first-child):last-child {
  color: var(--primary);
}

.menuItemLink.active {
  color: var(--primary);
}

.menuButton {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  box-shadow: 0 10px 20px #0000001a;
  border-radius: 50%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .menuButton {
    display: none;
  }
}

.barWrapper {
  position: relative;
  width: 16px;
  height: 14px;
}

.menuButtonBar {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  right: 0;
}

.menuButtonBar:nth-child(1) {
  top: 0;
}

.menuButtonBar:nth-child(2) {
  top: 6px;
}

.menuButtonBar:nth-child(3) {
  top: 12px;
}

.menuAside {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 1024px) {
  .menuAside {
    flex-direction: column;
    align-items: start;
    gap: 50px;
    margin-top: 50px;
  }
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 19px;
  width: 100%;
}

@media (min-width: 1025px) {
  .container {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
.sliderService {
  align-items: center;
}
.twoColumns {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 1025px) {
  .twoColumns {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  #hero.twoColumns {
    gap: 15px;
  }
}

.wp-block-columns {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  flex-flow: column-reverse;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1025px) {
  .wp-block-columns {
    padding-top: 160px;
    padding-bottom: 160px;
    flex-direction: row;
  }

  .wp-block-columns .wp-block-column {
    width: 50%;
  }
}

.button {
  padding: 12px 22px;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 5px;
  border-width: 0;
  box-shadow: 0 10px 20px #0003;
  cursor: pointer;
  height: fit-content;
  width: fit-content;
  transition: 0.5s;
}

.button:hover {
  transform: scale(1.05);
}

.heading {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0;
}
.wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-layout-5.wp-block-group-is-layout-flex {
  align-items: start;
}

@media (min-width: 481px) {
  .heading {
    font-size: 54px;
  }
  .heading-newsletter {
    font-size: 42px;
  }
}

.subHeading {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

.redText {
  font-size: 18px;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 26px;
}

.grayText {
  font-size: 18px;
  color: var(--gray);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 26px;
  font-weight: 400;
}

.whiteText {
  font-size: 18px;
  color: var(--white);
}

.contactForm {
  padding: 30px 19px 40px;
  position: fixed;
  inset: 0;
  background-color: #fffffffc;
  z-index: 99;
  justify-content: center;
  align-items: center;
  display: flex;
  display: none;
  overflow-y: scroll;
}

.contactForm.active {
  display: flex;
  animation: visible 0.3s forwards;
}

.contactForm.close {
  display: flex;
  animation: hidden 0.3s forwards;
}

.contactFormContent {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  flex-direction: column-reverse;
}

.contactFormLeft,
.contactFormRight {
  width: 100%;
  position: relative;
}

@media (min-width: 769px) {
  .contactFormLeft,
  .contactFormRight {
    width: 50%;
  }

  .contactFormContent {
    flex-direction: row;
  }
}

.contactFormRight {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 30px;
}

@media (min-width: 769px) {
  .contactFormRight {
    justify-content: center;
    margin-bottom: 0;
  }
}

.contactFormLeft {
  /* box-shadow: 0 40px 80px #0003;
  border-radius: 5px; */
  padding: 30px 30px 50px;
  /* background-color: var(--white); */
}

.contactFormText {
  font-size: 18px;
  color: var(--gray);
}

.closeContactForm {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--white);
  border: none;
  cursor: pointer;
}

.closeContactForm .ionicon {
  width: 40px;
  height: 40px;
}

.closeContactForm .ionicon path {
  stroke: var(--primary);
}

.formRightInside {
  width: fit-content;
  height: fit-content;
}

.formSocial {
  margin-top: 28px;
}

.formSocial .ionicon {
  width: 20px;
  height: 20px;
}

.formSocial .ionicon path {
  fill: var(--gray);
}

.techGrid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (min-width: 481px) {
  .techGrid {
    gap: 25px;
  }
}

@media (min-width: 769px) {
  .techGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .techGrid {
    width: 70%;
  }
}

.techCard {
  padding: 25px 20px 20px;
  box-shadow: 0 10px 40px #0000001a;
  border-radius: 5px;
}

@media (min-width: 481px) {
  .techCard {
    padding: 35px 30px 30px;
  }
}

.techCardImg {
  width: 100%;
  max-height: 35px;
  object-fit: contain;
  object-position: left;
}

.techCardText {
  margin-bottom: 0;
  margin-top: 16px;
  color: var(--gray);
  font-size: 16px;
}

@media (min-width: 1025px) {
  .techContent {
    width: 30%;
  }
}

.centered {
  text-align: center;
  max-width: 495px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1025px) {
  .hero.container {
    padding: 86px 19px;
  }

  .hero.twoColumns {
    gap: 0px;
  }
}

.heroLeft {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1025px) {
  .heroLeft {
    max-width: 485px;
  }
}

.heroRight {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* aspect-ratio: 1 / 1;
    max-height: 680px;
    max-width: 680px; */
  margin-left: auto;
  margin-right: auto;
}

.heroLineWrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 5px;
}

.heroLineWrapper:nth-child(1) {
  width: 50%;
  height: 50%;
  z-index: 50;
  rotate: 90deg;
}

.heroLineWrapper:nth-child(2) {
  width: 62.5%;
  height: 62.5%;
  z-index: 40;
  rotate: 180deg;
}

.heroLineWrapper:nth-child(3) {
  width: 75%;
  height: 75%;
  z-index: 30;
  rotate: 285deg;
}

.heroLineWrapper:nth-child(4) {
  width: 87.5%;
  height: 87.5%;
  z-index: 20;
  rotate: 170deg;
}

.heroLineWrapper:nth-child(5) {
  width: 100%;
  height: 100%;
  z-index: 10;
  rotate: 10deg;
}

.heroLine {
  border: 1px solid var(--bg);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.heroLineCover {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 0;
  background-color: var(--white);
  border-radius: 15% 15% 50% 50%;
}

.heroLineDot {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: absolute;
}

@media (min-width: 481px) {
  .heroLineDot {
    width: 15px;
    height: 15px;
    border-width: 1.5px;
  }

  .heroLine {
    border-width: 1.5px;
  }

  .heroLineWrapper {
    padding: 10px;
  }
}

@media (min-width: 769px) {
  .heroLineDot {
    width: 18px;
    height: 18px;
  }
}

.heroLineWrapper:nth-child(1) .heroLineDot.dotLeft {
  left: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(1) .heroLineDot.dotRight {
  right: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(2) .heroLineDot.dotLeft {
  left: 4%;
  top: 30%;
}

.heroLineWrapper:nth-child(2) .heroLineDot.dotRight {
  right: 4%;
  top: 30%;
}

.heroLineWrapper:nth-child(3) .heroLineDot.dotLeft {
  left: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(3) .heroLineDot.dotRight {
  right: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(4) .heroLineDot.dotLeft {
  left: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(4) .heroLineDot.dotRight {
  right: 10%;
  top: 19%;
}

.heroLineWrapper:nth-child(5) .heroLineDot.dotLeft {
  left: 6%;
  top: 26%;
}

.heroLineWrapper:nth-child(5) .heroLineDot.dotRight {
  right: 6%;
  top: 26%;
}

@media (min-width: 768px) {
  .heroLineWrapper:nth-child(1) .heroLineDot.dotLeft {
    left: 11.5%;
    top: 18.5%;
  }

  .heroLineWrapper:nth-child(1) .heroLineDot.dotRight {
    right: 11.5%;
    top: 18.5%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotLeft {
    left: 0;
    top: 34%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotRight {
    right: 0;
    top: 34%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotLeft {
    left: 8%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotRight {
    right: 8%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotLeft {
    left: 8%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotRight {
    right: 8%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotLeft {
    left: 4%;
    top: 27%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotRight {
    right: 4%;
    top: 27%;
  }
}

@media (min-width: 481px) {
  .heroLineWrapper:nth-child(1) .heroLineDot.dotLeft {
    left: 11.5%;
    top: 18.5%;
  }

  .heroLineWrapper:nth-child(1) .heroLineDot.dotRight {
    right: 11.5%;
    top: 18.5%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotLeft {
    left: 4%;
    top: 32%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotRight {
    right: 4%;
    top: 32%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotLeft {
    left: 11%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotRight {
    right: 11%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotLeft {
    left: 11%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotRight {
    right: 11%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotLeft {
    left: 7%;
    top: 25%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotRight {
    right: 7%;
    top: 25%;
  }
}

@media (min-width: 769px) {
  .heroLineWrapper:nth-child(1) .heroLineDot.dotLeft {
    left: 11%;
    top: 17.5%;
  }

  .heroLineWrapper:nth-child(1) .heroLineDot.dotRight {
    right: 11%;
    top: 17.5%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotLeft {
    left: 3%;
    top: 32.5%;
  }

  .heroLineWrapper:nth-child(2) .heroLineDot.dotRight {
    right: 3%;
    top: 32.5%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotLeft {
    left: 10%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(3) .heroLineDot.dotRight {
    right: 10%;
    top: 19%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotLeft {
    left: 10%;
    top: 19.5%;
  }

  .heroLineWrapper:nth-child(4) .heroLineDot.dotRight {
    right: 10%;
    top: 19.5%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotLeft {
    left: 6%;
    top: 25.5%;
  }

  .heroLineWrapper:nth-child(5) .heroLineDot.dotRight {
    right: 6%;
    top: 25.5%;
  }
}

.heroLineWrapper:nth-child(1) .heroLineCover {
  top: 20%;
}

.heroLineWrapper:nth-child(2) .heroLineCover {
  top: 30%;
}

.heroLineWrapper:nth-child(3) .heroLineCover {
  top: 20%;
}

.heroLineWrapper:nth-child(4) .heroLineCover {
  top: 20%;
}

.heroLineWrapper:nth-child(5) .heroLineCover {
  top: 25%;
}

.heroLogoWrapper {
  width: 30%;
  height: 30%;
  border-radius: 50%;
  z-index: 60;
  background-color: var(--white);
  box-shadow: 0 40px 80px #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#steps.column {
  gap: 50px;
}

#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}

#hero .contact {
  margin-top: 10px;
}

.discoverMore {
  position: absolute;
  bottom: 70px;
  left: 45%;
  right: 45%;
  background-color: var(--white);
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .discoverMore {
    bottom: 40px;
  }
}

.discoverMore span:nth-child(1) {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}

.discoverMore span:nth-child(1) .ionicon {
  width: 20;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

.discoverMore span:nth-child(1) .ionicon:nth-child(1) path {
  stroke: var(--bg);
}

.discoverMore span:nth-child(1) .ionicon:nth-child(1) {
  margin-top: -5px;
  margin-bottom: -10px;
}

.discoverMore span:nth-child(1) .ionicon:nth-child(2) path {
  stroke: var(--gray);
}

.discoverMore span:nth-child(2) {
  text-align: start;
  color: var(--gray);
  font-size: 14px;
}

#service {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.stepsWrapper {
  width: 100%;
}

.stepsContent {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

@media (min-width: 1025px) {
  .stepsContent {
    flex-direction: row;
  }
}

.stepsItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.stepsItem img {
  margin-bottom: 18px;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
}

.stepsItem h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.stepsItem p {
  margin: 0;
  color: var(--primary);
  font-weight: 400;
}

.stepsItemRed {
  padding: 12px 14px 14px;
  background-color: var(--primary);
  border-radius: 5px;
  box-shadow: 0 40px 80px #0003;
}

.stepsItemRed h3,
.stepsItemRed p {
  color: var(--white);
}

.stepsLine,
.miniCircle {
  display: none;
}

@media (min-width: 1025px) {
  .stepsLine {
    display: flex;
    position: absolute;
    top: 93px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, #9dafbd, #ea3854);
  }

  .miniCircle {
    display: flex;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 10px 20px #0000004d;
    z-index: 20;
  }

  .miniCircle.first {
    margin-bottom: 24px;
    border: 4px solid #9dafbd;
  }

  .miniCircle.second {
    margin-bottom: 24px;
    border: 4px solid #b08295;
  }

  .miniCircle.third {
    margin-bottom: 24px;
    border: 4px solid #c85c72;
  }

  .miniCircle.fourth {
    margin-bottom: 14px;
    border: 4px solid #ea3854;
  }
}

.contentBlock {
  padding: 0 19px;
}

@media (max-width: 1024px) {
  .contentBlock {
    margin-bottom: 50px;
  }
}

.policy {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
}

footer p {
  margin: 0;
}

.footerFirst {
  display: flex;
  flex-direction: column;
  margin-bottom: 84px;
  gap: 25px;
}

@media (min-width: 481px) {
  .footerFirst {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.logoLink {
  margin-right: 50px;
  position: absolute;
  left: 19px;
}

@media (min-width: 1024px) {
  .logoLink {
    position: relative;
    left: 0;
  }
}

.headerLogo,
.footerLogo {
  width: 112px;
}

.footerSecond {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 42px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 1025px) {
  .footerSecond {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footerLast {
  font-size: 14px;
  color: var(--gray);
}

.redHeading {
  font-size: 34px;
  color: var(--primary);
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 20px;
}

.boldHeading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}

.flexColumn {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.mail {
  color: var(--gray);
  margin-bottom: 10px;
}

.phone {
  color: var(--gray);
  text-decoration: none;
}

.columnContent {
  line-height: 1.5;
}

.flexRow {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

footer .ionicon {
  width: 20px;
  height: 20px;
}

footer .ionicon path {
  fill: var(--gray);
}

.privacyContent {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 19px 0;
}

.badgeContainer {
  padding-left: 19px;
  padding-right: 19px;
}

.badge {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 31px;
  border-radius: 5px;
  background-color: var(--white);
  box-shadow: 0 10px 20px #0000001a;
  margin-bottom: 32px;
}

.badgeGray {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 4px;
}

.badgeRed {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}

.langMenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin: 0 40px 0 0;
  height: fit-content;
  list-style: none;
}

@media (max-width: 1024px) {
  .langMenu {
    padding: 0;
    margin: 0;
  }
}

.langMenu img {
  width: 100%;
  height: 100%;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 20px #0003;
}

.langFlag {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 20px #0003;
}

.tabsContainer {
  padding-left: 19px;
  padding-right: 19px;
}

.tabButton {
  padding: 12px 10px 11px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #9dafbd;
  background-color: #fff;
  min-width: 122px;
  cursor: pointer;
}

.tabButton.active {
  box-shadow: 0 10px 20px #0003;
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 28px;
}

.tabsWrapper {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tabElement {
  width: 100%;
  max-width: 274px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background-color: var(--primary);
  padding: 28px 31px 26px;
  border-radius: 5px;
  min-height: 91px;
}

.tabElementCount {
  font-size: 14px;
  margin: 0;
  border-radius: 50%;
  background-color: var(--white);
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 10px 20px #0003;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabElementContent {
  margin: 0;
  color: var(--white);
}

.tabContent {
  display: flex;
  flex-direction: column;
  gap: 18px;
  display: none;
}

.tabContent.active,
.tabsContentWrapper {
  display: flex;
}

.sliderWrapper {
  position: relative;
}

.mainSlider {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 70;
}

@media (min-width: 1025px) {
  .mainSlider {
    /* bottom: 5%; */
    margin-left: 60%;
  }
}

@media (min-width: 1125px) {
  .mainSlider {
    /* bottom: 10%; */
    margin-left: 60%;
  }
}

@media (min-width: 1280px) {
  .mainSlider {
    /* bottom: 15%; */
    margin-left: 50%;
  }
}

/* .splide__slide:nth-child(3) {
    opacity: 1 !important;
} */

.mainSliderArrows.splide__arrows {
  display: flex;
  flex-direction: row;
  gap: 30px;
  z-index: 80;
}

.mainSliderArrows .splide__arrow {
  background-color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 20px #0000001a;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.mainSliderArrows .splide__arrow:hover {
  background-color: var(--primary);
}

.mainSliderArrows .splide__arrow:hover .ionicon path {
  stroke: var(--white);
}

.mainSliderArrows .splide__arrow span,
.mainSliderArrows .splide__arrow .ionicon {
  min-height: 20px;
  min-width: 20px;
  height: 20px;
  width: 20px;
}

.mainSliderArrows .splide__arrow .ionicon path {
  stroke: var(--black);
}

.mainSliderArrows .splideArrowText {
  position: absolute;
  left: 130px;
  opacity: 0;
  transition: 0.25s;
  font-size: 14px;
  color: var(--gray);
}

.mainSliderArrows .splide__arrow:hover .splideArrowText {
  opacity: 1;
}

.mainSlider .splide__slide {
  background-color: var(--bg);
  border-radius: 5px;
  padding: 35px;
  box-shadow: 0 40px 80px #0000001a;
  opacity: 0;
  transition: 0.5s;
}

.mainSlider .splide__slide.is-active {
  background-color: var(--white);
  opacity: 1;
}

.mainSlider .splide__slide.is-next {
  opacity: 1;
}

.mainSlider .splide__slide.is-prev {
  opacity: 0;
}

.mainSlider .splideSlideHead {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.mainSlider .splideSlideText p {
  margin: 0;
  color: var(--primary);
}

.mainSlider .splide__track {
  overflow: visible;
  z-index: 70;
}

.mainSlider .splide__list {
  max-width: 360px;
}

.mainSlider .custom-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: -30px;
  left: 10px;
  z-index: 70;
}

.mainSlider .current-slide {
  font-size: 18px;
  color: var(--primary);
}

.mainSlider .slide-divider,
.mainSlider .total-slides {
  font-size: 14px;
  font-weight: 200;
  color: var(--gray);
}

.mainSlider .splideContainer {
  position: relative;
}

@media (max-width: 360px) {
  .mainSlider .splide__slide {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .mainSlider {
    bottom: 0;
    left: 0;
  }

  .mainSliderArrows {
    position: relative;
    margin-top: 50px;
  }

  #service {
    padding-bottom: 120px;
  }
}

.secondContainer {
  padding-top: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
  .mainSlider {
    left: 10%;
    bottom: 12%;
  }

  .mainSliderArrows {
    position: relative;
    margin-top: 50px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .mainSlider {
    left: 40%;
    bottom: 10%;
  }

  .mainSliderArrows {
    position: relative;
    margin-top: 50px;
  }
}

@media (min-width: 1025px) and (max-width: 1125px) {
  .mainSliderArrows {
    /* position: absolute;
        bottom: 12% */
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1125px) and (max-width: 1280px) {
  .mainSliderArrows {
    /* position: absolute;
        bottom: 15% */
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1281px) {
  .mainSliderArrows {
    position: absolute;
    /* bottom: 22% */
    bottom: 5%;
    left: 50%;
    transform: rotateX("-50%");
  }
}

@media (max-width: 1025px) {
  .mainSliderArrows {
    position: relative;
    margin-top: 50px;
    transform: translate(0, 0);
  }
}

.iconsSlider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconsSlider .splide__slide img {
  width: 100%;
  height: 100%;
  max-width: 82px;
  max-height: 82px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 420px) {
  .iconsSlider .splide__slide img {
    transform: scale(0.5);
  }
}

@media (min-width: 420px) and (max-width: 620px) {
  .iconsSlider .splide__slide img {
    transform: scale(0.8);
  }
}

.wpcf7-email {
  border: 1px solid #d1dbe3;
  border-radius: 5px;
  height: 60px;
  width: 100%;
  padding: 15px;
}

.wpcf7-textarea,
.wpcf7-text {
  border: 1px solid #d1dbe3;
  border-radius: 5px;
  width: 100%;
  resize: none;
  padding: 22px 15px;
  margin-top: 15px;
}

.wpcf7-email::placeholder,
.wpcf7-textarea::placeholder,
.wpcf7-text::placeholder {
  color: var(--gray);
  font-size: 14px;
}

.wpcf7-submit {
  background-color: var(--primary);
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  width: 120px;
  border: none;
  border-radius: 5px;
  height: 40px;
  position: absolute;
  bottom: -20px;
  left: 30px;
  cursor: pointer;
}

.wpcf7-response-output {
  margin-top: 25px;
  color: var(--gray);
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  color: var(--primary);
}

.screen-reader-response {
  display: none;
}

.lndjoRWjp3ye2x5XZ29y .Aml8NHGXmSBh_55anACw {
  border-radius: 0 !important;
}

.pin {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.secondSlider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  overflow: hidden;
}

.splide__arrow--next.animate {
  animation: arrowNext 6s infinite ease-in-out;
  transition: 0.3s;
}

.splide__arrow--next.animate .ionicon path {
  animation: arrowNextIcon 6s infinite ease-in-out;
}

@keyframes arrowNext {
  0% {
    background-color: var(--white);
  }

  50% {
    background-color: var(--white);
  }

  75% {
    background-color: var(--primary);
  }

  to {
    background-color: var(--white);
  }
}

@keyframes arrowNextIcon {
  0% {
    stroke: var(--black);
  }

  45% {
    stroke: var(--black);
  }

  55% {
    stroke: var(--white);
  }

  75% {
    stroke: var(--white);
  }

  to {
    stroke: var(--black);
  }
}

.tabs button.animate {
  animation: tabNext 6s infinite ease-in-out;
}

@keyframes tabNext {
  0% {
    border-color: var(--gray);
    color: var(--gray);
  }

  50% {
    border-color: var(--gray);
    color: var(--gray);
  }

  75% {
    border-color: var(--primary);
    color: var(--primary);
  }

  to {
    border-color: var(--gray);
    color: var(--gray);
  }
}

.fileFormWrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px #0000001a;
}

.fileFormContent {
  padding: 16px 16px 25px;
}

.fileFormWrapper.ctaBG {
  background-position: center;
  background-size: cover;
}

.fileFormContent h2,
#fileForm h2 {
  font-weight: 500;
}

@media (min-width: 1025px) {
  .fileFormWrapper {
    display: flex;
    flex-direction: row;
  }

  .fileFormImg {
    width: 30%;
  }

  .fileFormContent {
    width: 70%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 481px) {
  .fileFormContent h2,
  #fileForm h2 {
    font-size: 42px;
    font-weight: 500;
  }
}

.fileFormImg {
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 1024px) {
  .fileFormImg {
    max-height: 250px;
  }
}

a.button {
  display: block;
  text-decoration: none;
}

@media (min-width: 481px) and (max-width: 1024px) {
  .fileFormImg {
    max-height: 250px;
  }
}

#fileForm {
  padding-top: 0;
}

.fileFormLeft {
  position: relative;
}

.fileFormLeft,
.fileFormRight {
  width: 100%;
}

@media (min-width: 1025px) {
  .fileFormLeft,
  .fileFormRight {
    width: 50%;
  }

  #fileForm {
    padding-bottom: 0;
  }
}

.fileFormRight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fileFormRight2 {
  margin-top: 25px;
}
.formImg {
  aspect-ratio: 1/1;
  max-width: 350px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 20px 40px #0000001a;
}

.fileFormRight a.button {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fileFormRight2 a.button {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fileFormRight2.active a.button.download {
  opacity: 1;
  transition: 0.5s;
  pointer-events: all;
  z-index: 10;
}

.fileFormRight.active .formImg {
  opacity: 0.2;
  transition: 0.5s;
}

.fileFormLeft .wpcf7-submit {
  position: inherit;
  margin-top: 15px;
}

.chatForm {
  margin-top: 20px;
  height: 60px;
  border: 1px solid #d1dbe3;
  border-radius: 5px;
  max-width: 430px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.chatFormInput {
  width: 80%;
  height: 100%;
  border: none;
  font-size: 14px;
  color: #9dafbd;
}

.chatFormInput::placeholder {
  font-size: 14px;
  color: #9dafbd;
}

.chatFormInput:focus-visible {
  outline: none;
}

.chatFormButton {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--primary);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px;
}

.chatFormButton svg {
  width: 100%;
  height: 100%;
}

.chatFormButton svg path {
  fill: #fff;
}

.wpaicg_toggle {
  position: relative;
  opacity: 0;
}

.openSvgIcon,
.closeSvgIcon {
  height: 40px;
  width: 40px;
}

.closeSvg {
  position: absolute;
  top: 0;
  opacity: 0;
}

.wpaicg_toggle.wpaicg_widget_open .openSvg {
  opacity: 0;
  transition: 0.3s;
}

.wpaicg_toggle.wpaicg_widget_open .closeSvg {
  opacity: 1;
  transition: 0.3s;
}

.loadingSvgIcon {
  width: 80px;
  margin-top: -30px;
  margin-left: 5px;
}

.wpaicg-chatbox {
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px #0003;
}

@media (min-width: 480px) {
  .wpaicg-chatbox {
    width: 100% !important;
    max-width: 500px !important;
    right: 0 !important;
    left: auto !important;
  }
}

.wpaicg-chatbox-type {
  background-color: #fff !important;
  padding: 6px !important;
}

.wpaicg-chatbox-typing {
  resize: none !important;
  padding: 2px !important;
}

.wpaicg-chatbox-typing:focus-visible {
  outline: none;
}

.wpaicg-chatbox-send {
  background-color: var(--primary);
  border-radius: 5px;
}

.wpaicg-chatbox-send svg {
  padding: 8px;
}

.wpaicg-chatbox-typing::placeholder {
  color: var(--gray);
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog .grayText {
  margin-bottom: 85px;
}

.blogList {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  width: 100%;
}

@media all and (min-width: 768px) {
  .blogList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blogList .listElement {
  border: 1px solid #d1dbe3;
  border-radius: 5px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blogList .listElement .elementInfo {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 600;
  color: #9dafbd;
  padding-bottom: 2px;
}

.blogList .listElement .elementInfo p {
  margin: 0;
}

.blogList .listElement .elementInfo p:nth-child(2) {
  margin-left: 10px;
  margin-right: 10px;
}

.blogList .listElement h3 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 400;
}

@media all and (min-width: 768px) {
  .blogList .listElement:first-child h3 {
    font-size: 34px;
  }
}

.blogList .listElement .elementExcerpt {
  font-size: 14px;
  color: #9dafbd;
  padding-bottom: 15px;
}

.blogList .listElement:first-child {
  grid-row-end: span 2;
  position: relative;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .blogList .listElement:first-child .authorInfo p:first-child,
  .blogList .listElement:first-child .elementContent p {
    color: #000;
  }
}

.blogList .listElement .elementBackground {
  display: none;
}

.blogList .listElement:first-child .elementBackground {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width: 767px) {
  .blogList .listElement:first-child .elementBackground {
    display: none;
  }

  .blogList .listElement:first-child {
    border-color: var(--primary);
  }
}

.blogList .listElement .elementContent {
  z-index: 90;
}

.blogList .listElement .elementAuthor {
  z-index: 90;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.blogList .listElement .authorAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
}

.blogList .listElement .authorInfo p {
  color: #9dafbd;
  margin: 0;
}

.blogList .listElement .authorInfo p:first-child {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
}

.blogList .listElement .authorInfo p:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.single-post-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.blog-link {
  color: var(--primary);
  font-size: 21px;
  text-decoration: none;
}

.single-post-title {
  padding: 25px 0;
}

.single-post-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 5px;
}

.single-post .container {
  padding-bottom: 0;
}

.single-post-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #6d6d6d;
  max-width: 750px;
}

.single-post-content .first-column p {
  font-size: 18px;
  font-weight: 500;
  color: #9dafbd;
}

.single-post-content .third-column .elementAuthor {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.single-post-content .third-column .elementAuthor .authorAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
}

.single-post-content .third-column .elementAuthor .authorInfo p {
  color: #9dafbd;
  margin: 0;
}

.single-post-content .third-column .elementAuthor .authorInfo p:first-child {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
}

.single-post-content .third-column .elementAuthor .authorInfo p:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.single-post-content .third-column .elementInfo {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  color: #9dafbd;
  padding-bottom: 2px;
  align-items: center;
}

.single-post-content .third-column .elementInfo p {
  margin: 0;
}

.single-post-content .third-column .elementInfo p:first-child {
  margin-bottom: 15px;
}

.single-post-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-post-content .third-column {
  order: 1;
  margin-bottom: 30px;
}

.single-post-content .first-column {
  order: 2;
  margin-bottom: 30px;
}

.single-post-content .second-column {
  order: 3;
  font-size: 16px;
  line-height: 22px;
  color: #6d6d6d;
}

@media all and (max-width: 768px) {
  .heading.single-post-title {
    font-size: 28px;
  }
}

@media all and (min-width: 1025px) {
  .single-post-content .second-column {
    font-size: 18px;
    line-height: 24px;
  }

  .single-post-content {
    align-items: flex-start;
  }

  .single-post-content .third-column .elementAuthor {
    justify-content: flex-start;
    width: fit-content;
  }

  .single-post-content .third-column .elementInfo {
    align-items: flex-start;
  }

  .single-post-content {
    flex-direction: row;
  }

  .single-post-content .third-column {
    order: 3;
    margin-bottom: 0;
    width: 20%;
    margin-left: 50px;
  }

  .single-post-content .first-column {
    order: 1;
    margin-bottom: 0;
    width: 20%;
    margin-right: 50px;
  }

  .single-post-content .second-column {
    order: 2;
    width: 60%;
  }
}

.blog.container {
  padding: 50px 0 0;
}

#fileForm.container.cta {
  padding: 20px 0;
}

#fileForm.container.cta .fileFormContent {
  width: 100%;
}

#fileForm.container.cta .heading {
  font-size: 32px;
  line-height: 40px;
}

.single-post-content .first-column {
  position: relative;
}

.single-post-content .table-content {
  display: flex;
  flex-direction: column;
  max-width: 180px;
}

.single-post-content .table-content-wrapper {
  position: sticky;
  top: 10px;
}

.single-post-content .table-content ul {
  margin: 0;
  padding: 0 0 0 10px;
}

.single-post-content .table-content ul:last-child {
  margin-bottom: 10px;
}

.single-post-content .table-content a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  margin-top: 10px;
}

.single-post-content .table-content a:hover {
  text-decoration: underline;
}

@media all and (max-width: 1024px) {
  .single-post-content .table-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.fun-facts div {
  display: none;
}

.fun-fact-en,
.fun-fact-pl {
  display: none;
  color: var(--primary);
  font-weight: 400;
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
}

.page-id-10 .fun-fact-en.show,
.page-id-363 .fun-fact-pl.show {
  display: block;
}

.wpaicg-chatbox .wpaicg-bot-thinking {
  position: absolute;
  z-index: 90;
}

.wp-block-image img {
  object-fit: contain;
  width: 100% !important;
  height: fit-content !important;
}

.wp-block-image {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#animationSection {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  min-height: 65vh;
}

#animationSection.container {
  padding-top: 0;
  padding-bottom: 160px;
}

.swiper-slide-blok,
.animatedContent {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.swiper-slide-blok .rightColumn img,
.swiper-slide-blok .rightColumn video,
.animatedContent .rightColumn img,
.animatedContent .rightColumn video {
  width: 100%;
  height: 100%;
  max-height: 400px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px;
}

@media all and (min-width: 1025px) {
  .animatedContent:not(:first-child) {
    opacity: 0;
    transform: translate(100px);
  }

  .swiper-slide-blok,
  .animatedContent {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .swiper-slide-blok .leftColumn,
  .animatedContent .leftColumn {
    width: 60%;
  }

  .swiper-slide-blok .rightColumn,
  .animatedContent .rightColumn {
    width: 40%;
  }

  .swiper-slide-blok .rightColumn,
  .animatedContent .rightColumn {
    display: flex;
    justify-content: center;
  }
}

.frame {
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary);
  position: absolute;
  top: 31%;
  right: 28%;
  opacity: 0.1;
  visibility: hidden;
}

@media all and (min-width: 1025px) {
  .frame {
    width: 300px;
    height: 300px;
  }
}

#hero h1,
#hero h2,
#hero button {
  z-index: 20;
}

.wpaicg_chat_widget_content {
  max-width: 500px;
}

.wpaicg_chat_widget {
  z-index: 80 !important;
}

.home main {
  overflow-x: hidden;
}

.sib-input {
  width: 100%;
  padding: 22px;
  margin-bottom: 10px;
  border: 1px solid #d1dbe3;
  border-radius: 5px;
}
.sib-input::placeholder {
  color: #cad4e4;
  opacity: 1;
}
.sib-default-btn {
  width: fit-content;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  background-color: #ea3854;
  box-shadow: 0 10px 20px #0003;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

.sib-default-btn:hover {
  transform: scale(1.05);
  /* slightly darker shade on hover */
}

.wp-block-image.size-large.is-resized.is-style-default {
  width: 500px;
  height: auto;
}

.wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-layout-5.wp-block-group-is-layout-flex {
  justify-content: space-between;
}

.wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-layout-3.wp-block-group-is-layout-flex {
  width: 50%;
}

.wp-block-group.is-vertical.is-layout-flex.wp-container-core-group-layout-2.wp-block-group-is-layout-flex {
  width: 100%;
}

.sib_signup_form {
  width: 100%;
}

.wp-element-button,
.wp-block-button__link {
  background-color: transparent;
}

.form-accept {
  padding-left: 10px;
}
.input-f {
  display: flex;
}
.input-f .form-accept {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained.newsletter-form-left {
  width: 50%;
}
.wp-block-image.size-full.is-resized.is-style-default {
  width: 50%;
}
.wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained:last-child {
  width: 50%;
}
.formImg {
  max-width: 350px !important;
}
.formImg img {
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .wp-block-image.size-large.is-resized.is-style-default {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-layout-5.wp-block-group-is-layout-flex {
    flex-direction: column;
  }

  .wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-layout-3.wp-block-group-is-layout-flex {
    width: 100%;
    padding: 0 25px;
  }

  .wp-block-image.size-large.is-resized.is-style-default {
    width: 90%;
    height: auto;
  }

  .dowoland-old-news,
  .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    margin: 0 5%;
    padding-top: 20px;
  }
  .wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained.newsletter-form-left {
    width: 100%;
  }
  .wp-block-image.size-full.is-resized.is-style-default {
    width: 100%;
  }
  .wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained:last-child {
    width: 100%;
  }
}

.sec-text {
  color: #9dafbd;
  font-weight: 600;
  font-size: 14px;
}
.page-id-321 .antialiased .blog .blogList .rm-pl {
  display: none;
}
.page-id-419 .antialiased .blog .blogList .rm-en {
  display: none;
}
.wp-block-video video {
  width: 100%;
}

.no-scroll {
  overflow: hidden !important;
}

.no-scroll-scroll {
  overflow: auto !important;
}

.swiper.SwiperForBusiness10.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  width: 100% !important;
}
.animatedContent.wp-block-future-prompters-animated-block.animatedContent.wp-block-future-prompters-animated-block {
  opacity: 1 !important;
}

.slider_box
  .animatedContent.wp-block-future-prompters-animated-block.animatedContent.wp-block-future-prompters-animated-block {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider_box {
  align-items: center;
}

.contactFormContent {
  box-shadow: 0 40px 80px #0003;
  background-color: var(--white);
  border-radius: 5px;
}

.wpcf7-submit {
  bottom: 20px !important;
  box-shadow: 0 10px 20px #0003;
  transition: 0.5s;
}
.wpcf7-submit:hover {
  transform: scale(1.05);
}
.swiper-pagination-bullet {
  box-shadow: 0 10px 20px #0003;
}
@media (max-width: 768px) {
  .formRightInside {
    padding: 30px 0 0 30px;
  }
}
