:root {
  --_typography---family--body-family: "Inter Tight", sans-serif;
  --davy-s-grey: #565656;
  --_typography---sizes--body-size: 1rem;
  --_typography---line-heights--body-line-height: 162.5%;
  --_typography---weights--body-weight: 400;
  --_typography---family--heading-family: "Inter Tight", sans-serif;
  --black: black;
  --_typography---sizes--h1-size: 3.75rem;
  --_typography---line-heights--h1-line-height: 116.7%;
  --_typography---weights--heading-weight: 500;
  --_typography---letter-spacing--h1-letter-spacing: -.12rem;
  --_typography---sizes--h2-size: 2.8125rem;
  --_typography---line-heights--h2-line-height: 122.3%;
  --_typography---letter-spacing--h2-letter-spacing: -.084375rem;
  --_typography---sizes--h3-size: 1.875rem;
  --_typography---line-heights--h3-line-height: 133.1%;
  --_typography---letter-spacing--h3-letter-spacing: -.0375rem;
  --_typography---sizes--h4-size: 1.5rem;
  --_typography---line-heights--h4-line-height: 141.9%;
  --_typography---letter-spacing--h4-letter-spacing: -.03rem;
  --_typography---sizes--h5-size: 1.25rem;
  --_typography---line-heights--h5-line-height: 150%;
  --_typography---letter-spacing--h5-letter-spacing: -.025rem;
  --_typography---sizes--h6-size: 1.125rem;
  --_typography---line-heights--h6-line-height: 133.3%;
  --green: #6f8774;
  --_typography---sizes--sub-heading-size: .875rem;
  --_typography---line-heights--sub-heading-line-height: 100%;
  --_typography---letter-spacing--sub-heading-letter-spacing: .0625rem;
  --_spacing---element-gaps--element-gap-medium: 2rem;
  --transparent: #fff0;
  --anti-flash-white: #f0f0f0;
  --light-green: #ff8f39;
  --_spacing---section-gap-medium: 8.125rem;
  --_spacing---section-gap-small: 7.875rem;
  --white: white;
  --_spacing---element-gaps--element-gap-small: 1.5rem;
  --_spacing---element-gaps--element-gap-title: 2.3125rem;
  --granite-grey: #606060;
  --_spacing---element-gaps--element-gap-large: 3.0625rem;
  --gainsboro: #dbdbdb;
  --light-grey: #d7d7d7;
  --grey: grey;
  --_typography---sizes--button-size: 1.0625rem;
  --_typography---line-heights--button-line-height: 171.42%;
  --_spacing---element-gaps--element-gap-extra-small: 1.25rem;
  --_spacing---element-gaps--element-gap-tiny: 1rem;
  --blue: #1e1e79;
  --traube: #9a948c;
  --_animations---radius: 0px;
  --salbei: #a5b2a8;
  --apricot: #e3a27a;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  font-family: var(--_typography---family--body-family);
  color: var(--davy-s-grey);
  font-size: var(--_typography---sizes--body-size);
  line-height: var(--_typography---line-heights--body-line-height);
  font-weight: var(--_typography---weights--body-weight);
}

h1 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h1-size);
  line-height: var(--_typography---line-heights--h1-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h1-letter-spacing);
  margin-top: 20px;
  margin-bottom: 10px;
}

h2 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h2-size);
  line-height: var(--_typography---line-heights--h2-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h2-letter-spacing);
  margin-top: 20px;
  margin-bottom: 10px;
}

h3 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h3-size);
  line-height: var(--_typography---line-heights--h3-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h3-letter-spacing);
  margin-top: 20px;
  margin-bottom: 10px;
}

h4 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h4-size);
  line-height: var(--_typography---line-heights--h4-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h4-letter-spacing);
  margin-top: 10px;
  margin-bottom: 10px;
}

h5 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h5-size);
  line-height: var(--_typography---line-heights--h5-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h5-letter-spacing);
  margin-top: 10px;
  margin-bottom: 10px;
}

h6 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h6-size);
  line-height: var(--_typography---line-heights--h6-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  margin-top: 10px;
  margin-bottom: 10px;
}

p {
  font-family: var(--_typography---family--body-family);
  color: var(--davy-s-grey);
  font-size: var(--_typography---sizes--body-size);
  line-height: var(--_typography---line-heights--body-line-height);
  font-weight: var(--_typography---weights--body-weight);
  margin-bottom: 10px;
}

a {
  font-family: var(--_typography---family--body-family);
  color: var(--davy-s-grey);
  font-size: var(--_typography---sizes--body-size);
  line-height: var(--_typography---line-heights--body-line-height);
  font-weight: var(--_typography---weights--body-weight);
  text-decoration: none;
}

ul, ol {
  font-family: var(--_typography---family--body-family);
  color: var(--davy-s-grey);
  font-size: var(--_typography---sizes--body-size);
  line-height: var(--_typography---line-heights--body-line-height);
  font-weight: var(--_typography---weights--body-weight);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

strong {
  color: var(--black);
  font-weight: var(--_typography---weights--heading-weight);
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.fda-project-image-item {
  border-radius: .375rem;
  overflow: hidden;
}

.fda-sub-text {
  color: var(--green);
  font-size: var(--_typography---sizes--sub-heading-size);
  line-height: var(--_typography---line-heights--sub-heading-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--sub-heading-letter-spacing);
}

.fda-text-overlay-v1 {
  background-color: #ffffffb0;
  flex: none;
  align-self: flex-end;
  width: 100%;
  height: 3.6875rem;
}

.fda-service-v1-circle-v2 {
  background-color: var(--black);
  width: 1.51563rem;
  height: 1.51563rem;
  position: absolute;
  top: 30%;
  left: 12%;
}

.fda-features-v2-col {
  z-index: 3;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.9375rem 2rem;
  display: flex;
  position: relative;
}

.fda-review-v1-reatting-star-wrap {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.fda-service-v2-item-para {
  padding-top: var(--_spacing---element-gaps--element-gap-medium);
  width: 100%;
  max-width: 28.625rem;
}

.fda-hero-slider-image-two {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-hero-slider-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-hero-slider-image.fda-slider-image-first {
  background-color: var(--transparent);
  opacity: 1;
  mix-blend-mode: normal;
  position: absolute;
}

.fda-site-logo {
  width: auto;
  max-width: none;
  height: auto;
}

.fda-site-logo:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  filter: invert();
}

.fda-project-click-big {
  position: relative;
}

.fda-hero-v1-right-image {
  border: 5px solid #fff;
  height: 100%;
}

.fda-about-title-left-wrap {
  width: 100%;
  max-width: 37.3125rem;
  padding-bottom: 5rem;
}

.fda-gray-background, .fda-gray-background:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  background-color: var(--anti-flash-white);
}

.fda-pricing-plan-v1-wrap {
  background-color: #070707;
  background-image: linear-gradient(#00000040, #0a0a0aa8 74%, #000000e0 88%), url('../images/Card-background-shape.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 2.5rem 2.5rem 3.4375rem;
}

.fda-pricing-plan-v1-wrap.fda-radius-40.fda-position-relative.fda-overflow-hidden {
  margin-bottom: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.fda-pricing-plan-v1-wrap.fda-radius-40.fda-position-relative.fda-overflow-hidden._11 {
  background-color: var(--light-green);
  background-image: url('../images/Card-background-shape.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}

.fda-footer-links {
  transition: all .2s;
}

.fda-footer-links:hover {
  color: #fff;
}

.fda-footer-links.fda-footer-text-style {
  text-align: right;
}

.fda-footer-links.fda-footer-social {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-features-v2 {
  padding: var(--_spacing---section-gap-medium) 0rem var(--_spacing---section-gap-small);
  background-color: var(--anti-flash-white);
  border-radius: 40px 40px 0 0;
  height: 200vh;
  margin-left: .9rem;
  margin-right: .9rem;
}

.fda-features-left {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 33.1875rem;
}

.fda-text-style-h4 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h4-size);
  line-height: var(--_typography---line-heights--h4-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h4-letter-spacing);
}

.fda-service-v1-title-highlight-text-wrap {
  background-color: var(--black);
  color: var(--white);
  border-radius: 30px;
  padding-bottom: 2px;
  padding-left: .6875rem;
  padding-right: .875rem;
  position: relative;
}

.fda-service-v1-title-highlight-text-wrap.fda-about {
  padding-right: .5625rem;
}

.fda-slider-main-inner-wrap {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
}

.fda-hero-v1-overlay {
  z-index: 3;
  background-image: linear-gradient(283deg, #0000 58%, #0009 79%, #000), linear-gradient(#000000e0 2%, #0000 20%, #0000), linear-gradient(#0000 58%, #000000ab);
  position: absolute;
  inset: 0%;
}

.fda-hero-v1-right-content {
  z-index: 3;
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  background-color: var(--white);
  margin: .9375rem;
  padding: 1.5rem 1.25rem 1.625rem;
  position: absolute;
  inset: auto 0% 0%;
  box-shadow: 0 28px 42.3px #0009;
}

.fda-auto-fit {
  object-fit: cover;
  max-width: 100%;
}

.fda-review-v1-list-box {
  background-color: var(--white);
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 23.0625rem;
  padding: 2.5rem 1.875rem;
  box-shadow: 0 53px 59px #0000001c;
}

.fda-review-v1-list-box.fda-box-one {
  border-left-style: none;
  justify-content: center;
  align-items: center;
}

.fda-service-v2-flex-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: stretch;
}

.fda-service-v2-item-heading {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: space-between;
  align-items: center;
}

.fda-review-v1-sub-title {
  margin-bottom: var(--_spacing---element-gaps--element-gap-small);
}

.fda-dropdown-list {
  background-color: #fff;
  border-radius: .625rem;
  min-width: 12.5rem;
  top: 100%;
}

.fda-dropdown-list:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  box-shadow: 0 20px 40px #0003;
}

.fda-dropdown-list.fda-overflow-hidden.w--open {
  z-index: 4;
}

.fda-h1-gap {
  margin-top: 0;
  margin-bottom: var(--_spacing---element-gaps--element-gap-title);
}

.fda-about-v1-right-main-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  background-color: #fff;
  justify-content: space-between;
  align-items: stretch;
  padding: 1.875rem 2.8125rem 1.875rem 2.5rem;
  box-shadow: 0 0 112.7px #0000000d;
}

.fda-footer-logo {
  padding-bottom: 1.5625rem;
}

.fda-desktop-hamburgar-menu {
  z-index: 4;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  display: block;
  position: relative;
}

.fda-text-style-h5 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h5-size);
  line-height: var(--_typography---line-heights--h5-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h5-letter-spacing);
}

.fda-text-style-h5.fda-active {
  position: relative;
}

.fda-text-style-h5.fda-active:hover {
  color: var(--anti-flash-white);
}

.fda-text-style-h5.fda-accrodian-v1-short-title {
  max-width: 10.5625rem;
  margin-bottom: -.5rem;
}

.fda-text-style-h5.fda-about-v3-row-two-conten {
  max-width: 16.0625rem;
}

.fda-text-style-h5.fda-service-number {
  margin-top: -1.75rem;
}

.fda-features-v1-arrow {
  filter: brightness(0%);
  flex: none;
  transform: rotate(-45deg);
}

.fda-features-v1-arrow.fda-in-active {
  z-index: 1;
  position: relative;
}

.fda-review-v1-slider-wrap {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
}

.fda-dropdown-toggle {
  grid-column-gap: .5rem;
  color: var(--black);
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.fda-dropdown-toggle.fda-flex-center:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29), .fda-dropdown-toggle.fda-flex-center-copy:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  padding-top: 30px;
  padding-bottom: 30px;
}

.fda-about-v1-left-wrap {
  width: 100%;
  max-width: 27.5rem;
}

.fda-features-v2-right {
  flex: 1;
  max-width: 39.375rem;
}

.fda-service-v1-right-content-wrap {
  width: 100%;
  max-width: 16.875rem;
  padding-top: 5.3125rem;
  padding-bottom: 1.5625rem;
}

.fda-features-v1-title-wrap {
  width: 100%;
  max-width: 39.375rem;
}

.fda-service-v1 {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: 52px;
}

.fda-pricing-plan-v1-short-content-wrap {
  text-align: center;
  width: 100%;
  max-width: 36.6875rem;
  padding-top: 2rem;
}

.fda-pricing-plan-v1-short-content-wrap._00 {
  padding-top: 0;
}

.fda-service-v1-icon {
  position: absolute;
  top: 54%;
}

.fda-footer-contact-wrapper {
  padding-top: var(--_spacing---element-gaps--element-gap-small);
}

.fda-auther-content {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 9.375rem;
}

.fda-features-v2-item-wrap {
  position: relative;
}

.fda-about-title-right-wrap {
  width: 100%;
  max-width: 26.375rem;
  margin-bottom: -.8125rem;
  margin-right: 3.125rem;
}

.fda-text-color-granite-gray {
  color: var(--granite-grey);
}

.fda-text-style-h2 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h2-size);
  line-height: var(--_typography---line-heights--h2-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h2-letter-spacing);
}

.fda-text-style-h2:hover {
  color: var(--black);
  -webkit-text-stroke-color: var(--black);
}

.fda-review-v1-wrapper {
  padding-bottom: 8.125rem;
  position: sticky;
  top: 10%;
}

.fda-footer-top-left-wrap {
  width: 100%;
  max-width: 31rem;
}

.fda-nav {
  grid-column-gap: 2.9375rem;
  grid-row-gap: 2.9375rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fda-project-email {
  padding-top: .625rem;
  padding-bottom: .625rem;
  display: flex;
}

.fda-footer-col-wrapper {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 220px;
}

.fda-position-relative {
  position: relative;
}

.fda-position-relative.fda-desktop-height-full.fda-hero-radius {
  border-radius: 40px;
  overflow: hidden;
}

.fda-pricing-v1-plan {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  justify-content: center;
  align-items: flex-end;
}

.fda-pricing-image-wrap {
  pointer-events: none;
  background-color: #070707;
  position: absolute;
  inset: 0%;
}

.fda-about-v1 {
  z-index: 1;
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-about-v1.fda-position-relative {
  background-color: var(--anti-flash-white);
  border-radius: 0 0 40px 40px;
  margin-left: .9rem;
  margin-right: .9rem;
}

.fda-pointer-v1 {
  z-index: 2;
  background-color: var(--light-green);
  width: 5.9375rem;
  height: 5.9375rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% 50%;
  transform: translate(-50%);
  box-shadow: 0 55px 80.8px #00000080;
}

.fda-pointer-v1.fda-radius-100 {
  background-color: #ceff65;
  top: 15px;
}

.fda-pointer-v1.fda-radius-100.fda-flex-center {
  background-color: var(--white);
}

.fda-dropdown-icon-wrapper {
  flex: none;
  justify-content: center;
  align-items: center;
  height: 6px;
  display: flex;
  position: relative;
}

.fda-footer-text-style {
  color: var(--gainsboro);
  font-weight: 500;
}

.fda-footer-text-style.fda-footer-links.fda-hover-none {
  text-align: right;
}

.fda-footer-text-style.fda-footer-links.fda-hover-none:hover {
  color: var(--gainsboro);
}

.fda-footer-v1-wrap {
  background-color: var(--black);
  padding-top: 5.625rem;
}

.fda-footer-v1-wrap.fda-radius-40.fda-tab-radius-off {
  padding-top: 2rem;
}

.fda-footer-right-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: right;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-self: auto;
  place-items: center end;
  width: 100%;
  max-width: 30rem;
}

.fda-linear-line-v1 {
  background-image: linear-gradient(90deg, #0000, #0003 50%, #0000);
  width: 100%;
  height: .0625rem;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
}

.fda-linear-line-v1.fda-bottom-line {
  inset: auto 0% 0%;
}

.fda-pricing-plan-main-wrap-v1 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
}

.fda-review-title-wrap {
  margin-bottom: var(--_spacing---element-gaps--element-gap-large);
  max-width: 41.5rem;
}

.fda-nav-main {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  grid-template-rows: auto;
  grid-template-columns: 156px 1fr 156px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
  position: sticky;
}

.fda-strategies-v1-content {
  width: 100%;
  max-width: 14.75rem;
}

.fda-hero-slider-image-one {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-hero-slider-image-one.fda-overflow-hidden {
  opacity: 1;
}

.fda-navbar-right-wrapper {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: flex-end;
  align-items: stretch;
}

.fda-container-large {
  max-width: 105rem;
  padding-left: .9375rem;
  padding-right: .9375rem;
}

.fda-about-v1-right-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: stretch;
  width: 100%;
  max-width: 46.25rem;
}

.fda-service-v2-arrow-box {
  background-color: #fff;
  border: 1px solid #0003;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3.4375rem;
  height: 3.4375rem;
}

.fda-service-v2-arrow-box:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  background-color: var(--white);
}

.fda-text-style-h1 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h1-size);
  line-height: var(--_typography---line-heights--h1-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h1-letter-spacing);
}

.fda-text-style-h1.fda-text-color-white {
  color: #fff;
}

.fda-text-style-h1.fda-text-color-white.fda-pricing-v1-plan-title-text {
  padding-bottom: .5rem;
}

.fda-hamburger {
  grid-column-gap: .4375rem;
  grid-row-gap: .4375rem;
  cursor: pointer;
  justify-content: center;
  align-items: flex-start;
}

.fda-project-click-main {
  background-image: linear-gradient(#fff, #fff);
  background-position: 0 0;
  border-radius: 10px;
  padding-top: .9375rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.fda-horizontal-line-v1 {
  background-color: #0003;
  width: 100%;
  height: .0625rem;
  position: absolute;
  inset: 0% 0% auto;
}

.fda-horizontal-line-v1.fda-bottom-line {
  inset: auto 0% 0%;
}

.fda-about-v1-title-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-end;
}

.fda-inner-line {
  background-color: var(--black);
  width: 100%;
  height: 100%;
}

.fda-service-v2-title-left-wrap {
  width: 100%;
  max-width: 39.375rem;
}

.fda-footer-v1.fda-section-gutter.fda-top-gap-off {
  padding-top: 0;
}

.fda-no-margin {
  font-family: var(--_typography---family--heading-family);
  margin-top: 0;
  margin-bottom: 0;
  text-decoration: none;
}

.fda-project-email-item-link {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-project-email-item-link.fda-change-underline {
  text-decoration: none;
}

.fda-service-v1-flex-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}

.fda-shape-v1-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto -1px 50%;
  transform: translate(-50%);
}

.fda-gap-off {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.fda-gap-off.fda-password-protect-title {
  margin-top: 1.125rem;
}

.fda-gap-off.fda-text-style-h1.fda-text-color-white {
  color: var(--white);
}

.fda-button-dot {
  z-index: 0;
  background-color: var(--black);
  position: absolute;
  inset: 0%;
}

.fda-button-dot.fda-radius-100 {
  background-color: var(--light-green);
}

.fda-button-dot.fda-radius-100:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  background-color: var(--white);
}

.fda-button-dot.fda-radius-100:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4) {
  background-color: var(--light-green);
}

.fda-button-dot.fda-radius-100.fda-button-dark {
  background-color: var(--white);
}

.fda-review-v1-customer-details {
  margin-top: var(--_spacing---element-gaps--element-gap-large);
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.fda-button-icon {
  z-index: 2;
  width: .6875rem;
  height: auto;
  position: relative;
}

.fda-button-icon.fda-icon-two:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706), .fda-button-icon.fda-icon-two:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4), .fda-button-icon.fda-icon-two.fda-button-dark, .fda-button-icon.fda-icon-one {
  display: none;
}

.fda-button-icon.fda-icon-one:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706), .fda-button-icon.fda-icon-one:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4), .fda-button-icon.fda-icon-one.fda-button-dark {
  display: block;
}

.fda-button-icon.fda-icon-one {
  display: none;
}

.fda-button-icon.fda-icon-two {
  filter: invert();
}

.fda-review-one-author-image {
  margin-top: 3.625rem;
}

.fda-counter-box {
  justify-content: center;
  align-items: flex-start;
  height: 3.3125rem;
}

.fda-counter-box.fda-counter-v3 {
  height: clamp(60px, 8vw, 140px);
}

.fda-service-v2-title-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
}

.fda-service-v1-title-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-start;
}

.fda-section-gutter {
  padding: .9375rem;
}

.fda-section-gutter.fda-horizontal-gap-off {
  padding-top: 0;
  padding-bottom: 0;
}

.fda-section-gutter.fda-top-gap-off {
  padding-top: 0;
}

.fda-pricing-plan-v1-details-wrap {
  justify-content: center;
  align-items: center;
}

.fda-main-slider {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.fda-text-color-gray {
  color: var(--light-grey);
}

.fda-text-color-gray.fda-text-center {
  text-align: center;
  margin-bottom: 4rem;
}

.fda-line-v3 {
  border-top: 2px solid #fff;
  width: 1.875rem;
}

.fda-line-v3.fda-one:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29), .fda-line-v3.fda-two:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  border-top-color: var(--black);
}

.fda-line-v3.fda-line-three:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  border-top-color: var(--black);
}

.fda-line-v3.fda-line-three {
  width: .9375rem;
}

.fda-hero-v1-left-title-content {
  margin-left: 40px;
}

.fda-image-full {
  width: 100%;
  height: 100%;
}

.fda-image-full.fda-active.fda-pricint-v1-image {
  object-fit: cover;
}

.fda-radius-20 {
  border-radius: 20px;
}

.fda-service-v2-right-wrap {
  flex: 1;
  max-width: 630px;
}

.fda-button-v1 {
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  background-color: var(--white);
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .375rem .5rem 1.5625rem;
  display: flex;
}

.fda-button-v1:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  background-color: var(--black);
}

.fda-button-v1:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4) {
  background-color: var(--black);
  justify-content: space-between;
  align-items: center;
}

.fda-button-v1.fda-button-dark {
  background-color: var(--black);
}

.fda-counter {
  justify-content: flex-start;
  align-items: center;
}

.fda-coke-image {
  width: 315px;
  height: 354px;
}

.fda-pricing-text {
  color: var(--grey);
  text-decoration: line-through;
}

.fda-hero-v1-content-main-wrap {
  z-index: 2;
  padding-top: 6.25rem;
  padding-bottom: 13.75rem;
  position: relative;
}

.fda-dropdown {
  z-index: auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-nav-menu-block-one {
  grid-row-gap: 1.8125rem;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.fda-service-v1-right-wrap {
  width: 100%;
  max-width: 48.125rem;
}

.fda-pricing-plan-v1-top-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.fda-project-client-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: .4375rem;
  padding-bottom: 1.25rem;
}

.fda-hero-v1-left-wrap {
  width: 100%;
  max-width: 42.8125rem;
}

.fda-footer-social-icon-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  padding-top: 5.875rem;
}

.fda-slider-bottom-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-author-image {
  box-sizing: content-box;
  border: 3px solid #fff;
  width: 4.04563rem;
}

.fda-line {
  background-color: #0003;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% 0% auto;
}

.fda-line.fda-bottom-line {
  inset: auto 0% 0%;
}

.fda-line.fda-static-line {
  position: static;
}

.fda-text-overlay-v1-wrap {
  pointer-events: none;
  position: absolute;
  inset: -7px 0% 0%;
}

.fda-service-v2-left-box {
  align-items: stretch;
  width: 100%;
  max-width: 34.375rem;
}

.fda-pricing-plan-v1-bottom-wrap {
  width: 100%;
  max-width: 36.25rem;
}

.fda-footer-left-box {
  max-width: 22.75rem;
  padding-top: .4375rem;
}

.fda-review-v1 {
  height: 300vh;
}

.fda-service-v2-item-box {
  padding: 1.875rem 1.25rem var(--_spacing---element-gaps--element-gap-medium) 1.875rem;
  background-color: var(--black);
  border-radius: 20px;
  flex: 1;
}

.fda-service-v2-item-box:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  background-color: var(--black);
}

.fda-features-v1-right-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 23.25rem;
}

.fda-hero-v1-content-wrap {
  z-index: 1;
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 13.125rem;
}

.fda-hero-v1-right-wrap {
  width: 26.75rem;
  height: 26.25rem;
  position: relative;
}

.fda-hero-v1-right-wrap.fda-position-relative.fda-tab-display-none {
  mix-blend-mode: normal;
}

.fda-service-v1-circle-v1 {
  background-color: var(--black);
  width: .5225rem;
  height: .5225rem;
  position: absolute;
  inset: 17% 0% auto 6.4%;
}

.fda-nav-logo {
  z-index: 7;
  flex: none;
  position: relative;
}

.fda-review-v1-text-box-wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 15.125rem;
  height: 100%;
}

.fda-features-v1-list-wrap {
  z-index: 2;
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 2.8125rem 2.625rem 3.1875rem;
  display: flex;
}

.fda-project-image-block {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  display: flex;
}

.fda-sliders-main-background {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.fda-text-color-black {
  color: var(--black);
}

.fda-text-color-black.fda-weight-500 {
  font-weight: 500;
}

.fda-text-center {
  text-align: center;
}

.fda-dropdown-green-icon {
  opacity: 0;
  position: absolute;
}

.fda-menu-top-wrapper {
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 1.875rem;
  position: absolute;
  inset: -23px 0% auto;
}

.fda-service-v1-arrow {
  background-color: var(--black);
  width: 2.8125rem;
  height: 2.8125rem;
}

.fda-button-v1-arrow-wrap {
  background-color: var(--light-green);
  flex: none;
  width: 2.8125rem;
  height: 2.8125rem;
  overflow: hidden;
}

.fda-image {
  background-color: #000;
  border-radius: 50px;
}

.fda-image.fda-icon-navbar {
  width: 2.25rem;
}

.fda-footer-v1-top-main-wrap {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  padding-left: 40px;
  padding-right: 40px;
}

.fda-tag-v1 {
  background-color: var(--light-green);
  padding: .8125rem 1.1875rem .6875rem;
}

.fda-slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.fda-slide-container.fda-position-relative {
  background-color: var(--transparent);
  opacity: 1;
  mix-blend-mode: normal;
}

.fda-review-v1-wrap {
  margin-right: -60vw;
}

.fda-features-v1-grid-col {
  width: 100%;
}

.fda-dropdown-list-wrapper {
  grid-row-gap: .625rem;
  flex-flow: column;
  padding: 1.4375rem 1.5625rem;
  display: flex;
}

.fda-features-v1 {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: 0;
}

.fda-dropdown-icon:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  filter: invert();
}

.fda-mega-menu-block {
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  max-width: 25.9375rem;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  bottom: auto;
  left: 0;
  right: 0;
  box-shadow: 0 20px 40px #0003;
}

.fda-mega-menu-block.fda-radius-20 {
  display: block;
}

.fda-project-div {
  z-index: 9;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: none;
  background-color: #0000000f;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.fda-container {
  width: 100%;
  max-width: 82.5rem;
  padding-left: .9375rem;
  padding-right: .9375rem;
}

.fda-features-v2-wrapper-main {
  margin-bottom: var(--_spacing---element-gaps--element-gap-large);
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
}

.fda-slider-inside-box {
  width: 100%;
  height: 100%;
}

.fda-about-v1-right-top-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  grid-template-rows: auto;
}

.fda-mega-menu-wrapper {
  z-index: 998;
  grid-column-gap: 1.6875rem;
  grid-row-gap: 1.6875rem;
  background-color: #fff;
  width: 100%;
  padding: 2.1875rem 2.5rem 2.5rem;
  position: relative;
}

.fda-service-v1-title-right-wrap {
  width: 100%;
  max-width: 48.125rem;
}

.fda-pricing-plan-v1.fda-section-gutter.fda-bottom-gap-off {
  padding-bottom: 0;
}

.fda-pricing-plan-v1.fda-section-gutter.fda-bottom-gap-off._1 {
  margin-top: 40px;
}

.fda-footer-pointer {
  background-color: var(--light-green);
  cursor: pointer;
  width: 7.125rem;
  height: 7.125rem;
  display: flex;
}

.fda-features-overlay-v1 {
  z-index: -1;
  pointer-events: none;
  background-color: #fff0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 59px 81.3px #00000045;
}

.fda-auther-content-wrap {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-footer-v1-bottom-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3.125rem 40px 2.5rem;
}

.fda-features-v2-overlay {
  z-index: -1;
  pointer-events: none;
  background-color: #070707;
  border-radius: 100px;
  position: absolute;
  inset: 0%;
  box-shadow: 0 35px 58px #00000040;
}

.fda-features-v2-overlay.fda-inactive {
  opacity: 0;
}

.fda-container-medium {
  width: 100%;
  max-width: 101.875rem;
  padding-left: .9375rem;
  padding-right: .9375rem;
}

.fda-service-v1-right-content-icon {
  background-color: var(--light-green);
  width: 5rem;
  height: 5rem;
}

.fda-text-color-white {
  color: var(--white);
}

.fda-features-v1-grid {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.fda-dropdown-link {
  color: var(--black);
  font-size: var(--_typography---sizes--sub-heading-size);
  font-weight: var(--_typography---weights--heading-weight);
  transition: all .5s;
}

.fda-dropdown-link:hover {
  color: #0f1214;
  transform: translate(7px);
}

.fda-dropdown-link.w--current {
  color: #f02727;
}

.fda-service-v2 {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-features-v1-main-wrap {
  background-color: #fff;
  align-items: stretch;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.fda-hero-slider {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-nav-font {
  font-weight: 500;
}

.fda-nav-font.fda-text-color-white:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  color: var(--black);
}

.fda-about-right-content-wrap {
  justify-content: center;
  align-items: flex-end;
}

.fda-service-v2-wrapper {
  padding-top: 5.5625rem;
}

.fda-service-v1-right-bottom-content {
  padding-top: 4.375rem;
}

.fda-vertical-line-v1 {
  background-color: #0003;
  width: .0625rem;
  height: auto;
}

.fda-service-v2-item-wrapper {
  cursor: pointer;
  border-bottom: 1px solid #0003;
}

.fda-service-v2-item-wrapper.fda-position-relative.fda-four {
  z-index: 1;
}

.fda-service-v2-item-wrapper.fda-position-relative.fda-landscape-border-top.fda-one {
  z-index: 4;
}

.fda-service-v2-item-wrapper.fda-position-relative.fda-two {
  z-index: 3;
}

.fda-service-v2-item-wrapper.fda-active {
  z-index: 2;
}

.fda-image-height-auto {
  height: auto;
}

.fda-project-click-wrapper {
  z-index: 11;
  opacity: 0;
  transform-origin: 100% 0;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 20.875rem;
  position: relative;
}

.fda-project-click-wrapper:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  border: 1px solid #0003;
}

.fda-about-v1-flex-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-end;
}

.fda-sticky-wrapper-v2 {
  position: sticky;
  top: 11%;
}

.fda-hero-v1 {
  height: 100vh;
  padding: .9375rem;
  position: relative;
}

.fda-features-v2-image-wrap {
  grid-column-gap: .0625rem;
  grid-row-gap: .0625rem;
  justify-content: space-between;
  align-items: flex-start;
  height: 22.125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fda-navbar-block {
  background-color: #ddd0;
  width: 100%;
  padding-top: 2.5rem;
  padding-left: .9375rem;
  padding-right: .9375rem;
  position: absolute;
}

.fda-navbar-block:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
  padding-top: 0;
}

.fda-mega-menu-inner-wrap {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  justify-content: space-between;
  align-items: flex-start;
}

.fda-accordian-ovelay {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0%;
  box-shadow: 0 59px 81.3px #00000045;
}

.fda-text-color-green {
  color: var(--light-green);
}

.fda-text-color-green.fda-sub-text.fda-pricing-v1-plan-short-text {
  text-align: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  line-height: 130%;
}

.fda-text-desktop-right.fda-about-right-content {
  width: 100%;
  max-width: 16.7rem;
  padding-top: 11.125rem;
}

.fda-text-desktop-right.fda-text-style-h5.fda-about-v1-right-box-title {
  text-align: right;
  width: 100%;
  max-width: 7.9375rem;
}

.fda-text-desktop-right.fda-text-style-h5.fda-about-v1-right-box-title.fda-two {
  max-width: 9.875rem;
}

.fda-hero-v1-right-content-arrow {
  background-color: var(--light-green);
  flex: none;
  width: 3rem;
  height: 3rem;
  margin-top: -2.9375rem;
  display: flex;
}

.fda-about-v1-right-top-content {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 2.8125rem 1.5rem 1.875rem;
}

.fda-service-v1-right-top-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 7.5rem;
  padding-bottom: 1.5625rem;
  display: flex;
}

.fda-button-font {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--button-size);
  line-height: var(--_typography---line-heights--button-line-height);
  font-weight: var(--_typography---weights--heading-weight);
}

.fda-button-font.fda-text-color-white {
  color: #fff;
}

.fda-button-font.fda-text-color-white.fda-button-text-two {
  color: var(--black);
  position: absolute;
  transform: translate(0, 100%);
}

.fda-button-font.fda-text-color-white.fda-button-text-two:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706), .fda-button-font.fda-text-color-white.fda-button-text-two:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4), .fda-button-font.fda-text-color-white.fda-button-text-two.fda-button-dark {
  color: var(--white);
}

.fda-button-font.fda-text-color-white.fda-button-text-one {
  color: var(--black);
}

.fda-button-font.fda-text-color-white.fda-button-text-one:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706), .fda-button-font.fda-text-color-white.fda-button-text-one:where(.w-variant-62c0bef1-da37-ea29-df2c-fed267cb34f4), .fda-button-font.fda-text-color-white.fda-button-text-one.fda-button-dark {
  color: var(--white);
}

.fda-button-font.fda-hover-out-text {
  position: absolute;
}

.fda-nav-sub-menu {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-weight: 500;
  line-height: 1.5625rem;
  display: flex;
}

.fda-nav-sub-menu.w--current {
  color: #0f1214;
}

.fda-footer-v1-main-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: space-between;
  padding: 4rem 40px;
}

.fda-features-v2-image {
  flex-flow: column;
  display: flex;
}

.fda-features-v2-image.fda-change-direction {
  transform: translate(0, -50%);
}

.fda-line-v2 {
  background-color: #fff3;
  width: 100%;
  height: .0625rem;
}

.fda-counter-train {
  justify-content: flex-start;
  align-items: flex-end;
}

.fda-counter-train.fda-counter-train-v2 {
  justify-content: flex-start;
  align-items: flex-start;
}

.fda-features-v1-list-right-wrap {
  grid-column-gap: 4.1875rem;
  grid-row-gap: 4.1875rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-service-v1-right-content-flex-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: stretch;
}

.fda-project-click-top {
  border-bottom: 1px #0003;
  padding-bottom: .6875rem;
}

.fda-project-details {
  max-width: 11.4375rem;
}

.fda-feature-v3 {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-training-v1-top-title-wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 95rem;
}

.fda-radius-30 {
  border-radius: 30px;
}

.fda-feature-v1-point-list-wrap {
  width: 100%;
  max-width: 16.9375rem;
}

.fda-feature-video-line {
  background-color: #0003;
  width: 100%;
  height: 1px;
}

.fda-team-v1-heading {
  width: 100%;
  max-width: 42rem;
}

.fda-accrodian-v1 {
  background-color: var(--white);
  cursor: pointer;
  width: 100%;
  padding: 2.25rem 2.5rem 2.8125rem;
}

.fda-feature-video-content {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.375rem;
  padding-bottom: .875rem;
  display: flex;
}

.fda-feature-video-block-wrap {
  width: 100%;
  max-width: 11.875rem;
  padding-top: 11.875rem;
}

.fda-feature-v1 {
  height: 400vh;
}

.fda-training-v1-content-wrap {
  width: 100%;
  max-width: 37.5rem;
}

.fda-training-v1-content-wrap.fda-two, .fda-training-v1-content-wrap.fda-four, .fda-training-v1-content-wrap.fda-three {
  position: absolute;
  inset: 0%;
}

.fda-feature-v1-full-wrap {
  z-index: 1;
  position: sticky;
  top: 3.75rem;
}

.fda-text-style-h3 {
  font-family: var(--_typography---family--heading-family);
  color: var(--black);
  font-size: var(--_typography---sizes--h3-size);
  line-height: var(--_typography---line-heights--h3-line-height);
  font-weight: var(--_typography---weights--heading-weight);
  letter-spacing: var(--_typography---letter-spacing--h3-letter-spacing);
}

.fda-text-style-h3.fda-accrodian-v1-title {
  margin-right: 2.5rem;
}

.fda-about-v2-counter-inner-wrap {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
}

.fda-feature-v1-line {
  background-color: #0003;
  width: 1px;
}

.fda-feature-v1-main-image {
  perspective-origin: 50%;
  transform-origin: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.fda-feature-v1-bottom-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 7.375rem;
}

.fda-training-v1-wrap {
  z-index: 2;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
}

.fda-accrodian-v1-icon {
  background-color: var(--black);
  border-radius: 50px;
  width: 1.25rem;
  height: .125rem;
}

.fda-accrodian-v1-icon.fda-two {
  position: absolute;
  inset: 0%;
  transform: rotate(90deg);
}

.fda-service-v3-main {
  justify-content: flex-start;
  align-items: center;
}

.fda-training-v1-inner-line {
  background-color: #fff;
  width: 0%;
  height: 100%;
}

.fda-gap-medium {
  margin-bottom: var(--_spacing---element-gaps--element-gap-medium);
}

.fda-gap-medium.fda-about-v2-title-content {
  width: 100%;
  max-width: 461px;
}

.fda-gap-medium.fda-about-v2-title-content._1 {
  margin-bottom: var(--_spacing---element-gaps--element-gap-large);
  font-size: var(--_typography---line-heights--h2-line-height);
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 700px;
  padding-left: 20px;
  display: block;
}

.fda-gap-medium.fda-password-icon {
  width: 64px;
}

.fda-inner-page-hero-curtain-two {
  z-index: 1;
  pointer-events: none;
  background-color: #070707;
  display: none;
  position: absolute;
  inset: 0%;
}

.fda-service-v3-slider-card-image {
  width: 100%;
}

.fda-inner-page-hero-section {
  border-radius: 40px;
  padding-top: 20.5rem;
  padding-bottom: 20.125rem;
  position: relative;
}

.fda-inner-page-hero-section.fda-overflow-hidden.fda-blog-hero {
  padding-top: 18.75rem;
  padding-bottom: 10.5rem;
}

.fda-training-v1-inner-wrap {
  padding-bottom: 4.25rem;
}

.fda-grid-v1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  max-width: 39.375rem;
  margin-top: .25rem;
  position: relative;
}

.fda-inner-page-hero-wrapper {
  z-index: 4;
  grid-column-gap: .6875rem;
  grid-row-gap: .6875rem;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.fda-inner-page-hero-wrapper.fda-blog-hero-content {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 50rem;
}

.fda-about-v2-card-content {
  max-width: 13.5rem;
}

.fda-gap-large {
  margin-top: 0;
  margin-bottom: var(--_spacing---element-gaps--element-gap-extra-small);
  text-align: left;
}

.fda-about-v2-main {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: stretch;
}

.fda-vertical-line-v2 {
  background-color: #0003;
  width: .0625rem;
  height: 100%;
  position: absolute;
}

.fda-vertical-line-v2.fda-left {
  inset: 0% auto 0% 0%;
}

.fda-vertical-line-v2.fda-right {
  inset: 0% 0 0% auto;
}

.fda-accrodian-v1-top-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: space-between;
  align-items: center;
}

.fda-service-v3-slider-card-wrap {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  padding-left: .9375rem;
  padding-right: .9375rem;
  display: flex;
}

.fda-feature-v1-point-wrap {
  max-width: 16.9375rem;
}

.fda-feature-v1-point-wrap.fda-in-active {
  z-index: 0;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.fda-inner-page-hero-cartain {
  z-index: 3;
  pointer-events: none;
  background-color: #fff0;
  display: none;
  position: absolute;
  inset: 0%;
}

.fda-image-full-width {
  width: 100%;
}

.fda-inner-page-hero-overlay-color {
  background-image: linear-gradient(90deg, #0000 52%, #00000080), linear-gradient(90deg, #00000078 12%, #0000 71%), linear-gradient(#00000091 1%, #00000029 32%, #0000), linear-gradient(0deg, #000000eb, #211f3300 69%);
  position: absolute;
  inset: 0%;
}

.fda-feature-v1-left-side {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 34.375rem;
}

.fda-team-v1 {
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-feature-v1-main-wrap {
  z-index: 1;
}

.fda-training-v1 {
  height: 300vh;
}

.fda-gap-tiny {
  margin-top: 0;
  margin-bottom: var(--_spacing---element-gaps--element-gap-tiny);
}

.fda-feature-image-full {
  flex: none;
  width: 100%;
}

.fda-training-v1-line {
  background-color: #fff3;
  width: 100%;
  height: .1875rem;
}

.fda-training-v1-sticky-wrap {
  height: 100vh;
  padding: .9375rem;
  position: sticky;
  top: 0;
}

.fda-about-v2-left {
  flex: 1;
  max-width: 527px;
  position: sticky;
  top: 10%;
}

.fda-tiny-pointer {
  background-color: #ceff65;
  width: .875rem;
  height: .875rem;
}

.fda-slider-overlay {
  z-index: 1;
  background-image: linear-gradient(#0000 26%, #000000b5 49%, #000);
  position: absolute;
  inset: 0%;
}

.fda-feature-v1-right-side {
  width: 100%;
  max-width: 36.625rem;
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
}

.fda-accrodian-v1-image-wrap {
  max-width: 50.625rem;
}

.fda-accrodian-v1-row-one {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-end;
}

.fda-inner-page-hero-overlay {
  pointer-events: none;
}

.fda-gap-small {
  margin-top: 0;
  margin-bottom: var(--_spacing---element-gaps--element-gap-small);
}

.fda-about-v2-card-overlay {
  z-index: -1;
  opacity: 0;
  background-color: #070707;
  position: absolute;
  inset: 0%;
}

.fda-team-v1-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-feature-v1-flex-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.fda-feature-v3-title {
  max-width: 47.3125rem;
}

.fda-feature-v3-title.fda-landscape-text-center {
  margin-top: 60px;
  padding-left: 20px;
}

.fda-about-v2 {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-accrodian-v1-short-content {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  align-self: flex-end;
  width: 100%;
  max-width: 28.875rem;
  margin-right: 2.5rem;
  padding-bottom: .6875rem;
}

.fda-accrodian-v1-short-content.fda-landscape-full-width {
  align-self: flex-start;
}

.fda-accrodian-v1-short-content._1 {
  align-self: flex-start;
  display: block;
}

.fda-feature-v3-wrap {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
}

.fda-team-heading-wrap {
  justify-content: space-between;
  align-items: flex-end;
}

.fda-team-heading-wrap.fda-gap-large.fda-team-heading-wrap-v2 {
  justify-content: space-between;
  align-items: center;
}

.fda-about-v2-card {
  grid-row-gap: 5.0625rem;
  flex: 1;
  justify-content: space-between;
  padding: 3.375rem 1.875rem 3.75rem;
}

.fda-about-v2-card.fda-position-relative.fda-bottom-card {
  padding-bottom: 39px;
}

.fda-about-v2-card.fda-position-relative.fda-top-card {
  padding-top: 2.1875rem;
}

.fda-service-v3-slider-wrap {
  grid-column-gap: 3.1875rem;
  grid-row-gap: 3.1875rem;
  background-color: #fff0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
}

.fda-feature-v1-inner-line {
  background-color: var(--black);
  height: 7.6875rem;
}

.fda-training-v1-top-left-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: .1875rem;
  display: flex;
}

.fda-service-v3-title-wrap {
  width: 100%;
  max-width: 60.8125rem;
}

.fda-training-v1-bottom-wrap {
  grid-column-gap: 2.8125rem;
  grid-row-gap: 2.8125rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 6.875rem;
}

.fda-inner-page-hero-background {
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-service-v3 {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-hero-slider-image-three {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.fda-feature-v1-content {
  margin-bottom: var(--_spacing---element-gaps--element-gap-medium);
}

.fda-accrodian-v1-bottom-content {
  align-items: stretch;
}

.fda-training-v1-main-wrap {
  background-color: var(--black);
  height: 100%;
}

.fda-features-block-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.fda-button-two-icon-end {
  position: absolute;
  transform: scale(0);
}

.fda-service-v6 {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-small);
  height: 300vh;
}

.fda-pricing-popular-tag {
  color: #fff;
  background-color: #170939;
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 14px;
  position: absolute;
  inset: -7% 0% auto auto;
}

.fda-pricing-v1-plan-heading {
  max-width: 43.75rem;
}

.fda-service-v5 {
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-service-v5-left-wrap {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 46.25rem;
  display: flex;
}

.fda-multimedia-button-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  letter-spacing: .48px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.fda-image-filter {
  filter: brightness(0%);
  height: auto;
}

.fda-about-v3-pointer {
  background-color: var(--light-green);
  width: 3.625rem;
  height: 3.625rem;
  position: absolute;
  inset: -6px 0% auto auto;
}

.fda-features-box-item {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 5rem 1.875rem 4.375rem;
  position: relative;
}

.fda-features-box-item.fda-position-relative {
  z-index: 1;
}

.fda-pricing-v1-plan-feature {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  align-items: center;
}

.fda-pricing-v1-plan-amount-wrap {
  grid-column-gap: .9375rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: .9375rem;
  padding-bottom: .3125rem;
}

.fda-service-v4-left-wrap {
  flex: 1;
}

.fda-service-v4-left-wrap.fda-position-relative {
  max-width: 25.625rem;
}

.fda-about-v3-inner-content {
  padding-top: var(--_spacing---element-gaps--element-gap-medium);
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
}

.fda-no-shrink {
  flex: none;
  width: 100%;
  max-width: none;
}

.fda-service-v6-right-wrap {
  width: 100%;
  max-width: 27.5rem;
}

.fda-service-v5-right-wrap {
  width: 100%;
  max-width: 29.625rem;
}

.fda-pricing-plan-button-outer {
  cursor: pointer;
  border: 1px solid #17093933;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  width: 4.0625rem;
  height: 1.875rem;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  padding-left: .125rem;
}

.fda-about-v3-experience-wrap {
  background-color: var(--black);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 11.25rem;
  height: 11.25rem;
}

.fda-service-v6-left-wrap {
  width: 100%;
  max-width: 41.25rem;
}

.fda-features-v4-main-wrap {
  justify-content: flex-start;
  align-items: center;
}

.fda-service-v5-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: stretch;
}

.fda-service-v1-slider-heading {
  pointer-events: auto;
}

.fda-monthly-plan {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.fda-black-overlay {
  z-index: -1;
  background-color: var(--black);
  opacity: 1;
  border-radius: 25px;
  width: 50%;
  position: absolute;
  inset: 0%;
  transform: translate(100%);
  box-shadow: 0 59px 81.3px #00000045;
}

.fda-service-v4-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
}

.fda-service-v5-left-top-wrap {
  max-width: 37.5rem;
}

.fda-about-v3 {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-features-v4-title {
  max-width: 45rem;
}

.fda-service-v4-text-block {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  height: 100%;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  display: flex;
  position: relative;
}

.fda-service-v4-text-block.fda-overflow-hidden.fda-service-v4-gaps {
  padding-top: 0;
  padding-bottom: var(--_spacing---element-gaps--element-gap-extra-small);
}

.fda-service-v4-text-block.fda-active {
  grid-column-gap: 4.0625rem;
  grid-row-gap: 4.0625rem;
  padding-bottom: 1.25rem;
}

.fda-features-v4 {
  z-index: 1;
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-yearly-plan {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-service-v6-linner-ine {
  background-color: #070707;
  border-radius: 30px;
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fda-service-sticky-wrap-v6 {
  position: sticky;
  top: 3%;
}

.fda-features-v4-bottom-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  background-color: #070707;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3.75rem;
  padding: .375rem 1.9375rem .375rem .375rem;
}

.fda-service-v6-images {
  perspective-origin: 50%;
  transform-origin: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

.fda-service-v6-images.fda-three {
  z-index: 3;
}

.fda-service-v6-images.fda-two {
  z-index: 2;
}

.fda-service-v5-icon {
  filter: brightness(0%);
}

.fda-service-v4-content-wrap {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  width: 100%;
  max-width: 21rem;
}

.fda-about-v3-innner-line {
  background-color: var(--black);
  width: 100%;
  height: 100%;
}

.fda-pricing-plan-button-ball {
  background-color: var(--black);
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
}

.fda-features-item-overlay {
  z-index: -1;
  background-color: var(--black);
  pointer-events: none;
  width: 200%;
  height: 200%;
  position: absolute;
  inset: 0%;
  box-shadow: 0 59px 81.3px #00000045;
}

.fda-button-two-icon-wrapper {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: .125rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fda-features-icon-wrap {
  margin-bottom: .6875rem;
}

.fda-about-v3-row-right {
  flex: 1;
  max-width: 25.875rem;
}

.fda-text-style-medium {
  font-size: clamp(60px, 8vw, 140px);
  line-height: 1;
}

.fda-service-v5-left-bottom-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #0000001a;
  grid-template-rows: auto;
  margin-top: 1.875rem;
}

.fda-features-card-title {
  max-width: 11.6875rem;
}

.fda-pricing-v1-plan-top-text {
  padding-bottom: var(--_spacing---element-gaps--element-gap-title);
}

.fda-service-v1-shape {
  z-index: 24;
  position: absolute;
  inset: auto auto -1px -.1px;
}

.fda-service-v4-arrow {
  width: 1.25rem;
  height: auto;
  margin-top: -.375rem;
}

.fda-highlight-title {
  background-color: var(--light-green);
  padding: .5625rem .875rem;
}

.fda-service-v1-heading-two {
  padding-top: 1.875rem;
  padding-bottom: 1.6875rem;
  position: relative;
}

.fda-image-ful-width {
  width: 100%;
  height: 100%;
}

.fda-inner-line-v2 {
  background-color: #070707;
  height: 100%;
}

.fda-pricing-toggle-button {
  grid-column-gap: 1.4375rem;
  grid-row-gap: 1.4375rem;
  justify-content: center;
  align-items: center;
}

.fda-service-v6-left-images-wrap {
  justify-content: center;
  align-items: center;
}

.fda-service-v4-text-list {
  width: 100%;
  margin-top: -.9375rem;
}

.fda-service-v1-slider-heading-one {
  position: relative;
}

.fda-service-v4-right {
  border-top: 1px solid #ffefe633;
  flex: 1;
  max-width: 41.25rem;
}

.fda-service-v4 {
  padding-top: var(--_spacing---section-gap-medium);
}

.fda-button-two {
  justify-content: flex-start;
  align-items: center;
}

.fda-button-two.fda-overflow-hidden {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

.fda-pricing-v1-amount-before {
  opacity: .5;
  color: #000;
  text-decoration: line-through;
}

.fda-service-v6-line {
  background-color: #0000001a;
  border-radius: 48px;
  width: 100%;
  height: .25rem;
  position: absolute;
}

.fda-service-v4-image-card {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto;
}

.fda-service-v4-image-card.fda-four {
  z-index: 4;
  opacity: 100;
}

.fda-service-v4-image-card.fda-four.fda-two {
  position: static;
}

.fda-service-v4-image-card.fda-two {
  z-index: 2;
}

.fda-pricing-v1-button-two {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 3.125rem;
}

.fda-service-v4-text-wrapper {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  justify-content: space-between;
  align-items: center;
}

.fda-button-two-icon-one {
  filter: brightness(0%);
}

.fda-about-v3-middle-line {
  background-color: #0003;
  width: .0625rem;
  height: 6.25rem;
}

.fda-features-v4-content {
  max-width: 18.125rem;
  margin-bottom: .875rem;
}

.fda-service-v4-list-wrap {
  align-self: stretch;
}

.fda-service-v6-content-wrap {
  padding-top: var(--_spacing---element-gaps--element-gap-large);
  pointer-events: auto;
  border-top: 1px solid #0003;
  width: 100%;
  max-width: 25.25rem;
  margin-top: 14.8125rem;
}

.fda-about-v3-row-two {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 4.375rem;
}

.fda-pricing-v1 {
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-service-v1-slider-wrapper {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
}

.fda-pricing-popular-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.fda-pricing-popular-flex.fda-pricing-plan-v2 {
  position: relative;
}

.fda-service-v4-text-boxes {
  flex: 1;
  align-items: stretch;
  width: 100%;
}

.fda-service-v6-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.0625rem;
  display: flex;
}

.fda-service-v5-left-content {
  padding: 1.875rem 1.875rem 1.375rem;
}

.fda-pricing-v1-title-wrapper {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1.875rem;
}

.fda-service-v1-slider-heading-three {
  position: relative;
}

.fda-about-v3-row-left {
  width: 100%;
  max-width: 18rem;
}

.fda-pricing-v1-pricing-card {
  background-color: #fff;
  flex: 1;
  align-items: stretch;
  padding: 1.875rem;
  box-shadow: 0 8px 97.3px #00000014;
}

.fda-pricing-v1-plan-features {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
}

.fda-service-v5-left-icon {
  margin-bottom: var(--_spacing---element-gaps--element-gap-medium);
}

.fda-button-two-text-wrapper {
  padding-right: .6875rem;
  text-decoration: none;
  position: relative;
}

.fda-blog-v1-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 4.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-blog {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-blog-one-item-heading {
  width: 100%;
  max-width: 20.25rem;
  padding-bottom: 1.9375rem;
}

.fda-body-font-color {
  color: var(--davy-s-grey);
}

.fda-effect-inner-border {
  background-color: var(--black);
  width: 100%;
  height: 100%;
}

.fda-effect-border {
  background-color: #0003;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.fda-blog-card-wrap {
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

.fda-blog-post-date {
  grid-column-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-team {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-team-member-details-box {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: .75rem;
}

.fda-team-member-details {
  background-color: #fff;
  border-radius: 20px;
}

.fda-team-member-details-wrap {
  padding: var(--_spacing---element-gaps--element-gap-extra-small);
  pointer-events: none;
  position: absolute;
  inset: auto 0% 8px;
}

.fda-team-v1-content {
  width: 100%;
}

.fda-team-shape {
  height: 100%;
}

.fda-event-auto {
  pointer-events: auto;
}

.fda-team-member-text-box {
  z-index: 2;
  padding: 1.875rem var(--_spacing---element-gaps--element-gap-extra-small);
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  inset: 0%;
}

.fda-team-member-sosal-icon {
  grid-column-gap: 1.0625rem;
  grid-row-gap: 1.0625rem;
}

.fda-team-member-button {
  z-index: 3;
  background-color: var(--light-green);
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  display: none;
  position: absolute;
  inset: 15px 20px 0% auto;
}

.fda-tab-image-full-width.fda-landscape-height-auto.fda-blog-card-image {
  aspect-ratio: 410 / 300;
  height: auto;
}

.fda-team-v1-card-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.fda-pricing-row-left {
  border-right: 1px solid #0003;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.fda-pricing-table-border-wrapper {
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: absolute;
  inset: 0%;
}

.fda-price-number {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.fda-pricing {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-pricing-one-price-table {
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-price-table-row {
  border-bottom: 1px solid #0003;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-price-table-v1-title-wrap {
  width: 100%;
  max-width: 34.3125rem;
}

.fda-pricing-right-border {
  border-right: 1px solid #0003;
}

.fda-pricing-right-plan {
  padding-top: var(--_spacing---element-gaps--element-gap-extra-small);
  padding-bottom: var(--_spacing---element-gaps--element-gap-extra-small);
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-pricing-right-plan.fda-pricing-right-check-box {
  justify-content: space-around;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.fda-pricing-right-plan.fda-plan-name-padding-change {
  padding-top: 0;
  position: relative;
}

.fda-minus {
  background-color: #000;
  width: .8125rem;
  height: .09375rem;
}

.fda-pricing-two-toogle {
  padding: 0;
  display: block;
}

.fda-pricing-two-toogle.fda-change-display {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fda-faq-tabs-content {
  flex: 1;
}

.fda-faq-contect-box {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.fda-faq-main-box {
  justify-content: flex-start;
  align-items: center;
}

.fda-faq-icon-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-top-gap {
  padding-top: 20px;
}

.fda-top-gap.fda-faq-title-gap {
  padding-top: 0;
}

.fda-faq-left-part-content {
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 1.875rem 1.625rem;
  display: flex;
}

.fda-faq-left-part-content.fda-botton-border-off {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.fda-faq {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-faq-dropdown {
  background-color: #ddd0;
  display: none;
  position: static;
}

.fda-faq-question {
  background-color: #fff;
  border-bottom: 1px solid #0003;
  padding-left: 3.125rem;
  padding-right: 2.5rem;
  display: block;
  position: static;
}

.fda-faq-question.fda-border-none {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.fda-plush {
  background-color: #000;
  width: .09375rem;
  height: .8125rem;
  position: absolute;
}

.fda-faq-left-part {
  border: 1px solid #0000001a;
  flex-flow: column;
  flex: 1;
  max-width: 22rem;
  margin-right: 3.75rem;
  display: flex;
}

.fda-tab-link {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

.fda-tab-link.w--current, .fda-tab-link.fda-fast.w--current {
  color: #fff;
  background-color: #000;
}

.fda-faq-content-wrap {
  max-width: 46.1875rem;
  padding-bottom: 1.875rem;
}

.fda-faq-title {
  padding-top: var(--_spacing---element-gaps--element-gap-medium);
  padding-bottom: var(--_spacing---element-gaps--element-gap-medium);
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  white-space: normal;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.fda-question-item-wrapper {
  border: 1px solid #0003;
  flex: 1;
}

.fda-faq-content {
  white-space: normal;
}

.fda-contact-socal-links-title {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-submit-button {
  z-index: 2;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.fda-form-fields-wrapper {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-contact-form-left-wrap {
  flex: 1;
  max-width: 27.5625rem;
}

.fda-form-block {
  margin-bottom: 0;
}

.fda-form-block.fda-width-full {
  width: 100%;
  margin-top: 2.5rem;
}

.fda-text-color-red {
  color: #f02727;
}

.fda-contact {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-contact-border {
  background-color: #ffffff4d;
  width: 1px;
  height: 2.9375rem;
  position: absolute;
  inset: auto 0% auto auto;
}

.fda-contact-submit-button {
  margin-top: 2.5rem;
}

.fda-contact-socal-wrap-line {
  background-color: #0003;
  width: 1.25rem;
  height: .0625rem;
}

.fda-error-message {
  background-color: #f027271a;
  padding: 1.25rem;
}

.fda-contact-form-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 7.625rem;
}

.fda-contact-social-details {
  margin-top: 8.8125rem;
}

.fda-contact-information {
  background-color: var(--black);
  -webkit-backdrop-filter: blur(46.7px);
  backdrop-filter: blur(46.7px);
  align-items: stretch;
}

.fda-contact-information-block {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2.75rem 2.1875rem 2.5rem;
  transition: width .35s;
  position: relative;
}

.fda-contact-form-side {
  flex: 1;
  max-width: 39.375rem;
}

.fda-form-text-field {
  color: var(--black);
  font-size: var(--_typography---sizes--body-size);
  letter-spacing: 0;
  background-color: #fff0;
  border-style: none none solid;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: #0003;
  border-left-color: #000;
  margin-bottom: 0;
  padding: 1.25rem 0 2.1875rem;
}

.fda-form-text-field::placeholder {
  color: #000;
  font-size: var(--_typography---sizes--body-size);
  letter-spacing: 0;
}

.fda-form-text-field.fda-textarea {
  border-color: #1b2c3000 #1b2c3000 #0003;
  padding-top: 1.875rem;
  padding-bottom: 9.375rem;
  padding-left: 0;
}

.fda-contact-details-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 13.5625rem;
}

.fda-contact-socal-links-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  margin-top: 2.3125rem;
}

.fda-success-message {
  background-color: #000;
}

.fda-contact-socal-links {
  border: 1px solid #0003;
  width: 2.9375rem;
  height: 2.9375rem;
  display: flex;
}

.fda-contact-left-title {
  grid-column-gap: var(--_spacing---element-gaps--element-gap-large);
  grid-row-gap: var(--_spacing---element-gaps--element-gap-large);
}

.fda-text-link {
  -webkit-text-decoration: underline #5b5e61;
  text-decoration: underline #5b5e61;
  text-decoration-thickness: 1px;
}

.fda-text-link:hover {
  color: #000;
  text-decoration-color: #000a33;
  text-decoration-thickness: 1px;
}

.fda-image-links-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: wrap;
  margin-bottom: 2.5rem;
}

.fda-license-box {
  border-bottom: 1px solid #0003;
  margin-bottom: 1.875rem;
  padding-bottom: 2.5rem;
}

.fda-licence-short-text {
  max-width: 800px;
}

.fda-license-images {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  width: 100%;
}

.fda-information-hero {
  background-color: #000;
  padding-top: 13.75rem;
  padding-bottom: 8.75rem;
}

.fda-information-hero-main {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-lincense-wrap {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-showcase-images {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 1.875rem;
}

.fda-license-images-wrapper {
  width: 100%;
}

.fda-information-inner-main {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  justify-content: center;
  align-items: center;
}

.fda-height-auto {
  height: auto;
}

.fda-information-inner {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-information-inner-wrap {
  padding-top: var(--_spacing---section-gap-small);
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-color-code {
  color: #000;
  background-color: #e5e5e5;
  border-radius: 4px;
  padding: .1875rem .3125rem;
  font-size: 12px;
  line-height: 15px;
}

.fda-icons-logo-boxes {
  background-color: #fff;
  padding: 1.25rem;
  box-shadow: 0 10px 40px #00000014;
}

.fda-icons-logo-boxes.fda-background-black {
  background-color: #000;
}

.fda-color-showcase {
  width: 100%;
  height: 11.25rem;
  margin-bottom: .625rem;
  box-shadow: 0 2px 40px #0000001a;
}

.fda-color-showcase.fda-color-three {
  background-color: var(--davy-s-grey);
}

.fda-color-showcase.fda-color-one {
  background-color: var(--light-green);
}

.fda-color-showcase.fda-color-seven {
  background-color: var(--gainsboro);
}

.fda-color-showcase.fda-color-two {
  background-color: var(--black);
}

.fda-color-showcase.fda-color-four {
  background-color: var(--grey);
}

.fda-typography-row {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border-bottom: 1px solid #0003;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}

.fda-typography-row.fda-row-top {
  border-bottom-style: none;
  padding-top: 0;
  padding-bottom: .625rem;
}

.fda-color-blocks {
  border: 1px solid #0003;
  padding: 1.25rem 1.25rem .625rem;
}

.fda-style-guide-colors {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1.875rem;
}

.fda-shadow-box {
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 11.25rem;
  display: flex;
}

.fda-shadow-box.fda-shadow-box-large {
  box-shadow: 0 134px 193.6px #00000026;
}

.fda-shadow-box.fda-shadow-box-medium {
  box-shadow: 0 0 112.7px #0000000d;
}

.fda-shadow-blocks {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.fda-list-gaps {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
}

.fda-logo-showcase-box {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.fda-style-guide-blocks {
  width: 100%;
}

.fda-style-guide-border {
  background-color: #0003;
  width: 100%;
  height: 1px;
  margin-top: 1.25rem;
  margin-bottom: 2.1875rem;
}

.fda-style-guide-success {
  background-color: #ceff65;
  width: 100%;
  padding: 1.25rem;
}

.fda-avatars-box {
  grid-column-gap: .4375rem;
  grid-row-gap: .4375rem;
  justify-content: center;
  align-items: center;
}

.fda-color-information {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.fda-radius-100 {
  border-radius: 100%;
}

.fda-radius-100.fda-small-avatar {
  width: 3.375rem;
}

.fda-style-guide-logo-wrapper {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.fda-form-input-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
}

.fda-typography-wrapper {
  width: 100%;
}

.fda-style-guide-main {
  grid-column-gap: 3.4375rem;
  grid-row-gap: 3.4375rem;
}

.fda-typography-text {
  flex: 0 50%;
}

.fda-style-guide-blocks-top {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  padding-bottom: 1.875rem;
}

.fda-typography-informations {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex: 0 50%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fda-gap-20 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.fda-blog-title-wrap {
  grid-column-gap: 1.4375rem;
  grid-row-gap: 1.4375rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.fda-blog-author-image-box {
  flex: none;
  width: 4.33333rem;
}

.fda-blog-information-everyday-image-wrapper {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  padding-top: 2.0625rem;
  padding-bottom: 1.875rem;
}

.fda-blog-information {
  padding-top: var(--_spacing---section-gap-small);
}

.fda-contact-details-v2 {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  padding-bottom: 3.125rem;
}

.fda-blog-information-right-box {
  flex: 1;
  max-width: 57.9375rem;
}

.fda-blog-information-everyday-text-details {
  max-width: 48.8125rem;
}

.fda-blog-information-content-one {
  padding-bottom: .875rem;
}

.fda-blog-post-date-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.fda-desktop-h-flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fda-desktop-h-flex-center.fda-middle-gap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.fda-blog-information-left-box {
  flex: none;
  width: 100%;
  max-width: 22.5rem;
  padding-top: .4375rem;
  padding-bottom: 3.3125rem;
  padding-right: 1.875rem;
}

.fda-blog-information-content-wrap {
  align-items: stretch;
}

.fda-blog-author-name-box {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
}

.fda-border-line {
  background-color: #0003;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fda-blog-author-wrapper {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  justify-content: flex-start;
  align-items: center;
  max-width: 18.375rem;
  display: flex;
  position: sticky;
  top: 3.75rem;
}

.fda-blog-v1 {
  padding-top: var(--_spacing---section-gap-medium);
  padding-bottom: var(--_spacing---section-gap-medium);
}

.fda-team-details-skills-line {
  background-color: #0000001a;
  width: 100%;
  height: .25rem;
}

.fda-team-details-honors-left-para-wrapper {
  padding-bottom: 1.4375rem;
}

.fda-team-details-main-container {
  max-width: 53.125rem;
}

.fda-team-button {
  border: 1px solid #ffffff4d;
  width: 4.3125rem;
  height: 4.3125rem;
  display: flex;
}

.fda-team-hero {
  background-color: var(--black);
  padding-top: 12.5rem;
  padding-bottom: 6.25rem;
}

.fda-team-details-timeline-title {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-team-details-honors-details {
  width: 100%;
  max-width: 17.8125rem;
}

.fda-team-details-skills-content {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.fda-team-v2 {
  padding-bottom: var(--_spacing---section-gap-small);
}

.fda-team-hero-conteact-icon-number-wrap {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  flex-flow: wrap;
}

.fda-team-hero-conteact-text-box {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
}

.fda-team-details-honors-right {
  flex: 1;
  justify-content: center;
  align-items: stretch;
  padding-left: 3.25rem;
}

.fda-team-details {
  padding-top: 6.25rem;
  padding-bottom: 7.4375rem;
}

.fda-team-member-name {
  grid-column-gap: .6875rem;
  grid-row-gap: .6875rem;
}

.fda-text-color-light-gray {
  color: var(--gainsboro);
}

.fda-text-color-light-gray.fda-hover-green {
  transition: color .3s;
}

.fda-text-color-light-gray.fda-hover-green:hover {
  color: var(--light-green);
}

.fda-team-details-skills-inner-line {
  background-color: #070707;
  width: 55%;
  height: .125rem;
  position: absolute;
  inset: 1px 0% 0%;
}

.fda-team-hero-image {
  width: 100%;
  max-width: 34.375rem;
}

.fda-team-details-counter-line-three {
  background-color: #070707;
  width: 80%;
  height: .125rem;
  position: absolute;
  inset: 1px 0% 0%;
}

.fda-team-details-honors-main-wrapper {
  border-top: 1px solid #b1b1b1;
  align-items: stretch;
}

.fda-team-details-honors-skills-title {
  padding-bottom: .625rem;
}

.fda-team-details-honors-left-heading {
  max-width: 17.8125rem;
  padding-bottom: 1.5625rem;
}

.fda-team-hero-conteact-icon {
  background-color: #ceff651a;
  border-radius: 6px;
  flex: none;
  width: 2.875rem;
  height: 2.875rem;
}

.fda-team-details-honors-left-wrapper {
  border-right: 1px solid #b1b1b1;
  flex: none;
  max-width: 19.374rem;
  padding-top: 2.5625rem;
  padding-bottom: 2.5rem;
  padding-right: 3.125rem;
}

.fda-gap-tiny-v1 {
  margin-bottom: var(--_spacing---element-gaps--element-gap-extra-small);
}

.fda-team-details-about-item {
  padding-bottom: 3.25rem;
}

.fda-team-details-counter-line-one {
  background-color: #070707;
  border-radius: 20px;
  width: 90%;
  height: .125rem;
  position: absolute;
  inset: 1px 0% 0%;
}

.fda-team-details-about-item-block {
  border-top: 1px solid #c8c8c8;
  justify-content: flex-start;
  align-items: center;
}

.fda-team-details-about-item-block.fda-bottom-line {
  border-bottom: 1px solid #c8c8c8;
}

.fda-team-hero-contact-box {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
}

.fda-team-details-content {
  max-width: 26.25rem;
  margin-bottom: 1.3125rem;
}

.fda-team-details-timeline {
  padding-top: 1rem;
  padding-bottom: 3.75rem;
}

.fda-team-hero-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75.625rem;
}

.fda-team-hero-conteact-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  border-top: 1px solid #fff3;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3.75rem;
  padding-top: 3.25rem;
}

.fda-team-details-timeline-content {
  max-width: 20.1875rem;
}

.fda-team-hero-content {
  width: 100%;
  max-width: 34.6875rem;
}

.fda-languages-item {
  max-width: 17.8125rem;
  padding-top: .625rem;
}

.fda-team-details-about-item-heading {
  border-right: 1px solid #c8c8c8;
  width: 100%;
  max-width: 12.5rem;
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
}

.fda-team-details-main {
  border-bottom: 1px solid #15131433;
}

.fda-team-details-timeline-inner-wrap {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  background-color: var(--black);
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3.125rem 2.5rem 3.75rem;
}

.fda-team-details-about-main-para {
  max-width: 47.5625rem;
  padding-bottom: 1.5rem;
}

.fda-team-details-about-item-para {
  padding-left: 6.25rem;
}

.fda-team-details-short-content-one {
  max-width: 46.25rem;
  padding-top: 2.125rem;
  padding-bottom: 1.0625rem;
}

.fda-overflow-hidden {
  overflow: hidden;
}

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

.fda-radius-40 {
  border-radius: 40px;
}

.fda-desktop-height-full {
  height: 100%;
}

.fda-radius-10 {
  border-radius: 10px;
}

.fda-margin-auto, .fda-margin-auto:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  margin-left: auto;
  margin-right: auto;
}

.fda-radius-25, .fda-radius-25:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
  border-radius: 25px;
}

.fda-utilty-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: .9375rem;
  padding-right: .9375rem;
  display: flex;
}

.fda-utilty-page-content {
  grid-column-gap: 1.1875rem;
  grid-row-gap: 1.1875rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 35rem;
}

.fda-utilty-page-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3.75rem;
  display: flex;
  box-shadow: 0 20px 70px #00000014;
}

.fda-display-none {
  display: none;
}

.fda-footer-arrow {
  width: 1.4375rem;
  height: 1.625rem;
}

.fda-style-guide-icon {
  width: auto;
  height: 1.875rem;
}

.fda-pricing-tick {
  width: 1.375rem;
  height: auto;
}

.fda-about-v3-top {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
  max-width: 75.1875rem;
}

.fda-about-v3-top-left {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 35.5rem;
}

.fda-footer-logo-icons-v2 {
  position: absolute;
}

.fda-author-image-main {
  margin-left: -1rem;
}

.project-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-link {
  grid-column-gap: .5rem;
  color: #171717;
  text-align: center;
  background-color: #0000;
  border: 1px #171717;
  justify-content: center;
  align-items: center;
  padding: .25rem 0;
  font-size: .875rem;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.button-link:hover {
  color: #5e5e5e;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.project-item-link {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--light-grey);
  opacity: 1;
  outline-offset: 0px;
  mix-blend-mode: normal;
  background-color: #fff;
  border-radius: 20px;
  outline: .8px #333;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 10px;
  display: flex;
}

.project-item-link:hover {
  outline-offset: 0px;
  border-style: none;
  outline: .9px #333;
  transform: scale(1.02);
  box-shadow: 4px 5px 19px 2px #0003;
}

.project-button-wrapper {
  margin-top: 1.5rem;
  display: flex;
}

.text-size-regular {
  font-size: 1rem;
}

.project-tag-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.project-tag {
  background-color: var(--light-green);
  border-radius: 100rem;
  padding: .25rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.project-tag.w--current {
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

.button-text-item {
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.1;
  display: flex;
}

.project-image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  overflow: hidden;
}

.button-arrow {
  color: #818181;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  display: flex;
}

.project-list-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin: 100px 20px;
  display: grid;
}

.heading-style-h5-2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.project-title-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  display: flex;
}

.fda-hero {
  background-color: var(--light-green);
  min-height: 100vh;
}

.fda-hero-content {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: auto;
  display: flex;
  position: relative;
}

.fda-calendar-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ball_net {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--grey);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 80vh;
  display: block;
  position: relative;
  overflow: hidden;
}

.ball_trigger {
  z-index: 20;
  background-color: var(--black);
  border-radius: 999px;
  width: 180px;
  min-width: 180px;
  height: 180px;
  min-height: 180px;
  display: flex;
  position: absolute;
  bottom: 32px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

.fda-cal-block {
  background-color: var(--anti-flash-white);
  border: 1px solid #000;
  border-radius: 0;
  flex-flow: column;
  min-height: 86px;
  padding-top: 12px;
  display: flex;
}

.fda-cal-date {
  text-align: center;
}

.fda-ball-canvas {
  z-index: 1;
  position: absolute;
  inset: 0;
}

.scroll-overlay {
  z-index: 100;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.text-block {
  color: var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fda-start {
  background-color: var(--granite-grey);
  width: auto;
  height: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.fda-end {
  background-color: var(--blue);
  height: auto;
  min-height: 100vh;
  position: relative;
}

.section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.div-block {
  aspect-ratio: auto;
  height: 100vh;
  position: relative;
  overflow: auto;
}

.fda-stage {
  border: 1px none var(--white);
  border-radius: 20px;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.fda-stage-scroll {
  height: 100%;
  position: relative;
}

.head {
  z-index: 0;
  background-color: #5658b1;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.main-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.heading {
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
  font-size: 3rem;
  line-height: 1.3;
}

.button {
  color: #fff;
  background-color: #3898ec00;
  border: 3px solid #fff;
  border-bottom-width: 2px;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 1.3rem;
}

.button:hover {
  background-color: #ffffff26;
}

.scroll-down-lottie-hold {
  height: 50px;
}

.scroll-lottie {
  height: 100%;
}

.lottie-hold {
  z-index: -1;
  opacity: .24;
  align-items: flex-end;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.bg-lottie {
  width: 100%;
  margin-bottom: -5px;
}

.button-hold {
  position: relative;
}

.point-lottie {
  width: 100px;
  height: 100px;
  position: absolute;
  inset: -35px 0% auto 130px;
}

.link {
  color: #fff;
}

.text-block-2 {
  text-align: center;
  padding-bottom: 15px;
  position: absolute;
  inset: auto 0% 0%;
}

.paragraph {
  text-align: center;
  max-width: 60ch;
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.section-2 {
  z-index: 1;
  background-color: #288174;
  height: 100vh;
  position: relative;
}

.dummy-top {
  height: 100vh;
}

.hero-ball {
  background-color: var(--gainsboro);
  text-align: center;
  border-radius: 999px;
  width: 140px;
  height: 140px;
  position: absolute;
}

.div-block-2 {
  position: fixed;
}

.fda-button-font-2 {
  color: #000;
  font-family: Inter Tight, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 171.42%;
}

.fda-button-font-2.fda-text-color-white-2 {
  color: #fff;
}

.fda-button-font-2.fda-text-color-white-2.fda-button-text-one {
  color: #000;
}

.fda-button-font-2.fda-text-color-white-2.fda-button-text-two {
  color: #000;
  position: absolute;
  transform: translate(0, 100%);
}

.fda-text-color-white-2 {
  color: #fff;
}

.fda-text-style-h5-2 {
  color: #000;
  letter-spacing: -.025rem;
  width: 100%;
  min-width: 100%;
  font-family: Inter Tight, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 150%;
}

.fda-button-v1-arrow-wrap-2 {
  background-color: #ceff65;
  flex: none;
  width: 2.8125rem;
  height: 2.8125rem;
  overflow: hidden;
}

.fda-hero-v1-right-content-2 {
  z-index: 3;
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  background-color: #fff;
  margin: .9375rem;
  padding: 1.5rem 1.25rem 1.625rem;
  position: absolute;
  inset: auto 0% 0%;
  box-shadow: 0 28px 42.3px #0009;
}

.fda-hero-v1-right-content-2.fda-radius-20 {
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: .9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fda-hero-v1-right-content-arrow-2 {
  background-color: #ceff65;
  flex: none;
  width: 3rem;
  height: 3rem;
  margin-top: -2.9375rem;
  display: flex;
}

.fda-hero-v1-right-content-arrow-2.fda-flex-center.fda-radius-100 {
  background-color: var(--light-green);
  justify-content: center;
  align-items: center;
  margin-left: -44px;
}

.fda-button-dot-2 {
  z-index: 0;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.fda-button-v1-2 {
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  background-color: #fff;
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .375rem .5rem 1.5625rem;
  display: flex;
}

.fda-h1-gap-2 {
  margin-top: 0;
  margin-bottom: 2.3125rem;
}

.fda-h1-gap-2.fda-text-color-white-2 {
  line-height: 70%;
}

.text-span {
  letter-spacing: 0;
  font-size: 1.875rem;
  line-height: 1px;
}

.text-span-2 {
  line-height: 110%;
}

.image {
  max-width: 100px;
  height: auto;
}

.fda-button-font-3 {
  color: #000;
  font-family: Inter Tight, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 171.42%;
}

.fda-button-font-3.fda-hover-out-text {
  position: absolute;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.text-block-3, .icon, .link-2, .text-block-4, .icon-2 {
  color: var(--white);
}

.dropdown-list {
  background-color: var(--white);
  border-radius: 10px;
}

.fda-nav-font-2 {
  font-weight: 500;
}

.fda-dropdown-link-2 {
  color: #000;
  font-size: .875rem;
  font-weight: 500;
  transition: all .5s;
}

.fda-dropdown-link-2:hover {
  color: #0f1214;
  transform: translate(7px);
}

.fda-dropdown-link-2.w--current {
  color: #f02727;
}

.fda-dropdown-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.fda-dropdown-list-2 {
  background-color: #fff;
  border-radius: .625rem;
  min-width: 12.5rem;
  top: 100%;
}

.fda-dropdown-list-2.fda-overflow-hidden.w--open {
  z-index: 4;
}

.fda-dropdown-toggle-2 {
  grid-column-gap: .5rem;
  color: #000;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.fda-text-color-black-2 {
  color: #000;
}

.fda-text-style-h5-3 {
  color: #000;
  letter-spacing: -.025rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
}

.fda-nav-main-2 {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  grid-template-rows: auto;
  grid-template-columns: 156px 1fr 156px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.fda-nav-2 {
  grid-column-gap: 2.9375rem;
  grid-row-gap: 2.9375rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fda-dropdown-toggle-3 {
  grid-column-gap: .5rem;
  color: #000;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.fda-site-logo-2 {
  width: 130px;
  max-width: 130px;
  height: auto;
}

.fda-project-click-wrapper-2 {
  z-index: 11;
  opacity: 0;
  transform-origin: 100% 0;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 20.875rem;
  position: relative;
}

.bold-text {
  font-family: var(--_typography---family--heading-family);
  font-size: var(--_typography---sizes--h3-size);
  line-height: var(--_typography---sizes--body-size);
  font-weight: var(--_typography---weights--body-weight);
  letter-spacing: -.03rem;
  text-decoration: none;
}

.div-block-3 {
  display: flex;
}

.link-nf {
  color: var(--green);
}

.text-span-3 {
  color: var(--traube);
  font-size: var(--_typography---sizes--h3-size);
  letter-spacing: -.02rem;
  mix-blend-mode: normal;
  transform: translate(0);
}

.bold-text-2 {
  color: var(--green);
}

.bold-text-2:hover {
  color: var(--white);
}

.image-3 {
  width: 130px;
}

.image-4, .image-5 {
  width: 315px;
  height: 354px;
}

.paragraph-2, .div-block-4 {
  margin-top: 20px;
}

@media screen and (min-width: 1280px) {
  .fda-hero-v1-right-content {
    padding-left: 40px;
    padding-right: 30px;
  }

  .fda-about-title-right-wrap {
    margin-right: 98px;
  }

  .fda-nav-main {
    grid-template-columns: 265px 1fr 265px;
  }

  .fda-hero-v1-content-wrap {
    padding-top: 250px;
  }

  .fda-project-click-wrapper {
    padding-bottom: 10rem;
  }

  .fda-features-v1-list-right-wrap {
    grid-column-gap: 150px;
    grid-row-gap: 150px;
  }

  .fda-about-v2-card {
    padding-left: 40px;
    padding-right: 50px;
  }

  .fda-service-v5-left-wrap {
    padding-top: 25px;
  }

  .fda-features-box-item {
    padding-left: 50px;
    padding-right: 50px;
  }

  .fda-service-v5-wrap {
    align-items: stretch;
  }

  .fda-features-v4 {
    padding-top: 7.625rem;
    padding-bottom: 8.125rem;
  }

  .fda-service-v4 {
    padding-top: 6.875rem;
    padding-bottom: 2.625rem;
  }

  .fda-service-v6-content {
    align-items: center;
  }

  .fda-service-v5-left-content {
    padding: 50px 46px 42px 40px;
  }

  .fda-team-member-details {
    background-color: #fff0;
  }

  .fda-team-member-text-box {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .fda-team-member-button {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    display: flex;
    inset: 0% 0% auto auto;
  }

  .fda-blog-information-right-box {
    padding-left: 4.875rem;
  }

  .fda-blog-author-name-box {
    flex: none;
  }

  .fda-hero-v1-right-content-2 {
    padding-left: 40px;
    padding-right: 30px;
  }

  .fda-nav-main-2 {
    grid-template-columns: 265px 1fr 265px;
  }

  .fda-project-click-wrapper-2 {
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 1440px) {
  .fda-review-v1-list-box {
    padding-left: 40px;
    padding-right: 40px;
  }

  .fda-pricing-plan-v1-short-content-wrap {
    max-width: 610px;
  }

  .fda-navbar-right-wrapper {
    grid-row-gap: 30px;
  }

  .fda-review-v1-customer-details {
    margin-top: 146px;
  }

  .fda-hero-v1-content-main-wrap {
    padding-top: 9.375rem;
  }

  .fda-container.fda-two {
    max-width: 1440px;
  }

  .fda-service-v2-item-wrapper {
    cursor: pointer;
  }

  .fda-feature-v1-full-wrap {
    top: 7.2vw;
  }

  .fda-feature-v1-left-side {
    position: relative;
  }

  .fda-feature-v1-flex-wrap {
    grid-column-gap: 6.45%;
    grid-row-gap: 6.45%;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-about-v3-experience-wrap {
    width: 14.0625rem;
    height: 14.0625rem;
  }

  .fda-service-sticky-wrap-v6 {
    top: 8%;
  }
}

@media screen and (min-width: 1920px) {
  .fda-pricing-plan-v1-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .fda-pricing-plan-v1-wrap.fda-radius-40.fda-position-relative.fda-overflow-hidden {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fda-review-v1-list-box.fda-box-one.fda-flex-center {
    justify-content: center;
    align-items: center;
  }

  .fda-container-large.fda-desktop-height-full.fda-hero-container {
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
    display: flex;
  }

  .fda-service-v2-arrow-box {
    background-color: #fff;
  }

  .fda-project-email-item-link.fda-change-underline {
    text-decoration: none;
  }

  .fda-hero-v1-content-main-wrap {
    padding-bottom: 3.75rem;
  }

  .fda-review-v1-text-box-wrap {
    justify-content: space-between;
  }

  .fda-menu-top-wrapper {
    overflow: hidden;
  }

  .fda-container.fda-two {
    max-width: 1369px;
  }

  .fda-sticky-wrapper-v2 {
    top: 15vh;
  }

  .fda-feature-v1-full-wrap {
    top: 6vw;
  }

  .fda-inner-page-hero-section {
    background-color: var(--black);
  }

  .fda-landscape-height-auto.fda-image-ful-width {
    width: 300px;
    height: 320px;
  }

  .fda-service-sticky-wrap-v6 {
    top: 9vh;
  }

  .fda-about-v3-row-right {
    margin-right: 55px;
  }

  .fda-faq-contect-box {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .fda-blog-information-right-box {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  body {
    --_spacing---element-gaps--element-gap-medium: 2rem;
    --_spacing---section-gap-medium: 3.75rem;
    --_spacing---section-gap-small: 3.25rem;
    --_spacing---element-gaps--element-gap-small: .9375rem;
    --_spacing---element-gaps--element-gap-title: 2.3125rem;
    --_spacing---element-gaps--element-gap-large: 1.25rem;
    --_spacing---element-gaps--element-gap-extra-small: 1.125rem;
    --_spacing---element-gaps--element-gap-tiny: 1rem;
    --_typography---family--body-family: "Inter Tight", sans-serif;
    --_typography---sizes--body-size: .9375rem;
    --_typography---line-heights--body-line-height: 162.5%;
    --_typography---weights--body-weight: 400;
    --_typography---family--heading-family: "Inter Tight", sans-serif;
    --_typography---sizes--h1-size: 2.625rem;
    --_typography---line-heights--h1-line-height: 116.7%;
    --_typography---weights--heading-weight: 500;
    --_typography---letter-spacing--h1-letter-spacing: -.12rem;
    --_typography---sizes--h2-size: 2.25rem;
    --_typography---line-heights--h2-line-height: 122.3%;
    --_typography---letter-spacing--h2-letter-spacing: -.084375rem;
    --_typography---sizes--h3-size: 1.5rem;
    --_typography---line-heights--h3-line-height: 133.1%;
    --_typography---letter-spacing--h3-letter-spacing: -.0375rem;
    --_typography---sizes--h4-size: 1.375rem;
    --_typography---line-heights--h4-line-height: 141.9%;
    --_typography---letter-spacing--h4-letter-spacing: -.03rem;
    --_typography---sizes--h5-size: 1.125rem;
    --_typography---line-heights--h5-line-height: 150%;
    --_typography---letter-spacing--h5-letter-spacing: -.025rem;
    --_typography---sizes--h6-size: 1rem;
    --_typography---line-heights--h6-line-height: 133.3%;
    --_typography---sizes--sub-heading-size: .875rem;
    --_typography---line-heights--sub-heading-line-height: 100%;
    --_typography---letter-spacing--sub-heading-letter-spacing: .0625rem;
    --_typography---sizes--button-size: 1rem;
    --_typography---line-heights--button-line-height: 171.42%;
  }

  ul {
    padding-left: 20px;
  }

  .fda-service-v1-circle-v2 {
    left: 6%;
  }

  .fda-features-v2-col {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-service-v2-item-para {
    padding-top: 1.875rem;
  }

  .fda-about-title-left-wrap {
    padding-bottom: 2rem;
  }

  .fda-features-v2 {
    height: auto;
  }

  .fda-hero-v1-overlay {
    background-image: linear-gradient(283deg, #0000, #0000 58%, #0009 75%, #000), linear-gradient(#000000e0 2%, #0000 20%, #0000), linear-gradient(#0000 45%, #000000ab 71%);
  }

  .fda-hero-v1-right-content {
    margin-bottom: 0;
    display: none;
  }

  .fda-review-v1-list-box {
    border-left-style: none;
    border-radius: 30px;
    width: auto;
    height: 100%;
    padding-right: 2.5rem;
    box-shadow: 0 0 50px #0000000d;
  }

  .fda-service-v2-flex-wrap {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
  }

  .fda-dropdown-list {
    border-style: none;
    padding-top: 0;
    position: static;
  }

  .fda-dropdown-list.w--open {
    box-shadow: 0 0 40px #0000001a;
  }

  .fda-about-v1-right-main-wrap {
    flex-flow: column;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-desktop-hamburgar-menu {
    display: none;
  }

  .fda-text-style-h5.fda-about-v3-row-two-conten {
    max-width: none;
  }

  .fda-text-style-h5.fda-service-number {
    margin-top: 0;
  }

  .fda-review-v1-slider-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: wrap;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }

  .fda-dropdown-toggle {
    color: var(--black);
    justify-content: space-between;
    align-items: center;
    padding-top: .625rem;
    padding-bottom: .9375rem;
  }

  .fda-dropdown-toggle.fda-flex-center:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29), .fda-dropdown-toggle.fda-flex-center-copy:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
    padding-top: .625rem;
    padding-bottom: .625rem;
  }

  .fda-menu-button-new {
    padding: 0;
  }

  .fda-menu-button-new.w--open {
    background-color: #c8c8c800;
  }

  .fda-service-v1-right-content-wrap {
    padding-top: 2.5rem;
  }

  .fda-pricing-plan-v1-short-content-wrap {
    padding-top: 2.125rem;
  }

  .fda-service-v1-icon {
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 0;
  }

  .fda-about-title-right-wrap {
    margin-bottom: 0;
    margin-right: 0;
  }

  .fda-review-v1-wrapper {
    padding-bottom: 3.75rem;
    position: static;
  }

  .fda-nav {
    color: var(--davy-s-grey);
    background-color: #fff;
    border-bottom-right-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
    justify-content: flex-start;
    width: 100%;
    padding-top: .625rem;
    padding-bottom: .9375rem;
    position: absolute;
    inset: 100% 0% auto;
    box-shadow: 0 2px 2.5rem #0000001a;
  }

  .fda-nav:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
    border-top: 1px solid #0003;
    top: 100%;
    box-shadow: 0 5px 40px #0000000d;
  }

  .fda-footer-col-wrapper {
    grid-column-gap: 1.0625rem;
    grid-row-gap: 1.0625rem;
  }

  .fda-position-relative.fda-desktop-height-full.fda-hero-radius {
    border-radius: 0;
  }

  .fda-pointer-v1 {
    width: 4.375rem;
    height: 4.375rem;
  }

  .fda-footer-v1-wrap {
    padding-top: 52px;
  }

  .fda-footer-v1-wrap.fda-radius-40.fda-tab-radius-off {
    border-radius: 0;
  }

  .fda-footer-right-box {
    max-width: 100%;
  }

  .fda-review-title-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin-bottom: 2rem;
  }

  .fda-nav-main {
    display: flex;
  }

  .fda-arrow.fda-feature-arrow {
    filter: brightness(0%);
  }

  .fda-navbar-right-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    justify-content: flex-end;
    align-items: center;
  }

  .fda-service-v1-title-left-wrap {
    flex: none;
    padding-top: .4375rem;
  }

  .fda-text-style-h1.fda-text-color-white.fda-pricing-v1-plan-title-text {
    padding-bottom: 1.875rem;
  }

  .fda-hamburger.fda-tab-off {
    display: none;
  }

  .fda-horizontal-line-v1.fda-display-none.fda-features-line {
    width: 1px;
    height: 100%;
    display: block;
    top: 0%;
    bottom: 0%;
    left: auto;
  }

  .fda-horizontal-line-v1.fda-display-none.fda-tab-display-block {
    display: block;
    top: -1px;
  }

  .fda-nav-link-box {
    color: var(--black);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    display: flex;
  }

  .fda-about-v1-title-wrap {
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-footer-v1 {
    padding-top: 70px;
  }

  .fda-footer-v1.fda-section-gutter.fda-top-gap-off.fda-tab-gap-off {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fda-service-v1-flex-wrap {
    padding-top: 30px;
  }

  .fda-shape-v1-wrap {
    width: 145px;
    bottom: -1px;
  }

  .fda-counter-box {
    height: 2.4375rem;
  }

  .fda-service-v2-title-wrap {
    flex-flow: wrap;
  }

  .fda-section-gutter.fda-responsive-gutter-off {
    padding: 0;
  }

  .fda-pricing-plan-v1-details-wrap {
    padding-top: 7px;
  }

  .fda-line-v3 {
    border-top-color: #fff;
    width: 1.875rem;
  }

  .fda-radius-20.fda-tab-full-width {
    width: 100%;
  }

  .fda-hero-v1-content-main-wrap {
    padding-bottom: 4.375rem;
  }

  .fda-tab-height-auto {
    height: auto;
  }

  .fda-dropdown {
    color: var(--black);
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .fda-nav-menu-block-one {
    grid-row-gap: .625rem;
    flex: 1;
    padding-top: 0;
  }

  .fda-service-v1-right-wrap {
    max-width: 37rem;
  }

  .fda-footer-social-icon-wrapper {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }

  .fda-author-image {
    border-width: 1px;
    width: 3.125rem;
    height: 3.125rem;
  }

  .fda-service-v2-left-box {
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .fda-mega-menu-icon {
    display: none;
  }

  .fda-review-v1 {
    height: auto;
  }

  .fda-service-v2-item-box {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }

  .fda-features-v1-right-wrap {
    width: auto;
    max-width: none;
  }

  .fda-review-v1-text-box-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    max-width: none;
  }

  .fda-features-v1-list-wrap {
    padding: 2.125rem 1.5rem 2rem;
  }

  .fda-menu-top-wrapper {
    display: none;
  }

  .fda-footer-v1-top-main-wrap {
    padding-bottom: 2.875rem;
  }

  .fda-review-v1-wrap {
    margin-right: 0;
  }

  .fda-dropdown-list-wrapper {
    border-bottom-width: 0;
    padding-left: .9375rem;
  }

  .fda-service-v2-item-hover {
    height: auto;
  }

  .fda-dropdown-icon {
    filter: invert();
  }

  .fda-mega-menu-block {
    box-shadow: none;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: 0%;
  }

  .fda-features-v2-wrapper-main {
    margin-bottom: 1.875rem;
  }

  .fda-mega-menu-wrapper {
    grid-row-gap: .625rem;
    align-items: stretch;
    padding: 1.25rem .9375rem;
  }

  .fda-footer-pointer {
    width: 3.75rem;
    height: 3.75rem;
  }

  .fda-features-overlay-v1 {
    display: none;
  }

  .fda-auther-content-wrap {
    flex-flow: column;
  }

  .fda-footer-v1-bottom-wrapper {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .fda-features-v1-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 1fr;
  }

  .fda-dropdown-link:hover {
    color: #000;
    transform: none;
  }

  .fda-dropdown-link.w--current {
    color: #15111c;
  }

  .fda-features-v1-main-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-nav-font {
    color: var(--white);
    font-weight: 500;
  }

  .fda-nav-font.fda-text-color-white {
    color: var(--black);
  }

  .fda-logo {
    flex: none;
    width: 150px;
    padding-left: 0;
  }

  .fda-logo.w--current {
    width: 7.1875rem;
  }

  .fda-about-right-content-wrap {
    justify-content: center;
    align-items: flex-start;
  }

  .fda-service-v2-wrapper, .fda-service-v1-right-bottom-content {
    padding-top: 1.875rem;
  }

  .fda-responsive-line {
    background-color: #fff;
    width: 1.9375rem;
    height: .125rem;
    margin-bottom: .375rem;
    padding: 0;
  }

  .fda-responsive-line.fda-two:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29), .fda-responsive-line.fda-one:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
    background-color: var(--black);
  }

  .fda-responsive-line.fda-three:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
    background-color: var(--black);
  }

  .fda-responsive-line.fda-three {
    width: 1.125rem;
    margin-bottom: 0;
  }

  .fda-about-v1-flex-wrap {
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-columns: 1fr;
    place-items: center stretch;
    display: grid;
  }

  .fda-hero-v1 {
    height: auto;
    padding: 0;
  }

  .fda-navbar-block {
    z-index: 999;
    padding: .9375rem 0;
    position: fixed;
    inset: 0% 0% auto;
  }

  .fda-navbar-block:where(.w-variant-c411590c-1242-a6e9-9600-ed39b060db29) {
    border-bottom: 1px solid #0003;
  }

  .fda-strategies-v1-icon-wrap {
    filter: brightness(0%);
  }

  .fda-mega-menu-inner-wrap {
    grid-column-gap: 0rem;
  }

  .fda-accordian-ovelay {
    box-shadow: none;
  }

  .fda-text-color-green.fda-sub-text.fda-pricing-v1-plan-short-text {
    padding-top: 1.6875rem;
  }

  .fda-text-desktop-right.fda-about-right-content {
    text-align: left;
    max-width: none;
    padding-top: 1.25rem;
  }

  .fda-text-desktop-right.fda-text-style-h5.fda-about-v1-right-box-title {
    text-align: left;
    max-width: none;
    margin-right: 0;
  }

  .fda-text-desktop-right.fda-text-style-h5.fda-about-v1-right-box-title.fda-two {
    max-width: none;
  }

  .fda-about-v1-right-top-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-service-v1-right-top-content {
    margin-top: 3.125rem;
  }

  .fda-nav-sub-menu {
    text-align: left;
    width: auto;
    display: block;
  }

  .fda-footer-v1-main-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: .7fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 3.625rem;
    padding-bottom: 1.4375rem;
    display: grid;
  }

  .fda-features-v2-image.fda-change-direction {
    transform: none;
  }

  .fda-line-v2 {
    background-color: #fff3;
  }

  .fda-features-v1-list-right-wrap {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    justify-content: space-between;
    align-items: center;
  }

  .fda-training-v1-top-title-wrap {
    grid-column-gap: .8125rem;
    grid-row-gap: .8125rem;
    flex-flow: column;
  }

  .fda-feature-v1-point-list-wrap {
    max-width: none;
  }

  .fda-feature-v1-point-list-wrap.fda-tab-full-width {
    align-self: center;
  }

  .fda-team-v1-heading {
    flex: 1;
    width: auto;
    max-width: none;
  }

  .fda-accrodian-v1 {
    padding-top: 1.4375rem;
    padding-bottom: 1.375rem;
  }

  .fda-feature-video-block-wrap {
    padding-top: 0;
    display: none;
  }

  .fda-feature-v1 {
    height: auto;
  }

  .fda-training-v1-content-wrap {
    max-width: 71%;
  }

  .fda-training-v1-content-wrap.fda-two, .fda-training-v1-content-wrap.fda-four, .fda-training-v1-content-wrap.fda-three {
    position: static;
  }

  .fda-feature-v1-bottom-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 1.875rem;
  }

  .fda-training-v1-wrap {
    padding-bottom: 52px;
  }

  .fda-training-v1-top-right-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .fda-gap-medium.fda-about-v2-title-content {
    max-width: 83%;
  }

  .fda-gap-medium.fda-about-v2-title-content._1 {
    font-size: 115%;
  }

  .fda-inner-page-hero-section {
    border-radius: 0;
    padding-top: 15.625rem;
    padding-bottom: 12.5rem;
  }

  .fda-inner-page-hero-section.fda-overflow-hidden.fda-blog-hero {
    padding-top: 13.625rem;
    padding-bottom: 10.75rem;
  }

  .fda-training-v1-inner-wrap {
    padding-bottom: 0;
  }

  .fda-grid-v1 {
    max-width: none;
    margin-top: 0;
  }

  .fda-about-v2-card-content {
    max-width: none;
  }

  .fda-about-v2-main {
    flex-flow: column;
    align-items: stretch;
  }

  .fda-service-v3-slider-card-wrap {
    width: 33.333%;
  }

  .fda-feature-v1-point-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 600px;
  }

  .fda-feature-v1-point-wrap.fda-in-active {
    opacity: 1;
    position: static;
  }

  .fda-inner-page-hero-cartain {
    display: none;
  }

  .fda-landscape-height-auto {
    height: auto;
  }

  .fda-feature-v1-left-side {
    max-width: none;
  }

  .fda-training-v1 {
    height: auto;
  }

  .fda-feature-image-full {
    object-position: 50% 0%;
    height: 100%;
    max-height: 700px;
  }

  .fda-training-v1-sticky-wrap {
    height: 45.0625rem;
    padding-top: 0;
  }

  .fda-about-v2-left {
    max-width: none;
  }

  .fda-feature-v1-list-inner-wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-feature-v1-list-inner-wrap.fda-position-relative {
    grid-auto-columns: 1fr;
  }

  .fda-feature-v1-right-side {
    text-align: center;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .fda-accrodian-v1-image-wrap {
    max-width: 30rem;
  }

  .fda-accrodian-v1-row-one {
    padding-top: 1.3125rem;
  }

  .fda-team-v1-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .fda-feature-v1-flex-wrap {
    flex-flow: column;
  }

  .fda-feature-v3-title.fda-landscape-text-center {
    margin-top: 40px;
  }

  .fda-accrodian-v1-short-content {
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.5625rem;
    padding-bottom: 0;
  }

  .fda-team-heading-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-about-v2-card {
    grid-row-gap: 1.625rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-left: 1rem;
  }

  .fda-service-v3-slider-wrap {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    padding-left: 0;
    padding-right: 0;
  }

  .fda-feature-v1-content {
    margin-bottom: 1.4375rem;
  }

  .fda-about-v3-pointer-icon {
    width: .9375rem;
    height: .9375rem;
  }

  .fda-features-block-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v6 {
    height: auto;
  }

  .fda-image-filter {
    width: auto;
    height: 2.5rem;
  }

  .fda-about-v3-pointer {
    width: 2.5rem;
    height: 2.5rem;
  }

  .fda-features-box-item {
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .fda-pricing-v1-plan-amount-wrap {
    height: auto;
  }

  .fda-service-v4-left-wrap, .fda-service-v4-left-wrap.fda-position-relative.fda-tab-full-width {
    max-width: none;
  }

  .fda-about-v3-inner-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-about-v3-experience-wrap {
    width: 150px;
    height: 150px;
  }

  .fda-monthly-plan {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v4-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(365px, 1fr));
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .fda-service-v4-text-block {
    height: auto;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }

  .fda-service-v4-text-block:hover {
    height: auto;
  }

  .fda-service-v4-text-block.fda-active {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-features-v4 {
    border-radius: 0;
  }

  .fda-yearly-plan {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v4-content-wrap {
    max-width: none;
  }

  .fda-about-v3-innner-line, .fda-features-item-overlay {
    display: none;
  }

  .fda-about-v3-row-right {
    max-width: 22.625rem;
  }

  .fda-service-v5-left-bottom-wrap {
    margin-top: 2.5rem;
  }

  .fda-pricing-v1-plan-top-text {
    padding-bottom: 1.375rem;
  }

  .fda-service-v1-shape {
    display: none;
  }

  .fda-service-v4-arrow {
    width: 1.25rem;
    height: auto;
  }

  .fda-image-ful-width {
    height: 100%;
  }

  .fda-service-v4-text-list {
    margin-top: -.4375rem;
  }

  .fda-service-v4-right {
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .fda-pricing-v1-amount-before {
    opacity: .6;
  }

  .fda-service-v4-image-card {
    opacity: 1;
    display: none;
  }

  .fda-service-v4-image-card.fda-four {
    width: 100%;
    height: auto;
    display: block;
    position: static;
  }

  .fda-pricing-v1-button-two {
    padding-top: 1.6875rem;
  }

  .fda-service-v4-list-wrap {
    height: 100%;
  }

  .fda-service-v6-content-wrap {
    width: 100%;
    max-width: none;
    margin-top: 4.375rem;
    padding-top: 2.5rem;
  }

  .fda-about-v3-row-two {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    margin-top: 1.9375rem;
  }

  .fda-service-v1-slider-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .fda-service-v4-text-boxes {
    min-height: auto;
  }

  .fda-service-v5-left-content {
    padding: 30px 20px 22px;
  }

  .fda-pricing-v1-pricing-card {
    max-width: 100%;
  }

  .fda-blog-v1-wrap {
    grid-row-gap: 1.875rem;
    grid-template-columns: 1fr 1fr;
  }

  .fda-blog-one-item-heading {
    padding-bottom: .75rem;
  }

  .fda-blog-card-wrap {
    max-width: 100%;
  }

  .fda-team-member-text-box {
    justify-content: center;
    align-items: flex-start;
    position: static;
  }

  .fda-team-member-button {
    right: 20px;
  }

  .fda-tab-image-full-width {
    width: 100%;
  }

  .fda-pricing-row-left {
    padding-right: 20px;
  }

  .fda-pricing-table-wrapper {
    padding-top: 0;
  }

  .fda-price-number {
    text-align: center;
  }

  .fda-faq-left-part-content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .fda-faq-question {
    padding-left: 30px;
    padding-right: 30px;
  }

  .fda-faq-left-part {
    margin-right: 1.875rem;
  }

  .fda-tab-link.fda-fast {
    border-top-width: 1px;
    border-top-color: #0000001a;
  }

  .fda-form-fields-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .fda-contact-form-left-wrap {
    border-right-style: none;
  }

  .fda-contact-submit-button {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .fda-contact-form-wrap {
    padding-top: 3.25rem;
  }

  .fda-contact-social-details {
    margin-top: 2.5rem;
  }

  .fda-contact-information-block {
    padding: 1.625rem .9375rem 1.25rem;
  }

  .fda-contact-information-block:hover {
    width: 100%;
  }

  .fda-contact-form-side {
    border-left-style: none;
  }

  .fda-form-text-field.fda-textarea {
    padding-bottom: 5.8125rem;
  }

  .fda-contact-left-title {
    width: 100%;
    max-width: 100%;
  }

  .fda-image-links-wrapper {
    margin-bottom: 1.25rem;
  }

  .fda-information-hero {
    padding-top: 10.3125rem;
    padding-bottom: 5.9375rem;
  }

  .fda-lincense-wrap {
    padding-top: 3.125rem;
    padding-bottom: 3.4375rem;
  }

  .fda-changelog-logo {
    width: 110px;
  }

  .fda-information-inner-wrap {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  .fda-style-guide-colors, .fda-shadow-blocks {
    grid-template-columns: 1fr 1fr;
  }

  .fda-blog-title-wrap {
    margin-bottom: 2.5rem;
  }

  .fda-blog-information-everyday-image-wrapper {
    padding-top: 1.5rem;
    padding-bottom: .875rem;
  }

  .fda-blog-information {
    padding-top: var(--_spacing---section-gap-medium);
  }

  .fda-contact-details-v2 {
    padding-bottom: 1.875rem;
  }

  .fda-blog-information-content-one {
    padding-bottom: 1rem;
  }

  .fda-desktop-h-flex-center.fda-middle-gap {
    grid-column-gap: 1.3125rem;
    grid-row-gap: 1.3125rem;
  }

  .fda-blog-information-left-box {
    border-right-style: none;
    padding-top: 0;
    padding-bottom: 1.875rem;
  }

  .fda-blog-information-everyday-image-box {
    width: 100%;
  }

  .fda-blog-information-content-wrap {
    flex-flow: column;
  }

  .fda-team-details-honors-left-para-wrapper {
    padding-bottom: 1.5625rem;
  }

  .fda-team-details-main-container {
    max-width: 100%;
  }

  .fda-team-hero {
    padding-top: 9.375rem;
    padding-bottom: 4.375rem;
  }

  .fda-team-details-skills-content {
    padding-top: 1.375rem;
    padding-bottom: 1.3125rem;
  }

  .fda-team-v2 {
    padding-bottom: 3.25rem;
  }

  .fda-team-details-honors-right {
    padding-top: 1.5rem;
  }

  .fda-team-details {
    padding-top: 53px;
    padding-bottom: 60px;
  }

  .fda-team-hero-image.fda-full-width.fda-border-radius-20.fda-overflow-hidden {
    align-self: stretch;
  }

  .fda-team-details-honors-skills-title {
    padding-bottom: 0;
  }

  .fda-team-details-honors-left-wrapper {
    justify-content: center;
    align-items: flex-start;
    padding-top: 1.4375rem;
    padding-bottom: 0;
  }

  .fda-team-details-about-item {
    padding-bottom: 2.625rem;
  }

  .fda-team-details-timeline {
    padding-bottom: 2.5rem;
  }

  .fda-team-hero-wrapper {
    align-items: stretch;
  }

  .fda-team-hero-conteact-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1.875rem;
  }

  .fda-team-details-about-main-para {
    max-width: none;
  }

  .fda-team-details-short-content-one {
    max-width: none;
    padding-top: 1.25rem;
    padding-bottom: .9375rem;
  }

  .fda-tab-display-none {
    display: none;
  }

  .fda-footer-arrow {
    width: .9375rem;
    height: auto;
  }

  .fda-social-icon-box {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .project-image {
    aspect-ratio: 1;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project-image-wrapper {
    border-radius: 1rem;
  }

  .project-list-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .project-title-wrapper {
    padding: 1.25rem 1rem;
  }

  .heading {
    font-size: 2.3rem;
  }

  .button {
    font-size: 1.2rem;
  }

  .paragraph {
    font-size: 1.1rem;
  }

  .fda-hero-v1-right-content-2 {
    margin-bottom: 0;
    display: none;
  }

  .container {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .fda-dropdown-icon-2 {
    filter: invert();
  }

  .fda-nav-font-2 {
    font-weight: 500;
  }

  .fda-nav-font-2.fda-text-color-white {
    color: #000;
  }

  .fda-dropdown-link-2:hover {
    color: #000;
    transform: none;
  }

  .fda-dropdown-link-2.w--current {
    color: #15111c;
  }

  .fda-dropdown-2 {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .fda-dropdown-list-2 {
    border-style: none;
    padding-top: 0;
    position: static;
  }

  .fda-dropdown-list-2.w--open {
    box-shadow: 0 0 40px #0000001a;
  }

  .fda-dropdown-toggle-2 {
    justify-content: space-between;
    align-items: center;
    padding-top: .625rem;
    padding-bottom: .9375rem;
  }

  .fda-nav-link-box-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    display: flex;
  }

  .fda-nav-main-2 {
    display: flex;
  }

  .fda-nav-2 {
    background-color: #fff;
    border-bottom-right-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
    justify-content: flex-start;
    width: 100%;
    padding-top: .625rem;
    padding-bottom: .9375rem;
    position: absolute;
    inset: 100% 0% auto;
    box-shadow: 0 2px 2.5rem #0000001a;
  }

  .fda-dropdown-toggle-3 {
    justify-content: space-between;
    align-items: center;
    padding-top: .625rem;
    padding-bottom: .9375rem;
  }

  .div-block-3 {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  body {
    --_spacing---element-gaps--element-gap-medium: 1.25rem;
    --_spacing---section-gap-medium: 3.75rem;
    --_spacing---section-gap-small: 3.25rem;
    --_spacing---element-gaps--element-gap-small: .9375rem;
    --_spacing---element-gaps--element-gap-title: 2.3125rem;
    --_spacing---element-gaps--element-gap-large: .9375rem;
    --_spacing---element-gaps--element-gap-extra-small: 1.0625rem;
    --_spacing---element-gaps--element-gap-tiny: 1rem;
    --_typography---family--body-family: "Inter Tight", sans-serif;
    --_typography---sizes--body-size: .875rem;
    --_typography---line-heights--body-line-height: 162.5%;
    --_typography---weights--body-weight: 400;
    --_typography---family--heading-family: "Inter Tight", sans-serif;
    --_typography---sizes--h1-size: 1.875rem;
    --_typography---line-heights--h1-line-height: 116.7%;
    --_typography---weights--heading-weight: 500;
    --_typography---letter-spacing--h1-letter-spacing: -.0625rem;
    --_typography---sizes--h2-size: 1.5rem;
    --_typography---line-heights--h2-line-height: 122.3%;
    --_typography---letter-spacing--h2-letter-spacing: -.0625rem;
    --_typography---sizes--h3-size: 1.25rem;
    --_typography---line-heights--h3-line-height: 133.1%;
    --_typography---letter-spacing--h3-letter-spacing: -.0375rem;
    --_typography---sizes--h4-size: 1.125rem;
    --_typography---line-heights--h4-line-height: 141.9%;
    --_typography---letter-spacing--h4-letter-spacing: -.03rem;
    --_typography---sizes--h5-size: .9375rem;
    --_typography---line-heights--h5-line-height: 150%;
    --_typography---letter-spacing--h5-letter-spacing: -.025rem;
    --_typography---sizes--h6-size: 1rem;
    --_typography---line-heights--h6-line-height: 133.3%;
    --_typography---sizes--sub-heading-size: .75rem;
    --_typography---line-heights--sub-heading-line-height: 100%;
    --_typography---letter-spacing--sub-heading-letter-spacing: .0625rem;
    --_typography---sizes--button-size: .8125rem;
    --_typography---line-heights--button-line-height: 171.42%;
  }

  .fda-features-v2-col {
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .fda-service-v2-item-para {
    max-width: 100%;
  }

  .fda-site-logo {
    width: 100%;
  }

  .fda-about-title-left-wrap {
    padding-bottom: 0;
  }

  .fda-pricing-plan-v1-wrap {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .fda-review-v1-list-box {
    padding: 1.75rem 1.25rem 1.4375rem;
  }

  .fda-service-v2-flex-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-wrap: wrap;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-footer-logo {
    padding-bottom: .625rem;
  }

  .fda-text-style-h5.fda-gap-medium {
    margin-bottom: 24px;
  }

  .fda-text-style-h5.fda-accrodian-v1-short-title {
    max-width: none;
  }

  .fda-review-v1-slider-wrap {
    flex-flow: wrap;
  }

  .fda-dropdown-toggle {
    padding-top: .625rem;
    padding-bottom: .625rem;
  }

  .fda-about-v1-left-wrap {
    max-width: none;
  }

  .fda-features-v2-right {
    width: 100%;
    max-width: none;
  }

  .fda-service-v1-right-content-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .fda-footer-col-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .fda-footer-text-style.fda-gap-medium {
    margin-bottom: 12px;
  }

  .fda-footer-right-box {
    grid-column-gap: 1.1875rem;
    grid-row-gap: 1.1875rem;
    grid-template-columns: 1fr .75fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .fda-pricing-plan-main-wrap-v1 {
    flex-flow: wrap;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }

  .fda-footer-col {
    flex: 1;
  }

  .fda-footer-col.fda-footer-adress {
    flex: 1;
    max-width: 250px;
  }

  .fda-navbar-right-wrapper {
    grid-column-gap: .9375rem;
    grid-row-gap: .9375rem;
  }

  .fda-service-v2-arrow-box {
    width: 2.5rem;
    height: 2.5rem;
  }

  .fda-about-v1-title-wrap {
    grid-column-gap: 1.0625rem;
    grid-row-gap: 1.0625rem;
    flex-flow: wrap;
    padding-bottom: 1.875rem;
  }

  .fda-service-v1-flex-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-review-one-author-image {
    width: 6.9375rem;
    margin-top: 2rem;
  }

  .fda-counter-box {
    height: 2.0625rem;
  }

  .fda-counter-box.fda-counter-v3 {
    height: clamp(50px, 8vw, 140px);
  }

  .fda-service-v1-title-wrap {
    flex-flow: column;
  }

  .fda-section-gutter.fda-horizontal-gap-off.fda-landscape-gap-off {
    padding-left: 0;
    padding-right: 0;
  }

  .fda-button-v1 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-left: 1.25rem;
  }

  .fda-coke-image {
    width: 100%;
  }

  .fda-pricing-plan-v1-top-wrap {
    justify-content: space-between;
    align-items: center;
  }

  .fda-footer-social-icon-wrapper {
    grid-column-gap: 2.25rem;
    grid-row-gap: 2.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.375rem;
  }

  .fda-service-v2-left-box {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .fda-mobile-height-auto {
    height: auto;
  }

  .fda-footer-left-box {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .fda-service-v2-item-box {
    padding-left: 1.25rem;
  }

  .fda-features-v1-right-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .fda-hero-v1-content-wrap {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-top: 7.75rem;
  }

  .fda-features-v1-list-wrap {
    grid-column-gap: .9375rem;
    grid-row-gap: .9375rem;
    flex-flow: column;
  }

  .fda-dropdown-green-icon {
    display: none;
  }

  .fda-button-v1-arrow-wrap {
    width: 2.625rem;
    height: 2.625rem;
  }

  .fda-footer-v1-top-main-wrap {
    padding-bottom: 2.125rem;
  }

  .fda-service-v2-item-hover {
    height: auto;
  }

  .fda-dropdown-icon {
    filter: invert();
  }

  .fda-features-v2-wrapper-main {
    flex-flow: column;
  }

  .fda-pricing-plan-v1 {
    padding-top: 45px;
  }

  .fda-footer-pointer {
    flex: none;
    width: 2.5rem;
    height: 2.5rem;
  }

  .fda-footer-v1-bottom-wrapper {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .fda-features-v2-overlay {
    display: none;
  }

  .fda-features-v1-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .fda-features-v1-main-wrap {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-hero-slider {
    overflow: visible;
  }

  .fda-logo {
    width: 120px;
  }

  .fda-service-v2-wrapper {
    padding-top: 1.25rem;
  }

  .fda-service-v1-right-bottom-content {
    padding-top: 1.5rem;
  }

  .fda-service-v2-item-wrapper.fda-position-relative.fda-landscape-border-top {
    border-top: 1px solid #0003;
  }

  .fda-image-height-auto.fda-features-icon-responsive {
    width: auto;
    height: 2.5rem;
  }

  .fda-service-v1-right-top-content {
    margin-top: 1.3125rem;
  }

  .fda-button-font.fda-hover-out-text {
    display: none;
  }

  .fda-footer-v1-main-wrapper {
    grid-column-gap: 2.875rem;
    grid-row-gap: 2.875rem;
    grid-template-columns: 1fr;
    padding-top: 2.375rem;
    padding-bottom: 1rem;
  }

  .fda-features-v2-image {
    flex: 1;
  }

  .fda-line-v2 {
    background-color: #76767666;
  }

  .fda-features-v1-list-right-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .fda-feature-video-block-wrap {
    align-self: center;
  }

  .fda-feature-v1 {
    height: auto;
  }

  .fda-about-v2-business-data {
    text-align: center;
  }

  .fda-about-v2-business-data.fda-counter-one {
    border-right-style: none;
    align-items: center;
  }

  .fda-text-style-h3.fda-accrodian-v1-title {
    margin-right: 0;
  }

  .fda-about-v2-counter-inner-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-gap-medium.fda-about-v2-title-content {
    max-width: none;
  }

  .fda-inner-page-hero-section {
    padding-top: 11.25rem;
    padding-bottom: 8.75rem;
  }

  .fda-service-v3-slider-card-wrap {
    width: 51%;
    padding-left: 0;
  }

  .fda-landscape-height-auto {
    height: auto;
  }

  .fda-feature-v1-left-side {
    max-width: 100%;
  }

  .fda-training-v1-sticky-wrap {
    height: 31.25rem;
  }

  .fda-about-v2-left {
    grid-row-gap: 0px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-feature-v1-list-inner-wrap {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v3-slider-inner-wrap {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .fda-accrodian-v1-row-one {
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .fda-team-v1-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .fda-team-heading-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-team-heading-wrap.fda-gap-large {
    margin-bottom: 1.25rem;
  }

  .fda-team-heading-wrap.fda-gap-large.fda-team-heading-wrap-v2 {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-about-v2-card {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 1.625rem;
    padding-right: 1rem;
  }

  .fda-about-v2-card.fda-position-relative.fda-bottom-card {
    padding-bottom: 27px;
  }

  .fda-about-v2-card.fda-position-relative.fda-top-card {
    padding-top: 26px;
  }

  .fda-feature-v1-content {
    margin-bottom: .9375rem;
  }

  .fda-accrodian-v1-bottom-content.fda-overflow-hidden {
    justify-content: flex-start;
    align-items: center;
  }

  .fda-about-v3-pointer-icon {
    width: .625rem;
    height: .625rem;
  }

  .fda-features-block-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .fda-pricing-v1-plan-heading {
    padding-bottom: 0;
  }

  .fda-about-v3-pointer {
    width: 1.875rem;
    height: 1.875rem;
  }

  .fda-features-box-item {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .fda-pricing-v1-plan-amount-wrap {
    grid-column-gap: .625rem;
    padding-top: .625rem;
  }

  .fda-service-v6-right-wrap {
    max-width: none;
  }

  .fda-service-v5-right-wrap {
    max-height: 744px;
  }

  .fda-pricing-plan-button-outer {
    width: 3.1rem;
    height: 1.5rem;
  }

  .fda-about-v3-experience-wrap {
    width: 100px;
    height: 100px;
  }

  .fda-service-v5-wrap {
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-service-v1-slider-heading {
    grid-column-gap: 1.875rem;
    grid-row-gap: .9375rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .fda-monthly-plan {
    flex-flow: wrap;
    grid-template-rows: auto auto auto;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .fda-service-v4-wrap {
    flex-flow: column;
  }

  .fda-yearly-plan {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-columns: 1fr;
    display: none;
  }

  .fda-features-v4-bottom-content {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    padding-right: .375rem;
  }

  .fda-service-v5-icon {
    width: 32px;
    height: auto;
  }

  .fda-service-v4-content-wrap {
    grid-column-gap: .5625rem;
    grid-row-gap: .5625rem;
  }

  .fda-pricing-plan-button-ball {
    width: 1rem;
    height: 1rem;
  }

  .fda-text-style-medium {
    font-size: clamp(50px, 8vw, 140px);
  }

  .fda-service-v5-left-bottom-wrap {
    margin-top: 1.25rem;
  }

  .fda-features-card-title {
    max-width: none;
  }

  .fda-pricing-v1-plan-top-text {
    align-self: stretch;
  }

  .fda-service-v4-arrow {
    width: .9375rem;
    margin-top: -.1875rem;
  }

  .fda-service-v1-heading-two {
    padding-top: 1.125rem;
    padding-bottom: .9375rem;
  }

  .fda-pricing-toggle-button {
    grid-column-gap: .8125rem;
    grid-row-gap: .8125rem;
  }

  .fda-service-v4-text-list {
    grid-column-gap: 1.5625rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-service-v4 {
    padding-top: 3.5rem;
  }

  .fda-about-v3-middle-line {
    display: none;
  }

  .fda-service-v6-content-wrap {
    text-align: center;
    max-width: 100%;
    margin-top: 1.25rem;
    padding-top: 1.875rem;
  }

  .fda-about-v3-row-two {
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v1-slider-wrapper {
    grid-row-gap: .4375rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-service-v6-content {
    justify-content: center;
    align-items: center;
  }

  .fda-service-v5-left-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .fda-pricing-v1-title-wrapper {
    padding-bottom: 1.25rem;
  }

  .fda-pricing-v1-pricing-card {
    max-width: 100%;
    padding-bottom: 2.4375rem;
  }

  .fda-pricing-v1-plan-features {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .fda-service-v5-left-icon {
    margin-bottom: 1.25rem;
  }

  .fda-blog-v1-wrap {
    flex-flow: wrap;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .fda-blog-one-item-heading {
    padding-bottom: 1.3125rem;
  }

  .fda-team-member-details-box {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .fda-team-shape {
    border-radius: 20px;
    height: 150px;
  }

  .fda-team-member-text-box {
    padding: .9375rem 1.25rem 1.125rem;
  }

  .fda-team-member-sosal-icon {
    justify-content: space-between;
  }

  .fda-team-member-button {
    top: .9375rem;
    left: auto;
    right: 20px;
  }

  .fda-team-member-button.fda-flex-center {
    display: none;
  }

  .fda-pricing-row-left {
    border-bottom: 1px solid #0003;
    border-right-width: 0;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .fda-pricing-row-left.fda-bottom-border-off {
    border-bottom-style: none;
  }

  .fda-price-number {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-price-table-row {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .fda-plan-name, .fda-price-table-v1-title-wrap {
    text-align: center;
  }

  .fda-price-table-v1-title-wrap.fda-gap-large {
    margin-bottom: .625rem;
  }

  .fda-pricing-right-plan {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-pricing-right-plan.fda-pricing-right-check-box {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .fda-faq-tabs-content {
    width: 100%;
  }

  .fda-faq-contect-box {
    flex-flow: column;
  }

  .fda-faq-question {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fda-faq-left-part {
    width: 100%;
    max-width: none;
    margin-bottom: 2.5rem;
    margin-right: 0;
  }

  .fda-faq-content-wrap {
    max-width: 100%;
  }

  .fda-faq-title {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-contact-form-left-wrap {
    max-width: none;
  }

  .fda-contact-border {
    width: 100%;
    height: 1px;
    display: none;
    inset: auto 0% 0%;
  }

  .fda-contact-form-wrap {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-columns: 1fr;
    place-items: center stretch;
    display: grid;
  }

  .fda-contact-social-details {
    margin-top: 1.25rem;
  }

  .fda-contact-information {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .fda-contact-information:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-contact-information-block:hover {
    width: 100%;
  }

  .fda-form-text-field.fda-textarea {
    padding-bottom: 5rem;
  }

  .fda-showcase-images {
    grid-template-columns: 1fr 1fr;
    margin-bottom: .625rem;
  }

  .fda-style-guide-colors, .fda-shadow-blocks {
    grid-template-columns: 1fr;
  }

  .fda-blog-title-wrap {
    flex-flow: wrap;
  }

  .fda-blog-information-everyday-image-wrapper {
    flex-flow: column;
  }

  .fda-desktop-h-flex-center.fda-middle-gap {
    grid-column-gap: 1.1rem;
    grid-row-gap: 1.1rem;
  }

  .fda-blog-information-left-box {
    padding-bottom: 1.375rem;
  }

  .fda-blog-v1 {
    padding-top: 3.125rem;
  }

  .fda-team-details-honors-left-para-wrapper {
    padding-bottom: .625rem;
  }

  .fda-team-button {
    flex: none;
    width: 2.5rem;
    height: 2.5rem;
  }

  .fda-team-hero {
    padding-top: 7.125rem;
    padding-bottom: 3.75rem;
  }

  .fda-team-details-timeline-title {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-team-details-skills-content {
    padding-top: 1.375rem;
    padding-bottom: 1.25rem;
  }

  .fda-team-details-honors-right {
    padding-top: 1.5rem;
    padding-left: 0;
  }

  .fda-team-hero-image.fda-full-width.fda-border-radius-20.fda-overflow-hidden {
    max-width: none;
  }

  .fda-team-details-honors-main-wrapper {
    grid-column-gap: 1.3125rem;
    grid-row-gap: 1.3125rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fda-team-details-honors-left-wrapper {
    border-right-style: none;
    padding-top: 1.5rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .fda-team-details-about-item {
    padding-bottom: 2.125rem;
  }

  .fda-team-details-content {
    max-width: none;
    margin-bottom: .9375rem;
  }

  .fda-team-details-timeline {
    padding-top: 0;
  }

  .fda-team-hero-wrapper {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-team-hero-wrapper.fda-margin-auto {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-team-hero-conteact-wrap {
    grid-column-gap: 2.8125rem;
    grid-row-gap: 2.8125rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 1.5625rem;
  }

  .fda-team-details-about-item-heading {
    max-width: 9rem;
    padding-top: 1.5rem;
    padding-bottom: 1.4375rem;
  }

  .fda-team-details-main {
    border-bottom-style: none;
  }

  .fda-team-details-timeline-inner-wrap {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    padding: 1.6875rem 2.5rem 1.875rem 1.875rem;
  }

  .fda-team-details-about-main-para {
    padding-bottom: 1.0625rem;
  }

  .fda-team-details-about-item-para {
    padding-left: 2.25rem;
  }

  .fda-landscape-display-none {
    display: none;
  }

  .fda-landscape-image-full {
    width: 100%;
    height: auto;
  }

  .fda-landscape-full-width {
    max-width: none;
  }

  .fda-landscape-text-center, .fda-landscape-text-center:where(.w-variant-a371f6e2-3c1a-de57-e87f-c0aef5bef706) {
    text-align: center;
  }

  .fda-tab-full-width {
    width: 100%;
  }

  .fda-utilty-page-content {
    max-width: 27.9375rem;
  }

  .fda-utilty-page-form {
    padding: 2.5rem 2.1875rem;
  }

  .fda-footer-arrow {
    width: .625rem;
  }

  .fda-about-v3-top {
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .fda-about-v3-top-left {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project-list-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .heading-style-h5-2 {
    font-size: 1.25rem;
  }

  .main-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading {
    font-size: 1.6rem;
  }

  .button {
    padding: 15px;
  }

  .point-lottie {
    width: 80px;
    height: 80px;
    top: -24px;
  }

  .text-block-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .paragraph {
    font-size: 1rem;
  }

  .fda-button-v1-arrow-wrap-2 {
    width: 2.625rem;
    height: 2.625rem;
  }

  .fda-button-v1-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-left: 1.25rem;
  }

  .fda-button-font-3.fda-hover-out-text {
    display: none;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

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

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .fda-dropdown-icon-2 {
    filter: invert();
  }

  .fda-dropdown-toggle-2, .fda-dropdown-toggle-3 {
    padding-top: .625rem;
    padding-bottom: .625rem;
  }

  .fda-site-logo-2 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .fda-sub-text {
    line-height: 1.25;
  }

  .fda-features-v2-col {
    padding-left: 0;
    padding-right: 0;
  }

  .fda-review-v1-reatting-star-wrap {
    margin-top: .625rem;
    margin-bottom: .625rem;
  }

  .fda-service-v2-item-para {
    padding-bottom: 2.1875rem;
  }

  .fda-hero-v1-overlay {
    background-image: linear-gradient(283deg, #0000, #0000 58%, #0009 75%, #000), linear-gradient(#000000e0 2%, #0000 20%, #0000), linear-gradient(#0000 36%, #000000ab 60%);
  }

  .fda-review-v1-list-box {
    text-align: center;
  }

  .fda-review-v1-list-box.fda-box-one.fda-flex-center.fda-client-rating {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .fda-service-v2-flex-wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-about-v1-right-main-wrap {
    flex-flow: row;
  }

  .fda-text-style-h5.fda-service-number {
    display: none;
  }

  .fda-review-v1-slider-wrap {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .fda-service-v1-right-content-wrap {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
  }

  .fda-footer-right-box {
    text-align: right;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start center;
    display: grid;
  }

  .fda-pricing-plan-main-wrap-v1 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-text-style-h1.fda-text-color-white.fda-pricing-v1-plan-title-text {
    padding-bottom: 1.25rem;
  }

  .fda-service-v1-flex-wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-gap-off {
    text-align: left;
  }

  .fda-review-v1-customer-details {
    justify-content: center;
    align-items: center;
  }

  .fda-button-icon {
    width: 8px;
    height: auto;
  }

  .fda-review-one-author-image {
    margin-top: .9375rem;
  }

  .fda-service-v2-title-wrap {
    justify-content: center;
    align-items: center;
  }

  .fda-section-gutter.fda-top-gap-off.fda-mobile-gutter-gap-off {
    padding-left: 0;
    padding-right: 0;
  }

  .fda-pricing-plan-v1-top-wrap {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .fda-line.fda-bottom-line.fda-landscape-display-none {
    display: block;
  }

  .fda-features-v1-right-wrap {
    grid-column-gap: 1.375rem;
    grid-row-gap: 1.375rem;
    flex-flow: column;
  }

  .fda-review-v1-text-box-wrap {
    grid-column-gap: .8125rem;
    grid-row-gap: .8125rem;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .fda-features-v1-list-wrap {
    flex-flow: column;
    padding-top: 0;
  }

  .fda-button-v1-arrow-wrap {
    width: 2rem;
    height: 2rem;
  }

  .fda-footer-v1-top-main-wrap {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .fda-service-v2-item-hover {
    height: auto;
  }

  .fda-mega-menu-block {
    margin-right: 15px;
  }

  .fda-footer-v1-bottom-wrapper {
    justify-content: center;
    align-items: center;
  }

  .fda-features-v1-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-features-v1-main-wrap {
    grid-template-columns: 1fr;
    padding-top: 1.875rem;
  }

  .fda-logo {
    height: auto;
  }

  .fda-about-v1-flex-wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-features-v2-image-wrap {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-flow: column;
    height: auto;
  }

  .fda-footer-v1-main-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-features-v2-image {
    width: 100%;
  }

  .fda-features-v1-list-right-wrap {
    flex-flow: column;
  }

  .fda-service-v1-right-content-flex-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-training-v1-top-title-wrap {
    justify-content: space-between;
    align-items: center;
  }

  .fda-accrodian-v1 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-feature-video-content {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    justify-content: center;
    align-items: center;
  }

  .fda-about-v2-business-data {
    order: -1;
    padding-top: 0;
  }

  .fda-text-style-h3.fda-accrodian-v1-title {
    font-size: var(--_typography---sizes--h4-size);
  }

  .fda-about-v2-counter-inner-wrap {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
  }

  .fda-feature-v1-bottom-content {
    grid-column-gap: .6875rem;
    grid-row-gap: .6875rem;
    flex-flow: column;
    margin-top: .9375rem;
  }

  .fda-accrodian-v1-icon {
    width: 12px;
  }

  .fda-gap-medium.fda-about-v2-title-content._1 {
    padding-left: 10px;
    font-size: 100%;
  }

  .fda-inner-page-hero-section {
    padding-top: 9.75rem;
    padding-bottom: 4.75rem;
  }

  .fda-inner-page-hero-section.fda-overflow-hidden.fda-blog-hero {
    padding-top: 9.375rem;
    padding-bottom: 6.25rem;
  }

  .fda-grid-v1 {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    border-right-style: none;
  }

  .fda-about-v2-main {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .fda-vertical-line-v2.fda-right.fda-tab-display-none.fda-features-line {
    width: 100%;
    max-width: none;
    height: 1px;
    display: block;
    inset: auto 0% 0%;
  }

  .fda-service-v3-slider-card-wrap {
    grid-column-gap: .6875rem;
    grid-row-gap: .6875rem;
    width: 100%;
    padding-left: .3125rem;
    padding-right: .3125rem;
  }

  .fda-feature-v1-point-wrap {
    justify-content: center;
    align-items: center;
  }

  .fda-feature-v1-point-wrap.fda-in-active {
    position: static;
  }

  .fda-feature-v1-list-inner-wrap {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .fda-accrodian-v1-row-one {
    justify-content: center;
    align-items: flex-start;
  }

  .fda-feature-v3-title.fda-landscape-text-center {
    margin-top: 40px;
    padding-left: 10px;
  }

  .fda-about-v2 {
    padding-bottom: var(--_spacing---section-gap-small);
  }

  .fda-team-heading-wrap.fda-gap-large.fda-team-heading-wrap-v2 {
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-about-v2-card {
    grid-row-gap: .75rem;
    padding: 0;
  }

  .fda-about-v2-card.fda-position-relative.fda-bottom-card {
    padding-bottom: 0;
  }

  .fda-about-v2-card.fda-position-relative.fda-top-card {
    padding-top: 0;
  }

  .fda-service-v3-slider-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .fda-accrodian-v1-bottom-content.fda-overflow-hidden.fda-landscape-text-center {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fda-features-block-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .fda-button-two-icon-end {
    transform: none;
  }

  .fda-features-box-item {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding-left: .9375rem;
    padding-right: .9375rem;
  }

  .fda-pricing-v1-plan-amount-wrap {
    padding-top: .5rem;
  }

  .fda-about-v3-inner-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 10.875rem;
    padding-top: 1.5rem;
  }

  .fda-service-v1-slider-heading {
    grid-row-gap: 0px;
  }

  .fda-service-v4-wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-service-v5-left-top-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .fda-features-v4-title {
    padding-bottom: 1.25rem;
  }

  .fda-features-v4-bottom-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .fda-about-v3-row-right {
    max-width: none;
  }

  .fda-service-v4-text-wrapper {
    flex: 1;
  }

  .fda-button-two-icon-one {
    filter: brightness(0%);
  }

  .fda-about-v3-row-two {
    grid-column-gap: 1.0625rem;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .fda-service-v1-slider-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-service-v5-left-content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .fda-pricing-v1-pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .fda-pricing-v1-plan-features {
    grid-column-gap: .875rem;
    grid-row-gap: .875rem;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-team-member-details-box {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin-top: 7px;
  }

  .fda-event-auto {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .fda-team-member-text-box {
    padding-left: 20px;
  }

  .fda-team-member-sosal-icon {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    justify-content: center;
    align-items: center;
  }

  .fda-team-member-button {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0;
    top: 10px;
    right: 20px;
  }

  .fda-pricing-two-toogle.fda-change-display {
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-faq-icon-wrap {
    margin-top: 28px;
    margin-bottom: 32px;
  }

  .fda-form-fields-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .fda-contact-form-wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-contact-information {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fda-showcase-images {
    grid-template-columns: 1fr;
  }

  .fda-typography-row {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .fda-list-gaps {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-flow: column;
  }

  .fda-logo-showcase-box {
    flex-flow: wrap;
  }

  .fda-logo-showcase-box.fda-flex-center {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fda-form-input-wrap {
    flex-flow: column;
  }

  .fda-style-guide-main {
    grid-column-gap: 2.25rem;
    grid-row-gap: 2.25rem;
  }

  .fda-blog-information-everyday-image-wrapper {
    flex-flow: column;
    padding-bottom: .9375rem;
  }

  .fda-contact-details-v2 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .fda-blog-information-left-box {
    padding-right: 0;
  }

  .fda-blog-author-name-box {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .fda-blog-author-wrapper {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .fda-team-details-honors-left-para-wrapper {
    padding-bottom: 0;
  }

  .fda-team-details-timeline-title {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .fda-team-details-honors-right {
    padding-top: 0;
  }

  .fda-team-details-honors-main-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .fda-team-details-honors-left-heading {
    padding-bottom: .625rem;
  }

  .fda-team-details-honors-left-wrapper {
    padding-top: 1.125rem;
  }

  .fda-team-details-about-item {
    padding-bottom: 1.5rem;
  }

  .fda-team-details-about-item-block {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .fda-team-details-timeline {
    padding-bottom: 1.875rem;
  }

  .fda-team-hero-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .fda-team-hero-conteact-wrap {
    grid-row-gap: 1.25rem;
  }

  .fda-team-details-timeline-content {
    text-align: center;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .fda-team-details-about-item-heading {
    border-right-width: 0;
    justify-content: center;
    align-items: center;
    max-width: 6.375rem;
  }

  .fda-team-details-timeline-inner-wrap {
    flex-flow: column;
  }

  .fda-team-details-about-item-para {
    padding-left: 0;
  }

  .fda-team-details-short-content-one {
    padding-bottom: .3125rem;
  }

  .fda-mobile-display-none {
    display: none;
  }

  .fda-mobile-text-center {
    text-align: center;
  }

  .fda-utilty-page-content {
    max-width: 27.3125rem;
  }

  .fda-utilty-page-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fda-pricing-tick {
    width: 18px;
    height: auto;
  }

  .fda-about-v3-top {
    flex-flow: column-reverse;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .project-image-wrapper {
    border-radius: 1rem;
  }

  .project-list-wrapper {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .heading-style-h5-2 {
    font-size: 1.25rem;
  }

  .project-title-wrapper {
    padding: 1rem .5rem;
  }

  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .point-lottie {
    left: 121px;
  }

  .text-block-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fda-button-v1-arrow-wrap-2 {
    width: 2rem;
    height: 2rem;
  }

  .container {
    max-width: none;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .div-block-3 {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#w-node-_87df4f84-0ec9-efb0-7d56-a96ee71363d2-b665fc80, #w-node-_88186366-71ca-077d-d55a-2eb9833bd164-b665fc80 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0e000ea9-29dc-4487-9152-9bdf5a3b612b-b665fc81, #w-node-_0e000ea9-29dc-4487-9152-9bdf5a3b612b-c787a7ed {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_26abbdd1-459c-2086-e0c5-09d8bc07b96b-bc07b95f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_26abbdd1-459c-2086-e0c5-09d8bc07b97b-bc07b95f {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_937ca8e3-a603-2a9e-a3e4-0fd61c5d44d9-1c5d44cb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56bb7a3-ca61-de14-538e-81bdae6532ae-b665fc89 {
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_87df4f84-0ec9-efb0-7d56-a96ee7136547-b665fc80 {
    justify-self: center;
  }

  #w-node-_26abbdd1-459c-2086-e0c5-09d8bc07b97b-bc07b95f {
    align-self: auto;
  }

  #w-node-_26abbdd1-459c-2086-e0c5-09d8bc07b99a-bc07b95f, #w-node-a2b318f4-2196-2b4b-1177-be7a29707484-bc07b95f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e93b280a-ea18-dd8f-0632-88403b5e4323-b665fc82, #w-node-e93b280a-ea18-dd8f-0632-88403b5e432b-b665fc82 {
    justify-self: center;
  }

  #w-node-e93b280a-ea18-dd8f-0632-88403b5e4333-b665fc82 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-c56bb7a3-ca61-de14-538e-81bdae6532a7-b665fc89 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e93b280a-ea18-dd8f-0632-88403b5e4323-04200ec6, #w-node-e93b280a-ea18-dd8f-0632-88403b5e432b-04200ec6 {
    justify-self: center;
  }

  #w-node-e93b280a-ea18-dd8f-0632-88403b5e4333-04200ec6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}


