﻿:root {
  --asp-cyan: #05A4CD;
  --asp-ink: #071117;
  --asp-muted: #5b6367;
  --asp-soft: #f1f6f8;
  --asp-white: #fafcfd;
  --asp-border: #d9e4e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--asp-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

img {
  max-width: 100%;
}



.btn {
  --bs-btn-border-radius: 6px;
  --bs-btn-font-size: 14px;
  --bs-btn-font-weight: 400;
  --bs-btn-padding-y: 16px;
  --bs-btn-padding-x: 34px;
    letter-spacing: .7px;
 
}

.btn-primary {
  --bs-btn-bg: var(--asp-cyan);
  --bs-btn-border-color: var(--asp-cyan);
  --bs-btn-hover-bg: #008cad;
  --bs-btn-hover-border-color: var(--asp-cyan);
}

.about-cta ,
.services-cta ,
.projects-cta > .btn {
  border-color: var(--asp-cyan);
  color: var(--asp-cyan);
}

p {
  overflow: hidden;
  color: var(--Text, #010202);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px;
}

h5 {
  color: var(--asp-cyan);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 3px;
  margin: 0 0 16px;
}

h2 {
    margin: .45rem 0 0;
    color: #42494C;
    /* font-size: clamp(30px, 3.75vw, 54px); */
    font-size: 48px;
    font-weight: 400;
    /* line-height: 1.05; */
    line-height: 54px;
}

h2 .accent {
  color: var(--asp-cyan);
}

.site-header {
  height: 80px;
 
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.brand {
  color: white;
  gap: 10px;
}

.brand-mark {
  width: 44px;
  height: 48px;
  object-fit: contain;
}

.brand-mark-scrolled {
  display: none;
}

.brand-name {
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.15;
}



.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: #e6ecef;
  box-shadow: 0 2px 14px rgba(1, 2, 2, .04);
  backdrop-filter: blur(6px);
}

.site-header.is-scrolled .brand-mark-default {
  display: none;
}

.site-header.is-scrolled .brand-mark-scrolled {
  display: block;
}

.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .nav-list .nav-link,
.site-header.is-scrolled .language-switch {
  color: #010202;
}

.site-header.is-scrolled .nav-list .nav-link:hover,
.site-header.is-scrolled .nav-list .nav-link.active {
  color: var(--asp-cyan);
}

.site-header.is-scrolled .navbar-toggler {
  filter: none;
}


/* Home */

.hero-section {
    position: relative;
    min-height: 1024px;
    overflow: hidden;
    color: #fff;
}

.hero-section::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 128px;
    background: linear-gradient(transparent, #fafcfd);
    pointer-events: none;
    content: '';
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
    min-height: 1024px;
}

.hero-slide {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-slide::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(144deg, rgba(1, 2, 2, .75), rgba(0, 11, 19, .6) 50%, rgba(8, 9, 10, .5)), linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(5, 164, 205, .4));
    content: '';
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 1024px;
    flex-direction: column;
    justify-content: center;
    padding-top: 155px;
    padding-bottom: 140px;
}

.hero-section h1 {
    max-width: 4.8ch;
    margin: 0;
    font-size: clamp(52px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.11;
    text-wrap: balance;
}

.hero-section h1 span {
    color: var(--asp-cyan);
}

.hero-copy {
    max-width: 520px;
    margin: 32px 0 24px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--asp-white);
}

.hero-actions {
    position: relative;
    z-index: 2;
}

.hero-stats {

    margin-top: auto;
  
}

.hero-pagination {
    position: absolute;
    top: 50% !important;
    right: clamp(20px, 3vw, 36px) !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 4;
    display: flex;
    width: auto !important;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
}

.hero-pagination .swiper-pagination-bullet {
    position: relative;
    width: 19px;
    height: 19px;
    margin: 0 !important;
    background: transparent;
    opacity: 1;
}

.hero-pagination-ring,
.hero-pagination-dot {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-pagination-ring svg {
    width: 19px;
    height: 19px;
}

.hero-pagination-dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--asp-cyan);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .25s ease;
    content: '';
}

.hero-pagination .swiper-pagination-bullet-active .hero-pagination-dot::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-pagination .swiper-pagination-bullet-active .hero-pagination-ring circle {
    stroke: var(--asp-cyan);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    color: var(--asp-cyan);
}

.stat-card>span {
    font-size: 25px;
}
.stat-icon {
    display: inline-flex;
    width: 25px;
    height: 24px;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    display: block;
    width: 25px;
    height: 24px;
}

.stat-card div {
    min-width: 0;
    padding-left: 18px;
    border-left: 2px solid var(--asp-cyan);
}

.stat-card strong {
    display: block;
    color: white;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.stat-card small {
    color: white;
    font-size: 12px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.section-heading {
    margin-top: 80px;
    margin-bottom: 64px;
  
}
.section-space {
    padding-bottom: 80px;
}


.section-heading>p:last-child {
    max-width: 580px;
    margin: 15px auto 0;
}





.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image {
    display: block;
    width: 100%;
    height: 447px;
    object-fit: cover;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    right: -1px;
    bottom: -28px;
    display: flex;
    width: 96px;
    height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--asp-cyan);
    border-radius: 50%;
    text-align: center;
}

.experience-badge strong {
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
}

.experience-badge span {
    font-size: 10px;
    line-height: 1.1;
}

.about-copy {
    max-width: 604px;
}

.about-copy p {
    margin-bottom: 16px;
    margin-top: 15px;
}
.about-copy p:last-of-type {
    margin-bottom: 48px;
}

.about-cta {
    display: inline-flex;
    width: 181px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 34px;
}

.about-cta img {
    display: block;
    width: 17px;
    height: 16px;
    object-fit: contain;
}

.team-block {
    margin-top: 116px;
}



.team-heading h5 {
    margin-bottom: 16px;
}

.team-heading h2 {
    margin-top: 0;
}

.team-heading p {
    max-width: 448px;
    margin: 16px auto 0;
    color: var(--Text, #010202);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.team-photo-row {
    margin-top: 66px;
}

.team-cards {
    margin-top: 42px;
}

.team-card {
    max-width: 496px;
    min-height: 236px;
    padding: 0 0 0 22px;
    border-left: 2px solid var(--asp-cyan);
}

.team-cards article:nth-child(2) .team-card {
    margin-left: auto;
}

.team-photo {
    position: relative;
    width: 256px;
    height: 192px;
    margin: 50px auto;
}

.team-photo::before {
    position: absolute;
    top: -90px;
    left: 0;
    width: 256px;
    height: 256px;
    background: #e6f6f9;
    border-radius: 50%;
    content: '';
}

.team-photo img {
    position: absolute;
    z-index: 1;
    display: block;
    width: 192px;
    height: 192px;
    margin-left: 22px;
    object-fit: cover;
    border-radius: 50%;
    top: -62px;
}

.team-card h5 {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 3px;
}

.team-card h3 {
    margin: 0 0 18px;
    color: #42494C;
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
}

.team-card>p {
    margin: 0;
    color: var(--Text, #010202);
    font-size: 12px;
    line-height: 19px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.team-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 20px;
    padding: 4px 10px;
    color: #497b88;
    background: #e8f5f8;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
}

.team-tags span::before {
    width: 8px;
    height: 8px;
    border: 1px solid var(--asp-cyan);
    border-radius: 50%;
    content: '';
}

.services-section {
    background: var(--asp-soft);
}



.services-heading p {
    max-width: 672px;
    margin: 16px auto 0;
    line-height: 24px;
    text-align: center;
}

.services-layout {
    overflow: hidden;
    min-height: 578px;
    background: var(--asp-white);
    border: 1px solid #e6ecef;
    border-radius: 8px;
}


.service-list {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #010202;
    border-radius: 0;
}

.service-list .list-group-item {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 21px;
    color: #c1c9cd;
    background: #010202;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    box-shadow: none;
}

.service-list .list-group-item:last-child {
    border-bottom: 0;
}

.service-list .list-group-item.active {
    color: white;
    background: var(--asp-cyan);
    border-color: rgba(255, 255, 255, .2);
}

.service-list-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, .2);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
}

.service-list-icon img {
    display: block;
    width: 17px;
    height: 16px;
    object-fit: contain;
}

.service-list .list-group-item>span:nth-child(2) {
    min-width: 0;
    flex: 1 1 auto;
}

.service-list-arrow {
    margin-left: auto;
    color: currentColor;
    font-size: 22px;
    line-height: 1;
}

.service-list-arrow img {
    display: block;
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.service-list .list-group-item.active .service-list-arrow img {
    content: url("/assets/images/icons/service-arrow-white.svg");
}

.service-feature-column {
    min-width: 0;
    flex: 1 1 auto;
    background: var(--asp-white);
}

.service-feature-column .tab-content,
.service-feature-column .tab-pane {
    height: 100%;
}

.service-feature {
    height: 100%;
    background: var(--asp-white);
}

.service-feature-image {
    position: relative;
    height: 288px;
    overflow: hidden;
}

.service-feature-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--asp-white), rgba(250, 252, 253, 0) 52%);
    content: '';
}

.service-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-feature-copy {
    padding: 32px;
}

.service-feature-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.service-feature-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    color: var(--asp-cyan);
    background: #e6f6f9;
    border-radius: 6px;
    font-size: 14px;
}

.service-feature-icon img {
    display: block;
    width: 19px;
    height: 18px;
    object-fit: contain;
}

.service-feature-title h3 {
    margin: 0;
    color: #42494C;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.service-feature-copy>p {
    max-width: 668px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.services-cta {
    margin-top: 48px;
}

.services-cta .btn {
    display: inline-flex;
    min-width: 181px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
}

.services-cta .btn img {
    display: block;
    width: 17px;
    height: 16px;
    object-fit: contain;
}







.project-filters button {
    min-height: 34px;
    padding: 8px 16px;
    color: var(--Text, #010202);
    background: #e6f6f9;
    border: 0;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.project-filters button.active {
    color: white;
    background: var(--asp-cyan);
}

.project-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.project-card {
    overflow: hidden;
    height: 100%;
    background: #f2f6f7;
    border: 0;
    border-radius: 8px;
}

.project-image-wrap {
    position: relative;
    overflow: hidden;
    height: 298px;
}

.project-image-wrap::after {
    position: absolute;
    inset: 0;
    background: rgba(1, 2, 2, .2);
    content: '';
}

.project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    z-index: 1;
    top: 16px;
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    white-space: nowrap;
}

.project-badge-featured {
    left: 16px;
    color: white;
    background: var(--asp-cyan);
}

.project-badge-category {
    right: 16px;
    color: var(--Text, #010202);
    background: #e6f6f9;
}

.project-card-body {
    display: flex;
    min-height: 73.5px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 21px 17px;
}

.project-card h3 {
    margin: 0;
    color: var(--Text, #010202);
    font-size: 18px;
    font-weight: 400;
    line-height: 22.5px;
}

.project-card p {
    margin: 2px 0 0;
    color: #5d6569;
    font-size: 12px;
    line-height: 16px;
}

.project-card b {
    color: var(--asp-cyan);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.projects-cta {
    margin-top: 48px;
}

.projects-cta .btn {
    display: inline-flex;
    min-width: 213px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
}
.certificates-section {
    background: #f2f6f7;
}



.certificates-heading {
    max-width: 672px;
    margin-bottom: 64px;
}

.certificates-heading p {
    max-width: 672px;
    margin: 16px auto 0;
    color: var(--Text, #010202);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.certificates-grid {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.certificates-grid .col {
    display: flex;
}

.certificate-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    background: white;
    border: 1px solid #e6ecef;
    border-radius: 16px;
}

.certificate-card-bar {
    height: 6px;
    background: var(--certificate-color, #05a4cd);
}

.certificate-card-arb {
    --certificate-color: #f5c400;
}

.certificate-card-riba,
.certificate-card-ordine {
    --certificate-color: #1a1a1a;
}

.certificate-card-chartered {
    --certificate-color: #c8102e;
}

.certificate-card-aca {
    --certificate-color: #e8e8e8;
}

.certificate-card-inner {
    min-height: 292px;
    padding: 24px;
}

.certificate-logo-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 179px;
    height: 134px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.certificate-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificate-card h3 {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    color: #08090a;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.25px;
}

.certificate-divider {
    display: block;
    width: 32px;
    height: 2px;
    margin-bottom: 12px;
    background: var(--certificate-color, #05a4cd);
}

.certificate-card p {
    margin: 0;
    color: var(--Text, #010202);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .45px;
}

.certificate-card .certificate-member {
    color: #5d6569;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
}

.certificate-notes {
    margin-top: 48px;
    color: var(--Text, #010202);
    font-size: 14px;
    line-height: 20px;
}

.certificate-notes span {
    gap: 10px;
}

.certificate-note-icon {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--asp-cyan);
    flex: 0 0 32px;
}

.certificate-note-icon::before,
.certificate-note-icon::after {
    position: absolute;
    content: '';
}

.certificate-note-icon-shield::before {
    width: 11px;
    height: 13px;
    border: 1.5px solid currentColor;
    border-radius: 6px 6px 8px 8px;
    clip-path: polygon(50% 0, 100% 20%, 86% 78%, 50% 100%, 14% 78%, 0 20%);
}

.certificate-note-icon-building::before {
    width: 13px;
    height: 12px;
    border: 1.5px solid currentColor;
    border-top: 0;
}

.certificate-note-icon-building::after {
    top: 8px;
    width: 7px;
    height: 7px;
    border-left: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    box-shadow: -4px 5px 0 -3px currentColor, 4px 5px 0 -3px currentColor;
}

.certificate-note-icon-award::before {
    width: 11px;
    height: 11px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.certificate-note-icon-award::after {
    top: 17px;
    width: 8px;
    height: 8px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
}
.contact-section {
    color: white;
}

.contact-overlay {
    min-height: 936px;
    padding: 80px 0 83px;
    background: linear-gradient(90deg, rgba(1, 2, 2, .42), rgba(255, 255, 255, .28));
}



.contact-heading {
    max-width: 672px;
   
}

.contact-heading h2 {
    max-width: 672px;
    margin-right: auto;
    margin-left: auto;
}

.contact-heading p {
    max-width: 672px;
    margin: 16px auto 0;
    color: white;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}



.contact-details {
    max-width: 467px;
    min-height: 498px;
    gap: 24px;
}

.contact-detail-item {
    min-height: 40px;
    gap: 16px;
}

.contact-icon,
.contact-social-link {
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--asp-cyan);
    background: rgba(5, 164, 205, .2);
    border-radius: 6px;
    flex: 0 0 40px;
}

.contact-icon::before,
.contact-icon::after {
    position: absolute;
    content: '';
}

.contact-icon-location::before {
    width: 13px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.contact-icon-location::after {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.contact-icon-phone::before {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-35deg);
}

.contact-icon-email::before {
    width: 17px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.contact-icon-email::after {
    width: 12px;
    height: 12px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(-45deg);
}

.contact-icon-clock::before {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.contact-icon-clock::after {
    width: 6px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(2px, -2px);
}

.contact-details p {
    color: white;
    font-size: 14px;
    line-height: 20px;
}

.contact-details b,
.contact-social-block>p {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--asp-cyan);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .6px;
}

.contact-social-block {
    padding-top: 17px;
}

.contact-social-block>p {
    margin-bottom: 16px;
}
.contact-social-links {
    gap: 12px;
}

.contact-social-link img {
    display: block;
    width: 17px;
    height: 16px;
    object-fit: contain;
}

.contact-social-link {
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.contact-form {
    max-width: 725px;
    min-height: 498px;
    padding: 33px;
    background: rgba(255, 255, 255, .25);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.contact-form-grid {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .6px;
}

.contact-form label span {
    color: var(--asp-cyan);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    height: 46px;
    padding: 13px 17px;
    color: white;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
    outline: none;
}

.contact-form textarea {
    height: 126px;
    min-height: 126px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--asp-cyan);
    box-shadow: 0 0 0 .2rem rgba(5, 164, 205, .2);
}

.contact-form option {
    color: #071117;
}

.contact-form ::placeholder {
    color: rgba(255, 255, 255, .9);
}

.contact-count {
    margin-top: 4px;
    color: #e6f6f9;
    font-size: 12px;
    line-height: 16px;
}

.contact-form .btn {
    box-sizing: border-box;
    height: 52px;
    min-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}



/* footer */

.nav-list {
  gap: 31px;
  align-items: center;
}

.nav-list .nav-link,
.language-switch {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-list .nav-link {
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.nav-list .nav-link:hover,
.nav-list .nav-link.active {
  color: var(--asp-cyan);
  border-color: var(--asp-cyan);
}

.language-switch {
  text-decoration: none;
}

.navbar-toggler {
  filter: invert(1);
}


.site-footer {
  color: #c1c9cd;
  background: #000b13;
}



.footer-cta {
  min-height: 121px;
  padding: 32px 0 33px;
  background: #0a151d;
  border-color: #001d2c !important;
}

.footer-cta>.container {
  min-height: 52px;
}

.footer-cta h2 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.footer-cta p {
  margin-top: 4px;
  color: white;
  font-size: 14px;
  line-height: 20px;
}

.footer-cta-button {
  width: 200px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .7px;
}

.footer-main {
  min-height: 372px;
  padding: 64px 0;
  background: #000b13;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand-mark {
  width: 40px;
  height: 46px;
  margin-right: 8px;
  object-fit: contain;
}

.footer-brand-name {
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: .9px;
}

.footer-brand-name span {
  color: var(--asp-cyan);
}

.footer-copy {
  max-width: 320px;
  color: #c1c9cd;
  font-size: 14px;
  line-height: 22.75px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  color: white;
  border: 1px solid #00334b;
  border-radius: 6px;
}

.footer-social-link img {
  display: block;
  width: 15px;
  height: 14px;
  object-fit: contain;
}

.footer-main h3 {
  margin: 0 0 20px;
  color: var(--asp-cyan);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: .7px;
}

.footer-main li {
  color: #c1c9cd;
  font-size: 14px;
  line-height: 20px;
}

.footer-main a:not(.footer-brand):not(.footer-social-link) {
  color: #c1c9cd;
  text-decoration: none;
}

.footer-cert-links a {
  text-decoration: underline !important;
  text-underline-position: from-font;
}

.footer-cert-links span {
  margin-left: 8px;
  font-size: 12px;
}

.footer-bottom {
  min-height: 65px;
  padding: 24px 0;
  background: #000b13;
  border-color: #001d2c !important;
  color: #c1c9cd;
  font-size: 12px;
  line-height: 16px;
}