body {
    /* overflow: hidden; */
    background-color: #F5F4F6;
}
.swal2-toast{
    top:100px !important;
}
/* footer */
footer {
background: url("/assets/images/immersive/footer2.png") no-repeat bottom center;
background-size: calc(100% + 200px) calc(100% + 15px);
font-size: 18px;
padding-left: var(--leftMargin);
padding-left: var(--rightMargin);
padding-top: 110px;
padding-bottom: 80px;
margin-top: 200px;
position: relative;
z-index: 1;
}
.self-paced-chip{
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    position: absolute;
    width: 81px;
    height: 23px;
    left: 0px;
    top: 0px;
    background: #F07C41;
    border-radius: 12px 0px 4px 0px;
}
.instructor-virtual-chip{
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    position: absolute;
    width: 147px;
    height: 23px;
    left: 0px;
    top: 0px;
    background: #6914F4;
    border-radius: 12px 0px 4px 0px;
}
.instructor-onprimise-chip{
display: flex;
align-items: center;
padding: 4px 8px;
gap: 8px;
position: absolute;
width: 180px;
height: 23px;
left: 0px;
top: 0px;
background: #0047FF;
border-radius: 12px 0px 4px 0px;
}
footer .footer-logo img {
width: 120px !important;
height: 40px;
}

footer .social-links i {
color: white !important;
font-size: 18px;
}

footer .social-links .icon {
width: 32px;
height: 32px;
background: #8538FA33;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
flex-shrink: 0;
align-items: center;
transition: var(--transition);
}
footer .social-links .icon i {
zoom: 90%;
}

footer .social-links .icon:hover {
background-color: rgba(0, 0, 0, 0.61);
color: var(--dark);
}

.footer-links ul li {
list-style-type: none;
margin-top: 8px;
}

.footer-links ul li a {
color: #EDE3FD !important;
text-decoration: none !important;
transition: var(--transition);
font-size: 12px;
}

.footer-text {
color: #EDE3FD;
font-size: 12px;
}

.footer-links ul li a:hover {
color: var(--orange) !important;
}

.copyright {
background-color: #472B74;
padding-block: 10px;
}

.copyright p {
color: white;
font-size: var(--p);
}
footer{
    padding-bottom: 60px;
}
.main-content-conatiner{
    gap: 80px;
}
.section-1 .selfPaced-img{
    /* max-width: 606px; */
    max-width: inherit;
    max-height: 412px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;

}
.image-collection .img{
    height: 56px;
    width: 56px;
    object-fit: cover;
    border: 1px solid #FFFFFF33;
    border-radius: 4px;

}
.image-collection .img.active{
    border: 1px solid #F07C41;
}


.btn-orange-border {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: rgba(240, 124, 65, 1);
    border: 1px solid rgba(240, 124, 65, 1);
    padding: 6px 16px;
    border-radius: 24px;
    gap: 8px;
}

.btn-orange-border:hover {
    background-color: rgba(240, 124, 65, 1);
    color: white;
}

.btn-orange-border:hover i,
.btn-orange-border:hover path {
    fill: white;
    color: white;
}
.transparent-btn{
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    gap: 8px;
    height: 41px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;

}
.transparent-btn:hover{
    color: white;
    background: rgba(255, 255, 255, 0.1);

}
.image-collection .video{
    border-radius: 4px;
}
.image-collection .video svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the SVG */
}
.gradient-outline-btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: 32px;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: transparent; /* Gradient text */
    background: #FFFFFF; /* White background */
    border-radius: 48px;
    z-index: 1;
    overflow: hidden;
    padding: 4px 12px; /* Padding adjusted */
    border: none;
    gap: 8px;
}

/* Gradient Text */
.gradient-outline-btn .text,
.gradient-outline-btn i {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #8024D2 2.99%, #FF782A 87.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Border */
.gradient-outline-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8024D2 2.99%, #FF782A 87.61%);
    border-radius: 48px;
    padding: 1px; /* Border width */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: 1;
}

/* Hover State */
.gradient-outline-btn:hover {
    background: linear-gradient(90deg, #8024D2 2.99%, #FF782A 87.61%);
    -webkit-background-clip: border-box;
    color: white;
    line-height: 100%;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 0px 16px 4px rgba(240, 124, 65, 0.5);

}

/* Hover Gradient Text Change */
.gradient-outline-btn:hover .text,
.gradient-outline-btn:hover i {
    background: none;
    -webkit-text-fill-color: white;
}
.heart-icon,.share-icon{
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background-color: #312244;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heart-icon:hover,.share-icon:hover{
    border: 1px solid white;
    background-color: #7647B6;
}
.heart-icon:hover svg path,.share-icon:hover svg path,.heart-icon.active svg path{
    fill: white !important;
}
.heart-icon.active{
    background-color: #F04141;
}
.share-icon.active{
    background-color: #2BAED8;
}
.section-1 .card1{
    align-items: center;
    padding: 12px;
    width: 100%;
    min-height: 140px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
}
 .section-2 .card-container{
    /* display: flex;
    flex-direction: row;
    justify-content: center; */
    align-items: center;
    padding: 0 24px;
    gap: 1px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
}
.section-5 .card-container{
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* align-items: flex-start; */
    padding: 12px;
    gap: 16px;
    width: 100%;
    /* height: 100%; */
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
}

.section-5 .instructor-card{
    padding: 8px;
    gap: 0px;
    max-width: 340px;
    max-height: 120px;
    width: 100%;
    height: 100%;
    background: #F5F4F6;
    border-radius: 8px;
}

.section-2 .info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    margin: 12px 0;
    gap: 16px;
    max-width: fit-content;
    min-width: 240px;
    width: 100%;
    height: 64px;
    border-radius: 4px;
    padding:0px 22px; /* Add spacing before the line */
    position: relative;
}

/* Add vertical line to all except last child */
.section-2 .info-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background-color: #DDDDDD; /* Line color */
}

.section-3 .accordian-container{
    /* display: flex; */
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 12px;
    gap: 12px;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
}
.max-oneline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}
.max-threeline{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.available-devices{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
}

.section-3 .accordion-button::after {
    /* background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.8327%206.83366H6.83268V11.8337H5.16602V6.83366H0.166016V5.16699H5.16602V0.166992H6.83268V5.16699H11.8327V6.83366Z%22%20fill%3D%22%23444444%22%2F%3E%3C%2Fsvg%3E'); */
    transition: all 0.5s;
    /* width: 11.67px;
    height: 11.67px; */
    background-position: center;

}

.section-3 .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M16.59%2015.42L12%2010.83L7.41%2015.42L6%2014L12%208.00004L18%2014L16.59%2015.42Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
}
.accordion-button::after {
    position: absolute;
    right: 0;
    top: 10px;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M16.59%2015.42L12%2010.83L7.41%2015.42L6%2014L12%208.00004L18%2014L16.59%2015.42Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");

}
.section-3 .accordion-button::after {
    position: static;
    transition: all 0.5s;
}

.section-3 .accordion-row {
    scroll-behavior: smooth;
    column-count: 1;
    column-gap: 50px;
}

.section-3 .accordion .accordion-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 1px solid;
    border-color: #66478F;
}

.section-3 .accordion .accordion-header,
.section-3 .accordion .accordion-button {
    background: rgba(255, 255, 255, 0.10);
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

.section-3 .accordion-button:not(.collapsed),
.section-3 .accordion-header:not(.collapsed) {
    color: #444444;
    background: transparent;
    box-shadow: none;
}

.section-3 .accordion-body {
    background: transparent;
    color: #444444;
}
.section-3 .accordion-body hr{
    margin: 0.75rem 0;
}
.purple-bg-btn{
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    height: 32px;
    /* max-width: 300px; */
    /* line-height: 100%; */
    color: #6914F4;
    font-size: 14px;
    font-weight: 500;
    background: #F9F5FE;
    border-radius: 24px;
}
.section-3 .accordion p.max-threeline{
    font-weight: 400;
}

.section-3 .accordion-button:focus {
    box-shadow: none;
}
.section-8 .bar-card img{
    width: 329px;
    height: 329px;
    right: -329px;
    margin-top:-39px;

}
@media (max-width:1400px) {
    .section-2 .card-container{
        justify-content: start;
    }
}
@media (max-width:570px) {
    .section-1 .selfPaced-img {
        max-height: 301px;
    }
    /* .section-2 p,.section-2 h5{
        font-size:x-small;
    } */
}