@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');






*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-color: #f0f0f0;
    line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}

/*  */

/*.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
} */

/* .course_banner{
    background: #423ef4;
    padding-top: 86px;
    padding-bottom: 186px;
    position: relative;
}

.course_banner .course_page{
    background:#040316;
    padding: 0px;
}

.course_container{
    padding: 0 15px;
    max-width: 1315px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.course_page{
    position: relative;
    padding-bottom: 133px;
    padding-top: 107px;
}

.banner_contact{
    position: relative;
}

.banner_contact .back-video{
    position:absolute;
    right: 0;
    bottom: 0;
    z-index:-1;
}

.course_banner .subscribe{
    border-radius: 5px;
    transform: rotate(-5.42 deg);
    display: block;
    max-width: 250px;
    padding: 11px 13px 9px 18px;
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
    color: #202020;
    font-family: Roboto,sans-serif;
    background: #ffea00;
    z-index: -1;
}

.course_banner .subscribe strong{
font-family: Roboto, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 35px;
color: #fff;
padding-bottom: 25px;
display: flex;
}

.course_banner .banner_contact strong{
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    padding-bottom: 25px;
}

.course_banner .banner_contact h1{
color: #fff;
font-size: 34px;
font-family: Montserrat, sans-serif;
font-weight: 700;
padding-top: 25px;
line-height: 40px;
position: relative;
padding-bottom: 40px;
display: inline-grid;
}

.course_banner .banner_contact h1 strong{
    color: #2fb463;
    font-size: 32px;
}

.course_banner .banner_contact .cricle_img{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.course_banner .banner_contact .cricle_img p{
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    margin: 0;
    padding-left: 20px;
    color: #fff;
}

.course_banner .banner_contact .cricle_img p span{
    color: #ffea00;
}

.course_banner .banner_contact .banner_button{
    background: #ffea00;
    border: 1px solid #2fb463;
    border-radius: 5px;
    padding: 13px 35px;
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #202020;
} */





.course-section {
    position: relative;
    height: 80vh; /* Decreased height */
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.content h2 {
    font-size: 24px;
    margin: 10px 0;
    background-color: #ffc107;
    padding: 5px 10px;
    display: inline-block;
}

.content h1 {
    font-size: 36px;
    margin: 10px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    margin: 10px 0;
}

.highlight {
    color: #fff;
}

.course-video {
    margin: 20px 0;
}

.course-video img {
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
    border: 5px solid #fff;
}

button {
    background-color: #ffc107;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0a800;
}

@media (max-width: 1024px) {
    .course-section {
        height: 70vh; /* Further decrease height for tablets */
    }
    
    .content h1 {
        font-size: 32px;
    }

    .content h2 {
        font-size: 22px;
    }

    .content p {
        font-size: 16px;
    }

    button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .course-section {
        height: 60vh; /* Further decrease height for mobile */
    }
    
    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 20px;
    }

    .content p {
        font-size: 14px;
    }

    .course-video img {
        width: 100%;
    }

    button {
        font-size: 14px;
        padding: 6px 12px;
    }
}



/* 2nd section */


/* c2nd esction */

/* body {
    margin: 0;
    font-family: Arial, sans-serif;
} */



.course-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 50px;
}

.course-header {
    text-align: center;
    margin-bottom: 20px;
}

.course-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.course-header p {
    font-size: 18px;
    margin-bottom: 20px;
}

.course-header .highlight {
    background-color: #dfffd6;
    padding: 5px 10px;
    border-radius: 5px;
}

.course-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 50px; /* Added padding on the right-hand side */
}

.course-description {
    width: 70%;
    margin-right: 20px; /* Add margin to create space between sections */
}

.course-description h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.course-description p {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.equity-heading{

    padding-bottom: 26px;
    color: #218838;
    font-size: 26px;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.course-meta span {
    /* background-color: #eef; */
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
}

.course-details {
    width: 30%;
    background: #fff;
    /* padding: 20px; */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
    font-size: 18px;
}

.right-container-heading{
    padding: 20px;
    color: #28a745;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
}

.price-info .price {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-info .current-price {
    color: #28a745;
    padding: 20px;
}

.price-info .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
}

.price-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Ensure ul spans full width */
}

.price-info ul li {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    background-color: #f7f7f7; /* Default background color */
}

.price-info ul li:nth-child(even) {
    background-color: #fff; /* Alternate background color */
}

.price-info ul li i {
    margin-right: 10px;
    color: #28a745;
    font-size: 20px;
}

.price-info button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 50%;
    align-items: center;
    margin: 30px;
}

.price-info button:hover {
    background: #218838;
}

@media (max-width: 1024px) {
    .course-content {
        flex-direction: column;
        padding-right: 0; /* Remove padding on the right-hand side for smaller screens */
    }

    .course-description,
    .course-details {
        width: 100%;
        margin-right: 0; /* Remove margin for smaller screens */
    }

    .price-info .price {
        font-size: 22px;
    }

    .price-info ul li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .course-header h1 {
        font-size: 28px;
    }

    .course-header p,
    .course-description h2 {
        font-size: 16px;
    }

    .course-header .highlight {
        padding: 3px 8px;
    }

    .course-meta span {
        font-size: 12px;
    }

    .price-info .price {
        font-size: 20px;
    }

    .price-info ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .course-header h1 {
        font-size: 24px;
    }

    .course-header p,
    .course-description h2 {
        font-size: 14px;
    }

    .course-header .highlight {
        padding: 3px 8px;
    }

    .course-meta span {
        font-size: 10px;
    }

    .price-info .price {
        font-size: 18px;
    }

    .price-info ul li {
        font-size: 12px;
    }
}





/*register*/

.module-section {
    text-align: center;
    padding: 50px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #2fb463;
    margin-bottom: 40px;
}

.modules-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.module-card {
    background: #fff;
    border: 1px solid #2fb463;
    border-radius: 10px;
    margin: 40px 0; /* Adjusted for proper spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px 20px 20px 20px; /* Adjust padding to fit header */
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.module-card:first-child {
    align-self: flex-start;
}

.module-card:last-child {
    align-self: flex-end;
}

.module-header {
    background-color: #2fb463;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    width: fit-content;
    position: absolute;
    top: 0px; /* Adjusted to position half outside the box */
    transform: translateY(-50%);
    left: 64px; /* To position it inside the box */
    transform: translateY(-50%) translateX(-50%); /* Adjusting for 50/50 placement */
}

.module-title {
    display: inline-block;
    padding: 5px 10px;
    background-color: #2fb463;
    border-radius: 5px;
    font-size: 16px;
}

.module-content {
    padding: 0;
    margin: 0;
    text-align: left;
    margin-top: 10px; /* Ensuring the bullets start below the header */
    list-style-type: none; /* Remove default bullets */
}

.module-content li {
    padding: 10px 0;
    margin-left: 60px; /* Adjust left margin for better alignment */
    position: relative;
}

.module-content li::before {
    content: "•"; /* Use a bullet character */
    color: #2fb463; /* Set bullet color to green */
    font-size: 34px; /* Adjust bullet size */
    margin-right: 10px; /* Space between bullet and text */
    position: absolute;
    left: -40px; /* Increase left padding */
    top: 50%; /* Align vertically */
    transform: translateY(-50%);
}

.center-line {
    width: 2px;
    background-color: #2fb463;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    margin-top: 40px;
}

.left-module {
    align-self: flex-start;
}

.right-module {
    align-self: flex-end;
}

@media (max-width: 768px) {
    .modules-container {
        align-items: center;
    }

    .center-line {
        display: none;
    }

    .module-card {
        align-self: center;
    }
}


/* Bonus Register section */


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.register {
    background: #2fb463;
    padding: 40px 10px; /* Decreased padding for less height */
    text-align: center;
    position: relative;
}

.register .register_contact {
    position: relative;
}

.register .register_heading {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 45px;
    margin-bottom: 15px;
}

.register .register_heading span {
    position: relative;
    text-decoration: underline;
    text-decoration-color: #ffcf02;
    text-decoration-thickness: 3px;
}

.register .register_contact p {
    margin: 0;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 28px;
    color: #fff;
}

.register .register_contact p span {
    color: #ffcf02;
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .register {
        padding: 35px 10px; /* Adjusted padding for responsiveness */
    }

    .register .register_heading {
        font-size: 24px;
        line-height: 40px;
    }

    .register .register_contact p {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .register {
        padding: 30px 10px; /* Adjusted padding for responsiveness */
    }

    .register .register_heading {
        font-size: 20px;
        line-height: 35px;
    }

    .register .register_contact p {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .register {
        padding: 25px 10px; /* Adjusted padding for responsiveness */
    }

    .register .register_heading {
        font-size: 18px;
        line-height: 30px;
    }

    .register .register_contact p {
        font-size: 16px;
        line-height: 20px;
    }
}



/*bonus */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.bonus {
    position: relative;
    padding-top: 40px;
    padding-bottom: 75px;
    background-color: #f9f9f9;
}

.bonus_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.md-col-3 {
    flex: 1 1 22%;
    margin: 10px;
}

.bonus_card {
    background: #fff;
    box-shadow: 0 0 20px rgba(47, 180, 99, .2);
    border-radius: 15px;
    text-align: center;
    position: relative;
    height: 100%;
    margin: 20px 0;
    padding: 25px;
}

.bonus img {
    max-width: 100%;
    height: 35vh;
    vertical-align: middle;
}

.bonus .bonus_card p {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: rgba(0, 0, 0, .9);
    margin: 0;
    padding-top: 50px;
    position: relative;
}

.bonus .bonus_card p::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(217, 217, 217, .3);
    max-width: 60px;
    height: 2px;
    margin: 0 auto;
}

.bonus .bonus_card span {
    background: #ffcf49;
    border: 2px solid #fff;
    border-radius: 18.8535px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 11px;
    color: #202020;
    display: inline-block;
    padding: 8px 22px;
    position: absolute;
    top: -12px;
    left: 20px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .md-col-3 {
        flex: 1 1 30%;
    }
}

@media (max-width: 992px) {
    .md-col-3 {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .md-col-3 {
        flex: 1 1 100%;
    }
}



/*  */

.certificate-header {
    background-color: #2E8B57;
    color: white;
    width: 100%;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 70px;
    position: relative;
}

.certificate-header-content {
    max-width: 504px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.certificate-header p {
    margin-bottom: 10px;
    font-weight: bold;
}

.certificate-header h1 {
    margin: 0;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.certificate-container {
    max-width: 504px;
    margin: -100px auto 0; /* Adjust this to control how much the image overlaps the green background */
    text-align: center;
    position: relative;
    z-index: 1; /* Ensures it overlaps the header */
}

.certificate-content {
    padding: 0;
    background-color: white; /* Ensure the lower part of the image is on a white background */
    position: relative;
    z-index: 1;
}

.certificate-content img {
    width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .certificate-header-content, .certificate-container {
        width: 90%;
        padding: 0 10px;
    }

    .certificate-header h1 {
        font-size: 20px;
    }

    .certificate-content img {
        max-width: 100%;
        max-height: auto;
    }
}

@media (max-width: 480px) {
    .certificate-header h1 {
        font-size: 18px;
    }
}






/* FQA */

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
    padding: 20px;
}

.faq-container {
    width: 90%;
    max-width: 800px;
}

.faq-container h1 {
    text-align: center;
    color: #2E8B57;
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-container h2 {
    text-align: center;
    color: #666666;
    font-size: 18px;
    margin-bottom: 20px;
}

.faq-wrapper {
    max-height: 60vh; /* Adjust height if needed */
    overflow-y: auto;
    padding-right: 10px;
}

.faq {
    background-color: #ffffff;
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 10px 20px;
}

.faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: background-color 0.3s, color 0.3s;
}

.faq .question h3 {
    font-size: 18px;
    color: #333333;
    margin: 0;
    transition: color 0.3s;
}

.faq .arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.faq .answer {
    display: none;
    padding: 10px 0;
    color: #666666;
    font-size: 16px;
}

.faq.active .question {
    background-color: #2E8B57;
    color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px;
}

.faq-wrapper::-webkit-scrollbar {
    width: 6px;
}

.faq-wrapper::-webkit-scrollbar-thumb {
    background: #2E8B57;
    border-radius: 10px;
}

.faq-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    .faq-container h1 {
        font-size: 20px;
    }

    .faq-container h2 {
        font-size: 16px;
    }

    .question h3 {
        font-size: 16px;
    }

    .answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-container h1 {
        font-size: 18px;
    }

    .faq-container h2 {
        font-size: 14px;
    }

    .question h3 {
        font-size: 14px;
    }

    .answer {
        font-size: 12px;
    }
}










/* testimorial */




.testimonial-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 50px;
}

.testimonial-container {
    max-width: 1300px;
    width: 100%;
    padding: 20px;
    /* background-color: #fff; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    text-align: center;
    padding-bottom: 100px;
}

.testimonial-header h3 {
    /* color: gray;
    font-size: 14px; */
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: .47em;
    color: rgba(0, 0, 0, .3);
    text-align: left;
    margin: 0;
    padding-bottom: 11px;
}

.testimonial-header h2 {
    /* font-size: 35px;
    margin: 10px 0;
    color: #218838;
    font-family: Montserrat, sans-serif; */
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 45px;
    text-align: left;
    color: #2fb463;
    position: relative;
    display: block;

}

.testimonial-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.left-section {
    /* width: 40%; */
    width: 30%;
    text-align: left;
    /* padding-left: 40px; */
    margin-top: 30px;
}

.left-section h2 {
    /* color: gray;
    font-size: 14px;
    margin: 0; */
    padding-bottom: 17px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: .47em;
    color: rgba(0, 0, 0, .3);
    font-family: Roboto, sans-serif;
}

.left-section h1 {
    /* font-size: 32px;
    margin: 10px 0; */
    font-weight: 700;
    font-size: 28px;
    line-height: 31px;
    color: #252525;
    padding-bottom: 30px;
    position: relative;
    display: inline-block;
    font-family: Montserrat, sans-serif;

}

.left-section p {
    /* color: gray;
    font-size: 16px;
    font-family: Montserrat, sans-serif; */
    margin: 0;
    color: rgba(0, 0, 0, .70);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    font-family: Roboto, sans-serif;
}

.right-section {
    width: 60%;
    text-align: left;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    padding: 20px;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slider p{
    margin: 0;
    color: rgba(0, 0, 0, .70);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

.testimonial-slide p {
    /* margin-top: 30px; */
    padding-top: 20px;
}

.testimonial-slide .rating{
    padding-top: 20px;
}

.testimonial-slide.active {
    display: block;
}


.rating span {
    color: gold;
    font-size: 20px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-controls button {
    background-color: transparent;
    border: 1px solid #00c853;
    color: #00c853;
    font-size: 24px;
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
    width: 50px;
    height: 50px;
}

.slider-controls button:hover {
    background-color: #00c853;
    color: #fff;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .testimonial-container {
        padding: 15px;
    }
    .testimonial-header h2 {
        font-size: 22px;
    }
    .left-section h1 {
        font-size: 28px;
    }
    .left-section p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .testimonial-content {
        flex-direction: column;
        align-items: center;
    }
    .left-section, .right-section {
        width: 100%;
        text-align: center;
    }
    .right-section {
        margin-top: 20px;
    }
    .left-section h2, .left-section h1 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonial-header h2 {
        font-size: 20px;
    }
    .left-section h1 {
        font-size: 24px;
    }
    .left-section p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .testimonial-header h2 {
        font-size: 18px;
    }
    .left-section h1 {
        font-size: 20px;
    }
    .left-section p {
        font-size: 10px;
    }
}



/*footer*/
/* .footer_container{
	max-width: 1170px;
	margin:auto;
}
.footer .row{
	display: flex;
	flex-wrap: wrap;
}
.footer ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
} */