* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.topBar {
    background: rgb(251, 239, 241);
    transition: all .5s;
    cursor: pointer;
}

.topBar:hover {
    background: rgb(29, 29, 29);
    color: white;
}

header li {
    list-style: none;
}

header li a {
    font-weight: 500 !important;
}

h2 {
    font-size: 2.5rem !important;
    font-weight: bold !important;
}

a {
    text-decoration: none !important;
}

h1 {
    font-size: 2.5rem !important;
    font-weight: bold !important;
}

.btn-dark {
    padding: 14px 18px !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    /* margin-top: 10; */
}

.bg-1 {
    background: #a7e0ff;
}

.bg-2 {
    background: #f3fbff;
}

.bg-3 {
    background: #fff7eb;
}

.bg-4 {
    background: #dff5ee;
}

.custom-color {
    color: #43bfff;
}

.custom-p {
    padding: 70px 0px 100px;

}

.hero-box {
    /* background: linear-gradient(135deg, #0088cc, #00cc88); */
    /* height: 300px; */
    position: relative;
}

.hero-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
}

.m-custom-top {
    margin-top: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Full width for flexibility */
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    /* Keep in sync with your total number of slides */
}

.slide {
    height: 100px;
    width: 250px;
}

.custom-card {
    padding: 70px 70px !important;
}


.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.active-value {
    background: white;
    border-radius: 20px;
    border: 1px solid rgb(214, 214, 214);
    height: max-content !important;
}

.active-value .value-icon {
    background: #a7e0ff !important;
    border: none !important;
}

.value {
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
}

.no-1 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f3fbff;
    border: 1px solid rgb(214, 214, 214);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3%;
    /* Top pe position */
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
}

.no-2 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f3fbff;
    border: 1px solid rgb(214, 214, 214);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 36%;
    /* Center pe position */
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.no-3 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f3fbff;
    border: 1px solid rgb(214, 214, 214);
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 29%;
    /* End pe position */
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
}

.cases-nav-link {
    cursor: pointer;
    transition: all .5s;
}

.cases-nav-link-active {
    background: #a7e0ff;
}

.case-content {
    transition: all .5s;
}

.feedback-link {
    border-bottom: 3px solid rgb(222, 222, 222);
    cursor: pointer;
    transition: all .5s;
}

.feedback-link img {
    filter: opacity(50%);
    transition: all .5s;
}

.feedback-link-active {
    border-bottom: 3px solid rgb(34, 34, 34);
}

.feedback-link-active img {
    filter: opacity(100%);
}

.faq-box {
    cursor: pointer;
    height: 60px;
    overflow: hidden;
    transition: height 0.5s ease;
}

.faq-box-active {
    height: max-content !important;
    transition: height 0.5s ease;
}

.footer {
    background: rgb(1, 1, 75);
    padding: 100px 0px;
}

.footer .custom-card {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-input {
    /* padding: 10px; */
    background: white;
    display: flex;
    justify-content: space-between;
    border-radius: 25px !important;
}

.footer-input input {
    width: 100%;
    padding: 5px 20px;
    border: none;
    border-radius: 25px !important;
    color: rgb(117, 117, 117);
    font-weight: 500;
    outline: none;
}

.footer-input input:focus {
    outline: none;
}