@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-RPro.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Acumin Pro — Bold */
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-BdPro.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-BdPro.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nimbus Sans L";
    src: url("../fonts/NimbusSansL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Nimbus Sans L";
    src: url("../fonts/NimbusSansL-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    font-family: "Acumin Pro", system-ui, -apple-system, BlinkMacSystemFont,
        sans-serif;
}

body {
    margin: 0;
    display: border-box;
    height: 100%;
    font-size: 17px;
    line-height: 1.3;

}


.top_part {
    min-height: 100vh;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #121a23;
    overflow: hidden;
}

.top_left {
    margin-top: 60px;
    padding-left: 5%;
    margin-right: 0;
    color: #a4dba9;

}

.top_right {
    align-self: flex-end;
}

.top_right img{
    display: block;
}

.top_left ul {
    padding-left: 0;
    margin-top: 0;
    font-size: 18px;
    list-style: none;
}

.top_left .myname {
    font-family: "Nimbus Sans L", Arial, Helvetica, sans-serif;
    font-size: 5rem;

    /*border:1px solid red;*/
}

.top_left .description li {
    padding-bottom: 6px;
    padding-right: 6px;
}

.top_left .forclick {
    padding-top: 300px;
    color: #a7c9f5;
    position: relative;
}

.forclick a {
    text-decoration: none;
    color: inherit;
}

.forclick li:hover {
    color: #f8faf8;
}

.forclick li:active {
    transform: scale(0.97);
}

.forclick #copyEmailBtn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.copy-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.copy-btn:hover {
    text-decoration: underline;
}

.copy-btn:active {
    opacity: 0.6;
}

.copy-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* toast */
.toast {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    background: #f8faf8;
    color: #121a23;
    padding: 8px 14px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

.top_left .forclick li {
    padding-top: 28px;
}

.emphasis {
    font-weight: bold;
}

.lower_part {
    color: #121a23;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 8%;
}

.lower_part_title {
    font-size: 5.8rem;
    color: #a7c9f5;
}


.challenges,
.vendor_management,
.impact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.overview,
.challenge,
.vendor_content,
.impact_content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.overview_left,
.challenges_title,
.vendor_title,
.impact_title,
caption {
    font-family: "Nimbus Sans L", Arial, Helvetica, sans-serif;
    font-size: 2.1rem;
    /*width: 50%;*/
}

.overview_right {
    list-style: none;
}

.challenges_title,
.vendor_title,
.impact_title {
    align-self: center;
    text-align: center;
}

.solution_title {
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: left;
}

caption {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-family: "Nimbus Sans L", Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
}

th {
    min-width: 6rem;
}

tbody tr:nth-child(even) {
    background-color: #c7dff9;
}

th,
td {
    border: 1px solid #a7c9f5;
    padding: 8px;
}

.vendor_management {
    margin-top: 4rem;
}

.impact {
    margin-top: 4rem;
    padding-bottom: 4rem;
}

.impact_title {
    align-self: center;
    text-align: center;
}