/* HERO */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= hero primary */
.b--hero-secondary {
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: #fff;
    transition: all .5s ease-in-out;
}

@media all and (max-width: 1200px) {
    .b--hero-secondary {
        height: 550px;
    }
}

.b--hero-secondary__background-items__artwork {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

@media all and (max-width: 576px) {
    .b--hero-secondary__background-items__artwork {
        top: 70px;
        height: 45%;
    }
}

.b--hero-secondary__frontend-items {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 0;
}

@media all and (max-width: 1200px) {
    .b--hero-secondary__frontend-items {
        height: 550px;
    }
}

.b--hero-secondary__frontend-items__hd {
    position: absolute;
    width: 70%;
    min-height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    z-index: 3;
}

@media all and (max-width: 576px) {
    .b--hero-secondary__frontend-items__hd {
        width: 100%;
        height: 200px;
        top: auto !important;
        bottom: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 1740px) {
    .b--hero-secondary__frontend-items__hd {
        left: -40%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 1440px) {
    .b--hero-secondary__frontend-items__hd {
        left: -30%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 1200px) {
    .b--hero-secondary__frontend-items__hd {
        left: -20%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 992px) {
    .b--hero-secondary__frontend-items__hd {
        left: -10%;
    }
}

.b--hero-secondary__frontend-items__ft {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
}

@media all and (max-width: 576px) {
    .b--hero-secondary__frontend-items__ft {
        width: 100%;
        height: 300px;
        top: 250px;
    }
}

.b--hero-secondary__frontend-items__ft__artwork {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 25%;
    margin-top: 45px;
    height: calc(100% - 45px);
    left: 0;
    bottom: 0;
    top: 0;
    opacity: 1;
}

@media all and (max-width: 1200px) {
    .b--hero-secondary__frontend-items__ft__artwork {
        width: 40%;
    }
}

@media all and (max-width: 992px) {
    .b--hero-secondary__frontend-items__ft__artwork {
        margin-top: 70px;
        height: calc(100% - 70px);
    }
}

@media all and (max-width: 576px) {
    .b--hero-secondary__frontend-items__ft__artwork {
        width: 25%;
    }
}

.b--hero-secondary__frontend-items__ft__img-wrapper {
    margin-top: 85px;
    height: calc(100% - 85px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media all and (max-width: 1200px) {
    .b--hero-secondary__frontend-items__ft__img-wrapper {
        margin-top: 70px;
        height: calc(100% - 70px);
    }
}

.b--hero-secondary__frontend-items__arrow {
    position: absolute;
    bottom: 60px;
    left: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: all 2s;
}

.b--hero-secondary__frontend-items__arrow__title {
    font-size: 20px;
    color: #0a2d72;
    padding: 3px;
    display: inline-block;
    opacity: 0;
}

.b--hero-secondary__frontend-items__arrow__title--secondary {
    opacity: 1;
}

.b--hero-secondary__frontend-items__arrow__dash {
    position: relative;
    width: 18px;
    display: inline-block;
    height: 1px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 15px;
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
    background: #0a2d72;
    -webkit-animation: updown 4s ease-out infinite;
    animation: updown 4s ease-out infinite;
}

@media all and (max-width: 992px) {
    .b--hero-secondary__frontend-items__arrow__dash {
        margin-right: 0px;
    }
}

@-webkit-keyframes updown {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    75% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes updown {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    75% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/* HIGHLIGHT */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= hero primary */
.b--highlight-primary {
    -webkit-transform: translateY(-105px);
    transform: translateY(-105px);
    margin: 0px 15px;
}

@media all and (max-width: 992px) {
    .b--highlight-primary {
        margin: 0px 20px;
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px);
    }
}

.b--highlight-primary__bd {
    padding: 60px 75px;
}

@media all and (max-width: 992px) {
    .b--highlight-primary__bd {
        padding: 45px 25px;
    }
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= */
.b--grid-to-slide__list-group {
    margin: 0 0px !important;
}

.b--grid-to-slide__list-group__list-item {
    float: left;
    width: 33.3333%;
    padding: 0 15px;
}

@media all and (max-width: 992px) {
    .b--grid-to-slide__list-group__list-item {
        float: none;
        width: auto;
    }
}

.b--grid-to-slide__arrow-wrapper {
    display: block;
    position: absolute;
    bottom: -80px;
    top: auto;
    margin-bottom: 45px;
    cursor: pointer !important;
    transition: all .3s ease-in-out;
}

.b--grid-to-slide__arrow-wrapper .tel::before {
    font-size: 45px;
}

.b--grid-to-slide__arrow-wrapper__prev {
    left: 15px;
}

.b--grid-to-slide__arrow-wrapper__next {
    right: 15px;
}

/* CARDS */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= card-fifth */
@media all and (max-width: 992px) {
    .b--card-fifth {
        margin-right: 25px;
        margin-left: 25px;
    }
}

@media all and (max-width: 768px) {
    .b--card-fifth {
        margin-right: 0px;
        margin-left: 0px;
    }
}

.b--card-fifth__hd {
    background: rgba(238, 236, 236, 0.5);
    padding: 35px;
    width: 75%;
    min-height: 210px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff !important;
}

@media all and (max-width: 1200px) {
    .b--card-fifth__hd {
        width: 100%;
    }
}

@media all and (max-width: 992px) {
    .b--card-fifth__hd {
        width: 75%;
        margin-bottom: 15px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
    }
}

.b--card-fifth__hd:before {
    content: " ";
    color: #ffffff !important;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-style: solid;
    border-width: 50px 0 0 50px;
    border-color: transparent transparent transparent #ffffff !important;
}

.b--card-fifth__hd__img-wrapper {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.b--card-fifth__hd__img-wrapper img {
    max-width: 130px;
}

.b--card-fifth__bd {
    min-height: 240px;
    position: relative;
}

@media all and (max-width: 1200px) {
    .b--card-fifth__bd {
        min-height: 270px;
    }
}

@media all and (max-width: 992px) {
    .b--card-fifth__bd {
        min-height: 170px;
    }
}

.b--card-fifth__bd__title {
    margin-bottom: 15px;
    max-height: 105px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media all and (max-width: 992px) {
    .b--card-fifth__bd__title {
        margin-bottom: 5px;
        max-height: 60px;
    }
}

.b--card-fifth__bd__subtitle {
    margin-bottom: 20px;
    min-height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media all and (max-width: 992px) {
    .b--card-fifth__bd__subtitle {
        margin-bottom: 10px;
        min-height: 120px;
    }
}

.b--card-fifth__bd__artwork {
    height: 5px;
    width: 100%;
    background-color: #92f0a1;
    display: block;
    position: absolute;
    bottom: 0;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= card-sixth Single Protocols - Applications section*/
.b--card-sixth {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 10px 0 rgba(139, 139, 139, 0.15);
    margin-bottom: 48px;
    transition: all .3s ease-in-out;
}

@media all and (max-width: 992px) {
    .b--card-sixth {
        display: block;
        margin-bottom: 30px;
    }
}

.b--card-sixth__hd {
    min-height: 177px;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100px;
    border-bottom: solid 1px #eeecec;
}

@media all and (max-width: 992px) {
    .b--card-sixth__hd {
        min-height: 144px;
    }
}

.b--card-sixth__hd img {
    width: 100%;
    height: 100%;
}

.b--card-sixth__bd {
    padding: 45px 30px;
}

@media all and (max-width: 1200px) {
    .b--card-sixth__bd {
        min-height: 300px;
    }
}

@media all and (max-width: 992px) {
    .b--card-sixth__bd {
        padding: 30px 25px;
        min-height: auto;
    }
}

.b--card-sixth__bd__title {
    margin-bottom: 15px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    /* autoprefixer: off */
}

@media all and (max-width: 992px) {
    .b--card-sixth__bd__title {
        margin-bottom: 15px;
    }
}

.b--card-sixth__bd__content {
    height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media all and (max-width: 992px) {
    .b--card-sixth__bd__content {
        height: 95px;
        -webkit-line-clamp: 4;
    }
}

.b--card-sixth__ft {
    background: #ffffff;
    display: block;
    padding: 12px 30px;
    position: relative;
    color: #0a2d72;
    transition: all .5s ease-in-out;
}

.b--card-sixth__ft__icon {
    position: absolute;
    top: 12px;
    right: 12px;
}

.b--card-sixth__ft__icon::before {
    font-size: 25px;
}

.b--card-sixth:hover, .b--card-sixth:focus {
    box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.3);
}

@media all and (max-width: 992px) {
    .b--card-sixth:hover, .b--card-sixth:focus {
        box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.2);
    }
}

.b--card-sixth:hover .b--card-sixth__ft, .b--card-sixth:focus .b--card-sixth__ft {
    background: #92f0a1;
}

.b--card-sixth--second .b--card-sixth__hd {
    background-size: cover;
}

.b--card-sixth--third .b--card-sixth__bd {
    width: 100%;
    padding: 0;
}

@media all and (max-width: 1200px) {
    .b--card-sixth--third .b--card-sixth__bd {
        min-height: 0;
    }
}

@media all and (max-width: 992px) {
    .b--card-sixth--third .b--card-sixth__bd {
        padding: 0;
    }
}

.b--card-sixth--third .b--card-sixth__bd__hd {
    min-height: 177px;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    border-bottom: solid 1px #eeecec;
}

@media all and (max-width: 992px) {
    .b--card-sixth--third .b--card-sixth__bd__hd {
        min-height: 144px;
    }
}

.b--card-sixth--third .b--card-sixth__bd__content {
    padding: 45px 30px;
    height: auto;
    display: block;
    -webkit-line-clamp: initial;
    text-overflow: initial;
}

@media all and (max-width: 992px) {
    .b--card-sixth--third .b--card-sixth__bd__content {
        height: auto;
        -webkit-line-clamp: initial;
        padding: 30px 25px;
    }
}

.display--flex {
    display: flex;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= card-sixth Single Protocols - Applications section*/
.b--card-seventeenth {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 10px 0 rgba(139, 139, 139, 0.15);
    transition: all .3s ease-in-out;
}

@media all and (max-width: 992px) {
    .b--card-seventeenth {
        display: block;
        margin-bottom: 30px;
    }
}

.b--card-seventeenth__hd {
    padding: 37px 0;
    border-bottom: solid 1px #eeecec;
}

.b--card-seventeenth__hd__wrapper {
    min-height: 130px;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (max-width: 992px) {
    .b--card-seventeenth__hd__wrapper {
        min-height: 120px;
    }
}

.b--card-seventeenth__hd__wrapper__title {
    padding: 45px 20px;
    color: #ffffff;
}

.b--card-seventeenth__bd {
    padding: 45px 30px;
    height: 100%;
}

@media all and (max-width: 1200px) {
    .b--card-seventeenth__bd {
        min-height: 300px;
    }
}

@media all and (max-width: 992px) {
    .b--card-seventeenth__bd {
        padding: 30px 25px;
        min-height: auto;
    }
}

.b--card-seventeenth__ft {
    background: #ffffff;
    display: block;
    padding: 12px 30px;
    position: relative;
    color: #0a2d72;
    transition: all .5s ease-in-out;
}

.b--card-seventeenth__ft__icon {
    position: absolute;
    top: 12px;
    right: 12px;
}

.b--card-seventeenth__ft__icon::before {
    font-size: 25px;
}

.b--card-seventeenth:hover, .b--card-seventeenth:focus {
    box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.3);
}

@media all and (max-width: 992px) {
    .b--card-seventeenth:hover, .b--card-seventeenth:focus {
        box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.2);
    }
}

.b--card-seventeenth:hover .b--card-seventeenth__ft, .b--card-seventeenth:focus .b--card-seventeenth__ft {
    background: #92f0a1;
}

/* BUTTONS */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ======================== BUTTON VARIABLES */
/* ================================= BUTTONS */
.b--btn-primary {
    position: relative;
    padding: 0.3em calc(0.3em * 3);
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    transition: all .6s ease-out;
    /* ================================= color-options */
}

@media all and (max-width: 576px) {
    .b--btn-primary {
        padding: 0px 0px;
    }
}

.b--btn-primary__text {
    font-family: "Maven Pro", sans-serif;
    font-size: 20px;
    font-weight: 300;
    -webkit-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);
    display: inline-flex;
    align-items: center;
    transition: -webkit-transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s, -webkit-transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

@media all and (max-width: 576px) {
    .b--btn-primary__text {
        font-size: 20px;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
    }
}

.b--btn-primary__text__dash {
    position: relative;
    width: 18px;
    display: inline-block;
    height: 1px;
    margin-bottom: -5px;
    margin-left: 6px;
}

@media all and (max-width: 576px) {
    .b--btn-primary__text__dash {
        width: 15px;
        height: 1px;
    }
}

.b--btn-primary:hover, .b--btn-primary:active, .b--btn-primary:focus {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    transition: -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s, -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    text-decoration: none !important;
}

.b--btn-primary__line {
    position: absolute;
    z-index: 1;
}

@media all and (max-width: 576px) {
    .b--btn-primary__line {
        display: none;
    }
}

.b--btn-primary__line--right, .b--btn-primary__line--left {
    width: 1px;
    bottom: -1px;
    top: -1px;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}

.b--btn-primary__line--top, .b--btn-primary__line--bottom {
    height: 1px;
    left: -1px;
    right: -1px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.b--btn-primary__line--right {
    right: -1px;
    transition: -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s, -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
    -webkit-transform-origin: top;
    transform-origin: top;
}

.b--btn-primary__line--top {
    top: -1px;
    transition: -webkit-transform 0.08s linear 0.43s;
    transition: transform 0.08s linear 0.43s;
    transition: transform 0.08s linear 0.43s, -webkit-transform 0.08s linear 0.43s;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.b--btn-primary__line--left {
    left: -1px;
    transition: -webkit-transform 0.08s linear 0.51s;
    transition: transform 0.08s linear 0.51s;
    transition: transform 0.08s linear 0.51s, -webkit-transform 0.08s linear 0.51s;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.b--btn-primary__line--bottom {
    bottom: -1px;
    transition: -webkit-transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
    transition: transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
    transition: transform 0.3s cubic-bezier(1, 0, 0.65, 1.01), -webkit-transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.b--btn-primary:hover, .b--btn-primary:active, .b--btn-primary:focus {
    text-decoration: none;
    background-color: transparent;
    transition: all .6s ease-out;
}

.b--btn-primary:hover .b--btn-primary__text, .b--btn-primary:active .b--btn-primary__text, .b--btn-primary:focus .b--btn-primary__text {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: -webkit-transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s, -webkit-transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.b--btn-primary:hover .b--btn-primary__line, .b--btn-primary:active .b--btn-primary__line, .b--btn-primary:focus .b--btn-primary__line {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.b--btn-primary:hover .b--btn-primary__line--right, .b--btn-primary:active .b--btn-primary__line--right, .b--btn-primary:focus .b--btn-primary__line--right {
    transition: -webkit-transform 0.08s linear 0.4s;
    transition: transform 0.08s linear 0.4s;
    transition: transform 0.08s linear 0.4s, -webkit-transform 0.08s linear 0.4s;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.b--btn-primary:hover .b--btn-primary__line--top, .b--btn-primary:active .b--btn-primary__line--top, .b--btn-primary:focus .b--btn-primary__line--top {
    transition: -webkit-transform 0.08s linear 0.48s;
    transition: transform 0.08s linear 0.48s;
    transition: transform 0.08s linear 0.48s, -webkit-transform 0.08s linear 0.48s;
    -webkit-transform-origin: right;
    transform-origin: right;
}

.b--btn-primary:hover .b--btn-primary__line--left, .b--btn-primary:active .b--btn-primary__line--left, .b--btn-primary:focus .b--btn-primary__line--left {
    transition: -webkit-transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
    transition: transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
    transition: transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s, -webkit-transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
    -webkit-transform-origin: top;
    transform-origin: top;
}

.b--btn-primary:hover .b--btn-primary__line--bottom, .b--btn-primary:active .b--btn-primary__line--bottom, .b--btn-primary:focus .b--btn-primary__line--bottom {
    transition: -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
    transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s, -webkit-transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.b--btn-primary--color-primary .b--btn-primary {
    color: #0a2d72;
}

.b--btn-primary--color-primary .b--btn-primary__text {
    color: #0a2d72;
}

.b--btn-primary--color-primary .b--btn-primary__text__dash {
    background: #0a2d72;
}

.b--btn-primary--color-primary .b--btn-primary__line {
    background: #0a2d72;
}

.b--btn-primary--color-primary .b--btn-primary__line:hover, .b--btn-primary--color-primary .b--btn-primary__line:active, .b--btn-primary--color-primary .b--btn-primary__line:focus {
    color: #0a2d72 !important;
}

.b--btn-primary--color-primary .b--btn-primary:hover, .b--btn-primary--color-primary .b--btn-primary:active, .b--btn-primary--color-primary .b--btn-primary:focus {
    color: #0a2d72 !important;
}

.b--btn-primary--color-secondary .b--btn-primary {
    color: #92f0a1;
}

.b--btn-primary--color-secondary .b--btn-primary__text {
    color: #92f0a1;
}

.b--btn-primary--color-secondary .b--btn-primary__text__dash {
    background: #92f0a1;
}

.b--btn-primary--color-secondary .b--btn-primary__line {
    background: #92f0a1;
}

.b--btn-primary--color-secondary .b--btn-primary__line:hover, .b--btn-primary--color-secondary .b--btn-primary__line:active, .b--btn-primary--color-secondary .b--btn-primary__line:focus {
    color: #92f0a1 !important;
}

.b--btn-primary--color-secondary .b--btn-primary:hover, .b--btn-primary--color-secondary .b--btn-primary:active, .b--btn-primary--color-secondary .b--btn-primary:focus {
    color: #92f0a1 !important;
}

.b--btn-primary--color-third .b--btn-primary {
    color: #000000;
}

.b--btn-primary--color-third .b--btn-primary__text {
    color: #000000;
}

.b--btn-primary--color-third .b--btn-primary__text__dash {
    background: #000000;
}

.b--btn-primary--color-third .b--btn-primary__line {
    background: #000000;
}

.b--btn-primary--color-third .b--btn-primary__line:hover, .b--btn-primary--color-third .b--btn-primary__line:active, .b--btn-primary--color-third .b--btn-primary__line:focus {
    color: #000000 !important;
}

.b--btn-primary--color-third .b--btn-primary:hover, .b--btn-primary--color-third .b--btn-primary:active, .b--btn-primary--color-third .b--btn-primary:focus {
    color: #000000 !important;
}

.b--btn-primary--color-fourth .b--btn-primary {
    color: #424242;
}

.b--btn-primary--color-fourth .b--btn-primary__text {
    color: #424242;
}

.b--btn-primary--color-fourth .b--btn-primary__text__dash {
    background: #424242;
}

.b--btn-primary--color-fourth .b--btn-primary__line {
    background: #424242;
}

.b--btn-primary--color-fourth .b--btn-primary__line:hover, .b--btn-primary--color-fourth .b--btn-primary__line:active, .b--btn-primary--color-fourth .b--btn-primary__line:focus {
    color: #424242 !important;
}

.b--btn-primary--color-fourth .b--btn-primary:hover, .b--btn-primary--color-fourth .b--btn-primary:active, .b--btn-primary--color-fourth .b--btn-primary:focus {
    color: #424242 !important;
}

.b--btn-primary--color-fifth .b--btn-primary {
    color: #ffffff;
}

.b--btn-primary--color-fifth .b--btn-primary__text {
    color: #ffffff;
}

.b--btn-primary--color-fifth .b--btn-primary__text__dash {
    background: #ffffff;
}

.b--btn-primary--color-fifth .b--btn-primary__line {
    background: #ffffff;
}

.b--btn-primary--color-fifth .b--btn-primary__line:hover, .b--btn-primary--color-fifth .b--btn-primary__line:active, .b--btn-primary--color-fifth .b--btn-primary__line:focus {
    color: #ffffff !important;
}

.b--btn-primary--color-fifth .b--btn-primary:hover, .b--btn-primary--color-fifth .b--btn-primary:active, .b--btn-primary--color-fifth .b--btn-primary:focus {
    color: #ffffff !important;
}

/* FORM */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
.b--form-group {
    margin-bottom: 20px;
    position: relative;
    box-shadow: none !important;
}

@media all and (max-width: 992px) {
    .b--form-group {
        margin-bottom: 20px;
    }
}

.b--form-group__upload {
    border: 0;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    width: 100%;
    cursor: pointer;
    font-family: "Maven Pro", sans-serif;
    color: #ffffff;
    font-size: 16px;
    resize: none;
    display: block;
    position: relative;
}

.b--form-group__upload__title {
    height: 18px;
    width: 90%;
    display: block;
    overflow: hidden;
    line-height: 1;
}

.b--form-group__upload__artwork {
    position: absolute;
    right: 0;
    top: 5px;
}

.b--form-group__upload__artwork::before {
    font-size: 30px;
    color: #ffffff;
}

.b--form-group__upload__real-input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.b--form-group__upload__real-input--has-error ~ .b--form-group__line {
    background-color: #f97d4d;
    width: 100%;
    transition: 0.4s;
    bottom: -1px !important;
}

.b--form-group__upload--has-content {
    border-bottom: 1px solid transparent !important;
}

.b--form-group__upload--has-content .b--form-group__line {
    width: 100% !important;
    transition: 0.4s !important;
}

.b--form-group__upload .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group__upload:hover {
    cursor: pointer;
}

.b--form-group__upload:focus {
    outline: none !important;
}

.b--form-group__upload:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

.b--form-group__input {
    border: 0;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    width: 100%;
    font-family: "Maven Pro", sans-serif;
    color: #ffffff;
    font-size: 16px;
    resize: none;
    display: block;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

@media all and (max-width: 992px) {
    .b--form-group__input {
        font-size: 14px;
        padding: 10px 0;
    }
}

.b--form-group__input:-webkit-autofill, .b--form-group__input:-webkit-autofill:hover, .b--form-group__input:-webkit-autofill:focus, .b--form-group__input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a2d72 inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.b--form-group__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__input:focus {
    color: #ffffff;
}

.b--form-group__input:focus ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group__input:not(:placeholder-shown) {
    width: 100%;
}

.b--form-group__input:not(:placeholder-shown) ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group__input ~ .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group__input--has-error ~ .b--form-group__line {
    background-color: #f97d4d;
    width: 100%;
    transition: 0.4s;
}

.b--form-group__input:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

.b--form-group__select {
    background: none;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    font-family: "Maven Pro", sans-serif;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

.b--form-group__select__artwork {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.b--form-group__select__artwork::before {
    font-size: 30px;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.b--form-group__select:invalid {
    color: rgba(255, 255, 255, 0.7);
}

.b--form-group__select:valid {
    color: #ffffff;
}

.b--form-group__select:valid ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group__select ~ .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group__select--has-error ~ .b--form-group__line {
    background-color: #f97d4d;
    width: 100%;
    transition: 0.4s;
}

.b--form-group__select:hover {
    cursor: pointer;
}

.b--form-group__select:focus {
    outline: none !important;
}

.b--form-group__select:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

.b--form-group--inverted .b--form-group__upload {
    border: 0;
    padding: 15px 0;
    font-family: "Maven Pro", sans-serif;
    border-bottom: 1px solid #0a2d72;
    background: transparent;
    color: rgba(5, 16, 35, 0.7);
    font-size: 16px;
    resize: none;
    display: block;
    position: relative;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

.b--form-group--inverted .b--form-group__upload__title {
    height: 18px;
    width: 90%;
    display: block;
    overflow: hidden;
    line-height: 1;
}

.b--form-group--inverted .b--form-group__upload__artwork {
    position: absolute;
    right: 0;
    top: 5px;
}

.b--form-group--inverted .b--form-group__upload__artwork::before {
    font-size: 30px;
    color: #0a2d72;
}

.b--form-group--inverted .b--form-group__upload__real-input {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
}

.b--form-group--inverted .b--form-group__upload__real-input--has-error ~ .b--form-group__line {
    background-color: #f97d4d !important;
    width: 100% !important;
    transition: 0.4s;
    bottom: -1px !important;
}

.b--form-group--inverted .b--form-group__upload--has-content {
    border-bottom: 1px solid transparent !important;
}

.b--form-group--inverted .b--form-group__upload--has-content .b--form-group__line {
    width: 100% !important;
    transition: 0.4s !important;
}

.b--form-group--inverted .b--form-group__upload .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__upload:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

.b--form-group--inverted .b--form-group__input {
    border: 0;
    padding: 12px 0;
    border-bottom: 1px solid #0a2d72;
    background: transparent;
    width: 100%;
    color: #051023;
    font-size: 16px;
    font-family: "Maven Pro", sans-serif;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

@media all and (max-width: 992px) {
    .b--form-group--inverted .b--form-group__input {
        font-size: 14px;
        padding: 10px 0;
    }
}

.b--form-group--inverted .b--form-group__input:-webkit-autofill, .b--form-group--inverted .b--form-group__input:-webkit-autofill:hover, .b--form-group--inverted .b--form-group__input:-webkit-autofill:focus, .b--form-group--inverted .b--form-group__input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
    -webkit-text-fill-color: #000000 !important;
}

.b--form-group--inverted .b--form-group__input::-webkit-input-placeholder {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__input::-moz-placeholder {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__input:-ms-input-placeholder {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__input::-ms-input-placeholder {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__input::placeholder {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__input:focus {
    color: #051023;
}

.b--form-group--inverted .b--form-group__input:focus ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__input:not(:placeholder-shown) {
    width: 100%;
}

.b--form-group--inverted .b--form-group__input:not(:placeholder-shown) ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__input--has-error ~ .b--form-group__line {
    background-color: #f97d4d !important;
    width: 100% !important;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__input ~ .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__input:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

.b--form-group--inverted .b--form-group__select {
    background: none;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
    padding: 12px 0;
    border-bottom: 1px solid #0a2d72;
    font-size: 16px;
    color: rgba(5, 16, 35, 0.7);
    position: relative;
    font-family: "Maven Pro", sans-serif;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

.b--form-group--inverted .b--form-group__select__artwork {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.b--form-group--inverted .b--form-group__select__artwork::before {
    font-size: 30px;
    color: #0a2d72;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.b--form-group--inverted .b--form-group__select:invalid {
    color: rgba(5, 16, 35, 0.7);
}

.b--form-group--inverted .b--form-group__select:valid {
    color: #051023;
}

.b--form-group--inverted .b--form-group__select:valid ~ .b--form-group__line {
    width: 100%;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__select ~ .b--form-group__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #92f0a1;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__select--has-error ~ .b--form-group__line {
    background-color: #f97d4d !important;
    width: 100% !important;
    transition: 0.4s;
}

.b--form-group--inverted .b--form-group__select:focus .b--rotate {
    display: none !important;
    opacity: 0 !important;
}

input:required {
    box-shadow: none !important;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= Form message */
.b--message {
    height: 23px;
    overflow: hidden;
    /* ================================= color options */
}

.b--message__artwork::before {
    line-height: 0;
    font-size: 25px;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    margin-right: 7px;
}

.b--message--success {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}

.b--message--success-inverted {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}

.b--message--success .b--message__artwork {
    color: #92f0a1;
}

.b--message--success-inverted .b--message__artwork {
    color: #0a2d72;
}

.b--message--error .b--message__artwork {
    color: #fba17e;
}

/* SLIDER */
.tns-outer {
    padding: 0 !important;
}

.tns-outer [hidden] {
    display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
    cursor: pointer;
}

.tns-slider {
    transition: all 0s;
}

.tns-slider > .tns-item {
    box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
    white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
    content: '';
    display: table;
    clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
    float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
    margin-right: -100%;
}

.tns-no-calc {
    position: relative;
    left: 0;
}

.tns-gallery {
    position: relative;
    left: 0;
    min-height: 1px;
}

.tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    transition: opacity 0s, -webkit-transform 0s;
    transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

.tns-gallery > .tns-slide-active {
    position: relative;
    left: auto !important;
}

.tns-gallery > .tns-moving {
    transition: all 0.25s;
}

.tns-autowidth {
    display: inline-block;
}

.tns-lazy-img {
    transition: opacity 0.6s;
    opacity: 0.6;
}

.tns-lazy-img.tns-complete {
    opacity: 1;
}

.tns-ah {
    transition: height 0s;
}

.tns-ovh {
    overflow: hidden;
}

.tns-visually-hidden {
    position: absolute;
    left: -10000em;
}

.tns-transparent {
    opacity: 0;
    visibility: hidden;
}

.tns-fadeIn {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 0;
}

.tns-normal, .tns-fadeOut {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
}

.tns-vpfix {
    white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
    display: inline-block;
}

.tns-t-subp2 {
    margin: 0 auto;
    width: 310px;
    position: relative;
    height: 10px;
    overflow: hidden;
}

.tns-t-ct {
    width: calc(100% * 70 / 3);
    position: absolute;
    right: 0;
}

.tns-t-ct:after {
    content: '';
    display: table;
    clear: both;
}

.tns-t-ct > div {
    width: calc(100% / 70);
    height: 10px;
    float: left;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
.b--slick-slider-primary {
    padding: 15px 0 35px !important;
    overflow: hidden;
}

@media all and (max-width: 576px) {
    .b--slick-slider-primary {
        padding-bottom: 20px;
    }
}

.b--slick-slider-primary .slick-list {
    overflow: visible;
}

.b--slick-slider-primary__ft {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

@media all and (max-width: 576px) {
    .b--slick-slider-primary__ft {
        display: none;
    }
}

.b--slick-slider-primary__arrows::before {
    transition: all .5s ease-in-out;
    font-size: 85px;
    color: #0a2d72;
    cursor: pointer;
}

.b--slick-slider-primary__arrows--arrow-next:hover::before {
    -webkit-transform: translate(10px);
    transform: translate(10px);
    transition-delay: 0.3s;
    color: #051023;
}

.b--slick-slider-primary__arrows--arrow-prev:hover::before {
    transition-delay: 0.3s;
    -webkit-transform: translate(-10px);
    transform: translate(-10px);
    color: #051023;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
    display: none;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= */
@media all and (max-width: 992px) {
    .b--slider__protocol-chip {
        margin-right: 25px;
        margin-left: 25px;
    }
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__item {
        opacity: 1;
    }
}

.b--slider__protocol-chip__item__img-wrapper {
    position: relative;
    min-width: 100%;
    width: 100%;
    max-height: 362px;
    height: 362px;
    overflow: hidden;
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__item__img-wrapper {
        max-height: 275px;
        height: 275px;
    }
}

.b--slider__protocol-chip__item__img-wrapper__img {
    position: absolute;
    -o-object-fit: fit;
    object-fit: fit;
    top: 0;
    left: 0;
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__item__img-wrapper__img {
        -o-object-fit: cover;
        object-fit: cover;
        height: 275px;
        min-width: 100%;
    }
}

.b--slider__protocol-chip__item__link {
    color: #000000;
    position: relative;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.b--slider__protocol-chip__item__link:after {
    content: " ";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: #fba17e;
    transition: all .3s ease-in-out;
}

.b--slider__protocol-chip__item__link:hover, .b--slider__protocol-chip__item__link:focus {
    color: #fba17e;
}

.b--slider__protocol-chip__item__link:hover:after, .b--slider__protocol-chip__item__link:focus:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.b--slider__protocol-chip__item + .tns-slide-active {
    opacity: 1 !important;
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__item + .tns-slide-active {
        margin-left: -25px;
    }
}

.b--slider__protocol-chip .slick-arrow {
    display: none !important;
}

.b--slider__protocol-chip__arrow-wrapper {
    display: block;
    position: absolute;
    top: -30px;
    width: 30px;
    height: 28px;
    cursor: pointer !important;
    transition: all .3s ease-in-out;
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__arrow-wrapper {
        bottom: -20px;
        top: auto;
        margin-bottom: 45px;
    }
}

.b--slider__protocol-chip__arrow-wrapper .tel::before {
    font-size: 45px;
}

.b--slider__protocol-chip__arrow-wrapper__prev {
    right: 90px;
}

.b--slider__protocol-chip__arrow-wrapper__prev:hover, .b--slider__protocol-chip__arrow-wrapper__prev:focus {
    -webkit-transform: translate(-10px) scale(1);
    transform: translate(-10px) scale(1);
    transition-delay: 0.3s;
}

@media all and (max-width: 992px) {
    .b--slider__protocol-chip__arrow-wrapper__prev {
        left: 15px;
    }
}

.b--slider__protocol-chip__arrow-wrapper__next {
    right: 30px;
}

.b--slider__protocol-chip__arrow-wrapper__next:hover, .b--slider__protocol-chip__arrow-wrapper__next:focus {
    -webkit-transform: translate(10px) scale(1);
    transform: translate(10px) scale(1);
    transition-delay: 0.3s;
}

/* SLIDER */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
.b--wrapper-a {
    display: flex;
    flex-wrap: wrap;
}

@media all and (max-width: 992px) {
    .b--wrapper-a {
        display: block;
    }
}

.b--wrapper-a .b--grid-to-slide__list-group__list-item {
    display: flex;
}

@media all and (max-width: 992px) {
    .b--wrapper-a .b--grid-to-slide__list-group__list-item {
        display: block;
    }
}
