﻿:root {
  /* Brand Colors */
  --brand-navy: #284365;
  --brand-orange: #d97e33;
  --brand-yellow: #f0b323;
  --brand-green: #6cebe2;
  --brand-blue: #59cbe8;
  --brand-red: #e3322d;

  /* Accent Colors */
  --accent-navy: #1a599a;
  --accent-orange: #f57d3f;
  --accent-yellow: #f7bb2d;
  --accent-green: #2bd1a1;
  --accent-blue: #45cff2;
  --accent-red: #fa3232;

  /* Grays / Neutrals */
  --primary-dark: #495a6c;
  --secondary-dark: #8392ac;
  --dark-gray: #a7b2c4;
  --neutral-blue: #cddded;
  --light-gray: #e8eaeb;
  --light: #fafbff;
}

body {
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  scroll-margin-top: 120px;
}

h1 {
  font-size: calc(1.4rem + 1.5vw);
}

h2 {
  font-size: calc(1.375rem + 0.9vw);
}

h3 {
  font-size: calc(1.325rem + 0.9vw);
  /* font-size: calc(1.3rem + 0.6vw); */
}

h4 {
  font-size: calc(1.3rem + 0.6vw);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
}

main {
  margin-top: 82px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-navy) !important;
  font-weight: 600 !important;
}

.btn-primary {
  --bs-btn-bg: #f57d3f;
  --bs-btn-border-color: #f57d3f;
  --bs-btn-hover-bg: #fc935d;
  --bs-btn-hover-border-color: #fc935d;
  --bs-btn-active-bg: #f1661e;
  --bs-btn-active-border-color: #f1661e;
  --bs-btn-disabled-opacity: 0.5;
  color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: #f57d3f;
  --bs-btn-border-color: #f57d3f;
  --bs-btn-hover-bg: #fc935d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #fc935d;
  --bs-btn-active-bg: #f1661e;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #f1661e;
  --bs-btn-disabled-opacity: 0.5;
  background-color: transparent;
}

.btn-secondary {
  --bs-btn-bg: #2bd1a1;
  --bs-btn-border-color: #2bd1a1;
  --bs-btn-hover-bg: #41e0b2;
  --bs-btn-hover-border-color: #41e0b2;
  --bs-btn-active-bg: #0fb887;
  --bs-btn-active-border-color: #0fb887;
  --bs-btn-disabled-opacity: 0.5;
  color: #fff;
}

.btn-outline-secondary {
  --bs-btn-color: #2bd1a1;
  --bs-btn-border-color: #2bd1a1;
  --bs-btn-hover-bg: #41e0b2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #41e0b2;
  --bs-btn-active-bg: #0fb887;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #0fb887;
  --bs-btn-disabled-opacity: 0.5;
  background-color: transparent;
}

.btn-info {
  --bs-btn-bg: #1a599a;
  --bs-btn-border-color: #1a599a;
  --bs-btn-hover-bg: #2269b0;
  --bs-btn-hover-border-color: #2269b0;
  --bs-btn-active-bg: #1a599a;
  --bs-btn-active-border-color: #1a599a;
  --bs-btn-disabled-opacity: 0.5;
  color: #fff;
}

.btn-outline-info {
  --bs-btn-color: #1a599a;
  --bs-btn-border-color: #1a599a;
  --bs-btn-hover-bg: #2269b0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #2269b0;
  --bs-btn-active-bg: #1a599a;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #1a599a;
  --bs-btn-disabled-opacity: 0.5;
  background-color: transparent;
}

.btn-shadow {
  box-shadow: 0px 4px 18px 0px #28436540;
}

.btn-shadow:hover {
  box-shadow: 0px 4px 12px 0px #28436540;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(245, 125, 63, var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(43, 209, 161, var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(26, 89, 154, var(--bs-text-opacity)) !important;
}

.text-orange {
  color: var(--accent-orange);
}

.text-navy {
  color: var(--accent-navy);
}

.text-brand-navy {
  color: var(--brand-navy);
}

.text-secondary-dark {
  color: var(--secondary-dark);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-brand-orange {
  color: var(--brand-orange);
}

.rounded-xs {
  border-radius: 4px;
}
.rounded-md {
  border-radius: 12px;
}
.rounded-xl {
  border-radius: 24px;
}

.shadow-1 {
  box-shadow: 0px 1px 20px 0px #14287540; /* --- Menu, buttons --- */
}

.shadow-2 {
  box-shadow: 0px 2px 16px 0px #14287529; /* --- small card --- */
}

.shadow-3 {
  box-shadow: 0px 1px 14px 0px #14287540; /* --- big card --- */
}

.shadow-4 {
  box-shadow: 0px 0px 36px 0px #14287514; /* --- banner bottom --- */
}

.shadow-5 {
  box-shadow: 0px 1px 16px 0px #14287530; /* --- middle card --- */
}

/* --- Custom --- */
.gradient-text {
  background: linear-gradient(90deg, #18d0ff, #4e8efa, #6eceb2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.title-tooltip {
  position: relative;
  display: inline-block;
}

.title-2lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: default;
}

.title-tooltip[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: -60px;
  background: #535353;
  color: white;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 9999;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* --- End Custom --- */

/* --- Card Block --- */
.card {
  border: 1px solid var(--light-gray);
  border-radius: 12px;
}

.card-p-xs {
  padding: 20px 30px;
}

.card-p-sm {
  padding: 30px;
}

.card-p-md {
  padding: 20px;
}

.card-p-lg {
  padding: 40px;
}

.card-p-xl {
  padding: 40px;
}

@media (min-width: 1400px) {
  .card-p-xs {
    padding: 20px 30px;
  }

  .card-p-sm {
    padding: 30px 42px;
  }

  .card-p-md {
    padding: 30px;
  }

  .card-p-lg {
    padding: 60px;
  }

  .card-p-xl {
    padding: 60px 42px;
  }
}

.card-footer-block {
  border: 1px solid var(--light-gray);
  border-radius: 12px 12px 0 0;
}
/* --- End Card Block --- */

/* --- Section Block --- */
.section-block {
  padding-bottom: 60px;
}

.section-header {
  padding-bottom: 40px;
  width: 100%;
}

.section-header h2 {
  margin-bottom: 1rem;
}

@media (min-width: 675px) {
  .section-block {
    padding-bottom: 100px;
  }

  .section-header {
    padding-bottom: 60px;
    width: 75%;
  }
}
/* --- End Section Block --- */

/* --- Menu --- */
header {
  z-index: 1030;
}

header .menu,
header .menu-mainmenu,
header ul.menu-mainmenu {
  display: flex;
  flex-direction: row !important;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

header .menu.menu-main-menu {
  width: 100%;
  gap: 5px;
  justify-content: center;
}

header .menu > li,
header .menu-mainmenu > li,
header ul.menu-mainmenu > li {
  list-style: none;
}

header .navbar-collapse nav {
  width: 100%;
  padding-inline: 30px;

  a {
    text-wrap-mode: nowrap;
  }
}

header .menu a,
header .menu-mainmenu a,
header ul.menu-mainmenu a {
  padding: 0.75rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-navy);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

header .menu a:hover,
header .menu-mainmenu a:hover,
header ul.menu-mainmenu a:hover {
  color: var(--accent-orange);
}

header .menu a.active,
header .menu-mainmenu a.active,
header ul.menu-mainmenu a.active {
  color: var(--brand-navy);
}

header .menu a.active::after,
header .menu-mainmenu a.active::after,
header ul.menu-mainmenu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 4px;
  background-color: var(--brand-yellow);
}

@media (max-width: 991px) {
  header .menu,
  header .menu-mainmenu,
  header ul.menu-mainmenu {
    flex-direction: column !important;
    gap: 0;
    width: 100%;
  }

  header .menu > li > a,
  header .menu-mainmenu > li > a,
  header ul.menu-mainmenu > li > a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  header .menu > li > a::after,
  header .menu-mainmenu > li > a::after,
  header ul.menu-mainmenu > li > a::after {
    display: none;
  }
}

@media (min-width: 1280px) {
  header .menu.menu-main-menu {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .btn-mobile-full {
    width: 100%;
    display: block;
    text-align: center;
  }

  header .navbar-collapse {
    padding-bottom: 24px;
    background: #fff;
  }

  .navbar-collapse.collapse.show {
    height: 100vh;
  }

  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 30px;
    position: relative;
  }

  .navbar-toggler-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-yellow);
    box-shadow: 0 8px 0 var(--accent-yellow), 0 16px 0 var(--accent-yellow);
  }

  .mobile-menu-contacts {
    font-size: 14px;
  }

  .mobile-menu-contacts i {
    font-size: 18px;
  }

  .btn-mobile-full {
    width: 100%;
    display: block;
    text-align: center;
  }

  .mobile-menu-socials a {
    margin-inline: 8px;
  }
}

menu .btn {
  padding-block: 8px;
}
/* --- End Menu --- */

/* --- Banner Section --- */
@media (min-width: 992px) {
  .reveal-delay-1 {
    transition-delay: 0.5s;
  }
}

.bg-zoom {
  background-size: cover;
  scale: 0.98;
  background-position: center;
  background-repeat: no-repeat;
  transition: scale 1.5s ease-out;
}

.bg-zoom-visible {
  scale: 1;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .banner-section h1 {
    font-size: 3.25rem !important;
  }

  .banner-section h2 {
    font-size: 2rem !important;
  }
}

@media (min-width: 1600px) {
  .banner-section .form-floating textarea {
    height: 150px !important;
    min-height: 150px !important;
  }
}
/* --- End Banner Section --- */

/* --- Form Section --- */
.form-border {
  border: 1px solid #e8eaeb;
}

.form-floating label {
  color: var(--secondary-dark);
}

input[type='checkbox'] {
  accent-color: #f1661e;
  width: 30px;
  aspect-ratio: 1/1;
  border-color: var(--secondary-dark);
  opacity: 0.4;
}

input[type='checkbox']:checked {
  outline: none;
  border: none;
  box-shadow: none;
  opacity: 1;
}
/* --- End Form section --- */

/* --- Partners Section --- */
.partners-section {
  z-index: 1000;
  position: relative;
  margin-bottom: 60px;
}

.partners-logos {
  gap: 32px;
}

.partner-logo img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.partner-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .partners-logos {
    justify-content: center;
    gap: 24px;
  }
}

.w-mob-100-desk-50 {
  width: 100%;
}

@media (min-width: 768px) {
  .w-mob-100-desk-50 {
    width: 50%;
  }

  .partners-section {
    margin-bottom: 100px;
  }
}
/* --- End Partners Section --- */

/* --- Feature card section --- */
.section-card-icon img {
  max-width: 100px;
  height: auto;
}

.feature-card-title-wrap {
  display: flex;
  align-items: flex-start;
  min-height: 3.6rem;
}

@media (min-width: 992px) {
  .feature-card-title-wrap {
    min-height: 4rem;
  }
}
/* --- End Feature card section --- */

/* --- Product section --- */
.product-card-logo img {
  max-height: 48px;
  width: auto;
}

.product-card {
  overflow: hidden;
  box-shadow: 0px 4px 22px rgba(20, 40, 117, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 28px rgba(20, 40, 117, 0.15);
}
/* --- End Product section --- */

/* --- Case section --- */
.case-card {
  overflow: hidden;
  box-shadow: 0px 4px 22px rgba(20, 40, 117, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 28px rgba(20, 40, 117, 0.15);
}
/* --- End Case section --- */

/* === Stats Section === */
.building-solutions-left {
  max-width: 480px;
}

.building-solutions-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 32px;
  row-gap: 32px;
}

.building-stat-value {
  display: inline-block;
  font-size: 4rem;
}

.building-stat-label {
  font-size: 1.5rem;
  color: var(--brand-navy);
}

@media (max-width: 768px) {
  .building-solutions-stats {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding-left: 0;
  }
}
/* === End Stats Section === */

/* === Team Section === */
.team-section .container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 1px 14px 0px #14287540;
  padding: 60px;
}

.profile-card-img {
  display: flex;
  justify-content: center;
}

.profile-card-img img {
  width: 100%;
  object-fit: cover;
}

.profile-card-body {
  margin-top: 12px;
}

.profile-card-meta {
  margin-top: 6px;
}

.linkedin-btn {
  color: #7a8598;
  transition: 0.2s ease;
}

.linkedin-btn i {
  font-size: 1.1rem;
}

.linkedin-btn:hover {
  color: #0a66c2;
}

@media (max-width: 991px) {
  .team-section .container {
    padding: 32px 24px 28px;
  }
}

@media (max-width: 575px) {
  .team-section {
    padding: 60px 0;
  }

  .team-section .container {
    padding: 28px 18px 24px;
    border-radius: 18px;
  }

  .profile-card {
    padding: 18px;
  }
}
/* === End Team Section === */

/* === Testimonials Section === */
.testimonial-card {
  padding: 36px 36px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 20.3px 0px #14287540;
  border: 1px solid #e8eaeb;
  height: 100%;
  width: 100%;
  display: block;
}

.testimonial-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-person-text {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: #15213b;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #7f8ca3;
}

.testimonial-company-logo img {
  max-height: 32px;
  width: auto;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b596d;
}

.global-swiper {
  padding: 52px 20px 60px;
  position: relative;
  overflow: hidden;
  margin-top: -56px;
}

.global-swiper .swiper-wrapper {
  padding: 0 4px;
}

.swiper-slide {
  display: flex;
}

.global-swiper .swiper-slide {
  height: auto;
}

.global-swiper .swiper-button-prev,
.global-swiper .swiper-button-next {
  position: static;
  margin-top: 0;
  width: auto;
  height: auto;
}

.global-nav {
  position: absolute;
  top: 0;
  right: 28px;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.swiper-arrow {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f8bbd;
  line-height: 1;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05), -3px -3px 6px #ffffff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: #6f8bbd;
}

.global-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c7d4ea;
  opacity: 1;
  margin: 0 3px !important;
}

.global-swiper .swiper-pagination-bullet-active {
  background: #4b78ff;
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  .global-nav {
    display: none !important;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-card-top {
    align-items: flex-start;
  }
}
/* === End Testimonials Section === */

/* === CTA Blog === */
.cta-left {
  max-width: 50%;
}

.cta-logo-top img {
  max-height: 42px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.cta-right {
  flex: 0 0 auto;
}

.cta-logo-right img {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
  opacity: 0.25;
}

@media (max-width: 991.98px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-left {
    max-width: 100%;
  }
}
/* === End CTA Blog === */

/* === News Section === */
.news-card {
  overflow: hidden;
  box-shadow: 0px 4px 22px rgba(20, 40, 117, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 28px rgba(20, 40, 117, 0.15);
}

.news-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FAQ Section === */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--light-gray) !important;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 40, 117, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open {
  box-shadow: 0 16px 40px rgba(20, 40, 117, 0.15);
  transform: translateY(-1px);
}

.faq-header {
  width: 100%;
  padding: 24px 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question {
  font-size: 1.25rem;
  color: var(--brand-navy);
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: var(--accent-orange);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question {
  color: var(--accent-orange);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #ffffff;
  display: none;
}

.faq-item.is-open .faq-body {
  max-height: 600px;
  display: block;
}

.faq-body-inner {
  padding: 0 24px 20px;
  border-top: 1px solid #eef2fb;
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b596d;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.25rem;
}

@media (max-width: 575.98px) {
  .faq-header {
    padding: 16px 16px;
  }
  .faq-body-inner {
    padding: 0 16px 16px;
  }
}
/* === End FAQ === */

/* === Footer Section === */
.disclaimer {
  font-size: 12px;
}

.card-footer-header {
  border-bottom: 1px solid var(--light-gray);
}

.card-footer-copy {
  border-block: 1px solid var(--light-gray);
}
/* === End Footer Section === */

/* === Container === */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 668px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1092px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1060px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}

@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1250px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1370px;
  }
}

@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1470px;
  }
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1570px;
  }
}
/* === End Container === */

/* === Contact Form === */
.contact-form-topic {
  position: relative;
  overflow: hidden;
}

.contact-form-floating-image {
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: -86px;
  width: 480px;
  max-width: 40vw;
  transform: translateY(-50%) rotate(6deg);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: contact-hand-float 5s ease-in-out infinite;
}

@keyframes contact-hand-float {
  0% {
    transform: translateY(-50%) rotate(6deg);
  }
  50% {
    transform: translateY(-54%) translateX(-6px) rotate(3deg);
  }
  100% {
    transform: translateY(-50%) rotate(6deg);
  }
}

@media (min-width: 1600px) {
  .contact-form-floating-image {
    width: 620px;
    max-width: none;
  }
}

@media (max-width: 1599px) and (min-width: 1400px) {
  .contact-form-floating-image {
    width: 480px;
    max-width: 34vw;
    right: -40px;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .contact-form-floating-image {
    width: 510px;
    max-width: 40vw;
    right: -110px;
    transform: translateY(-50%) rotate(5deg);
  }
}

@media (max-width: 1199px) {
  .contact-form-floating-image {
    display: none !important;
  }
}
/* === End Contact Form === */

.form-deco-left {
  height: 100%;
  width: 120px;
  position: absolute;
  top: 50%;
  left: -120px;
  overflow: hidden;
}

.form-deco-right {
  height: 100%;
  width: 120px;
  position: absolute;
  top: -50%;
  right: -120px;
  overflow: hidden;
}

.form-deco-left .deco-line {
  width: 200%;
  height: 200%;
  border: 36px solid var(--brand-yellow);
  border-radius: 100px;
}

.form-deco-right .deco-line {
  width: 200%;
  height: 200%;
  border: 36px solid var(--brand-blue);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.form-deco-edge {
  right: -262px !important;
  top: -40%;
  height: 100%;
  width: 120px;
  position: absolute;
  overflow: hidden;
}

.cta-deco {
  height: 620px;
  width: 50%;
  position: absolute;
  overflow: hidden;
  left: 6%;
  margin-top: -54px;
  z-index: -1;
}

.cta-deco .deco-line {
  width: 200%;
  height: 200%;
  border: 36px solid var(--brand-yellow);
  border-radius: 100px;
  bottom: 0;
  position: absolute;
  left: 60px;
}

.cta-deco .deco-edge {
  margin-top: -110px;
}

.cta-deco .deco-edge svg {
  transform: scaleX(-1);
}
