/* 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 eleventh */
.b--card-eleventh {
    display: flex;
    width: 100%;
}

@media all and (max-width: 576px) {
    .b--card-eleventh {
        background-color: #fafafa;
        display: block;
        padding: 15px 25px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.b--card-eleventh__title {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    transition: all .3s ease-in-out;
}

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

@media all and (max-width: 576px) {
    .b--card-eleventh__title {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .b--card-eleventh__title p {
        font-size: 20px !important;
    }
}

.b--card-eleventh__excerpt {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    transition: all .3s ease-in-out;
}

@media all and (max-width: 576px) {
    .b--card-eleventh__excerpt {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .b--card-eleventh__excerpt p {
        color: #9f9f9f !important;
    }
}

.b--card-eleventh:hover .b--card-eleventh__title p, .b--card-eleventh:focus .b--card-eleventh__title p {
    color: #fba17e;
}

.b--card-eleventh:hover .b--card-eleventh__excerpt p, .b--card-eleventh:focus .b--card-eleventh__excerpt p {
    color: #fba17e;
}

/* ======================== variables */
/* ============================== Colors */
/* ======================== MediaQ */
/* ============================== Fonts */
/* ================================= card-tenth Join Us - Our Teams section*/
.b--card-tenth {
    box-shadow: 0 5px 10px 0 rgba(139, 139, 139, 0.05);
    border-bottom: 0px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.b--card-tenth__hd {
    height: 260px;
    position: relative;
    overflow: hidden;
}

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

.b--card-tenth__hd__img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

@media all and (max-width: 992px) {
    .b--card-tenth__hd__img-wrapper {
        height: 210px;
    }
}

.b--card-tenth__hd__img-wrapper__artwork {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 90px;
    left: 0;
    bottom: 0;
}

@media all and (max-width: 992px) {
    .b--card-tenth__hd__img-wrapper__artwork {
        height: 70px;
    }
}

.b--card-tenth__hd__wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    background-color: #ffffff;
    transition: all .5s ease-in-out;
}

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

.b--card-tenth__hd__wrapper__content {
    opacity: 0;
    padding: 50px 30px;
    height: 245px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: opacity .5s ease-out 0.3s;
}

@media all and (max-width: 992px) {
    .b--card-tenth__hd__wrapper__content {
        padding: 25px;
        -webkit-line-clamp: 9;
    }
}

.b--card-tenth__ft {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 4px solid #ffffff;
}

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

.b--card-tenth__ft__wrapper {
    margin-left: 30px;
    margin-right: 30px;
}

@media all and (max-width: 992px) {
    .b--card-tenth__ft__wrapper {
        display: flex;
        justify-content: space-between;
    }
}

.b--card-tenth__ft__wrapper__content__excerpt {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.b--card-tenth__ft__wrapper__icon {
    position: absolute;
    right: 30px;
    bottom: 50px;
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

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

@media all and (max-width: 992px) {
    .b--card-tenth__ft__wrapper__icon {
        right: 20px;
        bottom: 30px;
        opacity: 1;
    }
}

.b--card-tenth:hover, .b--card-tenth:focus {
    box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.15);
    cursor: pointer;
}

.b--card-tenth:hover .b--card-tenth__ft__wrapper__icon, .b--card-tenth:focus .b--card-tenth__ft__wrapper__icon {
    opacity: 1;
}

.b--card-tenth--is-active {
    box-shadow: 0 13px 18px 0 rgba(139, 139, 139, 0.3);
}

.b--card-tenth--is-active .b--card-tenth__hd__wrapper {
    height: 260px;
}

@media all and (max-width: 992px) {
    .b--card-tenth--is-active .b--card-tenth__hd__wrapper {
        height: 210px;
    }
}

.b--card-tenth--is-active .b--card-tenth__hd__wrapper__content {
    opacity: 1;
    transition: opacity 0s ease-out;
}

.b--card-tenth--is-active .b--card-tenth__ft {
    border-bottom: 4px solid #92f0a1;
}

.b--card-tenth--is-active .b--card-tenth__ft__wrapper__content__excerpt {
    opacity: 1;
}

.b--card-tenth--is-active .b--card-tenth__ft__wrapper__icon {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

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