/* Default CSS Code */

* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --bg-primary: #047a9c;
    --bg-secondary: #fff;
    --bg-primary-semi: #008eb7;

    --text-primary: #00495a;
    --text-secondary: #fff;
    --text-secondary-muted: #ebf3f8;
    --text-primary-dark: #047a9c;
    --text-primary-semi: #008eb7;
    --text-primary-light: #7ac9e0;

    --btn-bg: #2b8c62;
    --btn-bg-hover: #157347;
    --btn-text: #fff;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:focus * {
    outline: 0;
}

button {
    cursor: pointer;
    border: 0;
    padding: 0;
    font-size: 18px;
    line-height: 27px;
}

button:focus {
    outline: 0;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
}

ul,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
}

a:hover {
    text-decoration: none;
}

.overflow {
    overflow: hidden;
}

li {
    list-style-type: none;
}

img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "IntegralCF-Regular";
    margin: 0;
    padding: 0;
    font-weight: 400;
}

h1 {
    font-size: 45px;
    line-height: 54px;
}

.heading-1 {
    font-size: 45px;
    line-height: 54px;
    color: var(--text-secondary);
}

h2 {
    font-size: 35px;
    line-height: 42px;
    color: var(--text-primary-semi);
    text-transform: uppercase;
}

h2 span {
    color: var(--text-primary);
}

.heading--light-text {
    color: var(--text-primary-light);
}

.heading--light-text span {
    color: var(--text-secondary);
}

.heading--semi-text {
    color: var(--text-primary-semi);
}

.heading--semi-text span {
    color: var(--text-primary-light);
}

.desc--light {
    color: var(--text-secondary);
}

.btn {
    font-size: 18px;
    line-height: 27px;
    padding: 10px 24px;
    width: fit-content;
    min-width: 300px;
    height: 50px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-success {
    color: var(--btn-text);
    background: var(--btn-bg);
}

.custom-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    min-width: 300px;
    height: 50px;
    padding: 12px 24px;
    color: var(--btn-text);
    background: var(--btn-bg);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-align: center;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.custom-btn:hover {
    background: #157347;
}

.hidden {
    display: none !important;
}

.custom-box-shadow {
    box-shadow: 0px -24px 28.8px 0px rgba(0, 73, 90, 0.21);
}

.custom-box-shadow--card {
    box-shadow: 0px -17.82px 26.73px 0px rgba(0, 73, 90, 0.6);
}

.custom-drop-shadow {
    filter: drop-shadow(0px -20px 30px rgba(0, 73, 90, 0.24));
}

.custom-drop-shadow--circle {
    filter: drop-shadow(0px 16px 7px rgba(0, 73, 90, 0.35));
    -webkit-filter: drop-shadow(0px 16px 7px rgba(0, 73, 90, 0.35));
}

@media (min-width: 1500px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Default CSS Code */

/* 

font-family: 'DM Sans', sans-serif;
font-family: "IntegralCF-Regular";

*/

body {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

main {
    overflow: hidden;
}

/* Header Area */

.navbar {
    padding: 16px 30px;
}

.navbar-brand {
    width: fit-content;
    height: 28px;
}

.navbar-nav .nav-item {
    margin-right: 40px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav .nav-item .nav-link {
    color: var(--text-primary-dark);
    padding: 0;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

/* Header Area */

/* Hero Area */
.carousel-item {
    height: 763px;
}

.slide-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.slide-bg1 {
    background-image: url("../images/slide-1.jpg");
}

.slide-bg2 {
    background-image: url("../images/slide-2.jpg");
}

.slide-bg3 {
    background-image: url("../images/slide-3.jpg");
}

.carousel-caption {
    right: auto;
    left: 0;
    bottom: 0;
    margin: 0px;
    padding-left: 80px;
    padding-bottom: 130px;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: flex-end;
    background: linear-gradient(0deg, #001e25 0.1%, rgba(0, 54, 67, 0) 70.43%);
}

.slider-content {
    max-width: 850px;
}

.carousel-control-next,
.carousel-control-prev {
    position: static;
    width: 50px;
    height: 50px;
    background: var(--btn-bg);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    opacity: 1;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    opacity: 1;
}

.slider-arrows {
    left: 80px;
    bottom: 52px;
}

.carousel-control-prev-icon {
    background-image: url("../images/slider-arrow-left.svg");
}

.carousel-control-next-icon {
    background-image: url("../images/slider-arrow-right.svg");
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 12px;
    height: 10px;
}

.carousel-indicators {
    right: auto;
    left: 210px;
    bottom: 73px;
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.carousel-indicators [data-bs-target] {
    width: 100px;
    height: 10px;
    margin: 0;
    background: var(--bg-primary-semi);
    border-top: 0;
    border-bottom: 0;
}
/* Hero Area */

/* Career Map */

.basic-area {
    display: flex;
    align-items: flex-start;
}

.basic-area .basic-content {
    flex: 1;
}

.basic-content h2 {
    margin-bottom: 25px;
}

.basic-content p {
    margin-bottom: 25px;
}

.career-map {
    background-image: url(../images/career.bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
}

.career-map .basic-area {
    padding-right: 18px;
}

.career-map__content {
    margin-top: -10px;
}

.career-map__content p {
    max-width: 412px;
}

.career-map__images {
    width: 696px;
}

.career-image {
    position: relative;
    z-index: 10;
    width: 641px;
}

.career-image-top-layer {
    width: 475px;
    height: auto;
    object-fit: contain;
    top: 100px;
    left: 221px;
    z-index: 50;
}

.career-thumb-left-small {
    width: 80px;
    height: auto;
    bottom: 100px;
    left: -53px;
    z-index: 50;
}

.career-thumb-left-big {
    width: 124px;
    height: auto;
    top: 112px;
    left: 135px;
    z-index: 50;
}

.career-thumb-right-small {
    width: 42px;
    height: auto;
    bottom: 94px;
    right: -20px;
    z-index: 50;
}

.career-thumb-right-big {
    width: 80px;
    height: auto;
    top: 68px;
    right: -35px;
    z-index: 1;
}

/* Career Map */

/* Interest Matcher */
.interest-matcher {
    background: radial-gradient(
            47.51% 33.95% at 50.89% 96.75%,
            #cce8f1 0%,
            rgba(204, 232, 241, 0) 100%
        ),
        #047a9c;
    height: 560px;
    padding-top: 50px;
}

.interest-matcher__content h2 {
    margin-bottom: 15px;
}

.interest-matcher__content p {
    margin-bottom: 20px;
    max-width: 794px;
}

.interest-matcher__images {
    width: 832px;
    margin-top: 25px;
}

.interest-matcher__main {
    width: 531px;
}

.interest-matcher__team {
    width: 350px;
    bottom: 15px;
    right: 0;
    object-fit: contain;
}

/* Interest Matcher */

/* Job Matcher */

.job-matcher {
    background: radial-gradient(
            44.86% 44.6% at 50% 107.4%,
            #7ac9e0 0%,
            rgba(122, 201, 224, 0) 100%
        ),
        #c8ebf6;
    height: 550px;
    position: relative;
    z-index: 50;
}

.job-matcher__content {
    margin-top: -25px;
    max-width: 408px;
}

.job-matcher__content h2 {
    max-width: 310px;
}

.job-matcher__images {
    width: 870px;
    padding-left: 20px;
    padding-bottom: 60px;
}

.job-matcher-image {
    position: relative;
    z-index: 10;
    width: 470px;
}

.job-image-top-layer {
    width: 415px;
    height: auto;
    object-fit: contain;
    bottom: 0;
    right: 70px;
    z-index: 50;
}

.job-thumb-left {
    width: 88px;
    height: auto;
    bottom: 126px;
    left: -32px;
    z-index: 50;
}

.job-thumb-middle {
    width: 137px;
    height: auto;
    top: 68px;
    right: 260px;
    z-index: 50;
}

.job-thumb-right {
    width: 88px;
    height: auto;
    bottom: 108px;
    right: 18px;
    z-index: 50;
}

/* Job Matcher */

/* Course */

.course {
    background: linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.35) 100%
        ),
        radial-gradient(
            44.86% 44.6% at 50% 107.4%,
            #7ac9e0 0%,
            rgba(122, 201, 224, 0) 100%
        ),
        #e3f3f7;
    min-height: 550px;
    position: relative;
    z-index: 50;
}

.course__content {
    margin-top: 65px;
    max-width: 433px;
}

.course__images {
    padding-left: 160px;
}

.course-image {
    position: relative;
    z-index: 10;
    width: 610px;
}

.course-top-layer {
    width: 390px;
    height: auto;
    object-fit: contain;
    bottom: 0;
    right: -5px;
    z-index: 50;
}

/* Course */

/* Bootcamp */
.bootcamp {
    height: 550px;
    padding-top: 50px;
}

.bootcamp__content h2 {
    margin-bottom: 15px;
}

.bootcamp__content p {
    margin-bottom: 20px;
    max-width: 794px;
}

.bootcamp__images {
    width: 713px;
    margin-top: 40px;
}

.bootcamp__main {
    width: 531px;
}

/* Bootcamp */

/* Footer Area */
.footer {
    background: #008eb7;
    padding-top: 70px;
    padding-bottom: 48px;
    position: relative;
    z-index: 50;
}

.footer-logo {
    width: fit-content;
    height: 32px;
}

.footer-logo img {
    object-fit: contain;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 0.5px solid var(--bg-secondary);
    border-bottom: 0.5px solid var(--bg-secondary);
    padding: 25px 0;
    margin: 25px 0;
}

.footer-nav li a {
    color: var(--text-secondary);
}

.copyrights {
    color: var(--text-secondary-muted);
    font-weight: 500;
}

.footer-bottom-nav {
    gap: 50px;
}

.footer-bottom-nav li {
    position: relative;
}

.footer-bottom-nav li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    width: 2px;
    height: 70%;
    background: var(--bg-secondary);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.footer-bottom-nav li:last-child:after {
    display: none;
}

.footer-bottom-nav li a {
    color: var(--text-secondary-muted);
    font-weight: 500;
}

/* Footer Area */
