.ai-blue-box {
    width: 66px;
    height: 66px;
    background: #65a2ff;
}

.ai-title {
    color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}

.ai-description {
    color: #fff;
    transition: 0.3s ease;
	padding-bottom: 0rem;
	font-size: 24px;
}

.ai-tab {
    display: flex;
    flex-direction: column;
	align-items: flex-start;
}

.ai-tab .line {
    height: 2px;
    background: #D9D9D9;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.3s;
}

.ai-tab.active .line {
    background: #65a2ff;
}

.ai-tab span {
    font-size: 18px;
    font-weight: 500;
    color: #D9D9D9;
    text-transform: uppercase;
	    cursor: pointer;

}

.ai-tab.active span {
    color: #65a2ff;
}
.ai-title,
.ai-description {
    transition: opacity 0.4s ease;
}

@media only screen and (max-width: 767px) {
	.ai-tab {
        gap: 5px;
        margin-bottom: 10px;
	}
	
	.ai-description {
		padding-top: 1rem;
		padding-bottom: 0;
		margin: 0;
		font-size: 20px;
	}
}