.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profile {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    padding-top: 50px;
    height: 100%;
    border-right: 1px solid #153c33;
    box-shadow: 0 0 15px 5px #e29500;
    transition: .4s ease;
    background: #fff;
}

.profile .close {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 2.2rem;
    color: #153c33;
    cursor: pointer;
    display: none;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #153c33;
    box-shadow: 0 0 15px 5px #e29500;
}

.profile h2 {
    color: #e29500;
}

.profile .icon {
    display: flex;
    gap: 9px;
    font-size: 1.5rem;
    color:#153c33;
    border-bottom: 2px solid #153c33;
    padding-bottom: 8px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.profile .icon a {
    text-decoration: none;
    color: #153c33;
}

.course {
    /* padding-top: 15px; */
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding-left: 13px;
}

.course h3 {
    text-align: left;
    font-size: 1.2rem;
    color: #03513fb3;
}

.course ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course ul li, .course ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    /* border-bottom: 1px solid #e29500; */
    display: inline-block;
    color: #e29500;
    text-transform: uppercase;
    transition: .4s ease;
    cursor: pointer;
}

.course ul li {
    display: flex;
    gap: 9px;
}

.course ul li a:hover {
    color: #153C33B3;
    text-shadow: 0 0 15px 5px #e29500;
}

/* .course-choise {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.course-choise input {
    height: 20px;
    width: 20px;
    color: #7fed35;
}

.download-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
} */

/* profile-container section  */

.profile-container {
    margin-left: 320px;
    position: relative;
}

.slide-button {
    position: absolute;
    top: 20px;
    left: 20px;
    /* background: transparent;
    box-shadow: 0 0 14px 4px #e29500; */
    padding: 9px;
    border-radius: 50%;
    display: none;
}

.slide-button i {
    font-size: 1.7rem;
    color: #03513fb3;
    cursor: pointer;
}

/* slide header section  */

.slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 30px 9px;
}

.about h1 {
    color: #153c33;
}

.student-details {
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* flex-direction: column; */
    gap: 20px;
    width: 100%;
    padding: 0 9px;
    flex-wrap: wrap;
}

.details {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

.detail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;   
}

.detail h3 {
    color: #153c33;
    text-transform: uppercase;
}

/* services section  */

.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 12px;
    gap: 30px;
}

.services-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services-cards .card {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 20px 9px;
    /* width: 260px;
    height: 240px; */
    gap: 15px;
}

.services-cards .card img {
    width: 80px;
    height: auto;
}

.services-cards .card h4 {
    font-size: 1.2rem;
    color: #153C33B3;
}

.services-cards .card p {
    color: #6d6c6c;
}

/* gellary section  */

.gellary {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 13px 9px;
}

.gellary-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gellary-images img {
    width: 280px;
    height: auto;
}



@media (max-width: 991px) {

    .profile .close {
        display: block;
    } 
    
    .profile {
        margin-left: -400px;
        z-index: 9;
    }

    .show {
        margin-left: 0;
    }

    .profile-container {
        margin-left: 0;
        width: 100%;
    }
    
    .slide-button {
        display: block;
    }
}


@media (max-width: 571px) {

    .slide-button {
        display: none;
    }

    .profile .close {
        display: none;
    } 

    .profile {
        width: 100%;
        height: auto;
        position: relative;
        margin: 0;
        padding: 30px;
    }

    .slider {
        width: 100%;
        height: 300px;
    }

    .course ul {
        display: flex;
        align-items: center;
        flex-direction: row;
        padding: 0; 
        gap: 4px;
        /* flex-wrap: wrap; */
    }

    .course ul li {
        border-right: 1px solid #153c33;
        padding-right: 6px;
        font-size: .9rem;
    }

    .course ul li a {
        font-size: .9rem;
    }

    .course ul li:nth-child(3){
        border: none;
    }
    
}

