/* 
    COLOR SCHEME
    #FF2200 red
    #7209B7 purple
    #3A0CA3 dark blue
    #4361EE mid blue
    #4CC9F0 light blue
*/

html,
body {
    min-height: 100%;
}

body {
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0px;
    background-image: url(/assets/background.svg), url(/assets/background2.svg);
    background-position: top, bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
}

h1,
h2,
h3 {
    line-height: 1;
}

a {
    /* color: #FF2200; */
    color: #0568fd;
    text-decoration: none;
}

a:hover {
    color: #287cfa;
}

li {
    margin-bottom: 16px;
}

.pageContent {
    /* max-width: 900px;
    margin: auto; 
    padding-left: 32px;
    padding-right: 32px; 
    margin-top: 32px;
    margin-bottom: 32px; */
    padding-left: calc(50% - 418px);
    padding-right: calc(50% - 418px);
    padding-top: 32px;
    padding-bottom: 32px;
}

.fullWidthImg {
    max-width: 200%;
    padding-left: 0px;
    padding-right: 0px;
    /* margin-top: 32px;
    margin-bottom: 32px; */
}

.fullWidth {
    max-width: 100%;
    max-height: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mainMenu {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-flow: row wrap;
}

.mainMenuItem {
    color: #000;
    margin-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
}

.mainMenuItem:hover {
    color: #333;
}

.mainMenuItem.active {
    border-bottom: #0568fd solid 2px;
}

.pageTitle {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pageTitle img {
    height: 48px;
    margin-right: 20px;
}

.contentBlock {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.numbering {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #7209B7; */
    background-color: #0568fd;
    font-weight: bold;
    color: #fff;
    border-radius: 24px;
    min-height: 48px;
    min-width: 48px;
    max-height: 48px;
    max-width: 48px;
    margin-left: -64px;
    margin-bottom: -52px;
}

.contactItem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contactImg {
    height: 40px;
    margin-bottom: 8px;
}

.infoBox {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    /* background-color: rgb(224, 244, 249); */
    border-left: 8px solid #0568fd;
}

.productImg {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contentImg {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 900px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 16px;
    }
    .pageContent {
        padding-left: 32px;
        padding-right: 32px;
    }
    .pageTitle {
        font-size: 40px;
    }
    .numbering {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 8px;
    }
    .productImg {
        height: 300px;
    }
}