/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;531;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

:root {
    --header-bg-color: #262a41;
    --chrome-bg-color: #ffffff;
    --canvas-bg-color: #eff1f4;
    --sidebar-bg-color: #dfe0e7;
    --accent-light: #11a94d;
    --header-color: #435863;
    --darken10: rgba(0, 0, 0, 0.1);
    --lighten10: rgba(255, 255, 255, 0.1);
    --dark-text: #262a41;
    --light-text: #ffffff;


    --small-text: 9px;
    --medium-text: 12px;
    --nearly-normal-text: 12px;
    --normal-text: 13px;
    --subtitle-text: 16px;
    --chart-desc-text: 12px;
    --chart-title-text: 21px;
    --header-text: 28px;
    --header-big-text: 38px;
    --header4-text: 24px;
    --model-icon: 16px;
    --module: 15px;
    --thumbBG: rgba(81, 178, 183, 0.6);
    --thumbBGhover: rgba(81, 178, 183, 0.9);
    --thumbBGactive: rgba(81, 178, 183, 0.6);
    --scrollbarBG: transparent;
    --scrollbarBGhover: rgba(255, 255, 255, 0.3);
    --scrollbarBGactive: rgba(255, 255, 255, 0.3);
    --sidebar-width: 300px;
    --headerbar-height: 100px;
    --footer-dashboard: 40px;
    /* --main-theme-color: #003A80; */
    --main-theme-color: #2C424C;
    --main-theme-light-color: #3E7AC2;
    --main-theme-dark-color: #C8DFEB;
    --main-theme-headerbar-text-color: #233640;
    --main-theme-deep-dark-color: #171F23;
    --main-theme-page-header-text-color: #2F4150;


    --text-color: #435863;
    --selected-back-color:#032046;
    --bb:#b4d3f9;
    --gg:#315c94;
    --jj:#0e2c51;
     /* #00295b; */
    /* --disease-panel-color: #235da4 */
    /* --disease-panel-color: #3E7AC2 */
    --disease-panel-color: #23508c
}

/* {
    box-sizing: border-box;
    /* color: var(--dark-text); 
    font-size: var(--medium-text);
    scrollbar-width: thin;
    scrollbar-color: white;
} */






body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Didact Gothic, sans-serif;
    /* overflow: hidden; */
    /* -webkit-user-select: none; */
    /* Safari */
    /* -ms-user-select: none; */
    /* IE 10 and IE 11 */
    /* user-select: none; */
    /* Standard syntax */
    background-color: var(--main-theme-dark-color);
}

select,
input,
button {
    font-family: inherit;
    border-width: 0;
    border-style: solid;
    background-color: transparent;
}

button:focus {
    outline: none;
}

p,
ul {
    color: var(--text-color);
    /* font-size: 16px; */
    font-weight: 300;
    line-height: 27px;
    text-align: justify;
}

p strong {
    font-weight: 800;
}

h1 {
    color: var(--header-color);
    /* font-size: 30px; */
    font-weight: 800;
    /* text-align: center; */
}

h2 {
    color: var(--header-color);
    /* font-size: 32px; */
    font-weight: 800;
}

h3 {
    color: var(--header-color);
    /* font-size: 24px; */
    font-weight: 800;
}

h4 {
    color: var(--dark-text);
    /* font-size: var(--header4-text); */
    font-weight: 800;
    line-height: 36px;
}

hr {
    /* dominant-baseline: hanging; */
    opacity: 0.2;
    margin: 2px;
}

a{
    color: var(--main-theme-headerbar-text-color);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}



/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #cdcdcd;
}

:target{
    background-color: rgb(4 22 38 / 62%);
}

/* HeaderBar */

.headerbar {
    position: absolute;
    height: var(--headerbar-height);
    min-height: var(--headerbar-height);
    display: flex;
    flex-direction: row;
    gap: 40px;
    /* background-color: var(--main-theme-color); */
    align-items: center;
    width: 100%;
    top: 0;
    z-index: 100;
    /* padding: 10px 0px; */
    /* background-color: #9fbfcf; */
}

.headerbar.nohome {
    /* backdrop-filter: blur(10px);
    box-shadow: -1px 3px 12px #2f41501a; */
    box-shadow: 0px 0px 10px #00000052;
}




.headerbar-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80%;
    padding: 8px;
}

.headerbar-logo img {
    height: 100%;
}

.headerbar-link {
    position: relative;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-decoration: none;
    /* border-top-left-radius: 4px; */
    /* border-top-right-radius: 4px; */
    /* border-bottom: 2px solid var(--main-theme-color); */
    color: var(--main-theme-headerbar-text-color);
    transition: color 0.2s, border-color 0.2s, background-color 0.4s;
    text-decoration: none;
    font-size: 13px;
    -webkit-text-stroke-width: 0.2px;
}

.headerbar-link.selected {
    /* border-color: var(--text-color); */
    color: #000000;
    text-decoration: none;
    -webkit-text-stroke-width: 1.1px;
}

.headerbar-link:hover {
    color: #000000;
    text-decoration: none;
    -webkit-text-stroke-width: 1.1px;
}

.headerbar-link ul {
    /* padding: 20px; */
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    left: 0;
    top: unset;
    height: auto;
    width: 100%;
    min-width: max-content;
    background-color: #191919;
    transition: opacity 0.2s, top 0.2s, visibility 0.1s;
    /* border: 1px solid rgb(86 86 86); */
    opacity: 1;
    text-align: left;
    visibility: visible;
    margin-top: 15px;
    /* border-bottom: 1px solid white; */
    border-top: 1px solid white;
    z-index: 10;
    position: absolute;
    top: calc(100% - 6px);
    visibility: hidden;
    opacity: 0;
    margin-top: 0px;
    background-color: #1c272d;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.42);
    border-top: 0px solid white;
    padding: 10px;
    border-radius: 8px;
}

.headerbar-link:hover ul {
    visibility: visible;
    opacity: 1;
    /* top: unset; */
  }

.headerbar-link.arrow{
    background-image: url("./media/down-arrow.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.github-button{
    /* margin-left: auto; */
    margin-right: 10px;
}

.github-button i{
    margin-left: auto;
    font-size: 30px;
    color: var(--main-theme-headerbar-text-color);
}

.headerbar-separator {
    margin-left: auto;
    margin-right: 10px;
}

.visibilitynone{
    display: none;
}

.menu-buttons{
    position: relative;
    display: flex;
    gap:40px;
}
.menu-buttons-mobile{
    position: relative;
    display: flex;
    width: 50px;
    cursor: pointer;
}
.open-menu{
    display: flex;
    width: 35px;
}
.close-menu{
    display: none;
    width: 35px;
}

input[type=checkbox]:checked+.menu-buttons-mobile +.menu-buttons {
    display: flex;
}
input[type=checkbox]:checked+.menu-buttons-mobile .close-menu {
    display: flex;
}
input[type=checkbox]:checked+.menu-buttons-mobile .open-menu {
    display: none;
}



/* Base Styles */

.content{
    position: relative;
    display: flex;
    flex-direction: column;
    /* height: 3000px; */
    background-color: var(--main-theme-dark-color);
    /* overflow-y: auto;
    overflow-x: hidden; */
    width: 100%;
    /* height: calc(100vh); */
    scroll-behavior: smooth;
}

/* .footer{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 300px;
    background-color: var(--main-theme-deep-dark-color);
} */


.page-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* height: 300px; */
    /* overflow: hidden; */
}

.top-container{
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    /* background-color: red; */
    height: 100%;
}

.enveloper{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* scroll-behavior: smooth; */
}

.page-header{
    background-color: var(--main-theme-deep-dark-color);
    width: 100%;
}

.project-logo{
    display: flex;
    flex-direction: column;
    max-width: 700px;
    width: 100%;
}


.project-desc{
    display: flex;
    text-align: center;
    color: white;
    font-size: 16px;
    margin: 50px 0px;
    /* max-width: 800px;*/
}

.project-buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.project-button{
    display: flex;
    flex-direction: row;
    background-color: blue;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    text-decoration: none !important;
    transition: background-color 0.4s;
}

.contacts-container{
    position: relative;
    display: flex;
    flex-direction: row;
}

.contacts-col{
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}
















/* Derived Styles */

.page-section.home{
    /* background-color: red; */
    height: calc(100vh);
    min-height: 600px;
    background-image: url(./media/modellinghub_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: -20vw; */
    background-attachment: fixed;
}




.page-section.respicast{
    background-image: url(./media/respicast_back.png);
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.page-section.respicompass{
    background-image: url(./media/respicompass_back.png);
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.page-section.teams{
    background-color: #C8DFEB;
    min-height: 600px;
}

.page-section.contacts{
    background-color: #b9d4e2;
    /* min-height: 600px; */
}



.page-section.footer{
    background-image: url(./media/modellinghub_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* height: 300px; */
}

.page-section.header{
    background-color: var(--main-theme-deep-dark-color);
    padding: 80px 0px;
    padding-top: 180px;
    background-image: url(./media/modellinghub_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: -20vw; */
    background-attachment: fixed;
}

.top-container.home{
    justify-content: center;
    align-items: center;
}

.top-container.header{
    gap: 16px;
    height: unset;
}

.top-container.footer{
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.top-container.text-content{
    padding: 40px 0px;
    padding-bottom: 80px;
}

.top-container.project{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-container.teams{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

.top-container.contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
}


.project-logo.teams{
    max-width: unset;
}

.project-logo.contacts{
    max-width: 300px;
}
.project-buttons.contacts{
    /* margin-top: 20px; */
}

.project-buttons.respicast .project-button{
    background-color: #3E7AC2;
}
.project-buttons.respicompass .project-button{
    background-color: #0483AB;
}
.project-buttons.contacts .project-button{
    background-color: #486B7D;
}

.project-buttons.respicast .project-button:hover{
    background-color: rgb(132, 171, 220);
}
.project-buttons.respicompass .project-button:hover{
    background-color: #32aacf;
}
.project-buttons.contacts .project-button:hover{
    background-color: #73919f;
}



















/* Indipendent Styles */
.home-splash-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-splash-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-splash-logo img{
    width: 100%;
    max-width: 406px;
}

.home-splash-desc-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.home-splash-title{
    display: flex;
    flex-direction: column;
    color: #3a4e68;
    font-size: 42px;
    width: 100%;
    /* max-width: 800px; */
    max-width: 550px;
    margin-bottom: 30px;
    -webkit-text-stroke-width: 1.5px;
}  

.home-splash-desc{
    /* display: flex; */
    /* flex-direction: column; */
    color: #3a4e68;
    width: 100%;
    max-width: 536px;
    font-size: 14px;
}  

.home-splash-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #c2c8d2;
    /* margin-top: 20px; */
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}


.page-header-title{
    font-size: var(--header-big-text);;
    color: var(--main-theme-page-header-text-color);
}

.page-header-title-separator{
    background-color: var(--main-theme-page-header-text-color);
    height: 3px;
    width: 100px;
}

.page-header-desc{
    font-size: 16px;
    color: #435863;
    /* margin-top: 10px; */
}










.footer-top{
    display: flex;
    flex-direction: row;
    padding: 40px 0px;
    padding-bottom: 20px;
}
.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-logo img{
    height:170px
}

.footer-indices{
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    justify-content: center;
}
.footer-indices ul{
    list-style-type: none;
    padding: 0px;
    columns: 1;
    -webkit-columns: 1;
}
.footer-indices ul li a{
    font-size: 16px;
}
.footer-indices-title{
    color: var(--main-theme-headerbar-text-color);
    font-size: 22px;
    -webkit-text-stroke-width: 1.5px;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
}


.footer-partners{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-left: auto;
}
.footer-partners-logos{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.footer-partners-logos img{
    height: 90px;
}
.footer-separator{
    background-color: #486b7d;
    height: 1px;
    width: 100%;
}

.footer-copyright{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    color: var(--main-theme-headerbar-text-color);
    font-size: 14px;
}






.homePageContainer{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(./Media/respicast_img_logo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -20vw;
    background-attachment: fixed;
}

.homePageContent{
    position: relative;
    /* background-color: red; */
    /* height: 467px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homePageContentLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
}



.page-header-title{
    font-size: var(--header-big-text);;
    color: var(--main-theme-page-header-text-color);
}

.page-header-title-separator{
    background-color: var(--main-theme-page-header-text-color);
    height: 3px;
    width: 100px;
}


.categories-container{
    display: flex;
    flex-direction: column;

}

.categories{
    display: flex
;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.category{
    padding: 6px 30px;
    background-color: #AFCEDC;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 13px;
}

.category.active{
    background-color: #ffffff;
}


.posts-container{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 40px;
}

.main-post{
    display: flex;
    flex-direction: column;
    background-color: #AFCEDC;
    border-radius: 8px;
    width: 100%;
}
.main-post img{
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.post-desc{
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 14px;
}
.post-title{
    color: #435863;
    /* text-decoration: none !important; */
    font-size: 24px;
}
.post-date{
    font-size: 14px;
    color: #435863;
}
.post-tag{
    padding: 6px 30px;
    background-color: #ffffff;
    border-radius: 4px;
    text-decoration: none !important;
    width: fit-content;
    font-size: 13px;
}

.post-summary{
    font-size: 13px;
}
.post-summary p{
    font-size: 13px;
    margin: 0px;
    line-height: 18px;
}

.post .post-desc{
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 14px;
}
.post .post-title{
    color: #435863;
    /* text-decoration: none !important; */
    font-size: 16px;
}
.post .post-date{
    font-size: 12px;
    color: #435863;
}
.post .post-tag{
    padding: 6px 30px;
    background-color: #ffffff;
    border-radius: 4px;
    text-decoration: none !important;
    width: fit-content;
    font-size: 10px;
}



 .secondary-posts-container{
    /* display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr; */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-row-gap: 1em;
    grid-column-gap: 1em;
    padding: 8px 8px;
 }
 .post{
    background-color: #AFCEDC;
    /* padding: 20px; */
    border-radius: 8px;
 }
 .post img{
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    height: 160px;
    min-height: 160px;
 }

.page-selector-list-container{
    display: flex;
    flex-direction: row;
    margin-top: 70px;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-selector{
    padding: 10px 20px;
    background-color: #afcedc;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
}
.page-selector.disabled{
    background-color: #98B8C6;
}

 .page-selector.active{
    background-color: white;
 }



 .top-container.post-page{
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    padding: 100px 0px;
    font-size: 16px;
    color: #435863;
    text-align: justify;
    line-height: 27px;
    /* align-items: flex-start; */
}




.post-page img{
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    height: 300px;
    min-height: 300px;
    margin-bottom: 80px;
}

.post-page h1{
    font-size: 22px !important;
    color: var(--header-color) !important;
    
}
.post-page h2{
    font-size: 20px !important;
    color: var(--header-color) !important;
}
.post-page h3{
    font-size: 18px !important;
    color: var(--header-color) !important;
}
.post-page h4{
    font-size: 18px !important;
    color: var(--header-color) !important;
}
.post-page h5{
    font-size: 18px !important;
    color: var(--header-color) !important;
}
.post-page strong{
    /* font-size: 16px; */
    color: #435863;
    /* text-align: justify; */
    -webkit-text-stroke: 0.5px;
}
.post-page b{
    /* font-size: 16px; */
    color: #435863;
    /* text-align: justify; */
    -webkit-text-stroke: 0.5px;
}
.post-page p{
    font-size: 16px;
    color: #435863;
    text-align: justify;
}

.post-page ul li{
    font-size: 16px;
    color: #435863;
}

.post-page ol li{
    font-size: 16px;
    color: #435863;
}

.document-list{
    display: flex;
    flex-direction: column;
    gap:10px;
    width: 100%;

}
.document{
    display: flex;
    flex-direction: row;
    background-color: #afcede;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
    gap: 20px;
}

.document div{
    display: flex;
    flex-direction: column;
    font-size: 16px;
}
.document i{
    font-size: 24px;
    color: #4b6172;
}
.document a{
    display: flex;
    flex-direction: column;
    word-break: break-all;
    text-decoration: none;
}


































.home-splash-desc{
    font-size: 14px;
    text-align: center;
}
.project-button{
    font-size: 14px;
}
.page-section{
    background-attachment: unset !important;
}
.page-section.home{
    height: unset;
    padding-top: 120px;
}
.page-header-desc{
    font-size: 14px;
    text-align: center;
}

.home-splash-title{
    max-width: 450px;
  }

.home-splash-container{
    flex-direction: column;
}

.home-splash-title{
    flex-direction: column;
}

.home-splash-desc{
    align-items: center;
}

.home-splash-desc-container{
    align-items: center;
}
.home-splash-logo img{
    max-width: 306px;
    width: 100%;
}

.top-container.home {
    padding: 0px;
}
.top-container.teams {
    padding: 50px 10px;
}
.headerbar-link{
    width: 100%;
    background-color: #deeef600;
    /* margin: 20px; */
    /* border-radius: 20px; */
    justify-content: center;
}



.headerbar{
    position: absolute;
}
.headerbar-link:hover{
    /* background-color: #deeef6; */
}

.menu-buttons{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    background-color: #9fbfcf;
    width: 100%;
    align-items: center;
    padding-top: 40px;
    /* border-radius: 20px; */
    backdrop-filter: blur(10px);
}
.menu-buttons-mobile{
    display: flex;
}

.project-desc.project{
    font-size: 14px;
    text-align: center;
}
.project-logo{
    max-width: 500px;
    display: none;
}
.project-logo.project-mobile{
    max-width: 350px;
    display: flex;
}
.top-container.project{
    padding: 10px;
}
.top-container{
    align-items: center;
}
.page-section.teams{
    min-height: unset
}
.project-logo.teams{
    margin-top: 20px;
    display: none;
}

.project-logo.mobile-teams{
    margin-top: 80px;
    max-width: 250px;
    display: flex;
}

.contacts-container{
    flex-direction: column;
    align-items: center;
}
.project-buttons{
    justify-content: center;
}
.page-header-title{
    text-align: center;
}
.project-logo.contacts{
    max-width: 200px;
}

.contacts-col{
    align-items: center;
}
.footer-top{
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    align-items: center;
    padding: 20px;
}
.footer-indices{
    padding-left: unset;
}
.page-section.footer{
    /* width: 100%; */
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    /* width: 100%; */
}
.footer-copyright{
    text-align: center;
}

@media print  {
    @page {
        size: 210mm 297mm;
        margin: 5mm;
      }
<<<<<<< HEAD
      
    .home-splash-desc{
        font-size: 15px;
    }
    .project-button{
        font-size: 15px;
    }
    .page-section{
        background-attachment: unset !important;
    }
    .page-section.home{
        height: calc(100vh);
        padding-top: 0px;
    }

    .project-desc.project{
        font-size: 15px;
        text-align: center;
    }
    .page-header-desc{
        font-size: 15px;
        text-align: left;
    }

    .project-logo{
        max-width: 600px;
        display: flex;
    }
    .project-logo.project-mobile{
        max-width: 350px;
        display: none;
    }
    .headerbar{
        position: absolute;
    }
    .headerbar-link{
        width: unset;
        background-color: unset;
        /* margin: 20px; */
        border-radius: unset;
        justify-content: flex-start;
    }
    .headerbar-link:hover{
        background-color: unset;
    }
    .menu-buttons{
        display: flex;
        flex-direction: row;
        position: relative;
        top: unset;
        background-color: unset;
        width: unset;
        align-items: unset;
        padding-top: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .menu-buttons-mobile{
        display: none;
    }
    
    .top-container.project{
        padding: 0px;
    }
    .top-container{
        align-items: unset;
    }
    .page-section.teams{
        min-height: unset
    }
    .project-logo.teams{
        margin-top: 20px;
        display: flex;
    }

    .project-logo.mobile-teams{
        margin-top: 20px;
        display: none;
    }

    .top-container.teams {
        padding: 50px 10px;
    }
    .contacts-container{
        flex-direction: row;
        align-items: unset;
    }
    .project-buttons{
        justify-content: unset;
    }
    .page-header-title{
        text-align: unset;
    }
    .project-logo.contacts{
        max-width: 300px;
    }
    .contacts-col{
        align-items: unset;
    }
    .footer-top{
        flex-direction: row;
        width: unset;
        max-width: unset;
        align-items: unset;
        padding: unset;
    }
    .footer-indices{
        padding-left: 30px;
    }
    .top-container.footer{
        width: 100%;
    }
    .page-section.footer{
        width: unset;
    }
    .footer-copyright{
        text-align: unset;
    }
    .categories{
        flex-direction: row;

    }
    .main-post{
        flex-direction: row;
        width: unset;
    }
    .main-post img{
        width: 400px;
    }
    .secondary-posts-container{
        grid-template-columns: repeat(3, 1fr);
     }

}



@media only screen and (min-width: 768px)  {

=======
>>>>>>> deploy_dev
    .home-splash-desc{
        font-size: 15px;
    }
    .project-button{
        font-size: 15px;
    }
    .page-section{
        background-attachment: unset !important;
    }
    .page-section.home{
        height: calc(100vh);
        padding-top: 0px;
    }

    .project-desc.project{
        font-size: 15px;
        text-align: center;
    }
    .page-header-desc{
        font-size: 15px;
        text-align: left;
    }

    .project-logo{
        max-width: 600px;
        display: flex;
    }
    .project-logo.project-mobile{
        max-width: 350px;
        display: none;
    }
    .headerbar{
        position: absolute;
    }
    .headerbar-link{
        width: unset;
        background-color: unset;
        /* margin: 20px; */
        border-radius: unset;
        justify-content: flex-start;
    }
    .headerbar-link:hover{
        background-color: unset;
    }
    .menu-buttons{
        display: flex;
        flex-direction: row;
        position: relative;
        top: unset;
        background-color: unset;
        width: unset;
        align-items: unset;
        padding-top: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .menu-buttons-mobile{
        display: none;
    }
    
    .top-container.project{
        padding: 0px;
    }
    .top-container{
        align-items: unset;
    }
    .page-section.teams{
        min-height: unset
    }
    .project-logo.teams{
        margin-top: 20px;
        display: flex;
    }

    .project-logo.mobile-teams{
        margin-top: 20px;
        display: none;
    }

    .top-container.teams {
        padding: 50px 10px;
    }
    .contacts-container{
        flex-direction: row;
        align-items: unset;
    }
    .project-buttons{
        justify-content: unset;
    }
    .page-header-title{
        text-align: unset;
    }
    .project-logo.contacts{
        max-width: 300px;
    }
    .contacts-col{
        align-items: unset;
    }
    .footer-top{
        flex-direction: row;
        width: unset;
        max-width: unset;
        align-items: unset;
        padding: unset;
    }
    .footer-indices{
        padding-left: 30px;
    }
    .top-container.footer{
        width: 100%;
    }
    .page-section.footer{
        width: unset;
    }
    .footer-copyright{
        text-align: unset;
    }
    .categories{
        flex-direction: row;

    }
    .main-post{
        flex-direction: row;
        width: unset;
    }
    .main-post img{
        width: 400px;
    }
    .secondary-posts-container{
        grid-template-columns: repeat(3, 1fr);
     }

}



@media only screen and (min-width: 768px)  {

    .home-splash-desc{
        font-size: 15px;
    }
    .project-button{
        font-size: 15px;
    }
    .page-section{
        background-attachment: unset !important;
    }
    .page-section.home{
        height: calc(100vh);
        padding-top: 0px;
    }

    .project-desc.project{
        font-size: 15px;
        text-align: center;
    }
    .page-header-desc{
        font-size: 15px;
        text-align: left;
    }

    .project-logo{
        max-width: 600px;
        display: flex;
    }
    .project-logo.project-mobile{
        max-width: 350px;
        display: none;
    }
    .headerbar{
        position: absolute;
    }
    .headerbar-link{
        width: unset;
        background-color: unset;
        /* margin: 20px; */
        border-radius: unset;
        justify-content: flex-start;
    }
    .headerbar-link:hover{
        background-color: unset;
    }
    .menu-buttons{
        display: flex;
        flex-direction: row;
        position: relative;
        top: unset;
        background-color: unset;
        width: unset;
        align-items: unset;
        padding-top: unset;
        border-radius: unset;
        backdrop-filter: unset;
    }
    .menu-buttons-mobile{
        display: none;
    }
    
    .top-container.project{
        padding: 0px;
    }
    .top-container{
        align-items: unset;
    }
    .page-section.teams{
        min-height: unset
    }
    .project-logo.teams{
        margin-top: 20px;
        display: flex;
    }

    .project-logo.mobile-teams{
        margin-top: 20px;
        display: none;
    }

    .top-container.teams {
        padding: 50px 10px;
    }
    .contacts-container{
        flex-direction: row;
        align-items: unset;
    }
    .project-buttons{
        justify-content: unset;
    }
    .page-header-title{
        text-align: unset;
    }
    .project-logo.contacts{
        max-width: 300px;
    }
    .contacts-col{
        align-items: unset;
    }
    .footer-top{
        flex-direction: row;
        width: unset;
        max-width: unset;
        align-items: unset;
        padding: unset;
    }
    .footer-indices{
        padding-left: 30px;
    }
    .top-container.footer{
        width: 100%;
    }
    .page-section.footer{
        width: unset;
    }
    .footer-copyright{
        text-align: unset;
    }
    .categories{
        flex-direction: row;

    }
    .main-post{
        flex-direction: row;
        width: unset;
    }
    .main-post img{
        width: 400px;
    }
    .secondary-posts-container{
        grid-template-columns: repeat(3, 1fr);
     }





         /* For mobile phones: */
:root {
    --small-text: 11px;
    --medium-text: 13px;
    --normal-text: 15px;
    --nearly-normal-text: 14px;
    --subtitle-text: 18px;
    --chart-desc-text: 15px;
    --chart-title-text: 24px;
    --header-text: 30px;
    --model-icon: 20px;
}

.homePageContentDescription{
    gap: 49px;
}

.homePageContentDescriptionDesc{
    font-size: 18px;
}

.homePageContentDescriptionRow{
    margin-top: 38px;
}

.homePageButton{
    font-size: 18px;
}


/*---------------------*/
.home-splash-desc{
    font-size: 16px;
    text-align: left;
}
.page-section{
    background-attachment: fixed !important;
}
.page-section.home{
    height: calc(100vh);
    padding-top: 0px;
}
.home-splash-title{
    max-width: 550px;
  }
  
.home-splash-container{
    flex-direction: row;
    gap: 50px;
}

.home-splash-desc-container{
    align-items: unset;
}

.home-splash-logo img{
    max-width: 386px;
    width: unset;
}

.top-container.home {
    padding: 0px;
}
.headerbar{
    position: absolute;
}
.headerbar-link{
    width: unset;
    background-color: unset;
    /* margin: 20px; */
    border-radius: unset;
    justify-content: flex-start;
}
.headerbar-link:hover{
    background-color: unset;
}
.menu-buttons{
    display: flex;
}
.menu-buttons-mobile{
    display: none;
}

.project-desc.project{
    font-size: 16px;
    text-align: center;
}

.project-logo{
    max-width: 700px;
    display: flex;
}
.project-logo.project-mobile{
    max-width: 500px;
    display: none;
}
.top-container.project{
    padding: 0px;
}

.project-button{
    font-size: 16px;
}
.top-container{
    align-items: unset;
}

.page-section.teams{
    min-height: 600px;
}
.project-logo.teams{
    margin-top: unset;
    display: flex;
}

.project-logo.mobile-teams{
    margin-top: 20px;
    display: none;
}

.top-container.teams {
    padding: 50px 20px;
}
.contacts-container{
    flex-direction: row;
    align-items: unset;
}
.page-header-desc{
    font-size: 16px;
    text-align: left;
}

.project-buttons{
    justify-content: unset;
}
.page-header-title{
    text-align: unset;
}
.project-logo.contacts{
    max-width: 300px;
}
.contacts-col{
    align-items: unset;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: unset;
}
.footer-indices{
    padding-left: 30px;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.categories{
    flex-direction: row;

}
.main-post{
    flex-direction: row;
    width: unset;
}
.main-post img{
    width: 400px;
}
.secondary-posts-container{
    grid-template-columns: repeat(3, 1fr);
 }
}






@media only screen and (min-width: 1100px)  {
    /* For mobile phones: */
:root {
    --small-text: 11px;
    --medium-text: 13px;
    --normal-text: 15px;
    --nearly-normal-text: 14px;
    --subtitle-text: 18px;
    --chart-desc-text: 15px;
    --chart-title-text: 24px;
    --header-text: 30px;
    --model-icon: 20px;
}

.homePageContentDescription{
    gap: 49px;
}

.homePageContentDescriptionDesc{
    font-size: 18px;
}

.homePageContentDescriptionRow{
    margin-top: 38px;
}

.homePageButton{
    font-size: 18px;
}


/*---------------------*/
.home-splash-desc{
    font-size: 16px;
    text-align: left;
}
.page-section{
    background-attachment: fixed !important;
}
.page-section.home{
    height: calc(100vh);
    padding-top: 0px;
}
.home-splash-title{
    max-width: 550px;
  }
  
.home-splash-container{
    flex-direction: row;
    gap: 50px;
}

.home-splash-desc-container{
    align-items: unset;
}

.home-splash-logo img{
    max-width: 386px;
    width: unset;
}

.top-container.home {
    padding: 0px;
}
.headerbar{
    position: absolute;
}
.headerbar-link{
    width: unset;
    background-color: unset;
    /* margin: 20px; */
    border-radius: unset;
    justify-content: flex-start;
}
.headerbar-link:hover{
    background-color: unset;
}
.menu-buttons{
    display: flex;
}
.menu-buttons-mobile{
    display: none;
}

.project-desc.project{
    font-size: 16px;
    text-align: center;
}

.project-logo{
    max-width: 700px;
    display: flex;
}
.project-logo.project-mobile{
    max-width: 500px;
    display: none;
}
.top-container.project{
    padding: 0px;
}

.project-button{
    font-size: 16px;
}
.top-container{
    align-items: unset;
}

.page-section.teams{
    min-height: 600px;
}
.project-logo.teams{
    margin-top: unset;
    display: flex;
}

.project-logo.mobile-teams{
    margin-top: 20px;
    display: none;
}

.top-container.teams {
    padding: 50px 20px;
}
.contacts-container{
    flex-direction: row;
    align-items: unset;
}
.page-header-desc{
    font-size: 16px;
    text-align: left;
}

.project-buttons{
    justify-content: unset;
}
.page-header-title{
    text-align: unset;
}
.project-logo.contacts{
    max-width: 300px;
}
.contacts-col{
    align-items: unset;
}
.footer-top{
    flex-direction: row;
    width: unset;
    max-width: unset;
    align-items: unset;
    padding: unset;
}
.footer-indices{
    padding-left: 30px;
}
.top-container.footer{
    width: 100%;
}
.page-section.footer{
    width: unset;
}
.footer-copyright{
    text-align: unset;
}
.categories{
    flex-direction: row;

}
.main-post{
    flex-direction: row;
    width: unset;
}
.main-post img{
    width: 400px;
}
.secondary-posts-container{
    grid-template-columns: repeat(3, 1fr);
 }
}

