.tab-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.header-text {
    text-align: center;
}

.adc-align-items-start{
    text-align: start;
}
.main {
    height: calc(100vh - 96px) !important;
}

.tabs {
    display: flex;
    /* border-bottom: 2px solid #ccc;
    border-top: 1px solid #000; */
    margin-top: 50px;
    border-bottom: 1px solid #ccc;
}

.tab {
    flex: 1;
    padding: 25px 15px;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    border: none;
    outline: none;
    font-size: 1.375rem;
    /* font-weight: bold; */
    position: relative;
    /* top: 2px; */
}

.tab:hover {
    background-color: #e0e0e0;
}

.tab.active {
    border-bottom: 5px solid #01a7c2;
    color: #000;
    font-weight: bold;
}

.tab-grp {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: block;
    /* padding: 20px; */
    background-color: #fff;
    /* border: 1px solid #ccc; */
}

.tab-content.active {
    display: block;
}

.outline{
    border: 1px solid #01a7c2;
    color: #01a7c2;
}

.content {
    display: flex;
    flex-wrap: wrap;
    /* gap: 4rem; */
    justify-content: center;
    align-items: center;
}

.content img {
    /* width: 28rem;
    height: 20rem; */
    width: 100%;
}

.image img {
    /* max-width: 200px; */
    width: 100%;
   
}

.adc-pt7per{
    padding-top: 7%;
}

.adc-pt5per{
    padding-top: 5%;
}

.text h1 {
    font-size: 1.5rem;
    color: #333;
}

.text p {
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

/* .text ul {
    margin-top: 15px;
    padding-left: 0px;
    list-style-type: none;
    list-style-image: url('../assets/icons/right-arrow.png');
    padding-left: 25px;
}

.text li::marker {
   width: 24px;
} */

.text ul {
    margin-top: 15px;
    padding-left: 35px; /* Increase padding to create space for the image */
    list-style-type: none; /* Disable default bullets */
}

.text ul li {
    position: relative; /* Enable positioning for the image */
    padding-left: 25px; /* Space between image and text */
    margin-bottom: 10px;
}

.text ul li::before {
    content: '';
    position: absolute;
    left: 0; /* Align image to the left */
    top: 5px; /* Adjust vertical alignment */
    width: 16px; /* Set width of the image */
    height: 16px; /* Set height of the image */
    background-image: url('../assets/icons/right-arrow.png'); /* Use your image */
    background-size: contain; /* Scale the image */
    background-repeat: no-repeat;
}

/* .text li::before {
    content: '\279C';
    margin-right: 10px;
} */

.text li {
    /* margin-bottom: 10px; */
    font-size: 1.125rem;
}

.grid_ {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.grid-content {
    display: flex;
    flex: 1;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #000; */
    padding: 30px;
    margin: 20px;
}

.grid-content p {
    text-align: center;
}

.grid-content img {
    rotate: 180deg;
}

.grid-content:first-of-type {
    border-right: 0px !important;
}

.grid-content:last-of-type {
    border-left: 0px !important;
}

.adc-footer {
    padding: 30px 10px !important;
}


@media (max-width: 1000px) {
    .content {
        flex-wrap: wrap;
    }

    .grid_ {
        flex-direction: column;
    }

    .main {
        /* height: calc(100vh - 175px) !important; */
        height: calc(100vh - 96px) !important;
        overflow-x: hidden;
    }
}

@media (max-width: 576px) {
    .text ul { 
        padding-left: 10px;
    }
}

/* @media (orientation: landscape) {
    .main {
        height: calc(100vh - 178px) !important;
    }
} */