/* ====== Main Screnn Area ======= */
.as__m__gb__ct {
    padding: 0 var(--as-primary-gb-p-screen);
}
.as__m__gb__w {
    isolation: isolate;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 1020px;
    height: auto;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 1;
}

.as__m__gb__w {
    isolation: isolate;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 1020px;
    height: auto;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 1;
}

.as__m__pr {
    width: calc(100% - 360px);
    margin: 0 auto 0 0;
    padding: 0 0px 0 0;
    contain: layout;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}

.adb__pr__list {
    width: 100%;
    display: flex;
    position: relative;
}

.adb__pr__mc {
    display: flex;
    flex-flow: column;
    width: auto;
    order: 2;
}

.adb__pr__lc {
    width: 210px;
    margin: 0 20px 0 0;
}
.adb__pr__mc::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    height: 100%;
    border-right: 1px solid #c2c2c2;
}

@media (min-width: 1200px) {
    .as__m__gb__ct {
        padding: 0;
    }
}
@media (max-width: 876px) {
    .as__m__pr {
        flex-flow: column;
    }
	.adb__pr__list {
		flex-direction: column;
	}
    .adb__pr__mc {
        width: 100%;
        order: unset;
    }
    .adb__pr__lc {
        width: 100%;
    }
}

/* Right Layout Area */
.as__m__rl {
    contain: layout;
    overflow-anchor: none;
    width: 300px;
    position: relative;
    --as-x-nh: 80px;
}
/* / Right Layout Area */

/* === Section Styles */
.as__m__section {
    width: 100%;
    position: relative;
    margin: 0 auto 30px auto;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #303030;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: visible;
}

.as__m__section:hover {
    border-color: #ff4500;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5), inset 0 0 10px rgba(255, 140, 0, 0.2);
    animation: fireWave 2s infinite ease-in-out;
}

.as__m__section::after, .as__m__section::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transition: border-top-color 0.4s ease;
}

.as__m__section::after {
    border-top: 10px solid #303030;
    z-index: 0;
}

.as__m__section:hover::after {
    border-top: 10px solid #ff4500;
}

.as__m__section::before {
    bottom: -10px;
    border-top: 10px solid #ffffff;
    z-index: 1;
}

@keyframes fireWave {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 69, 0, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 5px #ff8c00; }
}
/* === /Section Styles */

/* Responsive Area */
@media (max-width: 767px) {
    .as__m__gb__w {
        flex-direction: column;
    }
    .as__m__pr {
        width: 100%;
    }
    .as__m__rl {
        width: 100%;
    }
    .adb__mc__col__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0px 15px;
    }
    .adb__mc__col__dt {
        flex-flow: column;
    }
	.adb__mc__tb {
		max-height: 100%;
	}
    .adb__mc__col__tb {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        order: unset;
    }
}
@media (max-width: 425px) {
    .adb__mc__col__list {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ======/Main Screnn Area ======= */

/* Product Container */
.adb__product__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 0 auto;
    max-width: 100%;
}

/* Card Styling */
.adb__tools__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Animation */
.adb__tools__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

/* Icon Styling */
.adb__card__icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 8px;
}

.adb__tools__card__tt {
    font: 700 24px / 28px 'Roboto flex', sans-serif;
    margin-bottom: 0px;
}
.adb__tools__card p {
    display: block;
    margin: 6px 0 8px 0;
    font: 500 14px / 18px var(--adb-font-content);
    color: var(--adb-primary-clr);
}

/* === Responsive Card Styles */
@media (max-width: 480px) {
    .adb__product__container {
        gap: 15px;
    }
    .adb__tools__card {
        padding: 20px;
    }
    .adb__tools__card__tt {
        font: 700 32px / 36px 'Roboto flex', sans-serif;
    }
}

@media (max-width: 320px) {
    .adb__product__container {
        grid-template-columns: 1fr;
    }
}