html {
    scroll-behavior: smooth
}

.nav-link {
    display: block;
    padding: .75rem 0;
    color: #444;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase
}

.nav-link:hover,
.nav-link.is-active {
    color: #002c4b
}

@media(min-width:768px) {
    .nav-link {
        padding: 0
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    background-position: center;
    background-size: cover;
    display: flex;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide > div {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.hero-slide.is-active > div {
    opacity: 1;
    transform: translateY(0);
}

.hero-home-1 {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .79) 29%, rgba(255, 255, 255, .1) 57%), url('../images/banner-1.png')
}

.hero-home-2 {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .79) 29%, rgba(255, 255, 255, .1) 57%), url('../images/banner-2.jpeg')
}

.hero-home-3 {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .79) 29%, rgba(255, 255, 255, .1) 57%), url('../images/banner-3.jpeg')
}

.hero-wealth {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .79) 29%, rgba(255, 255, 255, .1) 57%), url('../images/banner-4.png')
}

.image-placeholder {
    background-color: #b4c3c9
}

.service-section {
    background-image: linear-gradient(rgb(244 245 244/.88), rgb(244 245 244/.88)), url('../images/bg.png');
    background-size: cover
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    opacity: .55
}

.hero-dots button.is-active {
    opacity: 1;
    background: #002c4b
}

.service-card {
    min-height: 142px;
    border-radius: .2rem;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgb(0 0 0/.07)
}

.service-icon {
    height: 52px;
    width: 52px;
    object-fit: contain
}

.content-image {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.footer-label {
    margin-bottom: .45rem;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase
}

.footer-text {
    font-size: .68rem;
    line-height: 1.5;
    color: #4b5563
}

.contact-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: .65rem .75rem;
    font-size: .68rem;
    text-transform: uppercase;
    outline: none;
    font-family: inherit;
}

textarea.contact-input {
    text-transform: none;
}

.contact-input:focus {
    border-color: #002c4b
}


.tick-list {
    margin-top: 1.5rem;
    display: grid;
    gap: .65rem;
    color: #d1d5db;
    font-size: .8rem;
    line-height: 1.35
}

.tick-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
}

.tick-list li svg,
.tick-list li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.tick-list li::before {
    margin-right: .6rem;
}