:root {
    --white-color: #FFFFFF;

    /* IFPP COLORS */
    --ifpp-purple: #252161;
    --ifpp-black: #000000;
    --ifpp-blue:#0080C8;
    --ifpp-green: #00A651;
    --ifpp-red: #ED334E;
    --ifpp-orange:#FBB030;

    --light-grey: #F9F9F9;
    --default-border-color: #D2D8D9;
}
* {
	margin: 0;
	box-sizing: inherit;
}
*:before, *:after {
	box-sizing: inherit;
}
html, body {
	height: 100%;
	box-sizing: border-box;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, textarea, p, blockquote, th, td {
	padding: 0;
	margin: 0;
}
fieldset, img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul {
	list-style: none;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-weight: normal;
	font-style: normal;
}
strong {
    font-weight: 500;
}
em {
	font-style: italic;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
}
iframe {
	border: none;
	margin: 0;
	padding: 0;
}
body, td, th {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
	font-size: 16px;
    font-style: normal;
}
body {
	background-color:#FFF;
	margin: 0;
}
body.maintenance {
	background:#fff;
}
body.removeScrollBar {
    overflow:hidden !important;
}
a:link, a:visited, a:active {
	color: var(--ifpp-blue);
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: none;
	color: var(--ifpp-green);
}
.clr {
	clear: both;
	font-size: 1px;
	height: 1px;
}
/* float clearing for IE6 */
* html .clearfix {
	height: 1%;
	overflow: visible;
}
/* float clearing for IE7 */
*+html .clearfix {
	min-height: 1%;
}
/* float clearing for everyone else */
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	font-size: 0;
}
#wrapper {
	width: 100%;
	min-height: calc(100vh - 350px);
	margin: 0 auto;
	padding: 0;
}
@media only screen and (max-width: 1199px) {
    #wrapper {
        margin: 0 auto;
    }
}
.container {
    max-width: 1600px;
}
header {
    padding: 20px 0;
	position:relative;
	z-index:1;
    background-color: rgba(255,255,255,.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    height: 140px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
header .logo img {
    height: 100px;
}
header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header .navigation .extra-menu {
    width: 100%;
    text-align: right;
}
header .navigation .extra-menu .btn {
    width: 180px;
}
header .navigation .social_media {
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}
header .navigation .social_media ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
}
header .navigation .social_media ul li a:link,
header .navigation .social_media ul li a:active,
header .navigation .social_media ul li a:visited {
    color: var(--ifpp-green);
}
header .navigation .social_media ul li a:hover {
    color: color-mix(in srgb, var(--ifpp-green) 90%, black);
}
header .social_media .fa-facebook-f {
    color: #4267B2;
}
header .social_media .fa-youtube {
    color: #FF0033;
}
header .social_media .fa-instagram {
    color: #0C1014;
}

header .school_area {
    margin: 0 0 0 10px;
    display: flex;
    flex-direction: column;
}
header .school_area .btn {
    border-radius: 28px;
    padding: 10px 20px;
    width: 180px;
}
#menu_opener {
    position: relative;
    touch-action: manipulation;
    z-index: 9999999;
}
header .menu_toggle {
    display: none;
}
@media only screen and (max-width: 1199px) {
    header .menu_toggle {
        display: block;
    }
    header .school_area {
        margin: 0 30px 0 20px;
    }
    header .navigation .social_media ul {
        margin-bottom: 0;
    }
}
#main-navigation .nav-link,
#main-navigation .dropdown-item {
    font-size: 20px;
    font-weight: 300;

    &:link, &:visited, &:active {
        color: var(--ifpp-green);
    }
    &:hover {
        color: var(--ifpp-black);
    }
}
#main-navigation .dropdown-item:focus {
    background-color: var(--bs-dropdown-link-hover-bg);
}
#main-navigation .dropdown-menu {

    background-color: rgba(255,255,255,1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
@media only screen and (min-width: 1199px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .2s ease;
    }
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
header .menu_toggle .lines-wrapper{
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    outline: none;
}
header .menu_toggle .line{
    position: absolute;
    width: 34px;
    height: 3px;
    border-radius: 999px;
}
header .menu_toggle .top{
    top: 10px;
    background-color: var(--ifpp-blue);
}
header .menu_toggle .middle{
    top: 20px;
    background-color: var(--ifpp-green);
    transition: transform .35s cubic-bezier(.68,-0.55,.27,1.55);
}
header .menu_toggle .bottom{
    top: 30px;
    background-color: var(--ifpp-red);
}
header .menu_toggle .lines-wrapper.open .middle{
    transform: translateX(-8px);
}
@media only screen and (max-width: 767px) {
    header .navigation .social_media,
    header .navigation .school_area {
        display: none;
    }
}
#main-menu {
    display: none;
    background-color: #FFF;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: scroll;
}
#main-menu .menu-lines{
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    transform: translateX(calc(35vw));
}
#main-menu .menu-lines svg{
    width: min(100vw, 1708px);
    height: auto;
    display: block;
}
#main-menu.open {
    display: flex;
    align-items: flex-start;
}
#menu-logo {
    position: relative;
    width: 150px;
}
#main-menu .container {
    display: block;
    position: relative;
}
#main-menu .content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: calc(100vh - 80px);
    margin-top: 35px;
}
#main-menu .menu-navigation ul {
    -moz-column-count: 2;
    -moz-column-gap: 30px;
    -webkit-column-count: 2;
    -webkit-column-gap: 30px;
    column-count: 2;
    column-gap: 30px;
}
#main-menu .menu-navigation ul li {
    font-size: 40px;
    font-weight: 300;
}
#main-menu .menu-navigation ul li a:link,
#main-menu .menu-navigation ul li a:active,
#main-menu .menu-navigation ul li a:visited {
    color: var(--ifpp-purple);
}
#main-menu .menu-navigation ul li a:hover {
    color: var(--ifpp-green);
}
#main-menu .mobile-extras {
    position: absolute;
    right: 0;
    bottom: 0;
}
#main-menu .mobile-extras .school_area {
    margin: 0;
}
#main-menu .mobile-extras .social_media {
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 20px 0 0;
}
#main-menu .mobile-extras .social_media ul {
    text-align: center;
}
#main-menu .mobile-extras .social_media ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
}
#main-menu .mobile-extras .social_media ul li a:link,
#main-menu .mobile-extras .social_media ul li a:active,
#main-menu .mobile-extras .social_media ul li a:visited {
    color: var(--ifpp-green);
}
#main-menu .mobile-extras .social_media ul li a:hover {
    color: color-mix(in srgb, var(--ifpp-green) 90%, black);
}
#slideshow {
    height: 100vh;
    overflow: hidden;
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
    #main-menu .menu-navigation ul li {
        font-size: 30px;
    }
}
@media only screen and (max-width: 1500px) {
    #slideshow {
        margin-top: 110px;
        height: auto;
        overflow: visible;
    }
}
@media only screen and (max-width: 767px) {
    #main-menu .content {
        display: block;
        height: auto;
        margin-top: 10px;
    }
    #main-menu .menu-navigation {
        margin: 140px auto 20px;
    }
    #main-menu .mobile-extras {
        position: relative;
        margin: 10px 15vw;
    }
    #main-menu .menu-navigation ul {
        -moz-column-count: 1;
        -moz-column-gap: 20px;
        -webkit-column-count: 1;
        -webkit-column-gap: 20px;
        column-count: 1;
        column-gap: 20px;
    }
    #main-menu .menu-navigation ul li {
        font-size: 22px;
        text-align: center;
    }
    #main-menu .mobile-extras .social_media ul {
        text-align: center;
    }
    #menu-logo {
        width: 120px;
    }
    #main-menu .menu-lines {
        transform: translateX(calc(35vw + 20px));
    }
}
#passport-values {
    padding: 100px 0 0;
    position: relative;
}
#passport-values svg {
    width: 45vw;
}
#passport-values .passport {
    position: absolute;
    width: 50%;
    top: 140px;
    left: 32%;
    transform: translateX(-32%);
    opacity: 0;
}
#passport-values .text {
    position: absolute;
    right: 10%;
    top: 100px;
    width: 40%;
    font-weight: 300 !important;
}
#passport-values .text h2 {
    font-size: 60px;
    color: var(--ifpp-purple);
}
#passport-values .text h3 {
    font-size: 40px;
    color: var(--ifpp-green);
    margin: 20px auto 30px;
}
#passport-values .text p,
#ifpp-olympia-club p {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 20px;
}
#ifpp-olympia-club p {
    line-height: 1.2;
}
#ifpp-olympia-club .btn {
    border-radius: 28px;
    padding: 10px 20px;
}
#ifpp-olympia-club .moto {
    color: var(--ifpp-purple);
    font-weight: 400;
    font-size: 36px;
    text-align: center;
}
.ifpp-award {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 80%;
    margin: 0 auto 40px;
}
.ifpp-award .text {
    max-width: 40%;
}
.ifpp-award .photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 60%;
}
.ifpp-award .photos img {
    max-height: 400px;
    box-shadow: 0 0 0 1px var(--default-border-color), 0 12px 30px rgba(0,0,0,0.2);
}
#school_data_modal .modal-body p,
#personnel_data_modal .modal-body p {
    font-size: 18px;
    margin-bottom: 15px;
}
#school_data_modal .modal-body h2,
#personnel_data_modal .modal-body h2 {
    font-size: 20px;
    color: var(--ifpp-purple);
    font-weight: 600;
    margin-bottom: 15px;
}
#school_data_modal .modal-body ul,
#personnel_data_modal .modal-body ul {
    margin-left: 30px;
}
#school_data_modal .modal-body ul li ,
#personnel_data_modal .modal-body ul li {
    font-size: 18px;
    margin-bottom: 15px;
    list-style-type: square;
}
#school_data_modal .modal-body ol li ,
#personnel_data_modal .modal-body ol li {
    font-size: 18px;
    margin-bottom: 15px;
    list-style-type: decimal;
}
#school_data_modal ul li:nth-child(5n + 1)::marker,
#personnel_data_modal ul li:nth-child(5n + 1)::marker {
    color: var(--ifpp-blue);
}
#school_data_modal ul li:nth-child(5n + 2)::marker,
#personnel_data_modal ul li:nth-child(5n + 2)::marker {
    color: var(--ifpp-black);
}
#school_data_modal ul li:nth-child(5n + 3)::marker,
#personnel_data_modal ul li:nth-child(5n + 3)::marker {
    color: var(--ifpp-red);
}
#school_data_modal ul li:nth-child(5n + 4)::marker,
#personnel_data_modal ul li:nth-child(5n + 4)::marker {
    color: var(--ifpp-orange);
}
#school_data_modal ul li:nth-child(5n + 5)::marker,
#personnel_data_modal ul li:nth-child(5n + 5)::marker {
    color: var(--ifpp-green);
}

#school_data_modal .modal-title,
#personnel_data_modal .modal-title {
    font-size: 26px;
    color: var(--ifpp-purple);
}
@media only screen and (max-width: 1300px) {
    .ifpp-award {
        max-width: 90%;
    }
    #passport-values .passport img {
        max-height: 400px;
    }
}
@media only screen and (max-width: 1199px) {
    .ifpp-award {
        flex-direction: column;
        gap: 0;
        margin: 0 auto 20px;
    }
    .ifpp-award .text {
        max-width: 100%;
    }
    .ifpp-award .photos {
        max-width: 100%;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 991px) {
    #passport-values {
        padding: 30px 0 0;
    }
    #passport-values .passport {
        position: absolute;
        width: calc(100% - 60px);
        top: 20px;
        left: 60px;
        transform: translateX(0%);
        opacity: 0;
    }
    #passport-values .text {
        position: relative;
        right: 0;
        top: 0;
        padding: 0 30px;
        width: 100%;
        margin-bottom: 30px;
    }
    #passport-values svg {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .ifpp-award .text {
        text-align: center;
    }
    .ifpp-award .photos {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }
}
@media only screen and (max-width: 1660px) {
    #passport-values > .container-fluid {
        overflow-x: hidden;
    }
    #passport-values .text h2 {
        font-size: 42px;
        color: var(--ifpp-purple);
    }
    #passport-values .text h3 {
        font-size: 24px;
    }
    #passport-values .text p,
    #ifpp-olympia-club p {
        font-size: 18px;
    }
}
#ifpp-olympia-club {
    background-color: #F8F8F8;
    padding: 50px 0;
}
#ifpp-olympia-club h2 {
    font-size: 60px;
    font-weight: 400;
    color: var(--ifpp-green);
    text-align: center;
    margin-bottom: 10px;
}
#ifpp-values-lines {
    visibility: hidden;
}
#ifpp-values-lines path {
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media only screen and (max-width: 767px) {
    #passport-values .passport img {
        max-height: 360px;
    }
    #ifpp-olympia-club h2 {
        font-size: 42px !important;
    }
}
.mm-categories {
    display: none;
}
#mm_menu {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}
@media (max-width: 1199px) {
    .mm-categories {
        display: flex;
        align-items: center;
        justify-content: end;
    }
}
#mobile_menu {
    display: none !important;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: var(--ifpp-blue);
    color: #fff;
    z-index: 2;
    padding-top: 140px;
}
#mobile_menu.open {
    display: flex !important;
}
#mobile_menu .navigation_container ul li {
    font-size: 26px;
    color: #fff;
    margin: 10px auto;
    text-transform: uppercase;
    text-align: center;
}
#mobile_menu .navigation_container {
    height: auto;
    width: 90%;
}
#mobile_menu .navigation_container ul li a {
    color: #fff;
    position: relative;
    display: block;
    text-align: center;
    font-size: 26px;
}
#mobile_menu .navigation_container ul li ul li a {
    font-size: 18px;
}

#mobile_menu .navigation_container ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#mobile_menu .navigation_container ul li a:hover {
    color: var(--ifpp-green);
}
#mobile_menu .navigation_container .dropdown span {
    float: right;
}
#mobile_menu .navigation_container .dropdown span:hover {
    color: var(--ifpp-green);
    cursor: pointer;
}
#mobile_menu .socials {
    margin-top: 80px;
}
#mobile_menu .navigation_container ul li .submenu {
    margin-bottom: 15px;
    display: none;
}
#mobile_menu .navigation_container ul li .submenu.open {
    display: block;
}
#mobile_menu .navigation_container ul li .submenu li {
    font-size: 14px;
}

.first-section {
    margin-top: 150px !important;
    position: relative;
}
.page-section {
    margin-bottom: 100px;
}
.page-section h1,
.page-section h2 {
    font-size: 60px;
    font-weight: 300;
    color: var(--ifpp-purple);
    margin-bottom: 20px;
}
.page-section h1 {
    margin-bottom: 0 !important;
}
.page-section h3 {
    font-size: 36px;
    font-weight: 300;
    color: var(--ifpp-green);
    margin-bottom: 20px;
}
.page-section p {
    font-size: 28px;
    font-weight: 200;
    line-height: 32px;
    margin-bottom: 26px;
}
.page-section ul li,
.page-section ol li {
    font-size: 28px;
    font-weight: 200;
}
.page-section ul {
    margin: 0 50px 30px;
}
.page-section ul li {
    list-style: disc;
}
.page-section ul li:nth-child(5n + 1)::marker {
    color: var(--ifpp-blue);
}
.page-section ul li:nth-child(5n + 2)::marker {
    color: var(--ifpp-black);
}
.page-section ul li:nth-child(5n + 3)::marker {
    color: var(--ifpp-red);
}
.page-section ul li:nth-child(5n + 4)::marker {
    color: var(--ifpp-orange);
}
.page-section ul li:nth-child(5n + 5)::marker {
    color: var(--ifpp-green);
}
.page-section .smaller p {
    font-size: 22px;
    line-height: 26px;
}
.page-section .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.page-section .section-title svg {
    width: calc(100% - 300px)
}
#what-we-do.page-section .section-title {
    margin-bottom: 30px;
}
#what-we-do.page-section .section-title svg {
    width: calc(100% - 400px);
}
#what-we-do.page-section h1,
#news.page-section h1,
#login.page-section h1 {
    margin-bottom: 0;
}
#section-lines,
#section-lines1,
#section-lines2{
    max-width: 70% !important;
    position: absolute;
    right: 0;
}
#news #section-lines,
#login #section-lines {
    max-width: 80% !important;
    position: absolute;
    right: 0;
}
#news.article #section-lines {
    max-width: 100% !important;
    position: absolute;
    right: 0;
}
article .description p img {
 border-radius: 28px;
}
#our-vision {
    background-color: #F8F8F8;
    padding: 85px 0;
    border-radius: 50px;
}
#the-team .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#the-team .section-title svg {
    width: calc(100% - 300px)
}
#the-team .section-title h2 {
    margin-bottom: 0;
}
#the-team p {
    margin-bottom: 10px;
}
#what-we-do #section-lines {
    max-width: 70% !important;
}
#passport-of-values #section-lines {
    max-width: 62% !important;
}
@media only screen and (max-width: 767px) {
    .page-section .section-title {
        display: block;
        text-align: center;
        margin-bottom: 50px;
    }
    .section-title {
        display: flex;
        flex-direction: column;;
        align-items: center;
        justify-content:start;
    }
    #section-lines,
    #news #section-lines,
    #login #section-lines{
        max-width: 90% !important;
        width: 100% !important;
        position: absolute;
        left: initial;
        right: 0;
    }
    #passport-of-values #section-lines {
        max-width: 90% !important;
        right: 0;
        left: initial;
        position: absolute;
    }
    .page-section ul li,
    .page-section ol li {
        font-size: 18px;
        font-weight: 200;
    }
}
.team-groups {
    margin: 40px auto;
    padding: 30px 40px;
    border-radius: 40px;
    border: 1px solid var(--ifpp-green);
}
.team-groups .member-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.team-groups .member-wrapper .member .fullname {
    font-size: 30px;
    font-weight: 600;
    max-width: 180px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.team-groups .member-wrapper .member .position {
    font-weight: 300;
    max-width: 200px;
    line-height: 1.2;
}
#hep-ifpp.team-groups .member-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#hep-ifpp.team-groups .member-wrapper.hep {
    margin-bottom: 30px;
}
#hep-ifpp.team-groups .member-wrapper .member {
    min-width: initial;
}
#hep-ifpp.team-groups .member-wrapper .logo {
    margin-left: 80px;
}
#hep-ifpp.team-groups .member-wrapper .logo img,
#scientific-committee.team-groups .member-wrapper .logo img {
    max-height: 100px;
}
#hep-ifpp.team-groups .member-wrapper .member .fullname,
#hep-ifpp.team-groups .member-wrapper .member .position,
#the-operational-team.team-groups .member-wrapper .member .fullname,
#the-operational-team.team-groups .member-wrapper .member .position{
    max-width: 100%;
}
#the-operational-team.team-groups .member-wrapper {
    justify-content: flex-start;
}
#the-operational-team.team-groups .member-wrapper .member {
    min-width: calc(100% /3);
    max-width: calc(100% / 3) !important;
    margin: 20px 0;
}
#the-operational-team.team-groups .member-wrapper .member .fullname {
    max-width: 100%;
}
#the-operational-team .sub-section {
    font-size: 30px;
    color: var(--ifpp-blue);
}
#scientific-committee.team-groups .member-wrapper {
    justify-content: flex-start;
}
#scientific-committee.team-groups .member-wrapper .member {
    min-width: calc(100% /3);
    max-width: calc(100% / 3) !important;
    margin: 20px 0;
}
#scientific-committee.team-groups .member-wrapper .member .fullname {
    max-width: 100%;
}
#scientific-committee.team-groups .member-wrapper .member .position {
    max-width: 100%;
}
#scientific-committee.team-groups .member-wrapper .member .country,
#the-operational-team.team-groups .member-wrapper .member .country{
    color: var(--ifpp-green);
}
#scientific-committee h3.ambassadors {
    color: var(--ifpp-purple);
}

#olympia-club-schools {
    background-color: #B6E5FD;
    padding: 50px 0;
    border-top-left-radius: 50px; !important;
    border-top-right-radius: 50px; !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
#olympia-club-schools h3 {
    text-align: center;
    margin-bottom: 30px;
}
#olympia-club-schools.page-section {
    margin-bottom: 0;
}
#olympia-club-schools h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--ifpp-green);
}
#olympia-club-schools p {
    font-size: 22px;
    line-height: 1.2;
}
#olympia-club-schools .global-network-ambassadors {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
#olympia-club-schools .promote-partners {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}
#olympia-club-schools .global-network-ambassadors .ambassador {
    min-width: 25%;
    margin: 20px auto;
}
#olympia-club-schools .global-network-ambassadors .ambassador .fullname,
#olympia-club-schools .promote-partners .partner .fullname {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}
#olympia-club-schools .global-network-ambassadors .ambassador .country,
#olympia-club-schools .promote-partners .partner .country {
    font-size: 20px;
    color: var(--ifpp-green);
}
#olympia-club-schools .promote-partners .partner {
    width: 50%;
    margin: 20px 0;
}
#olympia-club-schools .btn-outline-purple,
#how-was-it-born .btn-outline-purple,
#how-to-get-it .btn-outline-purple,
#olympia-club .btn-outline-purple {
    border-radius: 28px;
    padding: 10px 20px;
}
#ifpp-olympia-club-schools {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#ifpp-olympia-club-schools .continent {
    width: 50%;
}
#ifpp-olympia-club-schools .continent ul li .school {
    font-weight: 600;
    display: block;
    line-height: 1;
    cursor: pointer;
    text-decoration: underline;
}
#ifpp-olympia-club-schools .continent ul li .city,
#ifpp-olympia-club-schools .continent ul li .country {
    font-size: 22px;
}


.passport-model h3 {
    font-weight: 500;
}
#join-us h2 {
    font-size: 40px;
    color: var(--ifpp-green);
}
#education h2 {
    font-size: 40px;
    color: var(--ifpp-blue);
}

#news .list .article figure {
    border-radius: 28px;
    overflow-x: hidden;
}
#news .list .article figure.article-placeholder {
    aspect-ratio: 4 / 3;
    background: #f8f9fb;
    border: 1px solid #dbdbdb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}
#news .list .article {
    margin-bottom: 30px;
}
#news .list .article figure img {
    border-radius: 28px;
    border: 1px solid #dbdbdb;
}
#news .list .article figure.article-placeholder img.article-placeholder-logo {
    max-width: 78%;
    max-height: 78%;
    padding: 10px;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
}
#news .list .article h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
}

.article-list-waypoint {
    width: 100%;
    height: 1px;
}

.article-list-loader {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 6px 0 12px;
    color: var(--ifpp-green);
}

.article-list-loader.is-active {
    display: flex;
}

.article-list-pagination.is-hidden {
    display: none;
}

div.pagination {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 22px 0 10px;
    padding: 12px 0 0;
    border-top: 1px solid var(--default-border-color);
    color: #777;
    font-size: 14px;
    line-height: 22px;
}

div.pagination::after {
    display: none;
    content: none;
}

div.pagination .paging_simple {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: #777;
    white-space: nowrap;
}

div.pagination .paging_simple input {
    width: 26px;
    height: 24px;
    padding: 0 4px;
    border: 1px solid var(--default-border-color);
    border-radius: 3px;
    color: var(--ifpp-green);
    background: #fff;
    text-align: center;
    font-size: inherit;
    line-height: 22px;
}

div.pagination .paging_simple input:focus {
    border-color: var(--ifpp-green);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(0, 166, 81, .16);
}

div.pagination .paging_list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: inherit;
}

div.pagination .paging_list li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: inherit;
}

div.pagination .paging_list a,
div.pagination .paging_list span {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 4px;
    color: var(--ifpp-purple);
    text-decoration: none;
    font-size: inherit;
    font-weight: 500;
    line-height: 1;
}

div.pagination .paging_list span {
    color: #777;
}

div.pagination .paging_list a:hover {
    color: var(--ifpp-green);
}

div.pagination .paging_list a.selected {
    color: #fff;
    background: var(--ifpp-green);
    font-weight: 700;
}

div.pagination .paging_list a.selected:hover {
    color: #fff;
    background: color-mix(in srgb, var(--ifpp-green) 88%, #000);
}

div.pagination .paging_list a.paging_prev,
div.pagination .paging_list a.paging_next {
    color: var(--ifpp-black);
    font-size: inherit;
}

div.pagination .paging_list a.paging_prev:hover,
div.pagination .paging_list a.paging_next:hover {
    color: var(--ifpp-green);
}

@media (max-width: 575.98px) {
    div.pagination {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    div.pagination .paging_list {
        justify-content: flex-start;
    }
}

#news.article h1 {
    text-align: center;
}
#news.article .date {
    margin: 10px auto;
    font-size: 18px;
    text-align: center;
}
#news.article .article-content {
    margin-top: 60px;
}
#news.article article figure {
    text-align: center;
    border-radius: 28px;
    margin-bottom: 40px;
}
#news.article article figure img {
    border-radius: 28px;
}
#news .list a:link,
#news .list a:active,
#news .list a:visited {
    color: var(--ifpp-purple);
    transition: all ease .25s;
}
#news .list a:hover {
    color: var(--ifpp-green);
}
#login .btn-outline-green {
    border-radius: 28px;
    padding: 10px 20px;
}
.breadcrumb {
    justify-content: center;
}
.breadcrumb li {
    font-size: 20px !important;
}
.curved_box {
    border: 1px solid var(--ifpp-green);
    border-radius: 28px;
    background-color: #fff;
    padding: 40px;
}
#login .form-control {
    border-left: none !important;
}
#login .input-group-text {
    background-color: #FFFFFF !important;
    color: var(--ifpp-purple);
}
#login .form-check-input:checked {
    background-color: var(--ifpp-green);
    border-color: var(--ifpp-green);
}
#sponsor-venture {
    padding: 30px 0;
}
#homepage-logos {
    padding: 50px 0 24px;
    background-color: #FFFFFF;
}
#homepage-logos .homepage-logos-swiper {
    --swiper-pagination-bottom: 0;
    --swiper-pagination-color: var(--ifpp-green);
    --swiper-pagination-bullet-inactive-color: var(--ifpp-purple);
    --swiper-pagination-bullet-inactive-opacity: .25;
    --swiper-pagination-bullet-size: 9px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    padding: 0 0 42px;
}
#homepage-logos .homepage-logo-item {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    text-align: center;
}
#homepage-logos .homepage-logo-item img {
    width: 100%;
    max-width: 170px;
    height: 92px;
    object-fit: contain;
}
#homepage-logos .homepage-logo-item figcaption {
    max-width: 190px;
    color: var(--ifpp-purple);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
}
#sponsor-venture .sponsor,
#sponsor-venture .venture {
    text-align: center;
    margin: 30px auto 0;
}
#sponsor-venture .sponsor h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--ifpp-purple);
    text-align: center;
    margin-bottom: 10px;
}
#sponsor-venture .venture h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--ifpp-green);
    text-align: center;
    margin-bottom: 10px;
}
#sponsor-venture .venture img {
    max-height: 100px;
}
#sponsor-venture .venture .small img {
    max-height: 50px;
}
@media only screen and (max-width: 991px) {
    .team-groups .member-wrapper .member {
        max-width: initial;
        width: 50%;
        margin-bottom: 20px;
    }
    #olympia-club-schools .global-network-ambassadors .ambassador {
        max-width: initial;
        width: 50%;
    }
    #scientific-committee.team-groups .member-wrapper .member {
        min-width: calc(100% /2);
        max-width: calc(100% / 2) !important;
    }
    #the-operational-team.team-groups .member-wrapper .member {
        min-width: 100%;
        max-width: 100% !important;
    }
    #ifpp-olympia-club-schools .continent {
        width: 100%;
    }
    #olympia-club-schools h3 {
        font-size: 30px !important;
        text-align: center;
    }
}
@media only screen and (max-width: 567px) {
    /* .first-section {
        top: 120px !important;
    }*/
    .page-section {
        margin-bottom: 130px;
    }
    .page-section h2 {
        font-size: 40px;
    }
    .page-section h3 {
        font-size: 26px;
    }
    .page-section p {
        font-size: 20px;
        line-height: 22px;
    }
    #our-vision {
        padding: 45px 0;
    }
    .team-groups {
        padding: 25px 30px;
    }
    .team-groups .member-wrapper .member {
        max-width: initial;
        width: 100%;
        margin-bottom: 20px;
    }
    .team-groups .member-wrapper .member .fullname,
    .team-groups .member-wrapper .member .position {
        max-width: 100%;
    }
    #the-operational-team.team-groups .member-wrapper .member .fullname,
    #scientific-committee.team-groups .member-wrapper .member .fullname {
        max-width: 100% !important;
        white-space: initial;
    }
    #scientific-committee.team-groups .member-wrapper .member {
        min-width: 100%;
        max-width: 100% !important;
    }
    #olympia-club-schools {
        padding: 50px 30px;
    }
    #homepage-logos {
        padding: 38px 0 16px;
    }
    #homepage-logos .homepage-logo-item {
        min-height: 160px;
    }
    #homepage-logos .homepage-logo-item img {
        max-width: 220px;
        height: 86px;
    }
    #homepage-logos .homepage-logo-item figcaption {
        max-width: 260px;
        font-size: 17px;
    }
    #olympia-club-schools .global-network-ambassadors .ambassador {
        max-width: initial;
        width: 100% !important;
        margin:20px auto 10px;
    }
    #olympia-club-schools .map {
        margin-top: 30px;
    }
    #olympia-club-schools .promote-partners .partner {
        width: 100%;
        margin: 20px 0;
    }
    #hep-ifpp.team-groups .member-wrapper .logo {
        margin-left: 0;
    }
}
.custom-tooltip {
    --bs-tooltip-bg: var(--ifpp-blue);
    --bs-tooltip-color: var(--bs-white);
}
/* ACCOUNT */
.welcome {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
}
#account .operations {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
#account .operations .folders {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
#account .operations .icon {
    color: var(--ifpp-blue);
    font-size: 22px;
    a {
        color: inherit;
        &:hover {
            color: color-mix(in srgb, var(--ifpp-blue) 90%, white);
        }
    }
}
#account .operations.school .icon {
    color: var(--ifpp-purple);
    font-size: 22px;
    a {
        color: inherit;
        &:hover {
            color: color-mix(in srgb, var(--ifpp-purple) 90%, white);
        }
    }
}
#account .account-communication {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: start;
}
#account .account-chat-preview .conversation {
    display: block;
    position: relative;
    margin-bottom: 15px !important;
    padding: 8px !important;
    border: 1px solid #D2D8D9;
    border-radius: 6px;
    background-color: #F9F9F9;
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease;
}
#account .account-chat-preview .conversation .chat-details {
    display: block;
    color: inherit;
    text-decoration: none;
    padding-right: 26px;
}
#account .account-archived-chat-link {
    display: block;
    margin: 3px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ifpp-purple);
    font-size: 13px;
    line-height: 1.2;
    text-decoration: underline;
}
#account .account-archived-chat-link:hover {
    color: var(--ifpp-green);
}
#account .account-archived-chat-list .account-restore-archived-chat {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border: 1px solid #D2D8D9;
    border-radius: 6px;
    background-color: #fff;
    color: inherit;
    text-align: left;
    transition: border-color .15s ease, background-color .15s ease;
}
#account .account-archived-chat-list .account-restore-archived-chat:hover {
    border-color: var(--ifpp-green);
    background-color: #f6fff9;
}
#account .account-archived-chat-list .account-restore-archived-chat .user {
    display: block;
    color: var(--ifpp-green);
    font-size: 16px;
}
#account .account-archived-chat-list .account-restore-archived-chat .last-message {
    display: block;
    color: #555;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#account .account-chat-preview .conversation:hover {
    background-color: #f3f6f9;
}
#account .account-chat-preview .conversation.unread {
    border-color: var(--ifpp-blue);
    box-shadow: inset 4px 0 0 var(--ifpp-blue);
}
#account .account-chat-preview .conversation .chat-details .user {
    font-size: 20px;
    color: var(--ifpp-green);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#account .account-chat-preview .conversation.group .chat-details .user {
    overflow: initial;
    text-overflow: initial;
    white-space: normal;
    font-size: 16px;
}
#account .account-chat-preview .conversation .chat-details .last-message {
    font-size: 16px;
    color: #555;
    min-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#account .account-chat-empty {
    padding: 12px;
    border: 1px solid #D2D8D9;
    border-radius: 6px;
    color: #777;
    background-color: #F9F9F9;
}
#account .account-chat-preview .chat-archive-room,
#chat .chat-container .chat-sidebar .conversation .chat-archive-room {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dc3545;
    border-radius: 50%;
    color: #dc3545;
    background-color: #fff;
    line-height: 1;
    padding: 0;
    font-size: 8px;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}
#account .account-chat-preview .chat-archive-room .fa-xmark,
#chat .chat-container .chat-sidebar .conversation .chat-archive-room .fa-xmark {
    font-size: 8px;
}
#account .account-chat-preview .chat-archive-room:hover,
#chat .chat-container .chat-sidebar .conversation .chat-archive-room:hover {
    color: #fff;
    background-color: #dc3545;
}
@media (max-width: 767.98px) {
    #account .account-communication {
        display: block;
    }
    #account .account-chat-preview {
        margin-top: 30px;
    }
}
#chat.page-section {
    margin-bottom: 200px;
}
#chat .chat-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
#chat .chat-container .chat-sidebar {
    width: 300px;
}
#chat .chat-sidebar-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 15px;
}
#chat .chat-sidebar-actions .chat-socket-status {
    margin-left: auto;
}
#chat .chat-socket-status {
    flex: 0 0 auto;
    font-size: 24px;
    color: #8f969c;
    line-height: 1;
    transition: color .15s ease;
}
#chat .chat-socket-status.chat-socket-connected {
    color: var(--ifpp-green);
}
#chat .chat-socket-status.chat-socket-error {
    color: #dc3545;
}
#chat .chat-container .chat-sidebar .conversation {
    position: relative;
    margin-bottom: 15px !important;
    padding: 8px !important;
    border: 1px solid #D2D8D9;
    border-radius: 6px;
    background-color: #F9F9F9;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease;
}
#chat .chat-container .chat-sidebar .conversation .chat-details {
    padding-right: 32px;
}
#chat .chat-container .chat-sidebar .conversation.active,
#chat .chat-container .chat-sidebar .conversation:hover {
    background-color: #f3f6f9;
}
#chat .conversation.unread,
#chat .chat-container .chat-sidebar .conversation.unread {
    border-color: var(--ifpp-blue);
    box-shadow: inset 4px 0 0 var(--ifpp-blue);
}
#chat .conversation.attention,
#chat .chat-container .chat-sidebar .conversation.attention {
    border-color: var(--ifpp-green);
    background-color: #f2fff8;
    box-shadow: 0 0 0 2px rgba(0, 166, 81, .18), inset 4px 0 0 var(--ifpp-green);
}
#chat .chat-container .chat-sidebar .conversation .chat-details .user {
    font-size: 20px;
    color: var(--ifpp-green);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#chat .chat-container .chat-sidebar .conversation .chat-details .last-message {
    font-size: 16px;
    color: #555;
    min-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#chat .chat-container .chat-sidebar .conversation .chat-details .last-message.typewriting::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    background-color: var(--ifpp-green);
    vertical-align: -2px;
    animation: chat-preview-caret .8s steps(1, end) infinite;
}
@keyframes chat-preview-caret {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
#chat .chat-container .chat-sidebar .conversation.group .chat-details .user {
    overflow: initial;
    text-overflow: initial;
    white-space: normal;
    font-size: 16px;
}
#chat .chat-container .chat-rooms {
    width: calc(100% - 360px);
    height: calc(100vh - 330px);
    border: 1px solid var(--ifpp-green);
    padding: 20px;
    border-radius: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#chat .chat-container .chat-rooms .chat-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D2D8D9;
    height: 52px;
}
#chat .chat-container .chat-rooms .chat-room-header .participants {
    font-size: 22px;
    font-weight: 500;
    color: var(--ifpp-purple);
    min-width: 0;
}
#chat .chat-container .chat-rooms .chat-room-header .chat-room-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}
#chat .chat-container .chat-rooms .chat-room-header .chat-room-actions .chat-leave-room {
    white-space: nowrap;
}
#chat .chat-container .chat-rooms .chat-room-header .add-user,
#chat .chat-container .chat-rooms .chat-room-header .chat-invite-toggle {
    flex: 0 0 auto;
    font-size: 30px;
    color: var(--ifpp-green);
    border: 0;
    background: transparent;
    line-height: 1;
    padding: 0;
    transition: color .15s ease;
}
#chat .chat-container .chat-rooms .chat-room-header .chat-invite-toggle:disabled {
    opacity: .45;
}
#chat .chat-container .chat-history {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: scroll;
    margin-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #D2D8D9 transparent;
    padding-right: 6px;
}
#chat .chat-container .chat-history .message {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    gap: 4px;
}
#chat .chat-container .chat-history .message .message-author {
    color: #777;
    font-size: 12px;
    padding: 0 5px;
}
#chat .chat-container .chat-history .message.host .message-author {
    display: none;
}
#chat .chat-container .chat-history .message-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: 100%;
}
#chat .chat-container .chat-history .message.host .message-content {
    align-items: flex-end;
}
#chat .chat-container .chat-history .message.guest {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
}
#chat .chat-container .chat-history .message.host {
    justify-content: flex-end;
    align-self: flex-end;
    align-items: flex-end;
}
#chat .chat-container .chat-history .bubble {
    padding: 10px 14px;
    border-radius: 16px;
    line-height: 1.4;
    margin-bottom: 0;
    overflow-wrap: anywhere;
    min-width: 0;
}
#chat .chat-container .chat-history .message.guest .bubble {
    background-color: #f5f5f5;
}
#chat .chat-container .chat-history .message.host .bubble {
    background-color: #7052cd;
    color: #fff;
}
#chat .chat-container .chat-history .message.sending .bubble {
    opacity: .75;
}
#chat .chat-container .chat-history .message-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0;
    white-space: nowrap;
}
#chat .chat-container .chat-history .message-status .spinner-border {
    width: .8rem;
    height: .8rem;
    color: var(--ifpp-green);
    border-width: .12em;
}
#chat .chat-history .messages-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 13px;
    color: #888;
    position: relative;
}
#chat .chat-history .messages-date::before,
#chat .chat-history .messages-date::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    margin: 0 10px;
}
#chat .chat-history .messages-date span {
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
}
#chat .chat-input {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}
#chat .chat-input .btn-outline-light {
    color: #000;
    border-color: #dee2e6;
    border-left: 1px solid #ffffff !important;
    border-right: 1px solid #ffffff !important;
}
#chat .chat-input .btn-outline-light:last-child {
    border-right: 1px solid #dee2e6 !important;
}
#chat .chat-input .form-control {
    border-right: 1px solid #ffffff !important;
    outline: none;
    box-shadow: none;
}
#chat .chat-input .form-control:focus {
    border-right: 1px solid #86b7fe !important;
    outline: none;
    box-shadow: none;
}
#chat .chat-empty-state {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    text-align: center;
}
#chat .chat-typing {
    flex: 0 0 auto;
    min-height: 22px;
    color: #777;
    font-size: 13px;
    padding-left: 6px;
}
#chat .chat-invite-panel .modal-dialog {
    max-width: 720px;
}
#chat .chat-invite-panel .modal-body {
    max-height: min(70vh, 620px);
    overflow-y: auto;
}
#chat .chat-invite-panel form {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
#chat #chat_invite_groups {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#chat .chat-invite-group {
    margin-bottom: 0;
}
#chat .chat-invite-group-title {
    color: var(--ifpp-purple);
    font-weight: 600;
    margin-bottom: 6px;
}
#chat .chat-invite-member {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    cursor: pointer;
}
#chat .chat-invite-member.invited {
    cursor: default;
}
#chat .chat-invite-actions {
    gap: 8px;
}
#chat .chat-muted {
    color: #777;
}
@media (max-width: 991.98px) {
    #chat.page-section {
        margin-bottom: 100px;
    }
    #chat .chat-container {
        gap: 18px;
    }
    #chat .chat-container .chat-sidebar,
    #chat .chat-container .chat-rooms {
        width: 100%;
    }
    #chat .chat-container .chat-sidebar {
        max-height: 280px;
        overflow-y: auto;
    }
    #chat .chat-container .chat-rooms {
        height: auto;
        min-height: 560px;
    }
    #chat .chat-container .chat-history {
        height: 390px;
        overflow-y: auto;
    }
    #chat .chat-container .chat-history .message {
        max-width: 88%;
    }
    #chat .chat-container .chat-rooms .chat-room-header .participants {
        font-size: 18px;
    }
}
/* QUIZ */
#quiz .quiz-panel{
    background: var(--light-grey);
    border: 1px solid var(--default-border-color);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 18px 20px 22px;
}
#quiz .step-label{
    font-weight: 600;
    margin-bottom: 10px;
}
#quiz .progress{
    height: 10px;
    background-color: #d7ebff;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 18px;
}
#quiz .progress-bar{
    background: var(--ifpp-blue);
}
#quiz label{
    font-weight: 600;
    margin-bottom: 6px;
}
#quiz .question-title{
    font-weight:700;
    margin-bottom:16px;
    letter-spacing:.3px;
}
#quiz .form-check{
    margin-bottom:14px;
}
#quiz .form-check-input{
    width:20px;
    height:20px;
    margin-top:5px;
}
#quiz .form-check-label{
    font-size:16px;
    padding: 5px;
    margin-left: 5px;
    cursor: pointer;
}
#quiz .form-check-label.correct{
    background-color: var(--ifpp-green);
    color: #FFFFFF;
}
#quiz .form-check-label.wrong{
    background-color: var(--ifpp-red);
    color: #FFFFFF;
}
#quiz .form-check-input:checked {
    background-color: var(--ifpp-purple);
    border-color: var(--ifpp-purple);
}
#quiz h3 {
    font-size: 26px;
}
#quiz .terms {
    border-radius: 20px;
    padding: 15px 20px;
    border:1px solid var(--ifpp-green);
}
#quiz .terms p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}

#contact-form .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
#contact_form label.error {
    display: none !important;
}
#contact_form input.error {
    border-color: var(--ifpp-red);
    box-shadow: 0 0 0 .25rem rgb(246 33 64 / 0.25);
}
#contact_form .checkbox-agree {
    padding-left: 34px !important;
}
/* ARTICLES */
#page .article p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}
#page .article .date {
    font-size: 16px;
    font-weight: 400;
    color:#000;
    margin-bottom: 10px;
}
#page .article .source {
    display: block;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px
}
#page .article h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ifpp-blue);
    margin-bottom: 20px;
}
#page .article h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: -webkit-box;
    max-width: 100%;
    height: 87px;
    margin: 0 auto 20px;
    line-height: 1.2;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* BUTTONS */
.btn-blue {
    background-color: var(--ifpp-blue);
    color: #FFF;
    border:1px solid var(--ifpp-blue);
    padding: 10px 30px;
    border-radius: 28px;

    &:hover {
        background-color: color-mix(in srgb, var(--ifpp-blue), #000 20%);
        color: #FFF;
        border: 1px solid color-mix(in srgb, var(--ifpp-blue), #000 20%);
    }
}
.btn-outline-blue {
    background-color: transparent;
    color: var(--ifpp-blue);
    border:1px solid var(--ifpp-blue);

    &:hover {
        background-color: var(--ifpp-blue);
        color: #fff;
        border: 1px solid var(--ifpp-blue);
    }
}

.btn-outline-green {
    background-color: transparent;
    color: var(--ifpp-green);
    border:1px solid var(--ifpp-green);

    &:hover {
        background-color: var(--ifpp-green);
        color: #fff;
        border: 1px solid var(--ifpp-green);
    }
}
.btn-outline-purple {
    background-color: transparent;
    color: var(--ifpp-purple);
    border:1px solid var(--ifpp-purple);

    &:hover {
        background-color: var(--ifpp-purple);
        color: #fff;
        border: 1px solid var(--ifpp-purple);
    }
}
.btn-purple {
    background-color: var(--ifpp-purple);
    color: #ffffff;
    border:1px solid var(--ifpp-purple);

    &:hover {
        background-color: color-mix(in srgb, var(--ifpp-purple) 90%, white);
        color: #fff;
        border: 1px solid color-mix(in srgb, var(--ifpp-purple) 90%, white);
    }
}
.btn-green {
    background-color: var(--ifpp-green);
    color: #ffffff;
    border:1px solid var(--ifpp-green);

    &:hover {
        background-color: color-mix(in srgb, var(--ifpp-green) 90%, white);
        color: #fff;
        border: 1px solid color-mix(in srgb, var(--ifpp-green) 90%, white);
    }
}


.youtube-container {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.7777777778;
    pointer-events: none;
    position: relative;
}
.youtube-container .moto {
    position: absolute;
    z-index: 1;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 40%;
    transform: translateY(-40%);
    color: #FFF;
    font-size: 50px;
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .6);
}
.youtube-container iframe {
    width: 300%;
    height: 100%;
    margin-left: -100%;
}
@media only screen and (max-width: 991px) {
    .youtube-container .moto {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .youtube-container .moto {
        font-size: 30px;
    }
}
@media only screen and (max-width: 567px) {
    .youtube-container .moto {
        font-size: 22px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.article_files_wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.article_file_wrapper {
    padding: 10px 0 0 0;
    margin: 0 25px 15px 0;
}
.article_file a {
    display: inline-block;
    font-size: 14px;
    padding-left: 38px;
}
.article_file a span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    padding: 2px 0 0 0;
    color: #777
}

.icon_generic a {
    background: url(images/icons/generic.png) no-repeat 0 0;
}
.icon_doc a {
    background: url(images/icons/doc.png) no-repeat 0 0;
}
.icon_excel a {
    background: url(images/icons/excel.png) no-repeat 0 0;
}
.icon_powerpoint a {
    background: url(images/icons/powerpoint.png) no-repeat 0 0;
}
.icon_txt a {
    background: url(images/icons/txt.png) no-repeat 0 0;
}
.icon_pdf a {
    background: url(images/icons/pdf.png) no-repeat 0 0;
}
.icon_audio a {
    background: url(images/icons/audio.png) no-repeat 0 0;
}
.icon_video a {
    background: url(images/icons/video.png) no-repeat 0 0;
}
.icon_image a {
    background: url(images/icons/image.png) no-repeat 0 0;
}
.icon_archive a {
    background: url(images/icons/archive.png) no-repeat 0 0;
}

.extra_photos {
    display: flex;
    justify-content: center;
    align-items: normal;
    flex-wrap: wrap;
    padding:0;
    margin:0 auto;
    gap: 24px;
}
.extra_photos .gallery-item {
    width: calc(33.33% - 24px * .66667);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    max-width: 100%;
    position: relative;
    flex-wrap: wrap;
}
.extra_photos .gallery-item a {
    display: flex;
    height: 100%;
    width: 100%;
}
.extra_photos .gallery-item img {
    flex: 1 0 0%;
    height: 100%;
    object-fit: cover;
    width: 100%;
    margin-bottom:20px;
    box-shadow: 0 0 0 1px var(--default-border-color), 0 12px 30px rgba(0,0,0,0.2);
    display: block;
    max-width: 100% !important;
}
.extra_photos .photo {
    text-align: center;
}
.how-was-it-born-photos {
    margin-top: 34px;
}
.how-was-it-born-carousel {
    width: 100%;
}
.how-was-it-born-carousel .owl-stage {
    display: flex;
}
.how-was-it-born-carousel .owl-item {
    display: flex;
}
.how-was-it-born-slide {
    width: 100%;
}
.how-was-it-born-slide a {
    display: block;
    height: 100%;
}
.how-was-it-born-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.awards {
    width: 100%;
    padding: 20px 0;
    background:#FFF;
}
.awards ul {
    display: table;
    text-align: center;
    margin: 0 auto;
}
.awards ul li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    padding: 0 10px;
}
.awards ul li img {
    mix-blend-mode: darken;
    height: 60px;
}
.social {
    background-color: var(--ifpp-blue);
    height: 55px;
    line-height: 50px;
    margin: 0 auto;
    border-top: 5px solid var(--ifpp-green);
}
.social a:link,
.social a:active,
.social a:visited {
    color: #fff;
}
.social a:hover {
    color: var(--ifpp-green);
}
.social i {
    margin: 0 10px;
}
footer {
    background-color: var(--ifpp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    height: 305px;
}
footer a:link,
footer a:active,
footer a:visited {
    color: #FFF;
}
footer a:hover {
    color: #e1f7ff;
}
footer .menu {
    height: 305px;
    padding: 50px 0;
}
footer .menu .container {
    display: flex;
    justify-content: space-between;
}
footer .menu .navigation ul {
    -moz-column-count: 2;
    -moz-column-gap: 30px;
    -webkit-column-count: 2;
    -webkit-column-gap: 30px;
    column-count: 2;
    column-gap: 30px;
}
footer .menu ul li {
    font-size: 22px;
    font-weight: 400;
}
footer .social_media {
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}
footer .social_media ul li {
    display: inline-block;
    margin-right: 10px;
}
footer .social_media h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}
footer .madeby {
    text-align: right;
}
footer .bottom_bar {
    background-color: var(--ifpp-blue);
}
footer .bottom_bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}
@media only screen and (max-width:767px) {
    footer {
        height: auto;
    }
    footer .copyright,
    footer .madeby {
        text-align: center;
        margin: 5px auto;
    }
    footer .menu {
        height: auto !important;
        padding: 30px 0 !important;
    }
    footer .menu .container {
        flex-wrap: wrap;
    }
    footer .menu .container .logo,
    footer .menu .container .navigation,
    footer .menu .container .social_media {
        width: 100%;
        text-align: center;
    }
    footer .menu .container .logo,
    footer .menu .container .navigation {
        margin-bottom: 20px;
    }
    footer .bottom_bar {
        height: auto;
        padding: 10px 0;
    }
    footer .bottom_bar .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: auto !important;
    }
}
@media only screen and (max-width:567px) {
    footer .social_media h3 {
        margin-top: 30px;
    }
    footer .menu .container .navigation ul {
        -moz-column-count: 1;
        -moz-column-gap: 0;
        -webkit-column-count: 1;
        -webkit-column-gap: 0;
        column-count: 1;
        column-gap: 0;
    }
    footer .menu .container .logo img {
        width: 120px;
    }
}

.maintenance_mode_wrapper {
    padding: 300px 0 0 0;
}
.maintenance_mode {
    width: 600px;
    margin: 0 auto;
    padding: 30px;
}
.maintenance_text {
    text-align: center;
    font-size: 24px;
    font-weight:700;
    color:var(--ifpp-green);
    line-height: 1.5em;
}
.maintenance_logo {
    margin:0 auto 30px auto;
    text-align:center;
}


.reCAPTCHA_tos {
    margin-top: 15px;
    padding: 0;
    font-size:11px !important;
    line-height: initial;
}
.grecaptcha-badge {
    z-index:5050;
    visibility: hidden;
    opacity: 0;
    transition: linear opacity 1s;
}

.grecaptcha-badge.show {
    visibility: visible;
    opacity: 1;
    transition: linear opacity 1s;
}

.g-recaptcha > div {
    margin:0 auto;
}

.grecaptcha-badge {
    z-index:1000;
}

span[data-name="btnClose"] {
    padding: 10px 0;
}

.history-video-wrapper {
    background: #000;
}

.history-video {
    display: block;
    object-fit: contain;
    background: #000;
}
.has-bio {
    cursor: pointer;
}
#personnel_avatar {
    box-shadow: 0 0 0 1px var(--default-border-color), 0 12px 30px rgba(0, 0, 0, 0.2);
}
