.footer-section {
	display: flex;
	width: 100%;
    background-color: #181E28 !important;
    padding: 60px 0;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    z-index: 10;
}

.divider-container {
    width: 100%;
    display: flex;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0.3;
}

.footer-logo-con {
    display: flex;
    width: 100%;
    align-items: center;
    max-width: 1000px;
    gap: 48px
}

.footer-desc-con {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 1000px;
}

.social-media-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    gap: 16px;
}


@media screen and (max-width: 768px) {
    .footer-section {
         padding: 36px 16px;
         gap: 16px;
    }

    .footer-logo-con {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .social-media-section {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}
