.top_part {
    margin: 50px 0px 50px;
}

.top_part h1 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    margin: 0px 0px 10px;
    color: #141921;
}

.top_part p {
    margin: 0px;
}

.tabs_header {
    display: flex;
    margin: 0px -10px 20px;
}

@media screen and (max-width: 480px) {
    .tabs_header {
        flex-direction: column;
    }
}

.tabs_header .tab {
    width: 50%;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #141921;
    background-color: #fff;
    font-size: 20px;
    padding: 20px 0px 20px 0px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.tabs_header .tab:hover {
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 20px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 480px) {
    .tabs_header .tab {
        width: calc(100% - 20px);
    }
}

.tabs_header .tab i {
    height: 30px;
    padding: 0px 10px;
}

.tabs_header .tab h2 {
    z-index: 99;
    margin: 0px;
    font-size: 20px;
}

.tabs_header .tab.toolkit_tab {
    border-left: 8px solid #5d5cff;
}

@media screen and (max-width: 480px) {
    .tabs_header .tab.toolkit_tab {
        margin-bottom: 10px;
    }
}

.tabs_header .tab.toolkit_tab:before {
    content: "\f7d9";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: -35px;
    right: calc(50% - 35px);
    font-size: 30px;
    color: #5d5cff;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
}

@media screen and (max-width: 480px) {
    .tabs_header .tab.toolkit_tab:before {
        top: calc(50% - 25px);
        right: -20px;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.tabs_header .tab.coaching_tab {
    border-left: 8px solid #ffab00;
}

.tabs_header .tab.coaching_tab:before {
    content: "\f4ad";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: -35px;
    right: calc(50% - 35px);
    font-size: 30px;
    color: #ffab00;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
}

@media screen and (max-width: 480px) {
    .tabs_header .tab.coaching_tab:before {
        top: calc(50% - 25px);
        right: -20px;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.tabs_header .tab.activ_tab i {
    transform: rotate(180deg);
    transition: 0.2s linear;
}

.tab_items {
    margin-top: 30px;
}

.tab_content {
    display: flex;
}

.tab_content.toolkit_content .tabs_holder .tab_items.modal_item:hover .tab_items_inner {
    background-color: #F4F6FA;
}

.tab_content.toolkit_content .tabs_holder .tab_items:not(.modal_item):hover {
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 20px 0 rgba(0, 0, 0, 0.15);
}

.tab_content.toolkit_content .tabs_holder .tab_items {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.tab_content.toolkit_content .tabs_holder .tab_items h3 {
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0px 0px;
    font-weight: 600;
    padding-left: 8px;
}

.tab_content.toolkit_content .tabs_holder .tab_items p {
    font-size: 16px;
    color: rgb(64, 64, 64);
    margin: 10px 0px 10px;
}

.tab_content.toolkit_content .tabs_holder .tab_items .button_right_bottom {
    display: flex;
    justify-content: flex-end;
}

.tab_content.toolkit_content .tabs_holder .tab_items .button_right_bottom span {
    font-size: 14px;
    color: #4D5461;
    border: 1px solid #6F7682;
    line-height: 1;
    border-radius: 3px;
    padding: 8px 12px;
    opacity: 0;
}

.tab_content.toolkit_content .tabs_holder .tab_items .tab_items_inner {
    padding: 25px;
}

.tab_content.toolkit_content .tabs_holder .tab_items:hover .button_right_bottom span {
    opacity: 1;
    transition: ease-in-out 0.6s;
    transform: scale(1);
    opacity: 1;
    z-index: 100;
}

.tab_content.coaching_content {
    flex-direction: column;
}

.tab_content.coaching_content .tabs_holder .tab_content_coach ul {
    margin: 0px;
    padding-left: 30px;
}

.tab_content.coaching_content .tabs_holder .tab_content_coach ul li {
    margin-bottom: 10px;
}

.tab_content.coaching_content .tabs_holder .open_modal_item.tab_items {
    cursor: pointer;
}

.tab_content.coaching_content .tabs_holder .open_modal_item.tab_items.hover_grey:hover {
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 20px 0 rgba(0, 0, 0, 0.15);
}

.tab_content.coaching_content .tabs_holder .tab_items.inner_grey:hover .tab_items_inner {
    background-color: #F4F6FA;
}

.tab_content.coaching_content .tabs_holder .tab_items.grey_title_inner h3 {
    color: #a6a6a6;
}

.tab_content.coaching_content .tabs_holder .tab_items {
    padding: 10px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 8px solid #ffab00;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.tab_content.coaching_content .tabs_holder .tab_items h3 {
    font-size: 22px;
    margin: 0px 0px 0px;
    color: #141921;
    font-weight: 800;
}

.tab_content.coaching_content .tabs_holder .tab_items h3.grey_title {
    color: #a6a6a6;
}

.tab_content.coaching_content .tabs_holder .tab_items p {
    font-size: 16px;
    color: rgb(64, 64, 64);
    margin: 10px 0px 10px;
}

.tab_content.coaching_content .tabs_holder .tab_items p a {
    color: #1ebbf0;
    text-decoration: none;
}

.tab_content.coaching_content .tabs_holder .tab_items p:last-child {
    margin-bottom: 0px;
}

.tab_content.coaching_content .tabs_holder .tab_items .button_right_bottom {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

.tab_content.coaching_content .tabs_holder .tab_items .button_right_bottom span {
    font-size: 14px;
    color: #4D5461;
    border: 1px solid #6F7682;
    line-height: 1;
    border-radius: 3px;
    padding: 8px 12px;
    opacity: 0;
}

.tab_content.coaching_content .tabs_holder .tab_items .tab_items_inner {
    padding: 10px;
}

.tab_content.coaching_content .tabs_holder .tab_items:hover .button_right_bottom span {
    opacity: 1;
    transition: ease-in-out 0.6s;
    transform: scale(1);
    opacity: 1;
    z-index: 100;
}

.popup_inner {
    padding: 40px 120px 40px;
}

@media screen and (max-width: 768px) {
    .popup_inner {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 600px) {
    .popup_inner {
        padding: 30px;
    }
}

.popup_inner .popup_title {
    margin: 0px 0px 20px;
    font-size: 46px;
    line-height: 50px;
    color: #141921;
    font-weight: 800;
}

.popup_inner p {
    font-size: 16px;
    color: #404040;
    margin: 10px 0px 10px;
}

.popup_inner p a {
    color: #1ebbf0;
    text-decoration: none;
}

.container_video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25% !important;
    margin-bottom: 20px;
}

.container_video iframe {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

#aihr_posts_wrap_8.current_activ,
#aihr_posts_wrap_9.current_activ {
    position: relative;
    height: 100%;
    width: 100%;
    margin-right: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#aihr_posts_wrap_8.loading-items,
#aihr_posts_wrap_9.loading-items {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.holder_coach_tabs {
    margin-top: 60px;
}

.holder_header_tabs {
    display: flex;
    margin: 0px -10px;
}

@media screen and (max-width: 600px) {
    .holder_header_tabs {
        flex-direction: column;
        max-width: 340px;
        margin: 0 auto;
    }
}

.holder_header_tabs .coach_avatar {
    max-width: 64px;
    border-radius: 100%;
    position: absolute;
    top: -32px;
    left: calc(50% - 32px);
}

@media screen and (max-width: 600px) {
    .holder_header_tabs .coach_avatar {
        top: calc(50% - 27px);
        left: 10px;
        max-width: 54px;
    }
}

.holder_header_tabs .holder_header_tab_desc {
    padding: 35px 10px 10px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .holder_header_tabs .holder_header_tab_desc {
        padding: 20px 10px 20px 80px;
        text-align: left;
    }
}

.holder_header_tabs .holder_header_tab_desc .coach_name {
    color: #141921;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.holder_header_tabs .holder_header_tab_desc .check_availability {
    color: #1ebbf0;
    font-size: 14px;
    line-height: 1;
}

.holder_header_tabs .holder_header_tab {
    width: calc(33.3333333333% - 20px);
    cursor: pointer;
    margin: 0px 10px;
    background-color: #fff;
    border-left: 8px solid #1ebbf0;
    border-radius: 8px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

@media screen and (max-width: 600px) {
    .holder_header_tabs .holder_header_tab {
        width: calc(100% - 20px);
        margin-bottom: 10px;
    }
}

.holder_header_tabs .holder_header_tab:nth-child(2) {
    border-left: 8px solid #f45c0f;
}

.holder_header_tabs .holder_header_tab:nth-child(3) {
    border-left: 8px solid #00a0af;
}

@media screen and (max-width: 600px) {
    .holder_header_tabs .holder_header_tab:nth-child(3) {
        margin-bottom: 0px;
    }
}

.holder_content_tab {
    display: none;
}

.holder_content_tab.content_activ {
    display: block;
    padding-top: 30px;
}

.below_table p {
    margin: 0px;
}

@media screen and (max-width: 600px) {
    .below_table {
        max-width: 320px;
        margin: 0 auto;
    }
}

.image_in_content {
    max-width: 90%;
}

@media screen and (max-width: 480px) {
    .image_in_content {
        max-width: 100%;
    }
}

.image_in_content2 {
    max-width: 400px;
}

@media screen and (max-width: 480px) {
    .image_in_content2 {
        max-width: 100%;
    }
}

.tab_items>a {
    text-decoration: none;
}

.popup_content {
    font-size: 16px;
    color: #404040;
    font-weight: 400;
    line-height: 22px;
}

.popup_content p {
    margin-bottom: 20px;
}

.smaller-image {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.error_message {
    border: 2px solid #ffab00;
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto 100px;
    max-width: 600px;
    width: 100%;
    background-color: #fff7e6;
}

.error_message p {
    margin: 0px 0px 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.error_message p:last-child {
    margin: 0px;
}

.title-holder {
    padding: 14px 20px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    display: flex;
    align-items: center;
}

.tab_item_top {
    margin-bottom: 10px;
}

.tab_item_top.left_image {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 630px) {
    .tab_item_top.left_image {
        flex-direction: column;
    }
}

.tab_item_top.left_image img,
.tab_item_top.left_image span {
    width: 50%;
}

.tab_item_top.left_image img {
    padding-right: 25px;
}

@media screen and (max-width: 630px) {
    .tab_item_top.left_image img {
        padding-right: 0px;
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 630px) {
    .tab_item_top.left_image span {
        width: 100%;
        margin-top: 10px;
    }
}

.tab_item_top.left_image span p {
    margin: 0px !important;
    line-height: 24px;
}

.tab_item_top.one_column {
    display: flex;
    flex-direction: column;
}

.tab_item_top.one_column img {
    max-width: 400px;
    width: 100%;
}

.tab_item_top.one_column .tab_desc {
    margin-top: 10px;
}

.tab_item_button {
    display: flex;
    justify-content: flex-end;
}

.tab_item_button a {
    color: #3D2A80;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 8px;
    border: 2px solid #3D2A80;
}

.tab_item_button a:hover {
    background-color: #3D2A80;
    color: #fff;
}

.item_holder {
    display: flex;
    align-items: flex-start;
    padding: 12px 0px;
    border-top: 1px solid rgba(61, 42, 128, 0.1);
}

.item_holder.disabled_section {
    opacity: 0.5;
    pointer-events: none !important;
}

.item_holder:last-child {
    padding-bottom: 0px !important;
}

.item_holder .item_left {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_holder .item_right {
    flex: 1;
    display: flex;
    padding-left: 10px;
}

@media screen and (max-width: 480px) {
    .item_holder .item_right {
        flex-direction: column;
    }
}

.item_holder .item_right .item_right_desc {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item_holder .item_right .item_right_desc .title_item {
    color: #3D2A80;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}

.item_holder .item_right .item_right_desc .content_item {
    color: #605C6F;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.item_holder .item_right .item_right_button {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 480px) {
    .item_holder .item_right .item_right_button {
        margin-left: auto;
        margin-top: 10px;
    }
}

.item_holder .item_right .item_right_button .item_button {
    display: flex;
}

.item_holder .item_right .item_right_button .item_button span,
.item_holder .item_right .item_right_button .item_button a {
    color: #3D2A80;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 8px;
    border: 2px solid #3D2A80;
    cursor: pointer;
}

.item_holder .item_right .item_right_button .item_button span:hover,
.item_holder .item_right .item_right_button .item_button a:hover {
    background-color: #3D2A80;
    color: #fff;
}

.items_holder.not_top_part .item_holder:first-child {
    border-top: none;
    padding-top: 0px;
}

.career_modal_holder {
    border-radius: 12px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

.career_modal_holder .career_modal_header {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background-color: #1EBBF0;
    padding: 10px 10px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    text-transform: uppercase;
}

.career_modal_holder .career_modal_content {
    text-align: center;
    padding: 20px 25px;
}

.career_modal_holder .career_modal_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #3D2A80;
}

.career_modal_holder .career_modal_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #605C6F;
}

.career_modal_holder .career_modal_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 0px;
}

.career_modal_holder .career_modal_button span,
.career_modal_holder .career_modal_button a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1EBBF0;
    border: 1px solid #1EBBF0;
    border-radius: 40px;
    padding: 6px;
    width: 200px;
    text-decoration: none;
    cursor: pointer;
}

.career_modal_holder .career_modal_button span:hover,
.career_modal_holder .career_modal_button a:hover {
    background-color: #1EBBF0;
    color: #fff;
}

.career_modal_column:nth-child(2) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 42, 128, 0.1);
}

.text-above-table {
    font-size: 16px;
    color: #404040;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.text-above-table a {
    color: #1EBBF0;
}


/*# sourceMappingURL=career-center-template.css.map */