/* 404 page */
h1.exp-not-found-header-title {
    font-size: 100px;
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    h1.exp-not-found-header-title {
        margin-bottom: 30px;
    }

    .sidekick-row .tatsu-column-inner {
        border-width: 0px 0px 6px 0px!important;
    }
}

.exp-not-found-header {
    border-bottom: 4px solid #c6c7ca;
    width: fit-content;
    margin: 0 auto;
}

.error404 .tatsu-menu > ul > li:hover > a {
    color: inherit !important;
}

.error404 .tatsu-menu > ul > li:hover > .sub-menu-indicator svg polyline {
    stroke: rgba(49,50,51,1) !important;
}

/* leadership page modal styling */
.modal {
    display: none;
}

.modal.active {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);;
    z-index: 999999;
    background: white;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 35px;
    color: #c6c7ca;
    z-index:999999;
    cursor: pointer;
}

.overlay {
    display: none !important;
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    z-index: 90;
}

.overlay.show {
    display: block !important;
}

/* About Us Page */
.values_wrapper {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px; */
    --auto-grid-min-size: 23rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 1rem;
}


.value_box {
    box-shadow: 0px 1px 10px 0px #bbbbbb;
	display: flex;
	flex-direction: column;
	justify-content: center;
    min-height: 16rem;
    padding: 50px;
    transition: all 0.3s ease;
}

.value_box:hover {
    background: #1b1e2a;
}

.value_box p {
    color: #ffffff;
    height: 0;
    margin-top: 5px;
    visibility: hidden;
}

.value_box:hover p {
    height: auto;
    visibility: visible;
}

.value_box h4{
    color: #74a1c2;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.value_box:hover h4{
    color: #ffffff;
    text-align: left;
}

.all__post_wrapper .slick-dots {
    /* visibility: hidden; */
}
/*
    Instead of doing visibility hidden like above,
    we can only display the dots if there's more
    than one child in the pagination, we do this with the 'only-child' selector.
*/
.all__post_wrapper .slick-dots li:only-child {
    display: none;
}

@media screen and (max-width: 1024px) {
    .value_box {
        padding: 30px;
    }
    .value_box h4{
        text-align: center;
        margin-bottom: 0;
        color: #74a1c2;
        position: relative;
    }
}
@media screen and (max-width: 900px){
    .values_wrapper {
        --auto-grid-min-size: 20rem;
    }
}
@media screen and (max-width: 767px) {
    .values_wrapper {
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
    }
    .value_box {
        padding: 20px 40px;
        min-height: unset;
        position: relative;
    }
    .value_box::after {
        content: '\2304';
        transform: scaleX(1.5);
        display: inline-block;
        position: absolute;
        top: 15px;
        right: 20px;
        color: #74a1c2;
    }
    .value_box p {
        display: none;
    }
    .value_box h4{
        text-align: left;
        top: unset;
        left: unset;
        transform: unset;
    }
    .value_box:hover {
        background: unset;
    }
    .value_box:hover p{
        color: #000;
    }
    .value_box:hover h4{
        color: #74a1c2;
    }
    .value_box.opened {
        background: #ffffff;
    }
    .value_box.opened p{
        display: block;
        color: #000;
		height: auto;
        visibility: unset;
    }
    .value_box.opened h4{
        color: #74a1c2;
    }
    .value_box.opened::after {
        content: '\2304';
        transform: scaleX(1.5) rotate(180deg);
        display: inline-block;
        position: absolute;
        top: 30px;
        right: 20px;
        color: #74a1c2;
    }
    .see-more a {
        font-size: 20px !important;
        margin: -30px auto 10px;
    }
    .see-more a::after {
        content: ">";
        transform: rotate(90deg) scaleY(1.5) scaleX(0.8) scale(1.3);
        display: block;
        margin-top: 10px;
    }
    .unrivaled-opportunities {
        background: #f8f8f8;
        padding-top: 40px;
    }
}

/* benefits_list */
.benefits_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px;
    margin-top: 42px;
    width: 100vw;
}
.benefit_content {
    display: none;
}

.benefit_block {
    height: 74vh;
    overflow: hidden;
    position: relative;
    transition: height .3s ease-in;
    z-index: 0;
}
.benefit_block * {
    color: white;
    line-height: 28px;
}
.benefit_block h4 {
    font-size: 30px;
    margin: 0 0 22px 0;
    transition: all .3s ease-in;
}
.benefit_block p,
.benefit_block ul {
    font-size: 19px;
    margin: 14px 0;
}
.benefit_block:hover .block__content {
    margin-top: -74vh;
    visibility: hidden;
}
.benefit_block:hover .benefit_background {
    opacity: 1;
}

.benefit_background {
    background: radial-gradient(transparent, rgba(0, 0, 0, 0.75));
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: opacity .3s ease-in;
    width: 100%;
    z-index: -1;
}
.block__content,
.benefit_overlay {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}
.block__content {
    transition: margin-top .3s ease-in;
}
.block__content h4 {
    text-align: center;
}
.benefit_overlay ul {
    margin: 0;
    list-style-type: none;
}
.benefit_overlay .benefit_content_wrapper {
    padding: 0 5rem;
}
@media screen and (min-width: 767px) {
    .tatsu-HJgy3eMYFc {
        margin: unset !important;
    }
}
@media screen and (max-width: 1024px) {
    .benefit_block {
        height: 54vh;
    }
    .benefit_block:hover .block__content {
        margin-top: -54vh;
    }
    .benefit_block * {
        line-height: 22px;
    }
    .benefit_block h4{
        font-size: 24px;
        margin: 0 0 16px 0;
    }
    .benefit_block p,
    .benefit_block ul {
        font-size: 16px;
        margin: 10px 0;
    }
    .benefit_overlay .benefit_content_wrapper {
        padding: 0 2.5rem;
    }
}
@media screen and (max-width: 767px) {
    .benefits_wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }

    .block__content {
        display: none;
    }

    .benefit_background,
    .benefit_block:hover .benefit_background {
        opacity: 0.7;
    }

    .benefit_block {
        background: none !important;
        box-shadow: 0px 1px 10px 0px #bbbbbb;
        display: none;
        height: auto;
        overflow: unset;
        padding: 0;
        margin-bottom: 25px;

    }
    .benefit_block h4 {
        font-size: 30px;
        color: black;
        text-align: left;
    }
    .benefit_block p {
        color: black;
    }

    .benefit_content {
        display: block;
    }
    .benefit_content img {
        max-width: 100%;
        border: 0;
        -ms-interpolation-mode: bicubic;
        vertical-align: middle;
        height: auto;
    }

    .benefit_overlay {
        align-items: flex-start;
        justify-content: flex;
    }
    .benefit_overlay ul {
        padding: 0 40px;
    }
    .benefit_overlay ul li {
        color: #1b1e2a;
    }

    .benefit_overlay .benefit_content_wrapper {
        padding: 1rem 1.5rem;
    }
}
@media screen and (min-width: 767px) and (max-height: 640px) {
    .benefit_block {
        height: 345px;
    }
    .benefit_block:hover .block__content {
        margin-top: -345px;
    }
}
@media screen and (min-width: 1024px) and (max-height: 640px) {
    .benefit_block {
        height: 445px;
    }
    .benefit_block:hover .block__content {
        margin-top: -445px;
    }
}

#tatsu-header-wrap a:focus {
	border: unset!important;
	outline: unset!important;
}
