section {
    padding: clamp(45px, 7vw, 90px) 0
}

.sec-badge {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: 0.3em;
    color: #F7BF23
}

.main-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #041b34;
    font-weight: 700;
    text-transform: capitalize
}

a {
    text-decoration: none !important
}

.hero-sec {
    background: url('./../assets/contact-bg.webp') center/cover no-repeat;
    position: relative;
    padding: clamp(120px, 16vw, 180px) 0 45px 0;
    z-index: 1
}

.hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #041b34;
    opacity: .9;
    z-index: -1
}

.hero-sec .hero-title {
    color: #f7bf23;
    font-weight: 700;
    text-align: center;
    font-size: clamp(32px, 4vw, 42px) !important
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s ease-in-out;
    width: fit-content
}

.contact-card .icon {
    background-color: #007aff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out
}

.contact-card .icon img {
    transition: all .3s ease-in-out;
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1)
}

.contact-card .title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: all .3s ease-in-out
}

.contact-card .content {
    color: #000;
    transition: all .3s ease-in-out
}

.contact-card:hover .icon {
    background-color: #F7BF23
}

.contact-card:hover .icon img {
    filter: unset
}

.contact-card:hover .title {
    color: #041b34
}

.contact-card:hover .content {
    color: #041b34
}
