section {
    padding: clamp(45px, 7vw, 90px) 0
}

.sec-badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: 0.3em;
    color: #C4A437
}

.main-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #041b34;
    text-transform: capitalize;
    font-family: "Sora", Sans-serif;
}
.hero-sec {
    background: url('./../assets/about-hero-img.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: #C4A437;
    text-align: center;
    font-size: clamp(32px, 4vw, 42px) !important;
    font-family: "Sora", Sans-serif;
}
.half-sec .img-wrapper {
    position: relative
}

.half-sec .img-wrapper * img {
    height: 220px;
    object-fit: cover;
    object-position: center
}

.cta-sec {
    background: url('./../assets/about-bg-img.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: .5;
    z-index: -1
}

.custom-card {
    border-radius: 8px;
    background-color: #fff;
    padding: 32px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .3s ease-in-out
}

.custom-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    height: 100%;
    background-color: #91c6ff;
    transition: all .3s ease-in-out;
    z-index: -1
}

.custom-card img {
    transition: all .3s ease-in-out
}

.custom-card:hover p, .custom-card:hover .card-title {
    text-decoration: none
}

.custom-card:hover {
    border: 3px solid #041b34
}

.custom-card:hover img {
    filter: brightness(0) invert(1)
}

.custom-card:hover:before {
    width: 100%
}

.custom-card p {
    text-decoration: #004494;
    transition: all .3s ease
}

.card-title {
    font-size: 24px;
    color: #041b34;
    text-decoration: 2px #004494;
    transition: all .3s ease
}

.list-with-icon {
    padding: 0
}

.list-with-icon li {
    position: relative;
    padding-left: 30px;
    list-style: none;
    z-index: 1
}

.list-with-icon li a {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    width: fit-content
}

.list-with-icon li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: -1;
    background: url('./../assets/icons/check-blue.svg') center/contain no-repeat
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }
}

@media (max-width: 768px) {
    .area-list li a {
        font-size: 14px;
        font-weight: 600
    }
}
