@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
    margin: 10px auto;
    justify-content: center;
    /* background-color: white; */
}

.live {
    height: 100%;
    box-shadow: 0 0 2p 1px gray;
}

.admin_card {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    margin: 15px 0;
    background-color: #F5DCB6;
    box-shadow: 0 0 10px 3px gray;
    border-radius: 15px;
    /* border: 1px solid green; */
}

.admin_card.reverse {
    display: flex;
    flex-direction: row-reverse;
}

.card-img_column {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid black; */
    /* z-index: 2; */
    height: 100%;
    width: 350px;
    background-color: #f5f5dc;
    border-radius: 15px 0 0 15px;
    /* box-shadow: 0px 0px 15px 2px blue; */
    background: transparent;
}

.card-info_column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 648px;
    height: 100%;
    border-radius: 0 15px 15px 0;
    /* background-color: #F5DCB6; */
    background-size: cover;
    /* box-shadow: 0 0 10px ; */
    background: transparent;
    /* border:2px solid blueviolet */
}

.admin-card_photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 260px;
    /* border: 1px solid black; */
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 50px 6px #FD4E17;
    animation: glow 1.2s alternate infinite;
}

.admin-card_info {
    font-family: 'Merriweather', serif;
}

@keyframes glow {
    from {
        box-shadow: 0 0 50px 6px #FD4E17;
    }
    to {
        box-shadow: 0 0 50px 5px #FB7745;
    }
}

.admin-card-info_title {
    display: flex;
    justify-content: center;
    font-size: 35px;
    line-height: 130%;
    text-transform: none;
    color: #FD4E17;
}

.admin-card-info_subtitle {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 24px;
    line-height: 160%;
    text-transform: none;
}

.admin-1 {
    background-image: url('../assets/admins_photo/Drozdova.jpg');
    background-size: contain no-repeat;
}

.admin-2 {
    background-image: url('../assets/admins_photo/Slemneva.jpg');
    background-size: contain no-repeat;
}

.admin-3 {
    background-image: url('../assets/admins_photo/Latyshenok.jpg');
    background-size: contain no-repeat;
}

.admin-4 {
    background-image: url('../assets/admins_photo/Fesina.jpg');
    background-size: contain no-repeat;
}

.admin-5 {
    background-image: url('../assets/admins_photo/jan.jpg');
    background-size: contain no-repeat;
}

@media(max-width: 1175px) {
    .admin_card {
        flex-direction: column;
    }
    .admin_card.reverse {
        flex-direction: column;
    }
    .card-img_column {
        width: 100%;
    }
}

@media(max-width:750px) {
    .admin-card_photo {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .admin-card_info {
        width: 100%;
    }
    .admin-card-info_title {
        width: 100%;
        font-size: 18px;
    }
    .admin-card-info_subtitle {
        text-align: center;
        width: 100%;
        font-size: 12px;
    }
}