@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/01-Light-font.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/02-Light-Italic-font.ttf) format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/03-Semilight-font.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/04-Semilight-Italic-font.ttf) format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/05-Regular-font.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/06-Italic-font.ttf) format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/07-Semibold-font.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/08-Semibold-Italic-font.ttf) format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/09-Bold.ttf) format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/10-Bold-Italic-font.ttf) format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/11-Black-font.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PenzilFont';
    src: url(websiteAssets/font/SEGOE-UI/12-Black-Italic-font.ttf) format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/* ------------------------------------------------------------------------ 
------------------------------------------------------------------------ */
html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    color: #800066;
    font-size: 20px;
    font-family: 'PenzilFont', sans-serif;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                    /*-- HEADER SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
header {
    grid-column: 1/2;
    grid-row: 1/2;
}
#homeBtn {
    display: block;
    width: 90%;
    height: 90%;
    padding: 0;
    margin: 5% 0 5% 10%;
    border-bottom: 3px solid #0d4040;
    background: transparent url(../websiteAssets/logos/logoPrimeGrayScale.png) no-repeat center/cover ;
    opacity: 0.5;
    transition: opacity 1s ease;
}
#homeBtn:hover {
    opacity: 1;
    background: transparent url(../websiteAssets/logos/logoPrime.png) no-repeat center/cover ;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                    /*-- UPDATE SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#update {
    grid-column: 1/2;
    grid-row: 2/3;
    position: relative;
    width: 90%;
    height: 95%;
    margin-left: 10%;
    color: #0d4040;
}
#update p {
    position: absolute;
    width: auto;
    height: auto;
    top: 2%;
    right: 0;
    text-align: right;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#update p:hover {
    opacity: 1;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                    /*-- CONTACT SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#contactInfo {
    grid-column: 1/2;
    grid-row: 5/6;
    position: relative;
    width: 90%;
    height: 95%;
    margin-left: 10%;
    color: #0d4040;
    border-bottom: 3px solid #0d404060;
}
#contactInfo p {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 2%;
    right: 0;
    text-align: right;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#contactInfo p:hover {
    opacity: 1;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                    /*-- PAGE TAG SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#pageTag {
    grid-column: 2/4;
    grid-row: 1/2;
    position: relative;
    width: 100%;
    height: 100%;
}
#pageTagContainer {
    position: relative;
    width: 90%;
    height: 100%;
    margin-left: 5%;
    border-bottom: 3px solid #0d404060;
    color: #0d4040;
}
#pageTagContainer h1 {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    left: 1%;
    bottom: 20%;
    margin: 0;
    padding: 0;
    border: 0;
    font: normal 500 2rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#pageTagContainer h1:hover{
    opacity: 1;
}
#pageTagContainer p {
    display: block;
    position: absolute;
    width: 100%;
    height: 9%;
    left: 1%;
    bottom: 6%;
    margin: 0;
    padding: 0;
    border: 0;
    font: normal 100 1rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#pageTagContainer p:hover{
    opacity: 1;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                    /*-- AGREEMENT SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#agreementConditions {
    grid-column: 2/4;
    grid-row: 2/6;
    position: relative;
    width: 90%;
    height: 99%;
    margin-left: 5%;
    color: #0d4040;
    text-align: justify;
    border-bottom: 3px solid #0d404060;
}
#agreementConditions h2 {
    display: inline-block;
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    margin: 2%;
    padding: 0;
    border-bottom: 3px solid #0d404095;
    font: normal 500 2rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#agreementConditions h2:hover {
    opacity: 1;
}
#agreementConditions p {
    display: inline-block;
    position: absolute;
    width: 50%;
    height: auto;
    margin-left: 2%;
    padding: 0;
    border: 0;
    font: normal 100 1rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#agreementConditions p:first-of-type {
    top: 7%;
    left: 0;
}
#agreementConditions p:nth-of-type(2) {
    width: 95%;
    top: 68%;
    left: 0;
    color: #800066;
    font: normal 100 1rem/1.25 'PenzilFont', sans-serif;
    text-align: center;
}
#agreementConditions p:nth-of-type(3) {
    width: 95%;
    bottom: 1%;
    left: 0;
}
#agreementConditions p:hover {
    opacity: 1;
}
.highlitedWords {
    font: normal 900 0.8rem/1 'PenzilFont', sans-serif;
    color: #800066;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                /*-- TABLE OF CONTENT SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#tableOfContent {
    grid-column: 3/4;
    grid-row: 2/5;
    position: relative;
    width: 80%;
    height: 73%;
    margin: 17% 0 0 15%;
    color: #0d4040;
    text-align: justify;
    border-top: 3px solid #0d404060;
    border-bottom: 3px solid #0d404060;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#tableOfContent::-webkit-scrollbar {
    display: none;
}
#tableOfContent h3 {
    display: block;
    position: absolute;
    top: 1%;
    left: 5%;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font: normal 500 1rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    border-bottom: 3px solid #0d404095;
}
#tableOfContent h3:hover {
    opacity: 1;
}
#contentBookmarks {
    position: absolute;
    width: 95%;
    height: 90%;
    top: 7%;
    left: 10%;
}
.bookmarks {
    display: block;
    width: 90%;
    height: auto;
    margin: 0;
    padding: 0;
    margin: 1%;
    color: #0d4040;
    font: normal 100 0.7rem/1 'PenzilFont', sans-serif;
    text-decoration: none;
    overflow-wrap: break-word;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.bookmarks:hover {
    opacity: 1;
    font: normal 500 0.7rem/1 'PenzilFont', sans-serif;
}
.bookmarks:active {
    opacity: 1;
    color: #800066;
    font: normal 500 0.7rem/1 'PenzilFont', sans-serif;
}
/* ------------------------------------------------------------------------------------------------- */
                                                                        /*-- CONTENT SECTION --*/
/* ------------------------------------------------------------------------------------------------- */
#contentContainer {
    grid-column: 4/6;
    grid-row: 2/6;
    position: relative;
    width: 90%;
    height: 99%;
    margin-left: 5%;
    color: #0d4040;
    text-align: justify;
    border-top: 3px solid #0d404060;
    border-bottom: 3px solid #0d404060;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#contentContainer h2 {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 2%;
    padding: 0;
    border-bottom: 3px solid #0d404095;
    font: normal 500 2rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
#contentContainer h2:hover {
    opacity: 1;
}
.contentParagraphs {
    width: 90%;
    height: auto;
    margin: 4%;
    font: normal 100 1rem/1 'PenzilFont', sans-serif;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.contentParagraphs p i {
    color: #800066;
}
.contentParagraphs p strong {
    font: normal 700 1rem/1 'PenzilFont', sans-serif;
}
.contentParagraphs p small {
    display: block;
    margin-left: 5%;
}
.contentParagraphs p abbr {
    font: italic 700 0.8rem/1 'PenzilFont', sans-serif;
    text-decoration: none;
}
.contentParagraphs:hover {
    opacity: 1;
}
