div.banner {
    height: auto;
    overflow: hidden;
    margin: 80px auto 0 auto !important;
    border-radius: 17px;
}
div.banner img {
    height: 100%;
    object-fit: cover;
    display: flex;
}



div.area p.title {
    font-size: 28px;
    font-weight: 600;
}
div.categories {
    margin-top: 40px;
}
div.categories div.child {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 10px;
}
a.category {
    position: relative;
    width: 25%;
    margin: 10px;
    aspect-ratio: 1.8/1;
    border-radius: 17px;
    overflow: hidden;
}
a.category img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a.category span {
    position: absolute;
    bottom: 0;
    display: block;
    z-index: 10;
    background-color: rgb(255 255 255 / 30%);
    backdrop-filter: blur(10px);
    width: calc(100% - 28px);
    padding: 14px;
    font-size: 16px;
    color: #212121;
}
a.category:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    opacity: 0.7;
}

div.overview {
    display: flex;
    margin-top: 40px;
    overflow: hidden;
    
    gap: 14px;
}
div.overview a {
    width: 50%;
    height: auto;
}
div.overview a img {
    width: 100%;
    border-radius: 0px;
}
div.journey {
    margin-bottom: 50px;
}
div.journey p.desc {
    color: #454545;
    font-weight: 400;
}

div.journey p.desc span.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
}

div.stats {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;    
}
div.stats div {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    /* padding: 30px;     */
    border-radius: 17px;
    aspect-ratio: 2.5/1;
}
div.stats div p {
    text-align: center;
}
div.stats p span {
    display: block;
}
div.stats p span.number {
    font-size: 28px;
    font-weight: 600;
}
div.stats p span.txt {
    margin-top: 5px;
    color: #454545;
}

div.faqs {
    height: auto;

}
div.faqs p.title {
    text-align: center;
}
div.faqs div.child {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    margin-top: 30px;
}
div.faqs div.start {
    width: 40%;
    height: 100%;
}
div.faqs div.start a.contact-us {
    text-decoration: none;
    color: #fff;
    background-color: #00BDF2;
    padding: 8px 16px;
    border-radius: 9px;
    font-size: 15px;
}
div.faqs div.start a.contact-us:hover {
    opacity: 0.7;
}

div.faqs div.end {
    width: 55%;
}

div.faq {
    width: 100%;
    background-color: #fafafa;
    border-radius: 11px;    
    overflow: hidden;
    margin-bottom: 20px;
}
div.faq p.question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
div.faq p.question:hover {
    color: #00BDF2;
}
div.faq p.question:hover svg {
    fill: #00BDF2;
    transition: all 250ms ease-in-out;
}
div.faq p.question span.icon {
    display: flex;
}
div.faq p.question svg {
    height: 18px;
    width: 18px;
    display: inline-flex;
    overflow: visible;
}
div.faq[data-visibility="visible"] {
    & p.answer {
        display: block;
    }
    & p.question svg {
        transform: rotate(-180deg);
    }
}
div.faq p.answer {
    
    transition: height 250ms ease;
    display: none;
    margin-top: -5px;
    padding: 0 20px 20px 20px;
    font-weight: 300;
    color: #454545;
    font-size: 15px;
    line-height: 23px;
}

@media screen and (max-width: calc(1240px + 60px)) {
    div.banner {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 1040px) {
    a.category {
        /* aspect-ratio: 1/1 !important; */
    }
    div.stats div {
        padding: 10px;
        aspect-ratio: 1.8/1;
    }
    /* a.category span {
        width: calc(100% - 14px) !important;
        padding: 14px 7px !important;
        font-size: 14px !important;
    } */

}
