:root {
  --fas-navy: #1f2f4a;
  --fas-navy-2: #243a63;
  --fas-navy-3: #2f4b80;
  --fas-orange: #f6762a;
  --fas-orange-2: #ffae42;
  --fas-white: #f7f9fc;
  --fas-text: #142033;
  --fas-muted: #6c7a92;
  --fas-line: rgba(255,255,255,.12);
  --fas-shadow: 0 20px 50px rgba(5,16,36,.18);
  --fas-radius-xl: 28px;
  --fas-radius-lg: 20px;
  --fas-radius-md: 16px;
  --fas-container: 1480px;
}

html {
  scroll-behavior: smooth;
  background: #0f1b2e;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--fas-text);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(180deg, #1a2b46 0%, #203457 35%, #182945 100%);
}

.uk-container,
.uk-container-expand,
.uk-container-large,
.uk-container-xlarge {
  max-width: var(--fas-container);
}

.fas-site-shell {
  position: relative;
  overflow: hidden;
}

.fas-site-shell::before,
.fas-site-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 15% -15%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fas-site-shell::after {
  inset: 0 -15% auto auto;
  width: 38vw;
  height: 38vw;
}

.fas-topbar,
.fas-main,
.fas-footer {
  position: relative;
  z-index: 1;
}

.fas-topbar {
  background: rgba(16,27,47,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fas-line);
z-index:100000;
}

.fas-navbar {
  min-height: 86px;
}

.fas-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.fas-logo img {
  height: 65px;
  width: auto;
  display: block;
}

.fas-nav a,
.fas-mobile-nav a {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  position: relative;
}

.fas-nav a:hover,
.fas-mobile-nav a:hover,
.fas-nav a.uk-active {
  color: #fff;
  text-decoration: none;
}

.fas-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background: var(--fas-orange);
  transition: width .25s ease;
}

.fas-nav a:hover::after,
.fas-nav a.uk-active::after {
  width: 100%;
}

.fas-btn-primary,
.fas-btn-secondary,
.fas-btn-ghost {
  border-radius: 999px;
  font-weight: 700;
  padding: 0 24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-decoration: none;
}

.fas-btn-primary:hover,
.fas-btn-secondary:hover,
.fas-btn-ghost:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.fas-btn-primary {
  background: linear-gradient(135deg, var(--fas-orange), var(--fas-orange-2));
  color: white;
}

.fas-btn-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.fas-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

.fas-hero {
  padding: 44px 0 58px;
}

.fas-hero-card {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--fas-shadow);
  background: #0d1729;
  isolation: isolate;
}

.fas-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.fas-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: 64px;
}

.fas-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.fas-hero h1 {
	color: #fff;
	font-size: 22px;
	line-height: 1,1;
	letter-spacing: 0px;
	font-weight: 500;
	margin: 45px 0 24px;
	max-width: 9.5ch;
	font-style: italic;
}

.fas-hero-lead {
  color: rgba(255,255,255,.84);
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 30px;
}

.fas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.fas-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.fas-meta-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--fas-radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}

.fas-meta-card strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.fas-meta-card span {
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}

.fas-side-panel {
  align-self: end;
  margin-left: auto;
  width: min(420px, 100%);
  background: rgba(17,28,48,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(4,12,24,.24);
}

.fas-side-panel h3,
.fas-section-title,
.fas-dark-section h2,
.fas-light-section h2 {
  letter-spacing: -.03em;
  font-weight: 800;
}

.fas-side-panel h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.fas-side-panel p {
  color: rgba(255,255,255,.76);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.fas-select,
.fas-input,
.fas-textarea {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-radius: 14px !important;
  min-height: 50px;
  box-shadow: none !important;
}

.fas-select option {
  color: #0d1729;
}

.fas-input::placeholder,
.fas-textarea::placeholder {
  color: rgba(255,255,255,.48);
}

.fas-field-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fas-main section {
  padding: 24px 0 28px;
}

.fas-section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 26px;
}

.fas-section-title {
  margin: 0;
  font-size: clamp(1.9rem, 2.2vw, 2.8rem);
  color: #fff;
}

.fas-section-copy {
  margin: 10px 0 0;
  color: rgba(255,255,255,.74);
  max-width: 760px;
  line-height: 1.7;
}

.fas-chip-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.fas-category-card,
.fas-product-card,
.fas-trust-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fas-category-card:hover,
.fas-product-card:hover,
.fas-trust-card:hover {
  transform: translateY(-4px);
}

.fas-category-card {
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 40px rgba(7,18,37,.14);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fas-card-media {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f7, #dce4ef);
}

.fas-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.fas-category-card:hover .fas-card-media img,
.fas-product-card:hover .fas-card-media img {
  transform: scale(1.04);
}

.fas-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.fas-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.fas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}

.fas-badge--dark {
  background: rgba(31,47,74,.09);
  color: var(--fas-navy);
}

.fas-badge--accent {
  background: rgba(247,148,29,.16);
  color: #a35700;
}

.fas-count {
  color: var(--fas-muted);
  font-weight: 700;
  font-size: .9rem;
}

.fas-card-title {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--fas-text);
}

.fas-card-copy {
  color: var(--fas-muted);
  line-height: 1.6;
  margin: 0;
  font-size: .96rem;
}

.fas-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.fas-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef3f9;
  color: #3d4c67;
  font-size: .8rem;
  font-weight: 700;
}

.fas-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--fas-navy-2);
  margin-top: 2px;
  text-decoration: none;
}

.fas-card-link:hover {
  color: var(--fas-orange);
  text-decoration: none;
}

.fas-dark-section {
  padding-top: 46px;
}

.fas-product-card {
  background: #fff;
  box-shadow: 0 18px 40px rgba(7,18,37,.14);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fas-product-card .fas-card-media {
  aspect-ratio: 1.45 / 1;
}

.fas-product-card .fas-card-body {
  gap: 10px;
}

.fas-product-kicker {
  color: var(--fas-orange);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fas-product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  border-top: 1px solid rgba(20,32,51,.08);
  margin-top: 4px;
  padding-top: 14px;
}

.fas-product-specs div span {
  display: block;
  color: var(--fas-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  margin-bottom: 4px;
}

.fas-product-specs div strong {
  color: var(--fas-text);
  font-size: .94rem;
  font-weight: 700;
}

.fas-trust-wrap {
  padding: 64px 0;
}

.fas-trust-slab {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(17,29,49,.92) 0%, rgba(26,42,69,.86) 47%, rgba(24,41,69,.74) 100%),
    url('../img/home/trust-wide-gse.jpg') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--fas-shadow);
  padding: 54px;
}

.fas-trust-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  height: 100%;
  color: #fff;
  backdrop-filter: blur(6px);
}

.fas-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  margin-bottom: 18px;
}

.fas-trust-card h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.fas-trust-card p,
.fas-trust-copy {
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  margin: 0;
}

.fas-request-wrap {
  padding-top: 14px;
  padding-bottom: 72px;
}

.fas-request-card {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,252,.98));
  box-shadow: var(--fas-shadow);
  overflow: hidden;
}

.fas-request-copy {
  padding: 48px;
  background:
    radial-gradient(circle at top left, rgba(247,148,29,.18), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, #f5f8fd 100%);
}

.fas-request-copy h2,
.fas-request-copy p,
.fas-light-section-title {
  color: var(--fas-text);
}

.fas-request-copy p {
  color: #56657f;
  line-height: 1.75;
  max-width: 56ch;
}

.fas-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fas-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #33425d;
  font-weight: 600;
}

.fas-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(247,148,29,.14);
  color: #b96700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.fas-request-form {
  padding: 48px;
  background: linear-gradient(180deg, #20355b 0%, #192b49 100%);
}

.fas-request-form h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.fas-request-form p {
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}

.fas-request-form .fas-btn-primary {
  width: 100%;
  min-height: 56px;
}

.fas-footer {
  padding: 22px 0 48px;
}

.fas-footer-card {
  border-radius: 28px;
  background: rgba(16,27,47,.68);
  border: 1px solid rgba(255,255,255,.08);
  padding: 34px 34px 24px;
}

.fas-footer h3,
.fas-footer a,
.fas-footer p,
.fas-footer small {
  color: rgba(255,255,255,.86);
}

.fas-footer h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.fas-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.fas-footer a {
  text-decoration: none;
  font-weight: 500;
}

.fas-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.fas-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1199px) {
  .fas-hero-grid,
  .fas-trust-slab,
  .fas-request-copy,
  .fas-request-form {
    padding: 36px;
  }

  .fas-hero-card,
  .fas-hero-grid {
    min-height: auto;
  }

  .fas-side-panel {
    margin: 40px 0 0;
  }
}

@media (max-width: 959px) {
  .fas-navbar {
    min-height: 74px;
  }

  .fas-hero {
    padding-top: 20px;
  }

  .fas-hero-grid {
    padding: 28px;
  }

  .fas-hero-card {
    border-radius: 24px;
  }

  .fas-hero-meta {
    grid-template-columns: 1fr;
  }

  .fas-section-header {
    align-items: start;
  }

  .fas-trust-slab,
  .fas-request-card,
  .fas-footer-card {
    border-radius: 24px;
  }
}

@media (max-width: 639px) {
  .fas-hero-grid,
  .fas-trust-slab,
  .fas-request-copy,
  .fas-request-form,
  .fas-footer-card {
    padding: 22px;
  }

  .fas-hero h1 {
    max-width: none;
  }

  .fas-hero-actions {
    display: grid;
  }


}

.fas-btn-whatsapp {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.fas-btn-whatsapp:hover {
  background: #1fba57;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.fas-btn-whatsapp-full {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.fas-btn-whatsapp-full:hover {
  background: #1fba57;
  color: #fff;
  text-decoration: none;
}

.fas-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  z-index: 1200;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.fas-whatsapp-float:hover {
  background: #1fba57;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .26);
}

.fas-whatsapp-modal {
  max-width: 520px;
  padding: 34px;
}

.fas-whatsapp-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  margin-bottom: 18px;
}

.fas-btn-whatsapp-full {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.fas-btn-whatsapp-full:hover {
  background: #1fba57;
  color: #fff;
  text-decoration: none;
}

.fas-whatsapp-note {
  margin-top: 18px;
  color: #6c7a92;
  font-size: .95rem;
}

@media (max-width: 639px) {
  .fas-whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .fas-whatsapp-modal {
    padding: 24px;
  }
}

/* Wrapper spacing */
.fas-spec-section {
    margin-bottom: 32px;
}

/* Section title */
.fas-spec-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    opacity: 0.9;
}

/* Card-style container */
.fas-spec-list {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
}

/* Row layout */
.fas-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
}

/* Separator */
.fas-spec-row:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Label */
.fas-spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
}

/* Value */
.fas-spec-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 640px) {
    .fas-spec-row {
        grid-template-columns: 1fr;
    }

    .fas-spec-value {
        margin-top: -6px;
    }
}

.fas-product-image-wrap {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fas-product-image-wrap img {
    max-width: 100%;
    height: auto;
}

.fas-product {
    padding-top: 40px;
    padding-bottom: 60px;
}

.fas-product-inner {
    align-items: flex-start;
}

.fas-page-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
color:white;
}

.fas-product-subline {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.fas-product-specs {
    margin-bottom: 32px;
}

.fas-product-actions {
    margin-top: 20px;
}

.fas-form-success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fas-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.fas-input,
.fas-textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
}

.fas-textarea {
    min-height: 120px;
    resize: vertical;
}

.fas-side-panel .fas-form {
    margin-top: 20px;
}

.fas-side-panel .uk-grid-small {
    margin-bottom: 10px;
}

.fas-side-panel textarea {
    min-height: 110px;
}

a:hover {
	color: var(--fas-navy-2);
}

.uk-navbar-nav > li > a {
color: white;
font-size: 120%
}

.uk-navbar-nav > li > a:hover {
color: var(--fas-orange);
}

.fas-product-gallery {
    border-radius: 18px;
    overflow: hidden;
}

.fas-product-gallery img {
    object-fit: contain;
border-radius: 18px;
}

.uk-thumbnav img {
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.uk-thumbnav li.uk-active img,
.uk-thumbnav img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.uk-thumbnav li {
    cursor: pointer;
}

.uk-open > .uk-offcanvas-bar {
margin-top: 80px;
}

.fas-contact-card {
    background: rgba(17,28,48,.78);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(4,12,24,.24);
}

.fas-contact-item {
    margin-bottom: 20px;
}

.fas-contact-item strong {
    display:block;
    color:#fff;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:6px;
}

.fas-contact-item span {
    color:rgba(255,255,255,.8);
}

.fas-form-error {
    background: rgba(231,76,60,.12);
    border: 1px solid rgba(231,76,60,.3);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.fas-contact-success {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.fas-contact-success h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.fas-contact-success p {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    margin-bottom: 30px;
}