@font-face {
    font-family: 'Darker Grotesque';
    src: url('./font/DarkerGrotesque-Bold.woff2') format('woff2'),
        url('./font/DarkerGrotesque-Bold.woff') format('woff'),
        url('./font/DarkerGrotesque-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Darker Grotesque';
    src: url('./font/DarkerGrotesque-SemiBold.woff2') format('woff2'),
        url('./font/DarkerGrotesque-SemiBold.woff') format('woff'),
        url('./font/DarkerGrotesque-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Darker Grotesque';
    src: url('./font/DarkerGrotesque-Medium.woff2') format('woff2'),
        url('./font/DarkerGrotesque-Medium.woff') format('woff'),
        url('./font/DarkerGrotesque-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Inter 18pt';
    src: url('./font/Inter18pt-Medium.woff2') format('woff2'),
        url('./font/Inter18pt-Medium.woff') format('woff'),
        url('./font/Inter18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('./font/Inter18pt-Bold.woff2') format('woff2'),
        url('./font/Inter18pt-Bold.woff') format('woff'),
        url('./font/Inter18pt-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('./font/Inter18pt-Regular.woff2') format('woff2'),
        url('./font/Inter18pt-Regular.woff') format('woff'),
        url('./font/Inter18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('./font/Inter18pt-SemiBold.woff2') format('woff2'),
        url('./font/Inter18pt-SemiBold.woff') format('woff'),
        url('./font/Inter18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #115FC4;
    --secondary-color: #F4F4F4;
}

::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: #222222;
}


body {
    font-family: 'Inter 18pt', sans-serif;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.header {
    min-height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.header h1 {
    font-size: 70px;
    color: var(--primary-color);
}


.head_container {
    width: 90%;
    position: relative;
}

.nav_section {
    position: absolute;
    top: 5px;
    right: -260px;
    /* hide completely outside view */
    width: 250px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 16px 0 0 16px;
    font-size: 24px;
    font-family: "Darker Grotesque";
    transition: right 0.5s ease-in-out;
    /* smooth slide effect */
    z-index: 999;
}

.nav_section_active {
    position: absolute;
    top: 5px;
    right: 5px;
    /* visible position */
    width: 250px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 16px 0 0 16px;
    font-size: 24px;
    font-family: "Darker Grotesque";
    transition: right 0.5s ease-in-out;
    z-index: 999;
}

.nav_container {
    position: relative;
}

.nav_container img {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
}

.nav_container ul {
    margin-right: 30px;
    list-style: none;
    padding-left: 0;
}

.nav_container ul li {
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
}

.main_container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 90px;
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    filter: brightness(80%);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(100%);
}



.section_A {
    height: calc(100vh - 90px);
    padding: 30px 0;
}

.sec_a_container {
    width: 90%;
    position: relative;

}

.sec_a_container h1 {
    font-family: "Darker Grotesque";
    font-size: 78px;
    line-height: 80%;
}

.sec_a_container h1 span {
    color: var(--primary-color);
}

.sec_a_container p {
    margin-top: 30px;
    font-size: 22px;
}

.arrow_container_down {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3D3D3D;
    right: 0;
    bottom: 50px;
}

.section_B {
    height: calc(100vh - 90px);
    padding: 30px 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec_b_container {
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.sec_c_list {
    width: 100%;
    height: 100%;
}

.sec_b_container h1 {
    font-size: 44px;
    padding-left: 15px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    border-left: 5px solid var(--primary-color);
}

.sec_b_container ul {
    width: 44%;
    font-size: 22px;
}

.sec_b_container ul li {
    padding-bottom: 30px;
    list-style: none;
}

.sec_b_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_C {
    height: calc(100vh - 90px);
    padding: 30px 0;
}

.sec_c_container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec_c_container h1 {
    font-size: 44px;
    padding-right: 15px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    border-right: 5px solid var(--primary-color);
}

.sec_c_content {
    width: 60%;
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.sec_c_list {
    width: 80%;
}

.sec_c_list ul {
    padding-left: 40px;
    margin-top: 20px;
}

.sec_c_list ul li {
    padding-bottom: 30px;
    list-style: disc;
}

.section_D {
    height: calc(100vh - 90px);
    padding: 30px 0;
}

.sec_d_container {
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.sec_d_container h1 {
    width: auto;
    font-size: 44px;
    padding-left: 15px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    border-left: 5px solid var(--primary-color);
}

.sec_d_content {
    width: 85%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

.sec_d_card {
    width: calc(100% / 3);
    font-size: 22px;
    margin-bottom: 40px;
}

.sec_d_card p {
    width: 90%;
}

.sec_d_card p span {
    color: var(--primary-color);
}

.section_E {
    height: calc(100vh - 90px);
    padding: 30px 0;
}

.sec_e_container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec_e_container h1 {
    font-size: 44px;
    padding-right: 15px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    border-right: 5px solid var(--primary-color);
}

.sec_e_content {
    width: 60%;
    font-size: 22px;
}

.sec_e_list {
    width: 80%;
}

.sec_e_list ul {
    padding-left: 40px;
}

.sec_e_list ul li {
    padding-bottom: 30px;
    list-style: disc;
}

.section_F {
    height: calc(100vh - 90px);
    padding: 30px 0;
}

.sec_f_container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec_f_container h1 {
    font-size: 44px;
    padding-left: 15px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    border-left: 5px solid var(--primary-color);
}

.sec_f_content {
    width: 60%;
    font-size: 22px;
}

.sec_f_list {
    width: 80%;
}

.sec_f_list ul {
    padding-left: 30px;
}

.sec_f_list ul li {
    padding-bottom: 30px;
    list-style: disc;
}

.sec_f_list p a {
    color: var(--primary-color);
}

.section_G {
    min-height: 380px;
    padding: 50px 0 0 0;
    background: var(--secondary-color);
}

.sec_g_container {
    width: 90%;
}

.sec_g_container h5 {
    font-size: 18px;
}

.sec_g_content {
    width: 100%;
    font-size: 22px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;

}

.sec_g_list {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.sec_g_card {
    width: calc(100% / 5);
    position: relative;
}

.sec_g_card::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80px;
    background: #d7d7d7;
    top: 0;
    right: -20px;
}


.sec_g_list h1 {
    font-size: 26px;
    font-family: "Darker Grotesque";
    line-height: 99%;
    font-weight: bold;
    color: var(--primary-color);
}

.sec_g_list P {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

.arrow_container_up,
.arrow_container_down {
    position: fixed;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3D3D3D;
    right: 50px;
    bottom: -100px;
    cursor: pointer;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 1000;
    display: none
}

.arrow_container_up.show,
.arrow_container_down.show {
    bottom: 100px;
    opacity: 1;
    display: flex
}



.footer {
    padding: 160px 0 20px 0;
    font-size: 16px;
}

.footer {
    list-style: none;
}

.footer li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer li p {
    display: block;
    margin: 0;
    padding: 0 5px;
}

.social_media_content {
    display: flex;
    align-items: center;
    justify-content: end;

}

.linked_in h1 {
    margin-bottom: 10px;
}

@media (max-width: 600px) {

    body {
        font-family: 'Inter 18pt', sans-serif;
    }

    .section {
        height: auto;
    }

    .arrow_container_up,
    .arrow_container_down {
        width: 50px;
        height: 50px;
        right: 10px;
    }

    .arrow_container_up img,
    .arrow_container_down img {
        width: 50%;
    }

    .header h1 {
        font-size: 55px;
    }

    .sec_a_container h1 {
        font-family: "Darker Grotesque";
        font-size: 40px;
        line-height: 80%;
    }

    .sec_a_container p {
        font-size: 14px;
    }

    .sec_b_container,
    .sec_d_container,
    .sec_d_content,
    .sec_f_container,
    .sec_f_content,
    .sec_g_content,
    .sec_g_list {
        flex-direction: column;
    }

    .sec_b_container h1,
    .sec_c_container h1,
    .sec_d_container h1,
    .sec_e_container h1,
    .sec_f_container h1 {
        font-size: 30px;
    }

    .sec_b_container ul,
    .sec_f_container ul {
        width: 100%;
        font-size: 14px;
        margin-top: 20px;
    }

    .sec_g_card {
        width: 100%;
        margin-bottom: 10px;
    }

    .sec_b_container ul li {
        padding-bottom: 30px;
    }


    .sec_a_container img {
        width: 90%;
    }

    .sec_b_container img {
        width: 90%;
    }

    .sec_c_container img {
        width: 90%;
    }

    .sec_e_container img {
        width: 90%;
    }

    .sec_f_container img {
        width: 90%;
    }

    .sec_b_img {
        justify-content: center;
    }

    .sec_c_container h1,
    .sec_e_container h1 {
        padding-left: 15px;
        border-left: 5px solid var(--primary-color);
        border-right: none;
    }

    .sec_c_container,
    .sec_c_content,
    .sec_e_container,
    .sec_e_content {
        flex-direction: column-reverse;
    }

    .sec_c_content,
    .sec_e_content,
    .sec_d_card,
    .sec_f_content,
    .footer {
        width: 100%;
        font-size: 14px;
    }

    .sec_d_content,
    .sec_g_list {
        margin-top: 20px;
        text-align: center;
    }

    .sec_d_card {
        margin-bottom: 10px;

    }

    .sec_g_card p {
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }

    .sec_g_card p a {
        margin: 0 auto;
        display: inline-block !important;
    }

    .sec_g_card h1 {
        font-size: 26px;
    }

    .section_G {
        padding: 0;
    }

    .sec_c_list {
        flex-direction: column;
    }

    .sec_c_list,
    .sec_d_card,
    .sec_d_card p,
    .sec_e_list,
    .sec_f_list {
        width: 100%;
    }

    .sec_c_list p {
        margin-top: 20px;
    }

    .sec_c_list ul,
    .sec_e_list ul,
    .sec_f_list ul {
        padding-left: 40px;
        margin-top: 20px;
    }

    .sec_c_list ul li,
    .sec_e_list ul li,
    .sec_f_list ul li {
        padding-bottom: 20px;
        list-style: disc;
    }

    .footer {
        padding: 40px 0;
    }

    .footer li {
        flex-direction: column;
    }

    .footer li p {
        display: none;
    }

    .linked_in {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

}

@media (min-width: 601px) and (max-width: 1024px) {

    .header h1 {
        font-size: 62px;
    }

    .sec_a_container h1 {
        font-size: 75px;
        line-height: 80%;
    }

    .sec_a_container p {
        font-size: 18px;
    }

    .sec_a_container img {
        width: 75%;
    }

    .sec_b_container img {
        width: 85%;
    }

    .sec_b_img {
        justify-content: end;
    }

    .sec_b_container,
    .sec_d_container,
    .sec_f_container,
    .sec_f_content,
    .sec_g_content,
    .sec_g_list {
        flex-direction: row;
    }

    .sec_d_content {
        flex-direction: row;
    }

    .sec_b_container h1,
    .sec_c_container h1,
    .sec_d_container h1,
    .sec_e_container h1,
    .sec_f_container h1 {
        font-size: 30px;
    }

    .sec_b_container ul,
    .sec_f_container ul {
        width: 75%;
        font-size: 14px;
        padding-left: 40px;
    }

    .sec_g_card {
        width: 100%;
        margin-bottom: 20px;
    }

    .sec_b_container ul li {
        padding-bottom: 30px;
    }

    .sec_c_container h1,
    .sec_e_container h1 {
        padding-left: 15px;
        border-left: 5px solid var(--primary-color);
        border-right: none;
    }

    .sec_c_img img {
        width: 80%;
    }

    .sec_e_img img {
        width: 90%;
    }


    .sec_c_container,
    .sec_c_content,
    .sec_e_container,
    .sec_e_content {
        flex-direction: row;
    }

    .sec_c_content,
    .sec_e_content,
    .sec_d_card,
    .sec_f_content,
    .footer {
        width: 100%;
        font-size: 14px;
    }


    .sec_d_card {
        margin-bottom: 20px;
        width: 50%;
    }

    .sec_g_card p {
        font-size: 14px;
    }

    .sec_g_card h1 {
        font-size: 28px;
    }

    .sec_d_card p,
    .sec_c_list {
        width: 90%;
    }

    .sec_d_content,
    .sec_e_list,
    .sec_f_list {
        width: 80%;
    }

    .sec_f_list {
        padding-left: 40px;
    }

    .sec_c_list ul,
    .sec_e_list ul,
    .sec_f_list ul {
        padding-left: 40px;
    }

    .sec_c_list ul li,
    .sec_e_list ul li,
    .sec_f_list ul li {
        padding-bottom: 20px;
        list-style: disc;
    }

    .footer {
        padding: 100px 0 30px 0;
    }


    .social_media_content {
        display: block;
        font-size: 14px;
    }

    .social_media_content img {
        width: 25%;
    }

    .sec_g_container h5 {
        font-size: 14px;
    }

    .linked_in {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

}

@media (min-width: 1025px) and (max-width: 1440px) {

    .header h1 {
        font-size: 62px;
    }

    .sec_a_container h1 {
        font-size: 75px;
        line-height: 80%;
    }

    .sec_a_container p {
        font-size: 18px;
    }

    .sec_a_container img {
        width: 80%;
    }

    .sec_b_container img {
        width: 100%;
    }

    .sec_b_img {
        justify-content: end;
    }

    .sec_b_container,
    .sec_d_container,
    .sec_f_container,
    .sec_f_content,
    .sec_g_content,
    .sec_g_list {
        flex-direction: row;
    }

    .sec_d_content {
        flex-direction: row;
    }

    .sec_b_container h1,
    .sec_c_container h1,
    .sec_d_container h1,
    .sec_e_container h1,
    .sec_f_container h1 {
        font-size: 30px;
    }

    .sec_b_container ul,
    .sec_f_container ul {
        width: 75%;
        font-size: 18px;
        padding-left: 40px;
    }

    .sec_g_card {
        width: 100%;
        margin-bottom: 20px;
    }

    .sec_b_container ul li {
        padding-bottom: 30px;
    }

    .sec_c_container h1,
    .sec_e_container h1 {
        padding-left: 15px;
        border-left: 5px solid var(--primary-color);
        border-right: none;
    }

    .sec_c_img img {
        width: 80%;
    }

    .sec_e_img img {
        width: 90%;
    }


    .sec_c_container,
    .sec_c_content,
    .sec_e_container,
    .sec_e_content {
        flex-direction: row;
    }

    .sec_c_content,
    .sec_e_content,
    .sec_d_card,
    .sec_f_content,
    .footer {
        width: 100%;
        font-size: 14px;
    }


    .sec_d_card {
        margin-bottom: 20px;
        width: 50%;
    }

    .sec_g_card p {
        font-size: 14px;
    }

    .sec_g_card h1 {
        font-size: 30px;
    }

    .sec_d_card p,
    .sec_c_list {
        width: 90%;
    }

    .sec_d_content,
    .sec_e_list,
    .sec_f_list {
        width: 80%;
    }

    .sec_f_list {
        padding-left: 40px;
    }

    .sec_c_list ul,
    .sec_e_list ul,
    .sec_f_list ul {
        padding-left: 40px;
    }

    .sec_c_list ul li,
    .sec_e_list ul li,
    .sec_f_list ul li {
        padding-bottom: 20px;
        list-style: disc;
    }

    .footer {
        padding: 100px 0 30px 0;
    }


    .social_media_content {
        display: block;
        font-size: 14px;
    }

    .social_media_content img {
        width: 25%;
    }

    .sec_g_container h5 {
        font-size: 14px;
    }

    .linked_in {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

}

@media (min-width: 1440px) and (max-width: 1536px) {

    .section_A {
        padding: 20px 0;
    }

    .sec_a_container h1 {
        font-size: 60px;
        line-height: 80%;
    }

    .sec_a_container p {
        font-size: 18px;
    }

    .sec_a_container img {
        width: 60%;
    }

    .sec_b_container img {
        width: 90%;
    }

    .sec_b_img {
        justify-content: end;
    }

    .sec_b_container,
    .sec_d_container,
    .sec_f_container,
    .sec_f_content,
    .sec_g_content,
    .sec_g_list {
        flex-direction: row;
    }

    .sec_d_content {
        flex-direction: row;
    }

    .sec_b_container h1,
    .sec_c_container h1,
    .sec_d_container h1,
    .sec_e_container h1,
    .sec_f_container h1 {
        font-size: 30px;
    }

    .sec_b_container ul,
    .sec_f_container ul {
        width: 50%;
        font-size: 18px;
        padding-left: 40px;
    }

    .sec_g_card {
        width: calc(100% / 5);
        margin-bottom: 20px;
    }

    .sec_b_container ul li {
        padding-bottom: 30px;
    }

    .sec_c_container h1,
    .sec_e_container h1 {
        padding-left: 15px;
        border-left: 5px solid var(--primary-color);
        border-right: none;
    }

    .sec_c_img img {
        width: 90%;
    }

    .sec_e_img img {
        width: 90%;
    }


    .sec_c_container,
    .sec_c_content,
    .sec_e_container,
    .sec_e_content {
        flex-direction: row;
    }

    .sec_c_content,
    .sec_e_content,
    .sec_d_card,
    .sec_f_content {
        width: 80%;
        font-size: 18px;
    }

    .sec_g_content,
    .footer {
        font-size: 16px;
    }


    .sec_d_card {
        margin-bottom: 20px;
        width: calc(100% / 3);
    }

    .sec_g_card p {
        font-size: 14px;
    }

    .sec_g_card h1 {
        font-size: 26px;
    }

    .sec_d_card p,
    .sec_c_list {
        width: 90%;
    }

    .sec_d_content,
    .sec_e_list,
    .sec_f_list {
        width: 85%;
    }

    .sec_f_list {
        padding-left: 40px;
    }

    .sec_c_list ul,
    .sec_e_list ul,
    .sec_f_list ul {
        padding-left: 40px;
    }

    .sec_c_list ul li,
    .sec_e_list ul li,
    .sec_f_list ul li {
        padding-bottom: 20px;
        list-style: disc;
    }

    .footer {
        padding: 100px 0 30px 0;
    }


    .social_media_content {
        display: block;
        font-size: 14px;
    }

    .social_media_content img {
        width: 25%;
    }

    .sec_g_container h5 {
        font-size: 14px;
    }

    .linked_in {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 10px;
        border-right: none;
    }

}