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

body {
    min-height: 100vh;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1,
h2 {
    color: #444;
}

h3 {
    color: #999;
}

.recruitmentbtn {
    background: #2196F3;
    color: white;
    padding: 5px 10px;
    text-align: center;
}

    .recruitmentbtn:hover {
        color: #2196F3;
        background: white;
        padding: 3px 8px;
        border: 2px solid #2196F3;
    }

.title {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 10px;
    border-bottom: 2px solid #999;
}

table {
    padding: 10px;
}

th,
td {
    text-align: left;
    padding: 8px;
}

.side-menu {
    position: fixed;
    background: #2196F3;
    width: 20vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .side-menu .brand-name {
        height: 10vh;
        display: flex;
        align-items: center;
        justify-content: center;
        /*background: white;*/
    }

    .side-menu li {
        font-size: 24px;
        padding: 10px 40px;
        color: white;
        display: flex;
        align-items: center;
    }

        .side-menu li:hover {
            background: white;
            color: #2196F3;
        }

.container {
    position: absolute;
    right: 0;
    width: 80vw;
    height: 100vh;
    background: #f1f1f1;
}

    .container .recruitmentheader {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        height: 10vh;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

        .container .recruitmentheader .recruitmentnav {
            width: 90%;
            display: flex;
            align-items: center;
        }

            .container .recruitmentheader .recruitmentnav .recruitmentsearch {
                flex: 3;
                display: flex;
                justify-content: center;
            }

                .container .recruitmentheader .recruitmentnav .recruitmentsearch input[type=text] {
                    /*border: 15px;
                    border-color: #2196F3;*/
                    background: #f1f1f1;
                    padding: 10px;
                    width: 50%;
                }

                .container .recruitmentheader .recruitmentnav .recruitmentsearch button {
                    width: 40px;
                    height: 40px;
                    border: none;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .container .recruitmentheader .recruitmentnav .recruitmentsearch button img {
                        width: 30px;
                        height: 30px;
                    }

            .container .recruitmentheader .recruitmentnav .recruitmentuser {
                flex: 1;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

                .container .recruitmentheader .recruitmentnav .recruitmentuser img {
                    width: 40px;
                    height: 40px;
                }

                .container .recruitmentheader .recruitmentnav .recruitmentuser .recruitmentimg-case {
                    position: relative;
                    width: 50px;
                    height: 50px;
                }

                    .container .recruitmentheader .recruitmentnav .recruitmentuser .recruitmentimg-case img {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                    }

    .container .recruitmentcontent {
        position: relative;
        margin-top: 10vh;
        min-height: 90vh;
        background: #f1f1f1;
        background: url('../../images/home-bg.jpg'), rgba(0,0,0,.7) no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-blend-mode: color;
    }

        .container .recruitmentcontent .cards {
            padding: 20px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

            .container .recruitmentcontent .cards .card {
                width: 250px;
                height: 150px;
                background: white;
                margin: 20px 10px;
                display: flex;
                align-items: center;
                justify-content: space-around;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                border-radius: 20px;
            }

        .container .recruitmentcontent .recruitmentcontent-2 {
            min-height: 60vh;
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
        }

            .container .recruitmentcontent .recruitmentcontent-2 .recent-payments {
                min-height: 50vh;
                flex: 5;
                background: white;
                margin: 0 25px 25px 25px;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                display: flex;
                flex-direction: column;
                border-radius: 20px;
            }

            .container .recruitmentcontent .recruitmentcontent-2 .new-students {
                flex: 2;
                background: white;
                min-height: 50vh;
                margin: 0 25px;
                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
                display: flex;
                flex-direction: column;
                border-radius: 20px;
            }

                .container .recruitmentcontent .recruitmentcontent-2 .new-students table td:nth-child(1) img {
                    height: 40px;
                    width: 40px;
                }

@media screen and (max-width: 1050px) {
    .side-menu li {
        font-size: 18px;
    }
}

@media screen and (max-width: 940px) {
    .side-menu li span {
        display: none;
    }

    .side-menu {
        align-items: center;
    }

        .side-menu li img {
            width: 40px;
            height: 40px;
        }

        .side-menu li:hover {
            background: #2196F3;
            padding: 8px 38px;
            border: 2px solid white;
        }
}


@media screen and (max-width:536px) {
    .brand-name h1 {
        font-size: 16px;
    }

    .container .recruitmentcontent .cards {
        justify-content: center;
    }

    .side-menu li img {
        width: 30px;
        height: 30px;
    }

    .container .recruitmentcontent .recruitmentcontent-2 .recent-payments table th:nth-child(2),
    .container .recruitmentcontent .recruitmentcontent-2 .recent-payments table td:nth-child(2) {
        display: none;
    }
}