
/*
body, html {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, cornflowerblue, rgba(30, 144, 255, 0.2));
}*/

.phone_wrapper, .recruit_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0px 40px 40px -20px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

    .phone_wrapper header, .recruit_wrapper header {
        background: #3d3d3d;
        width: 100%;
        height: 75px;
        border-radius: 10px 10px 0 0;
        display: flex;
        flex-direction: column;
    }

        .phone_wrapper header .speaker, .recruit_wrapper header .speaker {
            width: 100%;
            height: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone_wrapper header .mic, .recruit_wrapper header .mic {
            width: 15%;
            height: 7px;
            background: #fff;
            border-radius: 120px;
        }

        .phone_wrapper header nav, .recruit_wrapper header nav {
            width: 100%;
            height: 60%;
            display: flex;
            position: relative;
        }

            .phone_wrapper header nav .tab, .recruit_wrapper header nav .tab {
                width: 50%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .phone_wrapper header nav .indicator {
                width: 25%;
                height: 4px;
                position: absolute;
                bottom: 0;
                background: #5bd087;
                transition: 0.3s ease;
            }

        .phone_wrapper header .block, .recruit_wrapper header .block {
            width: 85%;
            height: auto;
            /*background: #119744;*/
            cursor: pointer;
            color: #fff;
            text-align: center;
        }

            .phone_wrapper header .block span, .recruit_wrapper header .block span {
                padding: 10px 0 10px 0;
            }

    .phone_wrapper main, .recruit_wrapper main {
        flex: 1;
        width: 200%;
        height: 100%;
    }

        .phone_wrapper main .tab_reel {
            font-size: 14px;
            width: 200%;
            display: flex;
            justify-content: space-between;
            transition: 0.5s cubic-bezier(0.18, 1.14, 0.5, 1.18);
          
        }

            .phone_wrapper main .tab_reel .tab_panelrecruit, .phone_wrapper main .tab_reel .tab_panel1, .phone_wrapper main .tab_reel .tab_panel2, .phone_wrapper main .tab_reel .tab_panel3, .phone_wrapper main .tab_reel .tab_panel4 {
                width: 100%;
                padding: 10px;
            }

        .phone_wrapper main .card, .recruit_wrapper main .card {
            width: 100%;
            height: auto;
            padding: 10px;
            margin-bottom: 0.7rem;
            border-radius: 6px;
            background: white;
            box-shadow: 0px 5px 15px rgba(100, 149, 237, 0.3);
        }

        .phone_wrapper main .card_large figure, .recruit_wrapper main .card_large figure {
            width: 100%;
            height: 100px;
            margin: 0;
            background: #c1f4d4;
        }

        .phone_wrapper main .card_large .desc, .recruit_wrapper main .card_large .desc {
            padding-left: 0px;
        }

        .phone_wrapper main .card_list, .recruit_wrapper main .card_list {
            display: flex;
            align-items: center;
            flex-direction: row;
        }

            .phone_wrapper main .card_list figure, .recruit_wrapper main .card_list figure {
                position:absolute;
                width: 7px;
                height: 70px;
                border-radius: 120px;
                background: #c1f4d4;
                margin: 0;
            }

            .phone_wrapper main .card_list .desc, .recruit_wrapper main .card_list .desc {
                flex: 1;
            }

        .phone_wrapper main .desc, .recruit_wrapper main .desc {
            width: 100%;
            padding: 10px 10px 10px 15px ;
        }

            .phone_wrapper main .desc .block, .recruit_wrapper main .desc .block {
                width: 40%;
                height: 7px;
                margin-bottom: 5px;
                background: #76bd91;
            }

                .phone_wrapper main .desc .block:nth-child(2), .recruit_wrapper main .desc .block:nth-child(2) {
                    width: 35%;
                    margin-bottom: 0px;
                }
.phone_wrapper .tab.active .block {
    color: #bdf7bd;
}
.tab1.active ~ .indicator {
    left: 0;
}

.tab2.active ~ .indicator {
    left: 25%;
}

.tab3.active ~ .indicator {
    left: 50%;
}

.tab4.active ~ .indicator {
    left: 75%;
}

@media (max-width:767px) {
    .phone_wrapper header .block span, .recruit_wrapper header .block span {
        font-size: 10px;
    }

    .phone_wrapper, .recruit_wrapper {
        font-size: 12px;
    }
}

@media (min-width:768px) and (max-width:1200px) {
    .phone_wrapper header .block span, .recruit_wrapper header .block span {
        font-size: 13px;
    }

    .phone_wrapper, .recruit_wrapper {
        font-size: 13px;
    }
}






.recruit_wrapper header {
    background: #bf6516; /*Changed*/
}

    .recruit_wrapper header nav .tab {
        width: 100%; /*changed*/
    }

    .recruit_wrapper header .block {
        width: 100%; /*Changed*/
    }


.recruit_wrapper main .tab_reel {
    font-size: 14px;
    width: 50%; /*Changed*/
    display: flex;
    justify-content: space-between;
    transition: 0.5s cubic-bezier(0.18, 1.14, 0.5, 1.18);
}

    .recruit_wrapper main .tab_reel .tab_panelrecruit {
        width: 100%;
        padding: 10px;
    }

.recruit_wrapper main .card_large figure {
    background: #a591f0; /*Changed*/
}

.recruit_wrapper main .card_list figure {
    background: #f2c399; /*Changed*/
}
.tab_reel .tab_panel1, .tab_reel .tab_panel2, .tab_reel .tab_panel3, .tab_reel .tab_panel4, .tab_reel .tab_panelrecruit {
    /*min-height: 300px;
    max-height: 500px;
    overflow-y: auto;*/
    overflow-y: auto;
    height: 572px;
}