


/*===========================
 17. DEPARTMENT DETAILS css 
===========================*/


.department-details-page{
    @media #{$md}{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 30px;
        padding-bottom: 80px;
    }
}




.department-details{
    & .details-thumb{
        & img{
            width: 100%;
        }
    }
    & .details-title{
        margin-top: 25px;
        
        & .title{
            font-size: 50px;
            font-weight: 600;
            
            @media #{$lg}{
                font-size: 40px;
            }
            @media #{$xs}{
                font-size: 28px;
            }
        }
    }
    & .details-content{
        margin-top: 25px;
        
        & .text{}
    }
    & .details-image{
        & img{
            width: 100%;
            margin-top: 30px;
        }
    }
    & .details-list{
        
        & ul{
            & li{
                font-size: 18px;
                color: $heading-color;
                margin-top: 25px;
                
                @media #{$xs}{
                    font-size: 16px;
                }
                
                & i{
                    color: $theme-color;
                    margin-right: 8px;
                }
            }
        }
    }
}



.department-sidebar{
    & .sidebar-title{
        background-color: $theme-color;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 30px;
        
        & .title{
            font-size: 24px;
            font-weight: 600;
            color: $white;
            
            @media #{$lg}{
                font-size: 20px;
            }
            @media #{$xs}{
                font-size: 18px;
            }
        }
    }
}


.sidebar-department-list{
    background-color: $white;
    @include box-shadow (0px 0px 20px 0px rgba(72,127,255,0.2));
    border-radius: 5px;
    overflow: hidden;
    
    & .department-list{
        padding: 0 30px;
        
        @media #{$xs}{
            padding: 0 20px;
        }
        @media #{$sm}{
            padding: 0 30px;
        }
        
        & ul{
            & li{
                &  a{
                    font-size: 16px;
                    color: $body-color;
                    line-height: 65px;
                    border-bottom: 1px solid $border-color;
                    display: block;
                    @include transition(0.3s);
                    
                    &.active,
                    &:hover{
                        color: $theme-color;
                        padding-left: 5px;
                    }
                    
                    & i{
                        margin-right: 8px;
                    }
                }
                
                &:last-child{
                    & a{
                        border-bottom: 0;
                    }
                }
            }
        }
    }
}



.sidebar-department-appointment{
    background-color: $white;
    @include box-shadow (0px 0px 20px 0px rgba(72,127,255,0.2));
    border-radius: 5px;
    overflow: hidden;
    
    & .department-appointment{
        padding: 0 30px 30px;
        
        @media #{$xs}{
            padding: 0 20px 20px;
        }
        @media #{$sm}{
            padding: 0 30px 30px;
        }
        
        & .single-department-form{
            margin-top: 30px;
            position: relative;
            
            & input,
            & textarea{
                width: 100%;
                height: 55px;
                padding-left: 45px;
                padding-right: 30px;
                background-color: $gray;
                border: 1px solid $border-color;
                
                &:focus{
                    border-color: $theme-color;
                }
                
                @include placeholder{
                    opacity: 1;
                    color: $body-color;
                }
            }
            
            & textarea{
                height: 125px;
                resize: none;
                padding-top: 15px;
            }
            
            & i{
                position: absolute;
                top: 19px;
                left: 20px;
                font-size: 16px;
                color: $body-color;
            }
            
            & .main-btn{
                width: 160px;
                height: 55px;
            }
        }
    }
}


.sidebar-department-download{
    background-color: $white;
    @include box-shadow (0px 0px 20px 0px rgba(72,127,255,0.2));
    border-radius: 5px;
    overflow: hidden;
    
    & .department-download{
        padding: 0 30px;
        
        @media #{$xs}{
            padding: 0 20px;
        }
        @media #{$sm}{
            padding: 0 30px;
        }
        
        & ul{
            & li{
                padding: 25px 0;
                border-bottom: 1px solid $border-color;
                
                &:last-child{
                    border-bottom: 0;
                }
                
                & a{
                    display: block;
                    color: $body-color;
                    @include transition(0.3s);
                    font-size: 16px;
                    
                    @media #{$lg}{
                        font-size: 14px;
                    }
                    @media #{$xs}{
                        font-size: 14px;
                    }
                    @media #{$sm}{
                        font-size: 16px;
                    }
                    
                    &:hover{
                        color: $theme-color;
                    }
                    
                    & i{
                        margin-right: 8px;
                        color: $theme-color;
                        
                        @media #{$lg}{
                            margin-right: 5px;
                        }
                        @media #{$xs}{
                            margin-right: 5px;
                        }
                        @media #{$sm}{
                            margin-right: 8px;
                        }
                    }
                    & span{
                        float: right;
                    }
                }
            }
        }
    }
}




























