/* 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);
    }
}

/* CARDS */
/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= card-thirteenth -- NEWS */
.b--card-fourteenth {
    display: block;
    box-shadow: 0 5px 10px 0 rgba(139, 139, 139, 0.05);
    margin-bottom: 30px;
    transition: all .5s ease-in-out;
}

.b--card-fourteenth__hd {
    position: relative;
    height: 177px;
    background: #ccc;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media all and (max-width: 992px) {
    .b--card-fourteenth__hd {
        height: 150px;
    }
}

@media all and (max-width: 768px) {
    .b--card-fourteenth__hd {
        height: 100px;
    }
}

.b--card-fourteenth__hd__artwork {
    height: 60px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    opacity: 1;
    transition: all .5s ease-in-out;
}

@media all and (max-width: 992px) {
    .b--card-fourteenth__hd__artwork {
        height: 45px;
    }
}

.b--card-fourteenth__bd {
    height: 170px;
    padding: 20px 30px;
}

@media all and (max-width: 992px) {
    .b--card-fourteenth__bd {
        height: 130px;
    }
}

.b--card-fourteenth__bd__title {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}

@media all and (max-width: 992px) {
    .b--card-fourteenth__bd__title {
        height: 40px;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }
}

.b--card-fourteenth__bd__icon {
    height: 50px;
    color: #9f9f9f;
    transition: all .5s ease-in-out;
}

.b--card-fourteenth__bd__icon::before {
    font-size: 45px;
    margin-left: -10px;
}

@media all and (max-width: 992px) {
    .b--card-fourteenth__bd__icon::before {
        font-size: 35px;
    }
}

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

@media all and (max-width: 992px) {
    .b--card-fourteenth__ft {
        display: none;
    }
}

.b--card-fourteenth__ft__icon {
    position: absolute;
    right: 12px;
    bottom: 0px;
}

.b--card-fourteenth__ft__icon::before {
    font-size: 35px;
}

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

.b--card-fourteenth:hover .b--card-fourteenth__hd__artwork, .b--card-fourteenth:focus .b--card-fourteenth__hd__artwork {
    opacity: 0;
}

.b--card-fourteenth:hover .b--card-fourteenth__bd__icon, .b--card-fourteenth:focus .b--card-fourteenth__bd__icon {
    color: #0a2d72;
}

.b--card-fourteenth:hover .b--card-fourteenth__ft, .b--card-fourteenth:focus .b--card-fourteenth__ft {
    background: #0a2d72;
    color: #ffffff;
}

/* 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;
}
