.peer-education {
    position: relative;
    width: 100%;
    padding: 100px 0 40px 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/local/static/build/pic/hb/hybrid_head_bnr_bg.jpg');
    height: 600px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
@media only screen and (max-width: 991px) {
    .peer-education {
        padding: 100px 0 40px 0;
        height: 515px;
    }
}
@media only screen and (max-width: 767px) {
    .peer-education {
        background-image: url('/local/static/build/pic/hb/hybrid_head_bnr_bg_m.jpg');
        padding: 80px 0 80px 0;
        height: 550px;
    }
}
.peer-education.active {
    opacity: 1;
}
.peer-education__wrapper {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.peer-education__content {
    margin: 0 auto;
    max-width: 1152px;
    min-width: 320px;
    padding: 0 16px;
    width: 100%;
}
@media (min-width: 576px)
{
    .peer-education__content{
        padding: 0px 32px;
    }
}
@media (min-width: 768px)
{
    .peer-education__content{
        padding: 0px 80px;
    }
}
@media (min-width: 992px)
{
    .peer-education__content{
        padding: 0px 16px;
    }
}

.peer-education__logo {
    text-align: left;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .peer-education__logo {
    }
}
.logo_desc
{
    display: none;
}
@media (min-width: 768px)
{
    .logo_desc
    {
        display: block;
    }
    .logo_mbl
    {
        display: none;
    }
}
.peer-education__logo.active .peer-education__name {
    opacity: 1;
}
.peer-education__logo.active .peer-education__name.view-1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.peer-education__logo.active .peer-education__name.view-2 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.peer-education__logo.active svg g {
    opacity: 1;
}

.peer-education__logo-img {
    height: 203px;
    margin: 100px 50px 30px 0px;
}
@media only screen and (max-width: 991px) {
    .peer-education__logo-img {
        width: 450px;
        height: auto;
    }
}
@media only screen and (max-width: 767px) {
    .peer-education__logo-img {
        width: 75%;
        min-width: 250px;
    }
}

.peer-education__text {
    position: relative;
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    padding: 20px 0 20px 80px;
    font-family: Stem;
    font-style: normal;
    font-weight: normal;
    font-size: 45px;
    line-height: 78px;
}
.peer-education__text a {
    color: white;
    text-decoration: underline;
}
@media only screen and (max-width: 991px) {
    .peer-education__text {
        font: normal 35px/130% 'Stem', sans-serif;
        padding-left: 65px;
    }
}
@media only screen and (max-width: 767px) {
    .peer-education__text {
        font: normal 35px/130% 'Stem', sans-serif;
        padding-left: 50px;
    }
}

.peer-education__btn {
    position: relative;
    margin: 20px 0 0 0;
    text-align:left;
	padding-left: 0px;
}
@media only screen and (max-width: 991px) {
    .peer-education__btn {
        padding-left: 0px;
    }
}
@media only screen and (max-width: 767px) {
    .peer-education__btn {
        padding-left: 0px;
    }
}
.peer-education__btn .button {
    margin: 0;
    background: #20CBD4;
}
.peer-education__btn .button--rescue {
    margin-right: 40px;
    background: #20CBD4;
}

.peer-education__logo {
    -webkit-animation-name: animLeft;
    animation-name: animLeft;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.peer-education__text {
    -webkit-animation-name: animRight;
    animation-name: animRight;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0.84s;
    animation-delay: 0.84s;
}

.peer-education__btn {
    -webkit-animation-name: animOpacity;
    animation-name: animOpacity;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 1.24s;
    animation-delay: 1.24s;
}

@-webkit-keyframes animRight {
    0% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes animRight {
    0% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes animLeft {
    0% {
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes animLeft {
    0% {
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes animOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes animOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes vanish {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes vanish {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.peer-education__text {
    font-size: 23px;
}
.peer-education__btn .button--dark span
{
    color: #000;
}
.peer-education__txt
{
    max-width: 70%;
    text-transform: uppercase;
}
.peer-education__txt .line_a
{
    margin-bottom: 2rem;
    font-size: 16px;
}
.peer-education__txt .line_b
{
    font-weight: 700;
    font-size: 14px;
}
@media (min-width: 768px)
{
    .peer-education__txt .line_b
    {
        font-size: 16px;
    }
}
@media (min-width: 992px)
{
    .peer-education__txt
    {
        max-width: none;
    }
}
.bottom-sign
{
    position: absolute;
    bottom: 26px;
	right: auto;
	left: 45px;
    font-size: 0.8em;
    max-width: 90%;
    color: #253746;
	/*text-transform: uppercase;*/
}
@media(min-width: 768px)
{
    .bottom-sign
    {
        font-size: 0.8em;
        left: auto;
		right: 15px;
        bottom: 15px;
        line-height: 1.2em;
    }
    .bottom-sign img
    {
        opacity: 1;
    }
}
@media(min-width: 992px)
{
    .bottom-sign
    {
        font-size: 0.7em;
    }
}
.bottom-sign img {
    height: 28px;
    display: block;
    margin-bottom: 10px;
    backdrop-filter: blur(5px);
    opacity: 0.8;
}