@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;800&display=swap");
@import url("http://fonts.googleapis.com/css?family=Aboreto&subset=latin,latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap");

:root {
  --black: #1e1e1e;
  --black2: #282a35;
  --white: #f2f2f2;
  --white2: #e2e7ed;
  --beige: #d3cdc8;
  --main-color: #111417;
  --green: #04aa6d;
  --yellow: #ffb703;
  --boxshadow: rgba(0, 0, 0, 0.1);
  --boxshadow-blue: 0 5px 15px rgba(29, 57, 82, 1);
}

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
}

* {
  scrollbar-width: auto;
  scrollbar-color: var(--main-color) var(--beige);
}
*::-webkit-scrollbar {
  width: 16px;
}
*::-webkit-scrollbar-track {
  background: var(--main-color);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--beige);
  border-radius: 8px;
  border: 2px solid var(--main-color);
}
::selection {
  background-color: var(--main-color);
}

.hidden-left {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
  transition-delay: 0.2s;
}
.hidden-right {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(100%);
  transition: all 1s;
  transition-delay: 0.2s;
}
@media only screen and (max-width: 767px) {
  .hidden-right {
    transform: translateX(-100%);
    transition: all 1.5s;
  }
}

.hidden-fade {
  opacity: 0;
  filter: blur(5px);
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.notfound {
  max-width: 520px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}
.notfound .notfound-404 {
  position: relative;
  height: 240px;
}
.notfound .notfound-404 h1 {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 252px;
  font-weight: 900;
  margin: 0px;
  color: var(--black2);
  text-transform: uppercase;
  letter-spacing: -40px;
  margin-left: -20px;
}
.notfound .notfound-404 h1 > span {
  text-shadow: -8px 0px 0px var(--white);
}
.notfound .notfound-404 h3 {
  font-family: "Cabin", sans-serif;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black2);
  margin: 0px;
  letter-spacing: 3px;
  padding-left: 6px;
}
.notfound h2 {
  font-family: "Cabin", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 0px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 200px;
  }
  .notfound .notfound-404 h1 {
    font-size: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    height: 162px;
  }
  .notfound .notfound-404 h1 {
    font-size: 162px;
    height: 150px;
    line-height: 162px;
  }
  .notfound h2 {
    font-size: 16px;
  }
}

section {
  min-height: 10vh;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
section.section-padding {
  padding: 100px 0;
}

@media only screen and (max-width: 767px) {
  .main-section {
    height: 70vh;
  }
  .fullscreen-image img {
    height: 70vh;
  }
  .overlay {
    width: 100%;
    top: 50px;
  }
  .text-container {
    text-align: left;
    font-size: 0.7rem;
  }
  .first-button .cta-btn {
    left: 25vw;
    width: 125px;
    padding: 8px;
    font-size: 10px;
    text-align: center;
  }
  .contact-box {
    flex-direction: column-reverse;
  }
  .contact-left {
    width: 100%;
  }
  .contact-right {
    width: 100%;
    padding-left: 0;
  }
  .about-text h1,
  .about-text-person h1 {
    font-size: 2rem;
  }
  .price-extra h1 {
    font-size: 2rem;
  }
  .control {
    padding: 20px 0 50px;
  }
  .extra-box .top-box {
    font-size: 1rem;
  }
  .extra-box {
    width: 35vw;
  }
  .extra-box .extra-contact {
    font-size: 13px;
  }
  .extra-box .bottom-box:hover {
    letter-spacing: 4px;
  }
  .price-extra-boxes {
    gap: 20px;
  }
  .about-box-bg {
    flex-direction: column;
  }
  .about-team-bg {
    flex-direction: column;
  }
  .main-person {
    max-width: 300px;
    max-height: 300px;
  }
  .other-persons {
    width: 100%;
  }
  .social-btns .btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .social-btns .btn .fa {
    font-size: 20px;
  }
}

.link {
  text-decoration: none;
}

.polityka {
  padding: 100px;
  line-height: 200%;
}
.polityka h1 {
  color: var(--main-color);
  font-size: 2rem;
}
.polityka h3,
.polityka h2 {
  color: var(--main-color);
  font-size: 1.5rem;
  padding: 40px 0 10px;
}
.polityka h4 {
  color: var(--main-color);
  font-size: 1rem;
  padding-left: 50px;
}
.polityka p,
.polityka li {
  color: var(--black);
  padding-left: 100px;
}
.polityka ul,
.polityka ol {
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 725px) {
  .polityka {
    margin-top: 150px;
    padding: 10px;
    line-height: 100%;
  }
  .polityka h1 {
    color: var(--main-color);
    font-size: 1rem;
  }
  .polityka h3,
  .polityka h2 {
    color: var(--main-color);
    font-size: 1rem;
    padding: 10px 0 5px;
  }
  .polityka h4 {
    color: var(--main-color);
    font-size: 1rem;
    padding-left: 20px;
  }
  .polityka p,
  .polityka li {
    color: var(--black);
    padding-left: 50px;
    font-size: 0.5rem;
  }
}

.title {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.title h2 {
  font-family: "Poiret One";
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3em;
  margin-bottom: 30px;
  color: var(--black);
}
.title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 30%;
  height: 1px;
  background: var(--black);
  transition: 0.4s;
}
.title h2:hover::before {
  bottom: -4px;
  height: 3px;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .title h2 {
    font-size: 2rem;
  }
}

.line-bg {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.line {
  height: 100px;
  width: 2px;
  background: var(--black2);
}
@media (max-width: 725px) {
  .line-bg {
    width: 100%;
    padding: 20px 0;
  }
  .line {
    height: 50px;
  }
}

#landingPage {
  z-index: 999999;
  background-color: var(--main-color);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.animation-ready #landingPage {
  animation: landing 2s forwards 1s;
}
@keyframes landing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

#logo {
  width: 500px;
  height: auto;
  position: absolute;
}
.animation-ready #logo {
  animation: zoomOutlogo 2s forwards 1s;
}
@keyframes zoomOutlogo {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@media (max-width: 725px) {
  #logo {
    width: 70%;
  }
}

.animation-ready .splide__div-bg {
  animation: slideIn 1s ease-out forwards 1.5s, slideOut 1.5s forwards 6.6s;
}
.main-slidder {
  z-index: 100;
}
.splide__list {
  height: 100vh;
}
.splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.splide__slide {
  position: relative;
  text-align: center;
}

.splide__div-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  min-width: 500px;
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  padding-top: 150px;
  box-sizing: border-box;
  background: rgba(17, 20, 23, 0.4);
  backdrop-filter: blur(12px) brightness(0.5);
  -webkit-backdrop-filter: blur(12px) brightness(0.5);
  opacity: 0;
  z-index: 1000;
}

.slide-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 80%;
  max-height: 200px;
  width: auto;

  object-fit: scale-down;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.splide__div-bg.exit {
  animation: slideOut 1s forwards;
}
.splide__div-img img {
  display: none;
}

.splide__text a {
  font-family: "Poiret One";
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1.2;
  display: block;
  margin-bottom: 20px;
  color: var(--white2);
  text-decoration: none;
}
.splide__text h1 {
  font-family: "Exo 2";
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 300;
  padding: 0;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 100%;
  color: var(--white2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0%);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.grid {
  padding: 100px 0;
}
.grid-desc-bg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-desc {
  width: 50vh;
  text-align: center;
  font-family: "Exo 2";
  font-size: 1.1rem;
  line-height: 130%;
  padding-bottom: 40px;
}
.grid-box-bg {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-bg {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}
.grid-box {
  width: 250px;
  height: 250px;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
}
.grid-box:hover {
  cursor: pointer;
}
.grid-box img {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.grid-box:hover img {
  z-index: 1;
  transform: scale(1.2);
}
.grid-box::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
.grid-box:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.about {
  background: var(--beige);
  padding: 50px;
}
.about-image {
  height: 60vh;
  padding: 0 200px;
  padding-bottom: 30px;
}
.about-image-experience-bg {
  width: 300px;
  height: 280px;
  background: var(--main-color);
  z-index: 22;
  left: 60%;
  padding: 10px;
  position: absolute;
}
.about-image-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  transition-delay: 500ms;
}
.about-image-experience h1 {
  color: var(--beige);
  font-size: 4rem;
  font-weight: bold;
  font-family: "Poiret One";
}
.about-image-experience h2 {
  color: var(--beige);
  font-size: 2rem;
  font-weight: lighter;
  font-family: "Poiret One";
}
.about-image-experience p {
  font-family: "Exo 2";
  color: var(--white2);
  font-size: 1rem;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.about-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.services-text-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services-text-first {
  width: 80vw;
  text-align: center;
}
.services-text-first-bg {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 40px;
}
.services-text-first-text {
  width: 60%;
}
.services-bg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
  background: var(--beige);
}
.services-text-left-bg {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-right: 30px;
  height: 100%;
}
.services-text-left {
  padding-bottom: 20px;
}
.services-text-up {
  display: flex;
  align-items: center;
}
.services-text-mid-head {
  transition-delay: 200ms;
}
.services-text-mid-desc {
  transition-delay: 700ms;
}
.services-text-mid-button {
  transition-delay: 1000ms;
}
.services-text-dot {
  width: 30px;
  height: 5px;
  background: var(--main-color);
}
.services-text {
  padding-left: 5px;
  font-size: 4rem;
  font-weight: bold;
  font-family: "Poiret One";
}
.services-text-mid-head {
  padding: 10px 0;
  font-size: 2rem;
  font-family: "Poiret One";
}
.services-text-mid-desc {
  padding: 20px 10px 50px;
  font-size: 1.3rem;
  line-height: 130%;
  width: 80%;
  font-family: "Exo 2";
}
.services-text-mid-desc p {
  padding: 8px 0;
}
.services-text-mid-button {
  background: var(--main-color);
  padding: 10px 20px;
  width: 40%;
  text-align: center;
  transition: 0.5s;
}
.services-text-mid-button:hover {
  cursor: pointer;
  letter-spacing: 3px;
}
.services-text-mid-button a {
  text-decoration: none;
  color: var(--beige);
}

.numbers-bg {
  display: flex;
  justify-content: center;
}
.numbers-text-section {
  width: 100%;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
}
.numbers-text-section-bg {
  width: 80%;
  display: flex;
}
.numbers-dot {
  margin-top: 6%;
  height: 50%;
  width: 7px;
  background: var(--main-color);
}
.numbers-text-bg {
  padding: 20px;
  text-align: left;
}
.numbers-text-head {
  font-family: "Poiret One";
  font-weight: 900;
  text-transform: capitalize;
  color: var(--black2);
  font-size: 4rem;
  padding-bottom: 10px;
  transition-delay: 500ms;
}
.numbers-text {
  font-family: "Exo 2";
  font-size: 1.2rem;
  line-height: 130%;
  padding-left: 25px;
  padding-bottom: 50px;
  transition-delay: 1000ms;
}
.numbers-text p {
  padding-bottom: 20px;
}
.number-box {
  text-align: center;
  padding: 10px;
  width: calc(80% / 5);
}
.number-box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.number-box img {
  height: 100px;
  opacity: 0.4;
}
.number-box-hr-bg {
  padding: 10px;
  width: 100%;
}
.number-box-hr {
  height: 2px;
  background: var(--main-color);
}
.number-box-text .number {
  font-family: "Poiret One";
  color: var(--black2);
  font-weight: bold;
  letter-spacing: 3px;
}
.number-box-text .number-dec {
  font-family: "Exo 2";
}
.number-box:nth-child(2) {
  transition-delay: 500ms;
}
.number-box:nth-child(3) {
  transition-delay: 1000ms;
}
.number-box:nth-child(4) {
  transition-delay: 1500ms;
}
.number-box:nth-child(5) {
  transition-delay: 2000ms;
}

.services-right-bg {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-right: 30px;
  height: 60vh;
}
.services-box {
  display: flex;
  height: 100%;
  gap: 0 10px;
}
.services-box a {
  text-decoration: none;
}
.service-box {
  width: 30vh;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition-delay: 1000ms;
}

figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
figure::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
figure:hover::before {
  animation: shine 0.75s;
}

.service-text {
  z-index: 2;
  padding: 10px;
  background: var(--black);
}
.service-text p {
  text-decoration: none;
  color: var(--beige);
}

.about-card {
  padding: 60px 0;
  background: var(--main-color);
}
.about-card .title h2 {
  color: var(--beige);
}
.about-card .title h2::before {
  background: var(--beige);
}

.services-box-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.service-card-first {
  display: flex;
}
.service-card-second {
  display: flex;
}
.service-card {
  margin: 8px;
}
.service-card-first .service-card:nth-child(2) {
  transition-delay: 300ms;
}
.service-card-first .service-card:nth-child(3) {
  transition-delay: 600ms;
}
.service-card-first .service-card:nth-child(4) {
  transition-delay: 900ms;
}
.service-card-second .service-card:nth-child(1) {
  transition-delay: 1100ms;
}
.service-card-second .service-card:nth-child(2) {
  transition-delay: 1300ms;
}
.service-card-second .service-card:nth-child(3) {
  transition-delay: 1500ms;
}
.service-card-second .service-card:nth-child(4) {
  transition-delay: 1700ms;
}

.flip-box {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid var(--beige);
  perspective: 1000px;
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flip-box-front {
  background-color: var(--beige);
  color: var(--black2);
  font-family: "Exo 2";
}
.flip-box-front-img {
  height: 100px;
  width: 100px;
}
.flip-box-front img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.flip-box-front h2 {
  text-transform: capitalize;
}
.flip-box-back {
  background-color: var(--white2);
  color: var(--main-color);
  transform: rotateY(180deg);
  padding: 16px;
  font-family: "Exo 2";
}

@media (max-width: 900px) {
  .slide-logo {
    display: none !important;
  }

  .splide__slide img {
    height: 65vh;
    object-fit: cover;
  }

  .splide__div-bg {
    position: absolute !important;
    justify-content: flex-start;
    top: 65vh !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 35vh !important;
    padding: 0;
    margin: 0 !important;
    z-index: 2;
    min-width: unset;
    background: transparent;
    backdrop-filter: none;
    box-sizing: border-box !important;
  }

  .splide__div-img {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .splide__div-img img {
    display: block !important;
    height: 100%;
    width: 100%;
    filter: blur(10px) brightness(0.8);
    object-fit: cover;
  }

  .splide__div {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .splide__text {
    width: 100%;
    text-align: center;
  }
  .splide__text a {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .splide__text h1 {
    padding: 10px;
    font-size: 0.8rem;
    max-width: 90%;
  }

  .numbers-text-section {
    padding: 0;
  }
  .services-text-first {
    width: 100%;
  }
  .numbers-text-head {
    font-size: 2rem;
  }
  .numbers-text {
    font-size: 0.7rem;
    padding: 0;
  }
  .numbers-dot {
    margin-top: 20%;
  }
  .numbers-bg {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .number-box {
    width: calc(40%);
    transition-delay: 0ms;
  }
  .services-bg {
    flex-direction: column;
    padding: 30px;
  }
  .services-text {
    font-size: 2rem;
  }
  .services-text-mid-head {
    font-size: 1.3rem;
  }
  .services-text-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .services-text-mid-desc {
    width: 100%;
    font-size: 1rem;
    padding: 7px 5px 20px;
  }
  .services-text-mid-desc p {
    padding: 2px 0;
  }
  .services-text-mid-button {
    width: 70%;
  }
  .services-right-bg {
    padding-right: 0;
    height: auto;
  }
  .services-box {
    flex-direction: column;
    width: 100%;
    gap: 20px 0;
  }
  .service-box {
    height: 25vh;
    width: 100%;
  }
  figure:hover::before {
    animation: shine 1.25s;
  }
  .about-card {
    padding: 60px 0;
    background: var(--main-color);
  }
  .about-card .title h2 {
    color: var(--beige);
  }
  .about-card .title h2::before {
    background: var(--beige);
  }
  .services-box-card {
    flex-direction: column;
  }
  .service-card-first,
  .service-card-second {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .service-card {
    margin: 5px;
    flex: 0 0 calc(50% - 20px);
  }
  .flip-box {
    width: 100%;
    height: 20vh;
  }
  .flip-box-front-img {
    height: 50px;
    width: 50px;
  }
  .flip-box-front h2 {
    font-size: 1rem;
    text-transform: capitalize;
  }
  .flip-box-back {
    font-size: 0.8rem;
    padding: 5px;
  }
  .grid-desc-bg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .grid-desc {
    padding: 0 10px;
  }
  .grid-bg {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .grid-box-bg {
    padding: 10px;
  }
  .grid-box {
    width: 100%;
    height: 150px;
  }
  .about {
    padding: 10px;
  }
  .about-image {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .about-image-experience-bg {
    position: relative;
    left: 0;
    width: 100%;
    height: 20vh;
  }
  .about-image-experience h1 {
    font-size: 3rem;
  }
  .about-image-experience h2 {
    font-size: 2rem;
  }
  .about-image-experience p {
    font-size: 1rem;
  }
  .about-image-experience,
  .services-text-mid-head,
  .services-text-mid-desc,
  .services-text-mid-button,
  .numbers-text-head,
  .numbers-text,
  .number-box:nth-child(n),
  .service-box,
  .service-card-first .service-card:nth-child(n),
  .service-card-second .service-card:nth-child(n) {
    transition-delay: 0ms;
  }
}
img.slide-logo {
  object-fit: scale-down;
}
