/* ********** Three Content SECTION START 1 *********** */
.three_info_1 .marquee-container {
    background: var(--secondary);
    overflow: hidden;
}

.three_info_1 .marquee-text {
    animation: marquee 15s linear infinite;
    display: inline-block;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.three_info_1 .main-container {
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.three_info_1 .bgContent {
    min-height: 332px;
}

.three_info_1 .bgCardCommon {
    background-color: var(--primary);
    color:white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.three_info_1 .course-form {
    background: var(--secondary);
}

.three_info_1 .btn-submit {
    background-color: white;
    color: var(--secondary);
}

.three_info_1 .btn-submit:hover {
    background-color: #f8f9fa;
    color: var(--secondary);
}

.three_info_1 .phone-number {
    font-size: 32px;
}

@media (max-width: 768px) {
    .three_info_1 .phone-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .three_info_1 .phone-number {
        font-size: 24px;
    }
}

/* ********** Three Content SECTION END 1 *********** */