@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap);
body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, sans-serif;
  padding-top: 80px;
  line-height: 1.6666;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-user-select: none;
  user-select: none;
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
h2 {
  color: #353f4f;
  font-size: 2.875rem;
}
.text-orange {
  color: #ff4500;
}
.lead-small {
  font-size: 1.1rem;
  font-weight: 300;
}
.lead-400 {
  font-weight: 400;
}
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgb(248 249 250 / 70%) !important;
}
.pt-50 {
  padding-top: 50px;
}
.pt-75 {
  padding-top: 75px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-110 {
  padding-top: 110px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-110 {
  padding-bottom: 110px;
}
.navbar {
  background-color: rgb(255 255 255 / 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 3px rgb(96 96 96 / 0.1);
  padding: 20px 0;
}
.navbar-brand {
  font-weight: 600;
}
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #f04c31;
}
.navbar .dropdown-menu {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0;
}
.navbar .dropdown-item {
  padding: 10px 20px;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:active {
  background: linear-gradient(to right, #f04c31 0%, #ffa387 100%);
  color: #fff;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding-top: 20px;
  }
  .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
  }
  .navbar-toggler {
    margin-left: auto;
  }
  .navbar-brand {
    margin-right: auto;
  }
  .navbar > .container {
    justify-content: space-between;
  }
}
.btn-primary {
  background: linear-gradient(to right, #f04c31 0%, #ffa387 100%);
  border: none;
  box-shadow: 0 8px 32px 0 rgb(31 38 135 / 0.37);
}
.btn-primary:hover {
  background: linear-gradient(to right, #d83a20 0%, #ffa387 100%);
  border: none;
}
.code-animation-container {
  background: linear-gradient(
    to right,
    rgb(240 76 49 / 79%) 0%,
    rgb(255 163 135 / 78%) 100%
  );
  box-shadow: 0 8px 32px 0 rgb(31 38 135 / 0.37);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  overflow: hidden;
  position: relative;
}
.code-animation-container code {
  display: block;
  white-space: pre-wrap;
  font-family: "Consolas", "Monaco", monospace;
  line-height: 1.5;
  font-size: 16px;
  color: #fff;
}
.code-animation-container .keyword {
  color: #007bff;
}
.code-animation-container .string {
  color: #ce9178;
}
.code-animation-container .comment {
  color: #71ffcc;
  font-style: italic;
}
.code-animation-container .function {
  color: #ffea47;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: #fafaf8;
  animation: blink 0.7s infinite;
  position: absolute;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.tech-icon {
  transition: transform 0.3s ease-in-out;
}
.tech-icon:hover {
  transform: scale(1.1);
}
.tech-icon i {
  color: #686d76;
}
.tech-icon i:hover {
  color: #f04c31;
}
#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-wrapper {
  position: relative;
  z-index: 1;
  background-color: rgb(255 255 255 / 0.8);
}
.service-card {
  transition: all 0.3s ease;
  overflow: hidden;
  background-image: linear-gradient(
    180deg,
    rgb(244 244 249 / 0.8) 50%,
    rgb(244 244 249 / 0.05) 100%
  );
  border: none;
  transition: transform 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.05);
}
.service-card img {
  padding-top: 42px;
  margin: 0 8px 60px;
  max-height: 200px;
}
.service-icon-wrapper {
  flex-shrink: 0;
  margin-right: 20px;
}
.service-icon {
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(to right, #f04c31 0%, #ffa387 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item {
  margin-bottom: 30px;
}
.service-content {
  flex-grow: 1;
}
.service-card:hover .btn {
  background-color: #f04c31;
  color: #fafaf8;
}
.tech-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.tech-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.tech-slide {
  flex: 0 0 100%;
}
.tech-slider-dots {
  text-align: center;
  padding: 20px 0;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}
.active-dot {
  background-color: #f04c31;
}
.map-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgb(255 255 255 / 0.95);
  color: #333;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  max-width: 300px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent p {
  margin: 0 0 10px 0;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s ease;
  flex: 1;
}
.cookie-button.accept {
  background: #f04c31;
  color: #fff;
}
.cookie-button.accept:hover {
  background: #ffa387;
}
.cookie-button.reject {
  background-color: #f1f1f1;
  color: #333;
}
.cookie-button.reject:hover {
  background-color: #e1e1e1;
}
@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}
.brain-bulb-container {
  position: relative;
  cursor: pointer;
}
.bulb {
  width: 100px;
  height: 150px;
  position: relative;
}
.bulb-top {
  width: 100px;
  height: 100px;
  background: rgb(255 255 255 / 0.1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.brain {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.brain-path {
  position: absolute;
  background-color: #f04c31;
  opacity: 0.7;
}
.path1 {
  width: 60px;
  height: 60px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  left: 0;
  top: 0;
}
.path2 {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
  right: 0;
  top: 10px;
}
.path3 {
  width: 55px;
  height: 55px;
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  left: 5px;
  bottom: 0;
}
.path4 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 10px;
  bottom: 10px;
}
.bulb-middle {
  width: 50px;
  height: 25px;
  background: rgb(255 255 255 / 0.1);
  position: absolute;
  top: 95px;
  left: 25px;
}
.light-glow {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgb(255 163 135 / 0.8) 0%, #fff0 70%);
  position: absolute;
  top: -50px;
  left: -50px;
  opacity: 0;
  pointer-events: none;
}
.bulb-bottom {
  width: 56px;
  height: 25px;
  background: #555;
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: 0;
  left: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
  border: 2px solid #444;
}
.bulb-bottom::after {
  content: "ON/OFF";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #ddd;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.bulb-bottom:hover {
  background: #777;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.3);
  transform: translateY(-2px);
}
.bulb-bottom:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
}
.bulb-bottom.active {
  background: #f04c31;
  border-color: #d03921;
}
.bulb-bottom.active::after {
  color: #fff;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(240 76 49 / 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0;
  }
}
.bulb-bottom:not(.active) {
  animation: pulse 2s infinite;
}
.light-waves {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.7;
  pointer-events: none;
}
.wave {
  position: absolute;
  border: 2px solid rgb(255 163 135 / 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: wave-animation 6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.wave1 {
  width: 100%;
  height: 100%;
}
.wave2 {
  width: 80%;
  height: 80%;
  animation-delay: -2s;
}
.wave3 {
  width: 60%;
  height: 60%;
  animation-delay: -4s;
}
@keyframes wave-animation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.toast-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}
.toast-overlay.show {
  opacity: 1;
  visibility: visible;
}
.toast {
  position: fixed;
  top: 220px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background-color: #fff;
  color: #333;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 400px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast-content {
  display: flex;
  align-items: center;
}
.toast-content i {
  font-size: 24px;
  color: #f04c31;
  margin-right: 15px;
}
.toast-message h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}
.toast-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f04c31;
  transform-origin: left;
}
.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.toast-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}
.toast-close:hover {
  color: #333;
}
.contact-card {
  background: rgb(255 255 255 / 0.041);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
  backdrop-filter: blur(8.2px);
  -webkit-backdrop-filter: blur(8.2px);
  border: 1px solid rgb(255 255 255);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card-title {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f04c31;
}
.form-floating label {
  padding-left: 0;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  background: #fff0;
}
.contact-info-list {
  list-style: none;
  padding: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.icon-wrapper {
  color: #f04c31;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 2rem;
  }
}
.contact-wave-container {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.contact-waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
.contact-parallax > use {
  animation: contact-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5)
    infinite;
}
.contact-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.contact-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.contact-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.contact-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes contact-move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes expand {
  0% {
    width: 0;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 0;
  }
}
.custom-hr {
  display: block;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, transparent, #f04c31, transparent);
  margin: 0 auto;
  background-color: #fff0;
  animation: expand 3s ease-in-out infinite;
}
.custom-hr:after {
  content: "";
  display: block;
  margin-bottom: 30px;
}
.frosted-glass-footer {
  background: linear-gradient(
    to bottom right,
    rgb(255 255 255 / 0.2),
    rgb(255 255 255 / 0.005)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
  border: none;
  color: #fff;
  text-shadow: 0 1px 1px rgb(0 0 0 / 0.2);
}
@supports not (backdrop-filter: blur(10px)) {
  .frosted-glass-footer {
    background: rgb(33 37 41 / 0.9);
  }
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #f8f9fa;
  padding: 2px;
  position: relative;
}
.reference-item {
  background-color: #fff0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 10px;
}
.reference-item img {
  max-width: 40%;
  height: auto;
  filter: grayscale(100%) brightness(85%);
  opacity: 0.7;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.reference-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}
.border-effect {
  position: absolute;
  background: #f04c31;
  opacity: 0;
  transition: opacity 0.54s ease;
}
.border-effect.horizontal {
  height: 2px;
  left: 0;
  right: 0;
}
.border-effect.vertical {
  width: 2px;
  top: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reference-item img {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reference-item {
    padding: 20px;
  }
  .reference-item img {
    max-width: 70%;
  }
  .border-effect {
    display: none;
  }
}
.list-unstyled a {
  text-decoration: none;
}
.circle-image {
  width: 90%;
  padding-bottom: 90%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.circle-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orange-rectangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to bottom right, #ff4500, #ffa500);
  z-index: -1;
}
.feature {
  margin-bottom: 2rem;
}
.feature-image-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-right: 1rem;
}
.feature-image {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: all 0.3s ease;
  z-index: 1;
}
.feature-image::before,
.feature-image::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #fff0;
  transition: all 0.3s ease;
}
.feature-image::before {
  border-top-color: #ff4500;
  border-right-color: #ff4500;
  animation: pulse 4s linear infinite;
}
.feature-image::after {
  border-bottom-color: #ff4500;
  border-left-color: #ff4500;
  animation: pulse 4s linear infinite reverse;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.feature-image-wrapper:hover .feature-image {
  transform: scale(1.1);
}
.feature-image-wrapper:hover .feature-image::before,
.feature-image-wrapper:hover .feature-image::after {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}
.feature-content {
  flex-grow: 1;
}
.list-group-item.lead-small {
  padding-left: 0;
  margin-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.list-group-item.lead-small::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff4500;
  margin-right: 10px;
}
.section-content {
  padding-top: 40px;
}
.hexagon-container {
  position: relative;
  width: 100%;
  height: 1170px;
  margin: 0 auto;
  display: none;
  margin-bottom: -150px;
}
.center-image {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(0 0 0 / 0.1);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.center-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.hexagon-item {
  position: absolute;
  width: 240px;
  height: 270px;
  transition: all 0.3s ease;
  z-index: 2;
}
.hexagon {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgb(255 255 255);
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
  backdrop-filter: blur(8.2px);
  -webkit-backdrop-filter: blur(8.2px);
}
.hexagon:hover {
  transform: translateY(-10px);
  background: linear-gradient(to right, #f04c31 0%, #ffa387 100%);
  box-shadow: 0 15px 30px rgb(255 69 0 / 0.3);
}
.hexagon-content {
  text-align: center;
  color: #333;
  padding: 20px;
  transition: all 0.3s ease;
}
.hexagon-content i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f04c31;
  transition: all 0.3s ease;
}
.hexagon-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f04c31;
  transition: all 0.3s ease;
}
.hexagon-content p {
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.hexagon:hover .hexagon-content,
.hexagon:hover .hexagon-content i,
.hexagon:hover .hexagon-content h3,
.hexagon:hover .hexagon-content p {
  color: #fff;
}
#item1 {
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
#item2 {
  top: 15%;
  left: 15%;
}
#item3 {
  top: 15%;
  right: 15%;
}
#item4 {
  bottom: 35%;
  left: 15%;
}
#item5 {
  bottom: 35%;
  right: 15%;
}
#item6 {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .hexagon-container {
    display: block;
  }
  .flow-container {
    display: none;
  }
}
.flow-container {
  max-width: 600px;
  margin: 0 auto;
}
.flow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.flow-icon {
  width: 60px;
  height: 60px;
  background-color: #f04c31;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  z-index: 2;
}
.flow-icon i {
  font-size: 24px;
  color: #fff;
}
.flow-content {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  flex-grow: 1;
}
.flow-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}
.flow-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}
.flow-item::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #f04c31;
  top: 60px;
  bottom: -30px;
  left: 29px;
  z-index: 1;
}
.flow-item:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .flow-icon {
    width: 50px;
    height: 50px;
  }
  .flow-icon i {
    font-size: 20px;
  }
  .flow-item::after {
    left: 24px;
  }
}
.layered-image {
  width: 90%;
  padding-bottom: 90%;
  position: relative;
  margin: 0 auto;
}
.layered-image::before,
.layered-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #f04c31 0%, #ffa387 100%);
  border-radius: 15px;
}
.layered-image::before {
  top: 15px;
  left: 15px;
  z-index: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #ffa387 0%, #f04c31 100%);
  border-radius: 15px;
}
.layered-image::after {
  top: 30px;
  left: 30px;
  z-index: 2;
}
.layered-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  z-index: 3;
}
@media (max-width: 767px) {
  .layered-image::before,
  .layered-image::after {
    display: none;
  }
  .layered-image {
    padding-bottom: 100%;
  }
  .layered-image img {
    border-radius: 0;
  }
}
