@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
    margin: 0;
    padding: 1;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: var(--Grays-CP7---Emphasized-BG, #fafbff);
    gap: 20px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.custom-header-container {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

header {
    display: flex;
    width: 100%;
    padding-top: 40px;
    justify-content: space-between;
    align-items: center;
}

header .actions {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #061B2B;
    font-family: "Titillium Web";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.button {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: #026B95;
    color: #fff;
}

.content {
    display: flex;
    width: 1200px;
    height: 100%;
    padding: 2.5rem 0px 5rem 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    border-radius: 10px;
    border: 1px solid var(--grays-cp-9-borders-lines, #d0d0d0);
    background: var(--Grays-CP6---White, #fff);
    box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.1);
}

.content .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.content .header .title {
    color: var(--Text-CP5---Titles, #2f3564);
    font-family: "Titillium Web";
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.content .header .subtitle {
    color: var(--Text-CP12---Running-text, #333);
    text-align: center;
    font-family: "Titillium Web";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content .services {
    display: grid;
    grid-template-columns: repeat(3, 344px);
    gap: 16px;
}


.service-title {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid var(--Grays-C3---Dividers, #dedfe4);
    background: var(--Grays-CP6---White, #fff);
    padding: 24px 24px;
}

.service-title:hover {
    background: var(--Grays-CP7---Emphasized-BG, #fafbff);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.service-title:active {
    background: var(--Grays-CN5---Selected, #f1f5fb);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

footer {
    display: flex;
    width: 100%;
    padding: 24px 0px 40px 0px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--Grays-C3---Dividers, #DEDFE4);
}

footer .social {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.t14 {
    color: var(--Text-CP12---Running-text, #333);
    font-family: "Open Sans";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.t14-sb {
    color: var(--Text-CP12---Running-text, #333);
    font-family: "Open Sans";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.t16-sb {
    color: var(--Text-CP11---Labels, #666);
    /* Open Sans SemiBold/T16-sb */
    font-family: "Open Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.page-status {
    display: None
}

.components-section {
    display: None
}

.incidents-list {
    display: None
}

.page-footer {
    display: None
}

@media screen and (max-width: 600px) {
    header{
        padding-left: 10px;
        padding-right: 10px;
    }
    footer{
        padding-left: 10px;
        padding-right: 10px;
    }
    .content .header .title {
        font-size: 1.5rem;
    }

    .content .header .subtitle {
        font-size: 1rem;
    }

    .content .services {
        grid-template-columns: repeat(1, 1fr);
    }

    .content {
        width: 100%;
        padding: 6rem 0px 6rem 0px;
    }

    footer .social {
        gap: 1rem;
    }
    header svg {
        height: auto;
        max-width: 200px;
    }
    header .actions{
        font-size: 0.8rem;
        gap: 1rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .content .header .title {
        font-size: 1.5rem;
    }
    .content .header .subtitle {
        font-size: 1rem;
    }

    .content .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .content {
        width: 100%;
        padding: 8rem 0px 8rem 0px;
    }

    footer .social {
        gap: 1rem;
    }
    header svg {
        height: auto;
        max-width: 200px;
    }
    header .actions{
        font-size: 0.8rem;
        gap: 1rem;
    }
}