*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    background: #fff;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.nav-items li p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.header-text span {
    font-size: 24px;
    font-weight: bold;
}
/* All styles */
.btn-group-correct{
    
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt{
    margin-top: 20px !important;
}
.btn{
    cursor: pointer;
    color: #9C052E;
    font-size: 18px;
    border: 2px solid #9C052E;
    padding: 8px 14px;
    display: inline-block;
    font-weight: 700;
    transition: all .3s ease;
    margin: 0 10px;
}

.btn:hover{
    color: #fff;
    background-color: #9C052E;
}

.btn-active{
    color: #fff;
    background-color: #9C052E;
}

.wrapper{
    padding: 0 20px;
    height: 100%;
    margin: 0 auto;
}

/* Header */

header{
    width: 100%;
    height: 18vh;
}
footer{
    width: 100%;
    height: 14vh;
    overflow: hidden;
    margin-top: 20px;
}
.footer-nav{
    width: 100%;
    height: 100%;
    background-color: #9C052E;
}
nav{
    width: 100%;
    height: 100%;
    background-color: #9C052E;
}
.nav-items{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.nav-items li{
    height: 90%;
}
.logo-image{
    height: 100%;
}
.logo-image img{
    height: 100%;
    object-fit: contain;
    padding: 10px 0;
}
.partners-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.partners-logos img{
    margin-left: 10px;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
}
main{
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.chat-hidden{
    display: none;
    width: 100%;
    height: 40vh;
}
.facebook{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
    grid-area: facebook;
}
.person{
    width: 100%;
    border: 6px solid #727B82;
    display: grid;
    grid-template-columns: 100%;
    padding: 20px 0;
    margin-bottom: 10px;
}
.active-person{
    border-color: #9C052E;
}
.person-image-contaier{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.image-wrapp{
    width: 80px;
    height: 80px;
}
.person-info-container{
    text-align: center;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}
.person-info{
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.person-info h3{
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 2px;
}
.person-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.company-name{
    color: #333333;
    margin-bottom: 10px;
}
.spicer-time{
    font-size: 28px;
    font-weight: 700;
    color: #9C052E;
    margin-bottom: 15px;
}
.spicer-title{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}
.spicer-title span{
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.social-group{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-group a{
    display: flex;
    align-items: center;
}
.social-group a:nth-child(2){
    margin-left: 10px;
}
.social-group img{
    width: 40px;
    height: 40px;
}
.flex-container{
    display: grid;
    grid-template-columns: 70fr 30fr;
    grid-template-areas: "live facebook";
    height: 100%;
    grid-column-gap: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}
.strean{
    width: 100%;
    height: 66vh;
}
.btn-group{
    flex-direction: column;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live{
    height: 100%;
    width: 100%;
    grid-area: live;
}
