@charset "UTF-8";
@font-face {
  font-family: "Ploni";
  src: url("../../fonts/ploni/ploni-regular-aaa.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ploni";
  src: url("../../fonts/ploni/ploni-demibold-aaa.woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Ploni";
  src: url("../../fonts/ploni/ploni-bold-aaa.woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Icons";
  src: url("../../fonts/fonts/icomoon.woff");
  font-weight: 400;
  font-style: normal;
}
.basic-button {
  font-size: 2.8rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 2.8rem;
  border: 0.1rem solid transparent;
  padding: 1rem 3rem;
  margin: 10rem auto auto auto;
  display: block;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: 0.3s all;
  background: transparent;
}
.basic-button.black {
  border-color: black;
  color: black;
}
.basic-button.black .button__flair:before {
  background: black;
}
.basic-button.red {
  border-color: red;
  color: red;
}
.basic-button.red .button__flair:before {
  background: red;
}
.basic-button.tiny {
  font-size: 1.8rem;
  padding: 0.4rem 1.4rem;
  margin: 0;
}
.basic-button.button-small {
  font-size: 2rem;
  margin: 0;
}
.basic-button.button-small.full {
  background-color: red;
  color: white !important;
}
.basic-button .button__flair {
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 0) scale(0, 0);
  transition: 0.3s all;
  translate: none;
  rotate: none;
  scale: none;
}
.basic-button .button__flair:before {
  aspect-ratio: 1;
  background: black;
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 205%;
}
.basic-button .button__label {
  transition: 0.3s all;
  position: relative;
  z-index: 1;
}
.basic-button.big-button {
  font-size: 8rem;
  font-weight: 600;
  border-radius: 9.5rem;
  padding-left: 10rem;
  padding-right: 10rem;
  margin-top: 5rem;
  width: 59.4rem;
  height: 12.8rem;
}
.basic-button.big-button .texts {
  left: 0;
  right: 0;
  margin: auto;
  top: 1rem;
  transition: 0.3s all;
  direction: ltr;
}
.basic-button.big-button .texts span:first-of-type {
  display: block;
}
@keyframes text-transition {
  0% {
    top: 0;
  }
  10% {
    top: -10.6rem;
  }
}
.basic-button.big-button:hover {
  background-color: #ff0729;
  color: white;
}
.basic-button.big-button:hover .texts {
  animation-name: text-transition;
  animation-delay: 1s;
  top: -10.6rem;
}
.basic-button.load-more {
  margin-bottom: 5rem;
}
.basic-button.inactive {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .basic-button {
    font-size: 1.8rem;
  }
  .basic-button.big-button {
    font-size: 4rem;
    padding: 2rem 6rem;
    margin-top: 2rem;
  }
  .basic-button.button-small {
    font-size: 1.8rem;
    padding: 0.6rem 1.3rem;
  }
  .basic-button.big-button {
    width: 90%;
    height: 10.8rem;
  }
  .basic-button.big-button .texts {
    top: 2.5rem;
  }
  .basic-button.big-button .texts span:first-of-type {
    margin-bottom: 2rem;
  }
  .basic-button.big-button:hover .texts {
    top: -5.1rem;
  }
}

html {
  direction: rtl; /* Right-to-left layout */
}

body {
  margin: 0;
  font-family: "Ploni", sans-serif;
  text-align: right;
  direction: rtl;
}

a,
button {
  cursor: none;
}

video {
  clip-path: inset(1px 1px);
}

.cursor {
  width: 9rem;
  height: 9rem;
  border-radius: 100%;
  background-color: #ff0729;
  z-index: 100000000000000000000000;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  cursor: none;
  transform-origin: center;
  transform: translateY(-10rem) translateX(-10rem);
}
.cursor:before {
  content: "";
  background: url("../../assets/arrow_left_white.svg") no-repeat center;
  background-size: 3.5rem;
  opacity: 0;
  height: 3.6rem;
  width: 3.8rem;
  position: absolute;
  transition: 0.3s all;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  rotate: 90deg;
  z-index: 99999999999;
  cursor: none;
  padding-right: 0rem;
}
.cursor.next-slide:before {
  opacity: 1;
  rotate: 0deg;
}
.cursor.prev-slide:before {
  opacity: 1;
  rotate: 180deg;
}
.cursor.arrow-down:before {
  opacity: 1;
  background: url("../../assets/arrow_down_animated.gif") no-repeat center;
  background-size: 1.5rem;
  rotate: 0deg;
  background-position: center;
}
.cursor:after {
  content: "מה הסיפור";
  opacity: 0;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  transition: 0.3s all;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 9.9rem;
  height: min-content;
}
.cursor.read-more:after {
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .cursor {
    display: none;
  }
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: grey;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/* Typo */
h1,
p {
  margin: 0;
}

h2,
p {
  margin: 0;
}

h3,
p {
  margin: 0;
}

h4,
p {
  margin: 0;
}

h5,
p {
  margin: 0;
}

.white-text {
  color: white;
}

.title-big {
  font-size: 8rem;
  font-weight: 400;
  line-height: 100%;
}
.title-medium {
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 112.978%;
}
.title-medium.light {
  font-weight: 400;
}
.title-small {
  font-size: 4rem;
  font-weight: 400;
}
.title-small strong {
  font-weight: 700;
}
@media only screen and (max-width: 1023px) {
  .title-big {
    font-size: 4.6rem;
    line-height: 108%;
  }
  .title-medium {
    font-size: 4rem;
    line-height: 112.978%;
  }
  .title-small {
    font-size: 2.8rem;
    line-height: normal;
  }
}

.paragraph {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: normal;
}
.paragraph.demibold,
.paragraph strong {
  font-weight: 600;
  line-height: 113%;
}
.paragraphstrong {
  font-weight: 700;
}
.paragraph-medium {
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
}
.paragraph-small {
  font-size: 2rem;
  font-weight: 400;
}
.paragraph-small strong {
  font-weight: 600;
}
.paragraph-tiny {
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .paragraph {
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 400;
  }
  .paragraph-medium {
    font-size: 1.4rem;
    line-height: normal;
  }
  .paragraph-small {
    font-size: 1.4rem;
  }
}

.tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-content: flex-start;
}
.tags .tag {
  font-size: 1.5rem;
  font-weight: 400;
  background-color: #f4f4f4;
  padding: 0.75rem 1.5rem;
  border-radius: 1.9rem;
  white-space: nowrap;
  align-self: flex-start;
}
@media only screen and (max-width: 1023px) {
  .tags .tag {
    font-size: 1.2rem;
  }
}

/* Layout */
.grid-small {
  width: 112rem;
  margin: auto;
}
.grid-medium {
  padding: 0 4rem;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .grid-small, .grid-medium {
    padding: 0 2rem;
    width: auto;
  }
}
@media only screen and (min-width: 1921px) {
  .grid-medium {
    width: 183rem;
  }
}

@media only screen and (max-width: 1023px) {
  .view-desktop {
    display: none;
  }
}
.view-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .view-mobile {
    display: block;
  }
}

section:first-of-type:not(.home section:first-of-type) {
  padding-top: 22rem;
}
@media only screen and (max-width: 1023px) {
  section:first-of-type:not(.home section:first-of-type) {
    padding-top: 15rem;
  }
}

.css-grid {
  display: grid;
}
.css-grid.content-grid {
  grid-template-columns: 22% 1fr;
  gap: 11.8rem;
  margin-bottom: 15rem;
}
.css-grid.content-grid .paragraph {
  max-width: 70%;
}
.css-grid a {
  color: black;
  text-decoration: none;
}
.css-grid.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 12.3rem 4rem;
}
.css-grid.two-columns li:nth-child(odd) .image {
  height: 40vw;
}
.css-grid.two-columns li:nth-child(even) .image {
  height: 28vw;
}
.css-grid.three-columns {
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem 3.4rem;
}
.css-grid.six-columns {
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 1023px) {
  .css-grid.two-columns, .css-grid.three-columns, .css-grid.six-columns {
    grid-template-columns: repeat(1, 1fr);
  }
  .css-grid.two-columns {
    gap: 9rem;
  }
  .css-grid.two-columns li .space-between {
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
  }
  .css-grid.two-columns li .space-between h3.paragraph {
    font-size: 1.8rem;
  }
  .css-grid.two-columns li .image {
    height: 55vw !important;
    margin-bottom: 1rem;
  }
  .css-grid.six-columns {
    gap: 0;
  }
}

.image {
  width: 100%;
  margin-bottom: 2rem;
}
.image img,
.image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Justers */
.hover-gallery {
  transition: 0.3s all;
  opacity: 1;
  height: fit-content;
}
.hover-gallery .image {
  overflow: hidden;
}
.hover-gallery .image img {
  transform-origin: center;
  transform: scale(1);
  transition: 0.3s all;
}
.hover-gallery:hover img {
  transform: scale(1.02);
}
.hover-gallery.hover {
  opacity: 0.3 !important;
}
@media only screen and (max-width: 1023px) {
  .hover-gallery.hover {
    opacity: 1 !important;
  }
}

/* components */
.logotype-title_text .logotype_caption {
  gap: 1rem;
}
.logotype-title_text .logotype_caption svg {
  height: 7.9rem;
  width: auto;
  margin-top: -1.5rem;
}
.logotype-title_text .paragraph p {
  margin-bottom: 2rem;
}
.logotype-title_text .paragraph p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .logotype-title_text.content-grid {
    grid-template-columns: 1fr;
    margin-bottom: 10rem;
  }
  .logotype-title_text.content-grid .paragraph {
    max-width: 100%;
  }
  .logotype-title_text.content-grid .paragraph p {
    font-size: 1.8rem;
  }
  .logotype-title_text.content-grid .paragraph p strong {
    font-size: 2.4rem;
  }
  .logotype-title_text.content-grid .logotype_caption {
    gap: 0.5rem;
    justify-content: center;
  }
  .logotype-title_text.content-grid .logotype_caption svg {
    height: 4.9rem;
    margin-top: -1.1rem;
  }
}

.items-container {
  margin-bottom: 20rem;
}

#menu-social-1,
#menu-social {
  display: flex;
  gap: 2rem;
}
#menu-social-1 a,
#menu-social a {
  font-family: "Icons";
  font-size: 2.5rem;
  text-decoration: none;
  transition: 0.3s all;
}
#menu-social-1 a:hover,
#menu-social a:hover {
  color: #ff0729;
}

.arrow-down-area {
  height: 26rem;
}
@media only screen and (max-width: 1023px) {
  .arrow-down-area {
    height: 10rem;
  }
  .arrow-down-area:after {
    content: "";
    background: url("../../assets/arrow_left_black.svg") no-repeat center;
    width: 3.2rem;
    height: 1.1rem;
    background-size: 3.2rem !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(270deg);
  }
}

.appear-animation {
  transform: translate(0px, 100px);
  opacity: 0;
}

.loader-area {
  display: none;
}
.loader-area img {
  width: 10rem;
  height: auto;
}
.loader-area.show {
  display: flex;
}

.load-animation {
  opacity: 0;
  animation: load-animation 0.5s;
  animation-fill-mode: forwards;
}

@keyframes load-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 10px;
  }
}
.positive {
  color: white;
}

.negative {
  color: black;
}

iframe {
  width: 100%;
  height: 100%;
}

.wpcf7 form .wpcf7-response-output {
  position: absolute;
  bottom: -4rem;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.5rem;
  border: none !important;
  color: #ff0729;
}
@media only screen and (max-width: 1023px) {
  .wpcf7 form .wpcf7-response-output {
    bottom: 2rem;
  }
}

span.wpcf7-not-valid-tip {
  color: #ff0729 !important;
  font-size: 1.4rem;
  line-height: 112.1%;
  margin-top: 0.5rem;
}

.item .bottom {
  align-items: flex-start;
  gap: 2rem;
}
.item .bottom h3 {
  white-space: nowrap;
}

@media only screen and (min-width: 1921px) {
  html {
    font-size: 0.51vw;
  }
}
@media only screen and (min-width: 1701px) and (max-width: 1920px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (min-width: 1521px) and (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (min-width: 1432px) and (max-width: 1520px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1431px) {
  html {
    font-size: 7px;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 10px;
  }
}
/* components */
body.post-type-archive-service .logotype-circle {
  fill: #04afa2;
  transition: 0.3s fill !important;
}

header {
  height: 12rem;
  padding: 0 4rem;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 999999999 !important;
  transition: 0.3s all;
}
header .buttons {
  gap: 2rem;
}
header .buttons .basic-button {
  align-self: center;
  z-index: 1;
  transition-delay: 0.2s;
}
header .buttons .basic-button .button__flair:before {
  background-color: black;
  transition-delay: 0.2s;
}
header:not(.no-scroll-behavior) .logo:after {
  content: "";
  width: 6rem;
  height: 6rem;
  position: absolute;
  border-radius: 100%;
  top: 3.1rem;
  left: 3px;
  display: block;
  transform: scale(0);
  transition: 1s ease-in all;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: logotype_animation_out;
  z-index: -1;
}
header .logo {
  z-index: 1;
  position: relative;
}
header .logo-circle {
  align-items: center;
}
header .logo-circle .logotype-circle {
  opacity: 1 !important;
}
header .logo-circle .logotype-circle:has(header.menu-opened .logo .logotype-circle) {
  transition: 1s fill !important;
}
header .logo-circle svg {
  width: 6rem !important;
  height: 6rem;
  fill: #ff0729;
}
header .logo-circle svg rect {
  fill: unset;
}
@keyframes logotype_animation_out {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.65);
  }
  100% {
    transform: scale(0);
  }
}
header .logo svg {
  width: 10rem;
}
header .logo svg .other {
  transition: 0.3s all;
  transition-delay: 0.2s;
  opacity: 1;
}
header .logo svg .other.triangle {
  fill: black;
  transition: 0.3s all;
}
header .logo svg .other:not(.logotype) {
  transition: 0.1s all;
}
header .logo svg .other.logotype {
  transform: scale(1) translate(0, 0);
  transition: 0.3s all;
  z-index: 9999999;
}
header nav {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  position: relative;
  height: 100vh;
  width: 100vw;
  transition: 0.01s all;
  padding: 13rem 6rem 6rem 6rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header nav:before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  border-radius: 100%;
  background-color: black;
  top: 0;
  right: 0;
  transition: 0.5s ease-in all;
  transform: scale(0);
  transition-delay: 0.2s;
}
header nav #menu-main {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
header nav #menu-main li {
  transition: 0.3s all;
  overflow: hidden;
  -webkit-overflow: hidden;
  position: relative;
}
header nav #menu-main li:nth-child(7) {
  animation-name: hide-menu-items;
  animation-delay: 0.05s;
  animation-duration: 0.05s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(6) {
  animation-name: hide-menu-items;
  animation-delay: 0.1s;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(5) {
  animation-name: hide-menu-items;
  animation-delay: 0.15s;
  animation-duration: 0.15s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(4) {
  animation-name: hide-menu-items;
  animation-delay: 0.2s;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(3) {
  animation-name: hide-menu-items;
  animation-delay: 0.25s;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(2) {
  animation-name: hide-menu-items;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li:nth-child(1) {
  animation-name: hide-menu-items;
  animation-delay: 0.35s;
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
  transition: 0.3s;
}
header nav #menu-main li a {
  text-decoration: none;
  color: white;
  transition: 0.3s all;
  display: block;
  width: fit-content;
}
header nav #menu-main li a * {
  pointer-events: none;
}
header nav #menu-main li a:hover {
  color: #ff6a7f;
}
header nav #menu-main li a span {
  font-weight: 400;
  display: block;
}
header nav #menu-main li a span.second-title {
  position: absolute;
}
@keyframes show-menu-items {
  from {
    opacity: 0;
    transform: translatey(-1.5rem);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translatey(0rem);
    visibility: visible;
  }
}
@keyframes hide-menu-items {
  from {
    opacity: 1;
    transform: translateY(0rem);
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: translateY(-1.5rem);
    visibility: hidden;
  }
}
header.menu-opened nav .scroll-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -webkit-fill-available;
}
header.menu-opened .contact-details {
  height: auto;
  transition: 0.3s all;
}
header.menu-opened.main-menu .contact-footer {
  color: white;
  width: 100%;
  justify-content: flex-end;
  display: none;
}
header.menu-opened.main-menu .contact-footer a {
  color: white;
}
header.menu-opened.main-menu .contact-details {
  height: 0;
}
header.menu-opened .other {
  transition: 1.5s !important;
}
header.menu-opened.scroll-bottom .other.logotype {
  transition: 1s;
}
header.menu-opened.scroll-bottom .other.logotype:not(.triangle) {
  fill: black !important;
}
header.menu-opened.scroll-bottom .other.logotype.triangle {
  fill: white !important;
}
header.menu-opened.scroll-bottom nav {
  visibility: visible;
  opacity: 1;
}
header.menu-opened.scroll-bottom nav:before {
  transform: scale(1000);
}
header.menu-opened.scroll-bottom .basic-button.black {
  border-color: white;
  color: white;
}
header.menu-opened.scroll-bottom .basic-button.black .button__flair:before {
  background-color: white;
}
header.menu-opened.scroll-bottom a:after {
  background: white;
}
header.menu-opened.scroll-bottom a svg .other {
  fill: white !important;
}
header.menu-opened.scroll-bottom a svg .other.triangle {
  fill: #686868 !important;
}
header.menu-opened nav {
  visibility: visible;
  opacity: 1;
}
header.menu-opened nav:before {
  transform: scale(1000);
}
header.menu-opened .basic-button.black {
  border-color: white;
  color: white;
}
header.menu-opened .basic-button.black .button__flair:before {
  background-color: white;
}
header.menu-opened a:after {
  background: white;
}
header.menu-opened a svg .other {
  fill: white !important;
}
header.menu-opened a svg .other.triangle {
  fill: #686868 !important;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(1) {
  animation-name: show-menu-items;
  animation-delay: 0.2s;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(2) {
  animation-name: show-menu-items;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(3) {
  animation-name: show-menu-items;
  animation-delay: 0.4s;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(4) {
  animation-name: show-menu-items;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(5) {
  animation-name: show-menu-items;
  animation-delay: 0.6s;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(6) {
  animation-name: show-menu-items;
  animation-delay: 0.7s;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened:not(.contact-us) #menu-main li:nth-child(7) {
  animation-name: show-menu-items;
  animation-delay: 0.8s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
header.menu-opened .contact-footer {
  position: relative;
  animation-name: show-menu-items;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  color: #ff0729;
}
header.menu-opened .contact-footer .contact-points,
header.menu-opened .contact-footer .contact-social {
  gap: 2rem;
}
header.menu-opened .contact-footer a {
  text-decoration: none;
  color: #ff0729;
}
header.add-delay:not(.contact-us) nav {
  transition-delay: 1s;
}
header.add-delay:not(.contact-us) .dot,
header.add-delay:not(.contact-us) .dot:before,
header.add-delay:not(.contact-us) .basic-button,
header.add-delay:not(.contact-us) .button__flair:before {
  transition-delay: 0.5s;
}
header.add-delay:not(.contact-us) svg .other {
  transition-delay: 0.6s !important;
}
header.scroll-up svg .other {
  transition-delay: 0.1s !important;
}
header.scroll-bottom:not(body.post-type-archive-service header.scroll-bottom,
body.single-project header.scroll-bottom) {
  background-color: white;
}
header.scroll-bottom svg .other {
  transition-delay: 0.1s !important;
}
@keyframes logotype_animation_in {
  0% {
    transform: scale(0.65);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
header.scroll-bottom .logo:after {
  content: "";
  animation-name: logotype_animation_in;
  transform: 3.5rem, 0.9rem;
}
header.scroll-bottom .logo svg .other:not(.logotype) {
  opacity: 0;
}
header.scroll-bottom .logo svg .other.logotype {
  transform: scale(0.65) translate(24.1rem, 16.8rem);
}
@media only screen and (min-width: 1432px) and (max-width: 1520px) {
  header.scroll-bottom .logo svg .other.logotype {
    transform: scale(0.65) translate(39.5rem, 26.5rem);
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1431px) {
  header.scroll-bottom .logo svg .other.logotype {
    transform: scale(0.65) translate(39.5rem, 26.5rem);
  }
}
@media only screen and (max-width: 1023px) {
  header.scroll-bottom .logo svg .other.logotype {
    transform: scale(0.65) translate(29.5rem, 27rem);
  }
}
header.scroll-bottom .logo svg .other.logotype:not(.triangle) {
  fill: white;
}
header.scroll-bottom .logo svg .other.logotype.triangle {
  fill: revert-layer;
}
header .contact-details,
header .contact-footer {
  position: relative;
  animation-name: hide-menu-items;
  animation-delay: -0.5s;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  opacity: 1;
}
header .basic-button.contact-us {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
}
header .menu-main-container {
  opacity: 1;
  transition: 0.3s all;
}
header .menu-main-container:not(header.main-menu .menu-main-container) {
  opacity: 0;
  transition: 0.8s all;
}
header .contact-details .title-medium {
  color: #ff0729;
  margin-bottom: 3rem;
}
header .contact-details .paragraph {
  margin-bottom: 4rem;
}
header .contact-details form.wpcf7-form {
  display: grid;
  grid-template-columns: repeat(3, 25.6rem);
  direction: rtl;
  gap: 7rem 3rem;
}
header .contact-details form.wpcf7-form .selection {
  gap: 2.5rem;
  grid-column: 1/4;
}
header .contact-details form.wpcf7-form .selection li {
  margin-bottom: 1rem;
}
header .contact-details form.wpcf7-form .selection li:nth-child(1n+1) input:checked + label {
  background: #cbcfff;
}
header .contact-details form.wpcf7-form .selection li:nth-child(2n+2) input:checked + label {
  background: #c3adff;
}
header .contact-details form.wpcf7-form .selection li:nth-child(3n+3) input:checked + label {
  background: #ffbbda;
}
header .contact-details form.wpcf7-form .selection li:nth-child(4n+4) input:checked + label {
  background: #ffecba;
}
header .contact-details form.wpcf7-form .selection li:nth-child(5n+5) input:checked + label {
  background: #a5e2de;
}
header .contact-details form.wpcf7-form .selection input {
  display: none;
}
header .contact-details form.wpcf7-form .selection input + label {
  position: relative;
  background-color: #f4f4f4;
  padding: 1rem 2rem;
  border-radius: 3rem;
  color: #686868;
  transition: 0.3s all;
}
header .contact-details form.wpcf7-form .selection input:checked + label {
  background-color: #ffecba;
}
header .contact-details form.wpcf7-form .field {
  position: relative;
}
header .contact-details form.wpcf7-form .field:has(.wpcf7-not-valid-tip) input {
  border-bottom-color: #ff0729;
}
header .contact-details form.wpcf7-form .field .paragraph-medium {
  position: absolute;
  top: 0;
  z-index: 1;
  color: #c8c8c8;
  transition: 0.3s all;
}
header .contact-details form.wpcf7-form .field .paragraph-medium.focused {
  font-size: 1.8rem;
  top: -2rem;
}
header .contact-details form.wpcf7-form .field span {
  display: block;
  width: 100%;
}
header .contact-details form.wpcf7-form .field span input {
  border: none;
  border-bottom: 0.1rem solid #c8c8c8;
  width: 100%;
  height: 3rem;
  z-index: 2;
  position: relative;
  background: transparent;
  font-size: 2rem;
  border-radius: 0;
  padding: 0;
}
header .contact-details form.wpcf7-form .field span input:focus-visible, header .contact-details form.wpcf7-form .field span input:focus {
  outline: none;
}
header .contact-details form.wpcf7-form .field span input[type=number]::-webkit-inner-spin-button {
  display: none;
}
header .contact-details form.wpcf7-form.sent .wpcf7-response-output {
  top: 0;
  right: -18px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  padding: 0;
  border-color: transparent;
  background: white;
  font-size: 4rem;
  color: #ff0729;
  margin: 0;
  font-size: 6.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
header .contact-details form.wpcf7-form.sent .wpcf7-response-output:after {
  content: "";
  background: url("../../assets/maracas_emoji.png") no-repeat center;
  width: 6rem;
  height: 6.1rem;
  background-size: 6.1rem;
  display: inline-block;
}
header.contact-us.menu-opened.scroll-bottom a svg .other {
  fill: #ff0729 !important;
}
header.contact-us .basic-button.contact-us {
  opacity: 0;
  visibility: hidden;
}
header.contact-us.menu-opened.scroll-bottom a:after {
  background-color: #ff0729;
}
header.contact-us.menu-opened.scroll-bottom .other.logotype:not(.triangle) {
  fill: white !important;
}
header.contact-us.menu-opened.scroll-bottom .other.logotype.triangle {
  fill: #686868 !important;
}
header.contact-us .menu-main-container {
  display: none;
}
header.contact-us .dot {
  background-color: #ff0729 !important;
}
header.contact-us .dot::before {
  background-color: #ff0729 !important;
}
header.contact-us nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header.contact-us nav:before {
  background-color: white;
}
header.contact-us .basic-button {
  border-color: #ff0729 !important;
  color: #ff0729 !important;
}
header.contact-us .basic-button .button__flair:before {
  background-color: #ff0729 !important;
}
header.contact-us svg .other:not(.triangle) {
  fill: #ff0729 !important;
}
header.contact-us .contact-details {
  position: relative;
  animation-name: show-menu-items;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  header {
    padding: 0 2rem;
    transition: 0.3s all;
  }
  header.scroll-bottom {
    height: 6.4rem;
  }
  header.scroll-bottom .logo svg .other.logotype {
    transform: scale(0.55) translate(29.5rem, 27rem);
  }
  header:not(.no-scroll-behavior) .logo:after {
    width: 4.3rem;
    height: 4.3rem;
    top: 1.2rem;
  }
  header.menu-opened.main-menu nav .scroll-container {
    overflow: hidden;
  }
  header.menu-opened nav {
    overflow: hidden;
    height: calc(var(--vh, 1vh) * 100);
  }
  header.menu-opened nav .scroll-container {
    overflow-x: hidden !important;
    overflow: auto;
  }
  header .logo-circle {
    width: 4.3rem !important;
    height: 100%;
  }
  header .logo svg {
    width: 8rem;
  }
  header #mobile-menu-btn {
    width: 2rem;
  }
  header nav {
    padding: 13rem 2rem 2rem 2rem;
    box-sizing: border-box;
  }
  header nav #menu-main li a .second-title {
    display: none;
  }
  header .contact-details .contact-form__container .title-medium {
    margin-bottom: 1rem;
  }
  header .contact-details .contact-form__container .title-medium span {
    display: block;
  }
  header .contact-details .contact-form__container .title-medium img {
    display: none;
  }
  header .contact-details .contact-form__container .paragraph strong {
    font-weight: 400;
  }
  header .contact-details .contact-form__container form.wpcf7-form.sent .wpcf7-response-output {
    top: -1rem;
    right: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    font-size: 5rem;
  }
  header .contact-details .contact-form__container form.wpcf7-form {
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
  }
  header .contact-details .contact-form__container form.wpcf7-form .selection {
    gap: 0.9rem;
    grid-column: 1/7;
  }
  header .contact-details .contact-form__container form.wpcf7-form .selection input + label {
    font-size: 1.2rem;
    padding: 0.6rem 1.3rem;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field {
    width: auto;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field .paragraph-medium {
    font-size: 1.8rem;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field span input {
    font-size: 1.8rem;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field:has([name=name]) {
    grid-column: 1/7;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field:has([name=email]) {
    grid-column: 1/4;
  }
  header .contact-details .contact-form__container form.wpcf7-form .field:has([name=tel]) {
    grid-column: 4/7;
  }
  header .contact-details .contact-form__container form.wpcf7-form input[type=submit] {
    grid-column: 1/7;
    padding: 0.6rem 2.3rem;
  }
  header .contact-footer {
    align-items: flex-end;
    justify-content: space-between !important;
  }
  header .contact-footer .contact-points {
    display: none;
  }
  header .contact-footer .contact-social {
    flex-direction: column;
    gap: 1rem !important;
    align-items: flex-start;
  }
  header .contact-footer .paragraph-tiny span {
    display: block;
  }
}

body:has(.menu-opened) {
  overflow: hidden;
}

footer {
  padding: 8rem 0 4rem 0;
  background-color: #f4f4f4;
}
footer .big-button__container {
  margin-bottom: 12rem;
}
footer .newsletter-form {
  margin: 3rem auto 8rem auto;
}
footer .newsletter-form .wpcf7.js {
  direction: rtl;
}
footer .newsletter-form .wpcf7.js form {
  direction: rtl;
  width: min-content;
  position: relative;
  height: 4rem;
}
footer .newsletter-form .wpcf7.js form .send-wrapper:hover path {
  stroke: #ff0729;
}
footer .newsletter-form .wpcf7.js form .send-wrapper svg {
  position: absolute;
  left: 0;
  top: 1rem;
}
footer .newsletter-form .wpcf7.js form .send-wrapper svg path {
  stroke: black;
  transition: 0.3s all;
}
footer .newsletter-form .wpcf7.js form input[name=email], footer .newsletter-form .wpcf7.js form input:focus, footer .newsletter-form .wpcf7.js form input:focus-visible {
  padding: 0;
  border: 0;
  outline: 0;
  border-bottom: 0.1rem solid black;
  height: 4rem;
  width: 47.4rem;
  background: transparent;
  text-align: right;
  font-size: 1.8rem;
  padding-left: 8rem;
  box-sizing: border-box;
  border-radius: 0;
}
footer .newsletter-form .wpcf7.js form input[name=email]::placeholder, footer .newsletter-form .wpcf7.js form input:focus::placeholder, footer .newsletter-form .wpcf7.js form input:focus-visible::placeholder {
  color: black;
}
footer .newsletter-form .wpcf7.js form input[type=submit] {
  z-index: 9;
  color: transparent;
  border: none;
  background-color: transparent;
  background-size: 4.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
  border: 0;
}
footer .newsletter-form .wpcf7.js form input[type=submit]:hover {
  background-size: 4.6rem;
}
footer .newsletter-form .wpcf7.js form .wpcf7-response-output,
footer .newsletter-form .wpcf7.js form .wpcf7-not-valid-tip {
  position: absolute;
  padding: 0;
  right: 0;
  margin: 0;
  font-size: 1.8rem;
  width: 100%;
  height: 4rem;
  border: none;
  line-height: 3.9rem;
  color: #ff0729;
}
footer .newsletter-form .wpcf7.js form .wpcf7-not-valid-tip {
  display: none;
}
footer .menus {
  align-items: flex-end;
}
footer .menus a {
  text-decoration: none;
  color: black;
  transition: 0.3s all;
}
footer .menus a:hover {
  color: #ff0729;
}
footer .menus .menu:not(#menu-social-1) {
  margin-bottom: 3rem;
}
footer .menus .left .flex-v-align {
  margin-bottom: 1.3rem;
  gap: 1rem;
}
footer .menus .left .paragraph-tiny {
  text-align: left;
}
footer .menus #menu-footer {
  display: flex;
  gap: 7.3rem;
  margin-top: 8.9rem;
}
footer .menus #menu-footer a {
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0.5rem 2rem;
}
footer .menus #menu-footer li:first-child a:first-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 1023px) {
  footer {
    padding-bottom: 2rem;
  }
  footer .paragraph-small {
    font-size: 1.8rem;
  }
  footer .menus {
    align-items: flex-start;
    margin-top: 4.9rem;
  }
  footer .menus .menu {
    margin-bottom: 8rem;
  }
  footer .menus #menu-footer {
    flex-direction: column;
    gap: 3rem;
    margin-top: 0rem;
  }
  footer .menus #menu-footer a {
    padding: 0;
  }
  footer .menus .left {
    align-self: normal;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  footer .menus .left .flex-v-align {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .menus .left .paragraph-tiny {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .menus .right .paragraph-tiny {
    flex-direction: column-reverse;
  }
  footer .menus .paragraph-tiny {
    display: flex;
    direction: ltr;
  }
  footer .menus .paragraph-tiny .design {
    display: block;
  }
  footer .menus .paragraph-tiny .dash {
    display: none;
  }
  footer .newsletter-form {
    margin: 3rem auto 0 auto;
  }
  footer .newsletter-form .wpcf7.js form {
    width: auto;
  }
  footer .newsletter-form .wpcf7.js form input[name=email] {
    width: 100%;
  }
}

.big-paragraph {
  padding: 6.1rem 0 !important;
}
.big-paragraph .paragraph.left {
  grid-column: 3/7;
}
.big-paragraph .paragraph.right {
  grid-column: 1/5;
}
@media only screen and (max-width: 1023px) {
  .big-paragraph {
    padding: 4.1rem 0 !important;
  }
  .big-paragraph .paragraph {
    grid-column: 1/7 !important;
  }
}

.big-image {
  padding: 6.1rem 0 !important;
}
.big-image .image {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .big-image {
    padding: 5.1rem 0 !important;
  }
  .big-image .image {
    height: auto;
  }
}

.headline-and-two-columns {
  padding: 6.1rem 0 6.1rem 0 !important;
}
.headline-and-two-columns .css-grid {
  row-gap: 2rem !important;
}
.headline-and-two-columns .css-grid h2 {
  grid-column: 1/6;
}
.headline-and-two-columns .css-grid .paragraph-medium {
  column-count: 2;
  column-gap: 3rem;
  margin-left: auto;
  grid-column: 1/5;
}
@media only screen and (max-width: 1023px) {
  .headline-and-two-columns {
    padding: 5.1rem 0 5.1rem 0 !important;
  }
  .headline-and-two-columns .css-grid .paragraph-medium {
    column-count: 1;
  }
}

.slider {
  padding: 6.1rem 0 6.1rem 0 !important;
}
.slider .slider-splide .image {
  height: 100%;
}
.slider .slider-splide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider .slider-splide .splide__arrow {
  height: 100%;
  width: 20rem;
}
.slider .slider-splide .splide__arrow img {
  display: none;
}
.slider .slider-splide .splide__arrow--prev {
  right: 0;
}
.slider .slider-splide .splide__arrow--next {
  left: 0;
}
@media only screen and (max-width: 1023px) {
  .slider {
    padding: 5.1rem 0 8.7rem 0 !important;
  }
  .slider .slider-splide .splide__arrow {
    width: 4.6rem;
    height: 1.6rem;
    top: 109%;
  }
  .slider .slider-splide .splide__arrow img {
    display: unset;
  }
  .slider .slider-splide .splide__arrow--prev {
    right: 2rem;
  }
  .slider .slider-splide .splide__arrow--next {
    left: 2rem;
  }
  .slider .slider-splide .image img,
  .slider .slider-splide .image video {
    height: auto;
    border-radius: 1rem;
  }
}

.two-images {
  padding: 5.1rem 0 5.1rem 0 !important;
}
.two-images .css-grid .image img {
  height: auto;
}
.two-images .css-grid .image-big {
  grid-column: 1/5;
}
.two-images .css-grid .image-small {
  grid-column: 5/7;
}
@media only screen and (max-width: 1023px) {
  .two-images .css-grid .image-big {
    grid-column: 1/7;
  }
}

.paragraph-and-one-image {
  padding: 6.1rem 0 !important;
}
.paragraph-and-one-image .css-grid .image {
  grid-column: 1/4;
  margin-top: 0.7rem;
}
.paragraph-and-one-image .css-grid .paragraph {
  grid-column: 4/7;
}
@media only screen and (max-width: 1023px) {
  .paragraph-and-one-image {
    padding: 5.1rem 0 !important;
  }
  .paragraph-and-one-image .css-grid .image {
    grid-column: 1/7;
  }
}

.text-and-big-image {
  padding: 6.1rem 0 !important;
}
.text-and-big-image .css-grid {
  margin-bottom: 7rem;
}
.text-and-big-image .css-grid .title {
  grid-column: 1/5;
}
.text-and-big-image .css-grid .paragraph-medium {
  column-count: 2;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  margin-left: auto;
  grid-column: 1/5;
}
.text-and-big-image .image {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .text-and-big-image .css-grid .title {
    margin-bottom: 2rem;
  }
  .text-and-big-image .css-grid .paragraph-medium {
    column-count: 1;
  }
  .text-and-big-image .image {
    height: 43rem;
  }
}

.text-list-and-small-slider {
  padding: 6.1rem 0 6.1rem 0 !important;
}
.text-list-and-small-slider .css-grid .content {
  grid-column: 1/3;
}
.text-list-and-small-slider .css-grid .content .headline {
  margin-bottom: 2rem;
}
.text-list-and-small-slider .css-grid .content ul.list li {
  margin-bottom: 2rem;
}
.text-list-and-small-slider .css-grid .text-list-and-small-slider-splide {
  grid-column: 3/7;
  margin: auto;
}
.text-list-and-small-slider .css-grid .text-list-and-small-slider-splide .splide__arrow {
  width: 10rem;
  height: 100%;
}
.text-list-and-small-slider .css-grid .text-list-and-small-slider-splide .splide__arrow img {
  display: none;
}
.text-list-and-small-slider .css-grid .text-list-and-small-slider-splide .splide__arrow--prev {
  right: 0;
}
.text-list-and-small-slider .css-grid .text-list-and-small-slider-splide .splide__arrow--next {
  left: 0;
}
.text-list-and-small-slider .css-grid img {
  border-radius: 0;
}
@media only screen and (max-width: 1023px) {
  .text-list-and-small-slider {
    padding: 5.1rem 0 5rem 0 !important;
  }
  .text-list-and-small-slider .grid-small {
    padding: 0;
  }
  .text-list-and-small-slider .grid-small .css-grid .content {
    padding: 0 2rem;
  }
  .text-list-and-small-slider .grid-small .css-grid .content {
    grid-column: 1/7;
    margin-bottom: 3rem;
  }
  .text-list-and-small-slider .grid-small .css-grid .text-list-and-small-slider-splide {
    grid-column: 1/7;
  }
  .text-list-and-small-slider .grid-small .css-grid .text-list-and-small-slider-splide .splide__arrow {
    top: 105%;
    width: 4.6rem;
    height: 1.6rem;
  }
  .text-list-and-small-slider .grid-small .css-grid .text-list-and-small-slider-splide .splide__arrow img {
    display: unset;
  }
  .text-list-and-small-slider .grid-small .css-grid .text-list-and-small-slider-splide .splide__arrow--prev {
    right: 2rem;
  }
  .text-list-and-small-slider .grid-small .css-grid .text-list-and-small-slider-splide .splide__arrow--next {
    left: 2rem;
  }
}

.full-bleed-image .image {
  width: 100%;
  height: 80vh;
  margin-bottom: 0;
  border-radius: 0 !important;
}
.full-bleed-image .image img {
  border-radius: 0;
}

/* pages */
.blog-posts {
  background-color: #f4f4f4;
}
.blog-posts .main-text {
  padding-bottom: 25rem;
}
.blog-posts__header {
  margin-bottom: 3rem;
  color: #ff0729;
}
.blog-posts {
  .

  align-self: baseline;
}
.blog-posts .posts-slider-splide {
  margin: auto;
}
.blog-posts .posts-slider-splide .splide__arrows button {
  background-color: transparent;
  border-radius: 0;
  height: 100%;
  width: 15%;
}
.blog-posts .posts-slider-splide .splide__arrows .splide__arrow--next {
  left: 0;
}
.blog-posts .posts-slider-splide .splide__arrows .splide__arrow--prev {
  right: 0;
}
.blog-posts .posts-slider-splide .splide__arrows svg {
  display: none !important;
}
.blog-posts .posts-slider-splide ul .image {
  width: auto;
  margin-bottom: 2rem;
}
.blog-posts .posts-slider-splide ul .image.short {
  height: 21rem;
}
@media only screen and (max-width: 1023px) {
  .blog-posts .posts-slider-splide ul .image.short {
    height: 12rem;
  }
}
.blog-posts .posts-slider-splide ul .image.medium {
  height: 31.8rem;
}
@media only screen and (max-width: 1023px) {
  .blog-posts .posts-slider-splide ul .image.medium {
    height: 18.2rem;
  }
}
.blog-posts .posts-slider-splide ul .image.long {
  height: 43.8rem;
}
@media only screen and (max-width: 1023px) {
  .blog-posts .posts-slider-splide ul .image.long {
    height: 27.3rem;
  }
}
.blog-posts .posts-slider-splide ul .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-posts .posts-slider-splide ul a {
  color: black;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .blog-posts h2.title-small {
    margin-bottom: 0rem !important;
  }
  .blog-posts .posts-slider-splide {
    margin-bottom: 5rem;
  }
  .blog-posts .posts-slider-splide h3 {
    margin-bottom: 1rem;
  }
  .blog-posts .posts-slider-splide ul .image {
    margin-bottom: 1rem;
  }
}

.home h2.title-small:not(.blog-posts__header h2) {
  color: #ff0729;
  margin-bottom: 5rem;
}
.home .hero {
  height: 100vh;
}
.home .hero .title-big {
  opacity: 0;
}
@keyframes type {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
.home .hero .with-typer:after {
  position: absolute;
  content: "";
  height: 6rem;
  width: 0.1rem;
  background-color: black;
  display: inline-block;
  animation: type 0.2s;
  animation-iteration-count: infinite;
  transition: 0.3s all;
  padding-left: 0.2rem;
  margin-left: 0rem;
  bottom: 1.7rem;
}
.home .hero .with-typer.lottie:after {
  top: 0;
  left: 0;
}
.home .hero h1 {
  height: 24rem;
  vertical-align: top;
  display: block;
}
.home .hero .opening-sentence {
  position: relative;
}
.home .hero .opening-sentence .word {
  white-space: nowrap;
}
.home .hero .phrases {
  font-weight: 600;
}
.home .hero .lottie {
  height: 6rem;
  width: 9rem;
  overflow: hidden;
}
.home .hero .lottie svg {
  width: 230% !important;
  height: 230% !important;
}
.home .hero .lottie-1 svg {
  transform: translate3d(6rem, -3rem, 0) !important;
}
.home .hero .lottie-1:after {
  left: -1rem !important;
}
.home .hero .lottie-2 svg {
  transform: translate3d(5.9rem, -3.5rem, 0) !important;
}
.home .hero .lottie-2:after {
  left: -1rem !important;
}
.home .hero .lottie-3 svg {
  transform: translate3d(6rem, -3rem, 0px) !important;
}
.home section.features {
  height: 70vh;
  overflow: hidden;
  padding-top: 20rem;
}
.home section.features .grid-small {
  margin-top: 0;
}
.home section.features .grid-small ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11.3rem;
}
.home section.features .grid-small ul h2,
.home section.features .grid-small ul p {
  z-index: 1;
}
.home section.features .grid-small ul .features .paragraph {
  white-space: break-spaces;
}
.home section.features .grid-small ul .features:nth-child(1) h2 {
  color: #04afa2;
}
.home section.features .grid-small ul .features:nth-child(2) h2 {
  color: #0011e2;
}
.home section.features .grid-small ul .features:nth-child(3) h2 {
  color: #ffb600;
}
.home section.features .grid-small ul .features .title-medium,
.home section.features .grid-small ul .features .paragraph {
  transform: translate(0px, 5rem);
  opacity: 0;
}
.home section.features .grid-small ul .features .lottie {
  position: absolute;
  width: 61.8rem;
  height: 33.6rem;
  transform: translate3d(0, 0, 0);
}
.home section.features .grid-small ul .features .lottie svg {
  width: 275% !important;
  height: 275% !important;
  transform: translate3d(56rem, -29.4rem, 0px) !important;
  transform: translate3d(0, 0, 0);
}
.home section.features .grid-small ul .features .lottie-1 {
  top: 1rem;
  right: -32rem;
}
.home section.features .grid-small ul .features .lottie-2 {
  top: 4.8rem;
  right: -14rem;
}
.home section.features .grid-small ul .features .lottie-3 {
  top: 9rem;
  right: 6 rem;
}
.home .works {
  border-radius: 0rem 0rem 6.1rem 6.1rem;
  padding-bottom: 13rem;
  background-color: white;
  z-index: 1;
}
.home .blog-posts {
  margin-top: -50rem;
  padding-top: 23rem;
}
@media only screen and (max-width: 1023px) {
  .home section.hero {
    height: calc(var(--vh, 1vh) * 100);
  }
  .home section.hero .with-typer:after {
    bottom: 0.8rem;
    height: 4rem;
    padding-left: 0.1rem;
    margin-right: 0.5rem;
  }
  .home section.hero h1 {
    font-weight: 600;
  }
  .home section.hero .lottie {
    height: 4rem;
    width: 7rem;
  }
  .home section.hero .lottie-1 svg {
    transform: translate3d(5rem, -2rem, 0) !important;
  }
  .home section.hero .lottie-2 svg {
    transform: translate3d(4.9rem, -2.3rem, 0) !important;
  }
  .home section.hero .lottie-3 svg {
    transform: translate3d(5rem, -2rem, 0px) !important;
  }
  .home section.features {
    height: auto;
    padding-bottom: 26rem;
  }
  .home section.features .grid-small {
    margin-left: 100%;
  }
  .home section.features .grid-small ul {
    grid-template-columns: repeat(1, 1fr);
    width: 60vw;
    gap: 23.3rem;
  }
  .home section.features .grid-small ul .features .lottie-1 {
    top: -5rem;
    right: 1rem;
  }
  .home section.features .grid-small ul .features .lottie-2 {
    rotate: 344deg;
  }
  .home section.features .grid-small ul .features .lottie-3 {
    right: -15rem;
  }
}

.page-template-about-us section.about-us .parallax-container {
  height: 100rem;
  margin-top: 26rem;
}
.page-template-about-us section.about-us .parallax-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.page-template-about-us section.about-us .parallax-container .image-0 {
  left: 32rem;
  width: 50vw;
  height: auto;
  top: 10rem;
}
.page-template-about-us section.about-us .parallax-container .image-1 {
  width: 35vw;
  height: 50.3rem;
  right: 20rem;
  top: 20rem;
  z-index: 1;
}
.page-template-about-us section.about-us .parallax-container .image-2 {
  left: 14rem;
  bottom: 27rem;
  width: 54.3rem;
  height: auto;
}
.page-template-about-us section.about-us .parallax-container .image-3 {
  width: 29.8rem;
  height: auto;
  right: 31.7rem;
  top: -18rem;
}
.page-template-about-us section.customers .grid-medium {
  padding: 0 17rem;
}
.page-template-about-us section.customers .grid-medium .title-small {
  margin-bottom: 10rem;
}
.page-template-about-us section.customers .grid-medium {
  height: 40rem;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 12.5rem);
  grid-auto-rows: 7rem;
  justify-content: space-between;
  overflow: hidden;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask {
  height: 7rem;
  width: 12.5rem;
  overflow: hidden;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li {
  height: 7rem;
  width: 12.5rem;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(1) {
  top: 0rem;
  left: -0rem;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(2) {
  top: 7rem;
  left: -12.5rem;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(3) {
  top: 14rem;
  left: -25rem;
}
.page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(4) {
  top: 21rem;
  left: -37.5rem;
}
.page-template-about-us section.why-and-hi .title-small {
  color: #ff71b2;
}
@media only screen and (max-width: 1023px) {
  .page-template-about-us section.about-us {
    overflow: hidden;
  }
  .page-template-about-us section.about-us .parallax-container {
    height: 30rem;
  }
  .page-template-about-us section.about-us .parallax-container .image-0 {
    left: 0;
    right: 0;
    margin: auto;
    width: 75vw;
    top: 7rem;
  }
  .page-template-about-us section.about-us .parallax-container .image-1 {
    width: 74vw;
    height: auto;
    right: 0rem;
    top: 5rem;
    left: 0;
    margin: auto;
  }
  .page-template-about-us section.about-us .parallax-container .image-2 {
    left: unset;
    bottom: unset;
    right: 17rem;
    top: -22rem;
    width: 31.3rem;
  }
  .page-template-about-us section.about-us .parallax-container .image-3 {
    width: 14.8rem;
    right: unset;
    left: -1rem;
    top: 8rem;
    z-index: 1;
  }
  .page-template-about-us section.customers .grid-medium {
    padding: 0 2rem;
    height: auto;
    margin-bottom: 6rem;
  }
  .page-template-about-us section.customers .grid-medium .title-small {
    margin-bottom: 2rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper {
    grid-template-columns: repeat(3, 10.5rem);
    grid-auto-rows: 4rem;
    row-gap: 2rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask {
    height: 4rem;
    width: 10.5rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li {
    height: 4rem;
    width: 10.5rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(1) {
    top: 0rem;
    left: -0rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(2) {
    top: 4rem;
    left: -10.5rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(3) {
    top: 8rem;
    left: -21rem;
  }
  .page-template-about-us section.customers .grid-medium .logos_sliders-wrapper .logos-sliders-mask li:nth-child(4) {
    top: 12rem;
    left: -31.5rem;
  }
  .page-template-about-us section.why-and-hi .css-grid.content-grid {
    gap: 1rem;
    margin-bottom: 6rem;
  }
  .page-template-about-us section.why-and-hi .css-grid.content-grid .title-small {
    font-weight: 600;
    text-align: center;
  }
}

.blog .featured-post-grid a {
  text-decoration: none;
}
.blog .featured-post-grid .featured-post {
  grid-template-columns: 25% 75%;
  grid-auto-rows: 55.3rem;
  margin-bottom: 10rem;
}
.blog .featured-post-grid .featured-post .content {
  background-color: #8255ff;
  box-sizing: border-box;
  padding: 2.2rem;
}
.blog .featured-post-grid .featured-post .content .title-small {
  line-height: 110.478%;
  padding-bottom: 2rem;
  text-decoration: none;
}
.blog .featured-post-grid .featured-post .image {
  margin-bottom: 0;
}
.blog ul.blog-posts {
  background: none;
  row-gap: 6rem;
}
.blog ul.blog-posts .image {
  margin-bottom: 1rem;
}
.blog ul.blog-posts li:nth-child(9n+1) .image {
  height: 36.6rem;
}
.blog ul.blog-posts li:nth-child(9n+2) .image {
  height: 24.4rem;
}
.blog ul.blog-posts li:nth-child(9n+3) .image, .blog ul.blog-posts li:nth-child(9n+6) .image, .blog ul.blog-posts li:nth-child(9n+8) .image, .blog ul.blog-posts li:nth-child(9n+9) .image {
  height: 30.8rem;
}
.blog ul.blog-posts li:nth-child(9n+4) .image {
  height: 46.6rem;
}
.blog ul.blog-posts li:nth-child(9n+5) .image {
  height: 50.7rem;
}
.blog ul.blog-posts li:nth-child(9n+7) .image {
  height: 40.16rem;
}
.blog .basic-button.load-more {
  margin-top: 0;
}
@media only screen and (max-width: 1023px) {
  .blog .logotype-title_text.content-grid {
    margin-bottom: 5rem;
  }
  .blog .logotype-title_text.content-grid .paragraph p {
    text-align: center;
  }
  .blog .featured-post-grid .featured-post {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .blog .featured-post-grid .featured-post .content {
    order: 2;
    margin: -3rem 2rem 0 2rem;
  }
  .blog .featured-post-grid .featured-post .image {
    height: 26.2rem;
  }
  .blog .featured-post-grid .featured-post-grid {
    padding: 0;
  }
}

.single-project .site-main p {
  white-space: pre-line;
}
.single-project .splide__arrow {
  border-radius: 0;
  width: 4.6rem;
  height: 1.6rem;
  background: transparent;
}
.single-project img:not(header img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}
.single-project section.hero {
  padding-bottom: 10rem;
}
.single-project section.hero img.logo {
  width: 14.8rem;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 0;
}
.single-project section.hero .project-caption-title {
  margin-bottom: 1rem;
}
.single-project section.hero .project-title {
  margin-bottom: 5rem;
}
.single-project section.hero .project-header .paragraph {
  grid-column: 3/7;
}
.single-project section.hero .project-header .tags {
  padding-top: 1rem;
  grid-column: 1/3;
}
.single-project section.hero .project-header .tags .tag {
  filter: brightness(0.9);
}
.single-project .image {
  border-radius: 1rem;
  overflow: hidden;
}
.single-project section.more-projects {
  background: #f4f4f4;
  padding: 7rem 0 12rem 0;
}
.single-project section.more-projects .title-small {
  text-align: center;
  color: #ff0729;
  margin-bottom: 3rem;
}
.single-project section.more-projects .css-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 44rem;
  gap: 3rem;
}
.single-project section.more-projects .css-grid .image {
  height: 100%;
}
.single-project section.more-projects .css-grid .image img {
  border-radius: 0;
}
.single-project section.more-projects .css-grid .tags .tag {
  background-color: white;
}
@media only screen and (max-width: 1023px) {
  .single-project img:not(header img) {
    height: auto;
  }
  .single-project section.hero .project-title {
    margin-bottom: 3rem;
  }
  .single-project section.hero .project-header {
    gap: 3rem;
  }
  .single-project section.hero .project-header .tags,
  .single-project section.hero .project-header .paragraph {
    grid-column: 1/7;
  }
  .single-project section.more-projects {
    padding-bottom: 0;
  }
  .single-project section.more-projects .css-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3rem;
  }
  .single-project section.more-projects .css-grid li {
    position: relative;
    height: fit-content;
  }
  .single-project section.more-projects .css-grid li:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 0.56;
    top: 0;
    left: 0;
  }
  .single-project section.more-projects .css-grid li .image {
    height: 70vw;
    margin-bottom: 0;
  }
  .single-project section.more-projects .css-grid li .flex-v-align {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
  }
  .single-project section.more-projects .css-grid li .flex-v-align .tags {
    display: none;
  }
}

.single-post section.hero {
  height: 45vh;
  background-size: cover !important;
  margin-bottom: 14rem;
  background-position: center !important;
}
.single-post section.hero .header {
  bottom: -5rem;
  right: 5rem;
  width: 57.5rem;
  padding: 3rem;
}
.single-post section.hero .header .reading-time {
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.single-post section.hero .header .reading-time:before {
  content: "";
  height: 0.1rem;
  width: 100%;
  position: block;
  background-color: white;
}
.single-post section.hero .header .title-small {
  margin-bottom: 3rem;
}
.single-post section.hero .header .bottom ul.social {
  display: flex;
  gap: 2rem;
}
.single-post section.hero .header .bottom ul.social button {
  width: 1.5rem;
  height: 1.5rem;
  font-family: "Icons";
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  background: none;
  border: none;
}
.single-post section.post-content .paragraph {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 0.1rem black solid;
}
.single-post section.post-content .paragraph-small {
  margin-bottom: 10rem;
}
.single-post section.post-content .paragraph-small p {
  white-space: pre-line;
  margin-bottom: 2rem;
}
.single-post section.post-content .paragraph-small h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.single-post section.post-content .paragraph-small img {
  width: 100%;
  height: auto;
  margin: 2rem auto;
}
.single-post section.blog-posts {
  padding-top: 9rem;
}
.single-post .post-form {
  color: #FF0729;
  text-align: center;
  padding-bottom: 4rem;
  position: relative;
}
.single-post .post-form:after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 120%;
  height: 100%;
  background: url("../../assets/f-bg.svg") no-repeat center 0;
}
.single-post .post-form h2 {
  color: #FF0729;
  text-align: center;
  white-space: pre-line;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem; /* 108.108% */
  letter-spacing: -0.111rem;
}
.single-post .post-form .small-text {
  color: #FF0729;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 143.75% */
  letter-spacing: -0.048rem;
  margin: 2rem auto;
  white-space: pre-line;
  max-width: 46rem;
}
.single-post .post-form .form-area {
  padding: 3.5rem;
  border-radius: 2.4rem;
  border: 1px solid #FF0729;
  font-size: 1.8rem;
  width: 64rem;
  margin: 0 auto;
  direction: rtl;
  background: white;
  position: relative;
  z-index: 999;
}
.single-post .post-form .form-area .small-text {
  color: #FF0729;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 143.75% */
  letter-spacing: -0.048rem;
  margin-top: 2rem;
  white-space: pre-line;
}
.single-post .post-form .form-area form {
  display: grid;
  grid-template-columns: 1fr 6rem;
  gap: 2rem;
  direction: rtl;
  position: relative;
}
.single-post .post-form .form-area form .wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
}
.single-post .post-form .form-area form .wpcf7-response-output {
  visibility: hidden;
  transition: 0.3s all;
}
.single-post .post-form .form-area form.sent .wpcf7-response-output {
  visibility: visible;
  top: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  font-size: 2.6rem;
}
.single-post .post-form .form-area form .mail-field {
  grid-column: 1/2;
  grid-row: 1/2;
}
.single-post .post-form .form-area form .button-wrapper {
  grid-column: 2/3;
  grid-row: 1/2;
}
.single-post .post-form .form-area form .button-wrapper button {
  width: 6rem;
  height: 6rem;
  padding: 0;
}
.single-post .post-form .form-area form .button-wrapper button .button__label {
  background-image: url("../../assets/down-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.single-post .post-form .form-area form .approve-field {
  grid-column: 1/-1;
}
.single-post .post-form .form-area button[type=submit] {
  width: 100%;
  border: none;
  background: #FF0729;
  color: white;
  padding: 2rem 3rem;
  border-radius: 10rem;
}
.single-post .post-form .form-area .field {
  position: relative;
}
.single-post .post-form .form-area .field label.checkbox {
  color: black !important;
  font-weight: 400;
  font-size: 1.6rem !important;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.5rem;
}
.single-post .post-form .form-area .field label.checkbox span {
  margin: 0;
}
.single-post .post-form .form-area .field label:not(.checkbox) {
  position: absolute;
  top: 1.6rem;
  right: 1rem;
  left: auto;
  padding: 0 4px;
  color: #B7B7B7;
  pointer-events: none;
  transition: all 0.2s ease;
  background: white;
  text-align: right;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 2.61rem */
  border-radius: 30rem;
}
@media screen and (max-width: 1023px) {
  .single-post .post-form .form-area .field label:not(.checkbox) {
    font-size: 2.2rem;
  }
}
.single-post .post-form .form-area {
  /* float on focus (works because span is sibling of label) */
}
.single-post .post-form .form-area .field .wpcf7-form-control-wrap:focus-within input {
  border-color: var(--dark-blue);
  outline: none;
}
.single-post .post-form .form-area .field .wpcf7-form-control-wrap:focus-within + label {
  top: -0.6rem;
  right: 2rem;
  color: var(--dark-blue);
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .single-post .post-form .form-area .field .wpcf7-form-control-wrap:focus-within + label {
    top: -0.8rem;
  }
}
.single-post .post-form .form-area {
  /* stay floated when input has text */
}
.single-post .post-form .form-area .field:has(.wpcf7-form-control:not(:placeholder-shown)) label {
  top: -0.6rem;
  right: 2rem;
  color: var(--dark-blue);
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .single-post .post-form .form-area .field:has(.wpcf7-form-control:not(:placeholder-shown)) label {
    top: -0.8rem;
  }
}
.single-post .post-form .form-area input {
  border-radius: 30rem;
  border: 1px solid #C3C0B5;
  background: rgba(255, 255, 255, 0.99);
  box-sizing: border-box;
  height: 6rem;
  padding: 0 2rem;
  width: 100%;
}
.single-post .post-form .form-area input::placeholder {
  opacity: 0;
}
.single-post .post-form .form-area input:not(:placeholder-shown) {
  font-size: 1.8rem;
}
.single-post .post-form .form-area input.wpcf7-not-valid {
  border-color: #EB5757;
}
.single-post .post-form .form-area .checkbox {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  color: white !important;
  position: static;
  pointer-events: all;
  cursor: pointer;
  display: flex;
  border-radius: 2rem;
  align-items: center;
  background: none;
  border: none;
  justify-content: center;
  height: 100%;
}
.single-post .post-form .form-area .checkbox input {
  display: none;
}
.single-post .post-form .form-area .checkbox input:checked + span:before {
  scale: 1;
}
.single-post .post-form .form-area .checkbox input:checked + span:after {
  opacity: 1;
}
.single-post .post-form .form-area .checkbox span.wpcf7-list-item-label {
  display: inline-block;
  border-radius: 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 2.6rem;
  border: 0.2rem solid #C3C0B5;
  position: relative;
  margin-inline-end: 1.5rem;
}
.single-post .post-form .form-area .checkbox span.wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #FF0729;
  border-radius: 50%;
  z-index: 9;
  opacity: 0;
  transition: 0.3s all;
}
.single-post .post-form .form-area .checkbox span.wpcf7-list-item-label:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 0.4rem);
  height: calc(100% + 0.4rem);
  inset: 0;
  right: -0.2rem;
  top: -0.2rem;
  background: var(--green-arrow-garident);
  border-radius: 50%;
  z-index: 9;
  scale: 0;
  transition: 0.3s all;
}
.single-post .post-form .form-area h2 {
  margin-bottom: 3rem;
}
.single-post .post-form .form-area .small-text {
  color: rgba(4, 1, 2, 0.5);
  text-align: right;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.92rem */
  letter-spacing: -0.016rem;
  text-align: center;
  margin: 1.5rem 0 0 0;
}
@media only screen and (max-width: 1023px) {
  .single-post section.hero {
    height: 40rem;
    margin-bottom: 24rem;
  }
  .single-post section.hero .header {
    width: auto;
    right: 0;
    left: 0;
    margin: auto 2rem;
    bottom: clamp(-23rem, -22vw, -19rem);
  }
  .single-post section.hero .project-header {
    gap: 3rem;
  }
  .single-post section.post-content .paragraph {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .single-post .post-form .checkbox {
    text-align: right;
  }
  .single-post .post-form .form-area {
    width: 100%;
    box-sizing: border-box;
  }
  .single-post .post-form:after {
    display: none;
  }
}

.post-type-archive-service footer {
  background-color: #fff8e5;
}
.post-type-archive-service section.services {
  overflow-x: hidden;
  height: 100vh;
  box-sizing: border-box;
  background-color: #daf1f0;
}
.post-type-archive-service section.services .grid-small {
  height: 100%;
}
.post-type-archive-service section.services .service.css-grid {
  grid-template-columns: 35rem 44rem;
  gap: 6.5rem;
  top: 3rem;
}
.post-type-archive-service section.services .service .text .paragraph-medium {
  opacity: 0;
  transform: translateY(2rem);
  margin-bottom: 2rem;
}
.post-type-archive-service section.services .service .tags .tag {
  opacity: 0;
}
.post-type-archive-service section.services .service .headline {
  transition: 0.3s all;
}
.post-type-archive-service section.services .service-1 .headline {
  margin-top: 0rem;
}
.post-type-archive-service section.services .service-1 .tags .tag {
  background-color: #A5E2DE;
}
.post-type-archive-service section.services .service-2 .headline {
  margin-top: 10rem;
}
.post-type-archive-service section.services .service-2 .tags .tag {
  background-color: #CBCFFF;
}
.post-type-archive-service section.services .service-3 .headline {
  margin-top: 20rem;
}
.post-type-archive-service section.services .service-3 .tags .tag {
  background-color: #FFECBA;
}
.post-type-archive-service section.services .service-1 .headline {
  color: #04afa2;
}
.post-type-archive-service section.services #services_lottie {
  width: 45.2rem;
  height: 22rem;
  top: 24rem;
  left: 18rem;
}
.post-type-archive-service section.services #services_lottie svg {
  width: 67.8rem !important;
  height: 33rem !important;
}
@media only screen and (max-width: 1023px) {
  .post-type-archive-service header.menu-opened.scroll-bottom.contact-us a svg path {
    fill: #FF0729 !important;
  }
  .post-type-archive-service section.services {
    padding-top: 7rem !important;
  }
  .post-type-archive-service section.services .grid-small {
    margin: 0 2rem;
    padding: 0;
  }
  .post-type-archive-service section.services #services_lottie {
    width: 100%;
    height: 19rem;
    top: 14rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .post-type-archive-service section.services #services_lottie svg {
    width: 100% !important;
    height: auto !important;
  }
  .post-type-archive-service section.services .service.css-grid {
    grid-template-columns: 1fr;
    gap: 20.5rem;
    top: 5rem;
  }
  .post-type-archive-service section.services .service.css-grid .headline {
    font-size: 2.8rem;
    margin-top: 0 !important;
  }
  .post-type-archive-service section.services .service.css-grid .text strong {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .post-type-archive-service section.services .service.css-grid .text .paragraph-medium {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .post-type-archive-service section.services .service.css-grid .tags {
    margin-top: 1rem;
  }
  .post-type-archive-service section.services .service-2 .headline {
    text-align: center;
  }
  .post-type-archive-service section.services .service-3 .headline {
    text-align: left;
  }
}

.error404 section {
  height: 100vh;
  padding-top: 0 !important;
  overflow: hidden;
  position: relative;
}
.error404 section .surikata-video {
  position: absolute;
  display: none;
  width: 18.8rem;
  height: 23.3rem;
  -webkit-transform-origin-y: 20rem;
  transform: scale(0);
  transition: 0.3s all;
}
.error404 section .grid-medium {
  position: relative;
  z-index: 3;
}
.error404 section .css-grid.content-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 1rem;
}
.error404 section .css-grid.content-grid h1 {
  direction: ltr;
}
.error404 section .basic-button {
  margin-top: 5rem;
  transform: translate(0px, 0rem) !important;
}

.page-template-simple section {
  padding-bottom: 10rem !important;
}
.page-template-simple section h1 {
  margin-bottom: 4rem;
}
.page-template-simple section h2,
.page-template-simple section .paragraph-small {
  font-size: 1.8rem;
}
.page-template-simple section h2 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.page-template-simple section a {
  text-decoration: none;
  color: #ff0729;
}

/*# sourceMappingURL=theme-style.css.map */
