@import "button.css";
/*Root*/
:root {
    --primary-color: #0D8FFF;
    --primary-gray: #F4F5F8;
}

/*General*/
* {
    box-sizing: border-box;
}

/* 
/*HEADER*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    transition: all 0.4s;
}

header a.logo {
    width: 200px;
    height: auto;
    display: flex;
    margin: 0;
}

header a.logo img {
    display: flex;
    width: 100%;
    height: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav {
    display: flex
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 10px;
    position: relative;
}

header nav ul li a {
    display: flex;
    padding: 20px;
    text-decoration: none;
    color: #000;
    margin: 0;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

header nav ul li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 12px 10px;
    border-radius: 12px;
    list-style: none;
    z-index: 9;
    width: max-content;
    flex-direction: column;
    box-shadow: 0px 3px 11px 2px #2f2e2e3b;
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s;
}

header nav ul li > ul:before {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    position: absolute;
    bottom: 100%;
    left: 40px;
}

header nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    color: #0D8FFF;
}

header nav ul li > ul li {
    margin-bottom: 5px;
}


header nav ul li ul li a {
    border-radius: 10px;
    padding: 10px 15px;
    transition: all 0.2s;
}

header nav ul li ul li a:hover {
    background-color: var(--primary-color);
    color: rgb(14, 106, 226) !important;

}

header nav li.active > a {
    color: red !important;
}

.header-action {
    display: flex
}

.header-action a, .header-action button {
    padding: 10px 30px;
    display: flex;
    border: 0;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.header-action a.login {
    border: 1px solid var(--primary-color);
    background: var(--primary-gray);
    color: #000000;
    margin-right: 20px;
}

.header-action .get-started {
    color: white;
    background: var(--primary-color)
}

.header-action .get-started-cover {
    position: relative;
}

.header-action .get-started-cover ul {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: white;
    list-style: none;
    box-shadow: 0 5px 12px rgba(131, 131, 131, 0.4);
    padding: 0;
    border-radius: 8px;
    margin: 10px 0 0;
    z-index: 9;
}

.header-action .get-started-cover ul li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    width: max-content;
}

.header-action .get-started-cover ul li:last-child {
    border-bottom: 0;
}

.header-action .get-started-cover ul li a {
    display: flex;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s;
}

.header-action .get-started-cover ul li a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.header-action .get-started-cover:hover > ul {
    opacity: 1;
    visibility: visible;
}


.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 4px 5px #100f0f21;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 9;
} */

/* ==== === === ===  PAGE BANNER === ==== ==== === ====*/

div.page-banner {
    width: 100%;
    height: 60vh;
    background: var(--primary-gray);
    padding: 0px 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.sub-page-banner {
    width: 100%;
    /*height: 20vh;*/
    position: relative;
    display: flex;
    align-items: center;
    padding: 220px 80px;
}

.sub-page-banner .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sub-page-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-page-banner .banner-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(28, 28, 28, 0.53);
}

.sub-page-banner .banner-content {
    position: relative;
    z-index: 1
}

.sub-page-banner .banner-content h1 {
    color: white;
    margin: 0 0 10px 0;
}

.sub-page-banner .banner-content h4 {
    color: white;
    margin: 0 0 10px 0;
}


.banner-content {
    display: flex;
    flex-direction: column;
    width: 55%;
}

.banner-content h1 {
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 20px;
}

.banner-content h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
}

.page-banner .banner-image {
    width: 55%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.page-banner .banner-image img {
    width: 100%;
    height: auto;
    object-position: top;
}

/* === === === SECTION === === === */
.section {
    padding: 40px 5%;
    /* margin: 40px 0; */
}

.section-gray {
    background-color: #F4F5F8;
}

.section-black {
    background-color: #000;
}

.section-black * {
    color: white;
}

.section-title {
    width: 50%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.section-title-center {
    margin: 0 auto 80px;
    justify-content: center;
    align-items: center;
}

.section-title-center > * {
    text-align: center;
}

.section-title-right {
    justify-content: end;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 900;
}

.section-title p {
    font-size: 18px;
}

.sub-section-title {
    margin-bottom: 15px;
}

.sub-section-title h3 {
    font-weight: 800
}

.sub-section-title p {

}

/*END OF SECTION*/
.image-holder {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-holder-more-info {
    position: relative;
    padding: 30px 0;

}


.more-info {
    display: flex;
    align-items: center;
    justify-items: center;
    width: 200px;
    max-width: max-content;
    position: absolute;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 20px;
    overflow-wrap: break-word;
}

.more-info h2 {
    font-weight: 900;
    font-size: 40px;
    margin: 0 10px 0 0;
}

.more-info h4 {
    font-weight: 700;
    font-size: 18px;
    word-break: break-word;
    margin: 0;
}

.more-info.more-info-top {
    left: 0;
    top: 0;
}

.more-info.more-info-bottom {
    right: 0;
    bottom: 0;
}

/* == ==== ====== ===== SECTION LIST ===== ===== ===== ==== */
.section-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-list li {
    margin-bottom: 20px;
}

.section-list li > div {
    display: flex;
}

.section-list li > div div.list-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(234, 239, 255, 0.74);
}

.section-list li > div div.list-image img {
    width: 40%;
    height: auto;
}

.section-list li > div div.list-content {
    margin-left: 30px;
}

.section-list li > div div.list-content h4 {
    font-weight: 800;
    font-size: 20px;
}

.section-list li > div div.list-content p {
    font-size: 18px;
}

/* ===== ===== ====== CARD ==== ===== ======*/
/* ===== =====  CATEGORY CARD  ===== ======*/
.category-card {
    border-radius: 6px;
    background: #F4F5F8;
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
}

.category-card h4 {
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 5px 0;
}

.category-card p {
    margin: 0 0 20px 0;
    font-size: 17px;
}

.category-card a {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
}

.category-card a i {
    margin-left: 10px;
}

.category-card a:hover {
    text-decoration: none;
}

/* ===== =====  JOB CARD  ===== ======*/
.job-card {
    border: 1px solid #BABABA;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.job-card .job-header {
    display: flex;
    align-items: center;
}

.job-card .job-header img {
    width: 40px;
    height: auto;
    margin-right: 30px;
}

.job-card .job-header .job-category {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0
}

.job-card .job-header .job-name {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    color: #383838;
}

.job-card .job-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0 0;
    border-top: 1px solid #BABABA;
}

.job-card .job-extra .job-type {
    width: max-content;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 10px;
    border-radius: 20px;
    background-color: #EFF3FF;
}

.job-card .job-extra .job-date {
    color: #494949;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* ===== =====  TESTIMONIAL CARD  ===== ======*/

.testimonial-card {
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card.gray {
    background-color: #e6e6e6;
}

.testifier {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 30px;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
}

.testifier .testifier-image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
}

.testifier .testifier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testifier .testifier-content h4 {
    font-size: 18px;
    font-weight: 700;
}

.testifier .testifier-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color)
}

/* === === === BADGE COVER ======*/
.cm-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.cm-badge li {
    width: max-content;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    border-radius: 40px;
    background-color: var(--primary-gray);
    margin-bottom: 20px;
}

.cm-badge li.active {
    background-color: var(--primary-color);
    color: rgb(34, 31, 236) !important;
}


/* ======== ======= ====== FOOTER ======= ======= ===== */
footer {
    background-color: #1F1F1F;
    /* padding: 80px 50px; */
}

footer p, footer span {
    color: white;
}

.footer-socials {
    display: flex;
    list-style: none;
    /*justify-content: flex-end;*/
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-socials li {
    margin-right: 10px;
}

.footer-socials li a {
    width: 50px;
    height: 50px;
    color: #0c0e1a;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-socials li a:hover {
    text-decoration: none;
}

footer h5 {
    font-weight: 800;
    color: white;
    margin: 0 0 30px 0;
    font-size: 20px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

footer div.newsletter {
    display: flex;
    position: relative;
}

footer div.newsletter input {
    border: 0;
    background: #FFF;
    padding: 30px 150px 30px 20px;
    border-radius: 0px;
    width: 100%;
    font-size: 16px;
    /*margin-bottom: 10px;*/
    display: block;
}

footer div.newsletter button {
    border-radius: 0px;
    background: var(--primary-color);
    border: 0;
    padding: 10px 20px;
    height: 100%;
    color: white;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
}

.copyright {
    margin-top: 10px;
}

.copyright-text {
    margin: 0;
    color: white;
    font-weight: 700;
}

/* EXTRAS */

.full-page-image-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


.full-page-image-section h2 {
    font-size: 40px;
    font-weight: 800;
}

.full-page-image-section p {
    font-size: 20px;
}

.full-page-image-section > .full-page-image-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.full-page-image-section > .full-page-image-section-content {
    width: 50%;
    height: 100%;
    margin: 0 0 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 30px 60px;

    position: relative;
    /*right: 0;*/
    /*top: 0;*/
    z-index: 2;
}


.full-page-image-section-content-list {
    position: relative;
    margin-top: 20px;
}

.full-page-image-section-content-list .accordion-button {
    color: white;
    background: transparent;
    border: none !important;
    font-weight: 700;
    font-size: 24px;
}

.full-page-image-section-content-list .accordion-button img {
    width: 25px;
    height: auto;

    margin-right: 10px;
}

.full-page-image-section-content-list .accordion-button::after {
    display: none !important;
}

.full-page-image-section-content-list .accordion-button:focus {
    border: none;
    background: transparent;
    box-shadow: none;
}

.full-page-image-section-content-list .accordion-collapse {
    border: none !important;
}

.full-page-image-section-content-list .accordion-body {
    padding-left: 50px;
    padding-top: 0px;
}


.full-page-image-section-content-list-item {
    margin-bottom: 20px;
}

.find-talent-bg {
    width: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /*max-height: 400px;*/
}

.find-talent-bg .content {
    padding: 60px 60px 60px 130px;
}

.find-talent-bg .image {
    padding: 40px;
    width: 100%;
}

.find-talent-bg > * {
    color: white;
}


.find-talent-bg .font-weight-800 {
    font-size: 60px;
}

.find-talent-bg img {
    width: 70%;
    /*margin: 0 0 0 auto;*/
    display: flex;
}

.find-talent-bg .full-image {
    height: 100%;
}

.find-talent-bg .full-image .image {
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.find-talent-bg .full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ====== FIND WORK ======== */
.find-work-testimony {
    position: relative;
    margin: 80px 20px 0;

}

.find-work-testimony .image-holder {
    border-radius: 50%;
    border: 2px solid black;
    width: 140px;
    height: 140px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.find-work-testimony .content {
    padding: 85px 30px 30px;
    border-radius: 30px;
    background: #D9D9D9;
    text-align: center;
}

/* ===== ==== ==== LEARNING RESOURCES ====== ======= ======= */

.learning-category {
    width: 100%;
    padding: 30px;
    border: 1px solid rgba(120, 117, 140, 0.16);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.learning-category img {
    width: 60px;
    margin: 0 auto 20px;
    display: block;
}

.learning-category h5 {
    font-weight: 600;
    text-align: center;
    color: #78758C;
}

.learning-category-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.learning-category-line a {
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: black;
    margin-bottom: 15px;
    margin-right: 20px;
}

.learning-category-line a:hover {
    text-decoration: none;
}

.learning-category-line a.active {
    border-bottom: 5px solid var(--primary-color)
}


/* ==== ==== LEARNING RESOURCES ==== ==== */
.learning-resource {
    width: 100%;
    background: white;
    margin-bottom: 30px;
    text-decoration: none;
}

.learning-resource .image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.learning-resource .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learning-resource .content {
    padding: 30px;
    position: relative;
}

.learning-resource .content .date {
    padding: 8px 15px;
    font-weight: 600;
    width: max-content;
    font-size: 14px;
    color: white;
    background: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    top: -20px;
    left: 10px;
}

.learning-resource .content h4 {
    font-weight: 800;
    font-size: 22px;
    color: #000000;
    text-decoration: none;
}

.learning-resource .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.learning-resource .bottom .author {
    display: flex;
    align-items: center;
}

.learning-resource .bottom .author .author-image {
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}

.learning-resource .bottom .author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learning-resource .bottom .author .author-name {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.learning-resource .bottom .comment {
    display: flex;
    align-items: center;
}

.learning-resource .bottom .comment i {
    font-size: 13px;
}

.learning-resource .bottom .comment p {
    font-weight: 400;
    margin: 0 0 0 5px;
    font-size: 13px;
}


.video {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    /*background-image: url("..");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    position: relative;
    overflow: hidden;
}

.video::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}

.video .caption {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 1;
}

.video .action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    z-index: 1;
    font-size: 40px;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.video .action i {
    pointer-events: none;
}

/*VIDEO MODAL*/
.video-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
}

.video-modal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    opacity: 0.7;
    background: transparent;
    border: 0px;
    transition: all 0.5s;
}

.video-modal .close i {
    font-size: 45px;
}

.video-modal .close:hover {
    opacity: 1
}

.video-modal iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    min-height: 700px;
    max-height: 80%;
}

.resource-blog {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;

}

.resource-blog .image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 10px;
}

.resource-blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-blog .content {
    padding: 15px;
    position: relative;
}

.resource-blog .content p {
    font-weight: 600;
    font-size: 15px;
    /*background: var(--primary-color);*/
    /*border-radius: 5px;*/
}

.resource-blog .content h4 {
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: black;
}