@font-face {
    font-family: 'Trobika';
    src: url('fonts/Trobika-Regular.otf') format('opentype')
}

:root {
    --absolute_bg: #211b2c;
    --primary-font: "massilia", sans-serif;
    --secondary-font: "stevie-sans", sans-serif;
    --bg_geometries_opacity: 43%;
}

html, body {
    position:relative;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--absolute_bg);
	color:#FFF;
	font-family: var(--secondary-font);
}

#page_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align items to the start of the cross axis, if necessary */
    width: 100%; /* Ensures the wrapper takes the full viewport width */
    max-width: 1440px; /* Set a max-width if you want the wrapper to have a maximum size */
    margin: 0 auto;
    overflow-y: hidden;
    padding-bottom: 50px;
}

/* Top Logo  ------------------------------------------------------------------- */
#top_logo {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--absolute_bg);
}

#top_logo_img {
    max-width: 200px;
    height: auto;
    margin:15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#top_logo_img img {
    width: 100%;
    height: auto;
    max-width: inherit;
}

/* Page wrapper and background  ------------------------------------------------------------------- */
#site_wrapper {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color: var(--absolute_bg);
    max-width: 1440px;
    width: 100%;
    overflow-y: hidden;
}

#background-div {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 100%;
    background: url('images/bg_cell.svg') repeat; 
    background-color: #FAF1FF44;
    overflow: hidden;
    border-radius: 30px;
}

#page_elements {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: start;
    max-width:50%;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
	padding: 100px 150px 100px 150px;
    overflow-y: hidden;
    overflow-x: hidden;
	line-height:150%;
}

.pp_title {
	font-size: 32px;
	font-weight: 700;
}

h4 {
	font-size: 16px;
	font-weight: 700;
}

p {
	text-align: justify;
}

.flex_row {
	display:flex;
	flex-direction: row;
}

.bold {
	font-weight: 700;
}

.quote_block {

    cursor: text;
    caret-color: rgba(255, 255, 255, 0.81);
    line-height: 1.5;
    font-size: 1em;
    color: inherit;
    fill: inherit;
    outline: 0;
    box-sizing: border-box;
    border-left: 3px solid currentcolor;
    padding-left: 14px;
    padding-right: 14px;
    width: 100%;
}
.sub_title_1 {
    font-weight: 700;
}

.s_title_p {
    margin-left: 30px;
}
