
body{
    background-color: #F8F9FA !important;
}

article{
    background-color: #F8F9FA !important;
}

.person_img{
    height: 100% !important;
    aspect-ratio: 1/1 !important;
    background-color: #E9ECEF !important;
}

/* header buttons */

.header-buttons a{
    text-decoration: none
}

.header-button{
    border: 2px solid #495057 !important;
    background-color: transparent;
    color: #343A40 !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    line-height: 1;
    border-radius: .5rem !important;
    padding: .5rem !important;
    transition: all .2s ease-in-out !important;
    border:none;
    -webkit-box-shadow: 5px 5px 6px -3px rgba(33, 37, 41, .8);
    -moz-box-shadow: 5px 5px 6px -3px rgba(33, 37, 41, .8);
    box-shadow: 5px 5px 6px -3px rgba(33, 37, 41, .8);
}

.header-button>i{
    font-size:1.2rem;
}

.header-button>span{
    color: #343A40 !important;
    transition: all .2s ease-in-out !important;
}

.header-button:hover{
    background-color: #D73348 !important;
    border: 2px solid #991E2F !important;
    color: #F8F9FA !important;
}
.header-button:hover>span{
    color: #F8F9FA !important;
}

/* rounded borders */
.rounded-front{
    border-radius: 5px 0 0 5px !important;
}

/* shadows */
.bottom-left-strong-shadow{
    -webkit-box-shadow: -10px 10px 3px -5px rgba(173, 181, 189, 1);
    -moz-box-shadow: -10px 10px 3px -5px rgba(173, 181, 189, 1);
    box-shadow: -10px 10px 3px -5px rgba(173, 181, 189, 1);
}

.bottom-left-soft-shadow{
    -webkit-box-shadow: -5px 5px 2px -2px rgba(173, 181, 189, 1);
    -moz-box-shadow: -5px 5px 2px -2px rgba(173, 181, 189, 1);
    box-shadow: -5px 5px 2px -2px rgba(173, 181, 189, 1);
}

.bottom-right-soft-shadow{
    -webkit-box-shadow: 5px 5px 2px 0px rgba(173, 181, 189, 1);
    -moz-box-shadow: 5px 5px 2px 0px rgba(173, 181, 189, 1);
    box-shadow: 5px 5px 2px 0px rgba(173, 181, 189, 1);
}

.x-bottom-soft-shadow{
    -webkit-box-shadow: 0px 3px 5px 2px rgba(173, 181, 189, 1);
    -moz-box-shadow: 0px 3px 5px 2px rgba(173, 181, 189, 1);
    box-shadow: 0px 3px 5px 2px rgba(173, 181, 189, 1);
}

/* line height */
.line-height-1{
    line-height: 1 !important;
}

/* width */
.w-fit-content{
    width: fit-content !important;
}

/* background colors */
.bg-danger{
    background-color: #991E2F !important;
}

.bg-light-gray{
    background-color: #E9ECEF !important;
}

.bg-white{
    background-color: #F8F9FA !important;
}

/* text colors */
.text-danger{
    color: #991E2F !important;
}

.text-white{
    color: #F8F9FA !important;
    max-width:100%;
    max-height:100%;
}

/* borders */
.border-white-10{
    border: solid 10px #F8F9FA;
}

.border-gray-10{
    border: solid 10px #E9ECEF;
}

/* icon colors */
.white-icon{
    filter: invert(95%) sepia(1%) saturate(1520%) hue-rotate(196deg) brightness(105%) contrast(95%) !important;
}

/* icon sizes */
.small-icon{
    max-width:1.5rem
}

.es-icon{
    max-width:1rem !important;
}

/* Session video button */
.video_button{
    align-items: center !important;
    text-align: center !important;
    transition: all 0.2s ease-in-out;
}

.video_button p{
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

.video_button i{
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
/* Big session video button */
.big_video_button:hover{
    transform: scale(1.05);
    color: grey;
}
.big_video_button h5{
    transition: all 0.2s ease-in-out;
}
.big_video_button:hover h5{
    color: #cfcfcf !important;
}

/* Session Description */
.session-description{
    font-size:12px !important; 
    text-align: justify !important;
}

/* person icon buttons */
.person_icon_button{
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    transition: all 0.2s ease-in-out;
}

.person_icon_button:hover{
    transform: scale(1.1);
    opacity: .8;
}

.person-container{
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 3rem) / 3));
    grid-gap: 1.5rem;
}

@media (max-width: 1140px){
    .person-container{
        display: grid;
        grid-template-columns: repeat(2, calc((100% - 1.5rem) / 2));
        grid-gap: 1.5rem;
    }
}

@media (max-width: 768px){
    .person-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1.5rem 0px;
    }
}

