@font-face {
  font-family: "DM Sans";
  src: url("/style/fonts/DMSans-Regular.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/style/fonts/SourceSerifPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/style/fonts/SourceSerifPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/style/fonts/SourceSerifPro-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro";
  margin: 0;
  padding: 0;
  background-color: #E8EBFD;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  display: block;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: calc(4vw + 1.5rem);
  color: #000080;
  font-family: "Source Sans Pro";
  letter-spacing: -4px;
  line-height: 1;
}

h2 {
  font-size: calc(1.5vw + 0.6rem);
  color: #000080;
  font-family: "Source Sans Pro";
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: calc(1.4vw + 0.5rem);
  color: #00001b;
  font-family: "Source Sans Pro";
  line-height: 1.2;
  font-weight: 600;
}

h4 {
  font-size: calc(1vw + 0.3rem);
  color: #00001b;
  font-family: "Source Sans Pro";
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-size: calc(0.5vw + 0.85rem);
  color: #000080;
  font-family: "Source Sans Pro";
}

a {
  text-decoration: none;
  color: #000080!important;
  font-weight: 400;
  font-size: calc(0.5vw + 0.6rem);
}

.buttonHeaderTextP {
  color: #f5f5f5;
}

section {
  width: 80vw;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-content: center;
  justify-self: center;
}

.callToAction {
  width: -moz-fit-content;
  width: fit-content;
  height: 5vh;
}
.callToAction .buttonCTA {
  height: 100%;
  display: inline-flex;
  align-items: center;
  width: 9.5vw;
  justify-content: space-between;
  border: none;
  border-radius: 12px;
  background-color: #000080;
  padding-left: 10%;
  padding-right: 10%;
}
.callToAction .buttonCTA .buttonHeaderText {
  color: #f5f5f5;
  font-family: "DM Sans", "Inter";
  font-size: calc(0.5vw + 0.6rem);
}
.callToAction .buttonCTA:hover {
  transition: background-color 0.3s ease;
  background-color: #000080;
}
.callToAction .buttonCTA:hover .buttonHeaderText {
  color: #E8EBFD;
}

header {
  width: 100%;
  padding: 1vw 5%;
  background-color: #f5f5f5;
}
header .HeaderCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .HeaderCont .logoCont {
  display: inline-block;
  line-height: 0;
}
header .HeaderCont .logo {
  height: 4.5vh;
}
header .HeaderCont .NavBarCont {
  display: flex;
  align-items: center;
}
header .HeaderCont .NavBarCont .LinksCont {
  display: flex;
  gap: 2vw;
  margin-top: 0.5vh;
}
header .HeaderCont .NavBarCont .LinksCont .NavLink {
  font-family: "DM Sans", "Inter";
  color: #000080;
  font-weight: 500;
  text-decoration: none;
}
header .HeaderCont .NavBarCont .LinksCont .NavLink:hover {
  color: #00001b;
}
header .HeaderCont .NavBarCont .LinksCont .hb {
  display: none;
}
.hb {
    display: none;
}
.hbMenue {
    display: none;
}
.LandingPageSection {
  height: 90vh;
  align-items: center;
  margin-bottom: 8vh;
}

.LandingPageCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70vh;
}
.LandingPageCont .LandingPageImageCont {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: end;
}
.LandingPageCont .LandingPageImageCont img {
  height: 100%;
  width: auto;
}
.LandingPageCont .LandingPageTextCont {
  width: 50%;
  display: flex;
  flex-direction: column;
  height: 70%;
  justify-content: space-between;
}
.LandingPageCont .LandingPageTextCont .LandingPageTitle {
  font-size: calc(4vw + 1.5rem);
  font-weight: 400;
  margin-bottom: 4%;
}
.LandingPageCont .LandingPageTextCont .LandingPageSubtitle {
  font-size: calc(0.95vw + 0.7rem);
  font-weight: 400;
  color: #000080;
  width: 80%;
  color: #38404A;
}
.LandingPageCont .LandingPageTextCont .CTALanding {
  width: 80%;
  display: flex;
  height: 6vh;
  flex-direction: row;
  align-items: center;
  gap: 5%;
}
.LandingPageCont .LandingPageTextCont .CTALanding .buttonCTA {
  width: 42%;
  font-size: calc(0.8vw + 0.6rem);
  padding: 2% 5% 2% 5%;
}
.LandingPageCont .LandingPageTextCont .CTALanding .subButtonlight {
  font-size: calc(0.6vw + 0.3rem);
  color: #38404A;
  opacity: 80%;
}

.LandingPageSectionP {
  display: none;
}

.section2Title {
  padding: 0;
  font-weight: 700;
}

.section2 {
  margin-bottom: 8vh;
}
.section2 .section2Cont {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  width: 90%;
  gap: 5vh;
}
.section2 .section2Cont .section2TextCon {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: start;
}
.section2 .section2Cont .section2TextCon .section2Title {
  width: 40%;
  padding-right: 5vw;
  padding-top: 2vh;
}
.section2 .section2Cont .section2TextCon .section2Sub {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}
.section2 .section2Cont .section2TextCon .section2Sub .section22ndSub {
  padding-right: 5%;
}
.section2 .section2Cont .section2TextCon .section2Sub .section2Link {
  font-size: calc(1vw + 0.3rem);
  color: #000080;
  font-family: "Source Sans Pro";
}
.section2 .section2Cont .section2TextCon .section2Sub .section2LinkC, .section2 .section2Cont .section2TextCon .section2Sub .section22ndSubC {
  font-size: calc(1vw + 0.35rem);
  line-height: 1.35;
}
.section2 .section2Cont .section2TextCon .section2Sub .textLink {
  color: #000080;
  font-weight: 600;
}
.section2 .section2Cont .section2TextCon .section2Sub .section2LinkC {
  font-size: calc(1vw + 0.35rem);
}
.section2 .section2Cont .section2TextConLast {
  height: 25vh;
}

.section2TextCon {
  height: 100%;
}

.section3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section3 .declarationSub {
  font-size: calc(0.5vw + 0.3rem);
  color: #000080;
  opacity: 0.6;
}

.section22ndSubCD {
  display: block;
}

.section22ndSubCP {
  display: none;
}

footer {
  width: 100%;
  padding: 1vw 5%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerMainCont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.footerCont {
  width: 25%;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  border-right: 1px solid #000080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerTitleP {
  font-size: calc(0.5vw + 0.7rem);
  color: #00001b;
  font-weight: 600;
}

.footerContLogo {
  padding-left: 0;
}

.footerLogo {
  width: 70%;
}

.footerLogoV {
  display: none;
}

.footerSiteMapCont {
  height: 85%;
}

.footerLinksCont {
  display: flex;
  flex-direction: column;
  gap: 1.25vh;
  margin-top: 2vh;
  margin-left: 10%;
  width: -moz-max-content;
  width: max-content;
}

.footerLink {
  font-size: calc(0.7vw + 0.3rem);
  color: #00001b;
  font-weight: 600;
  text-decoration: none;
}

.footerLink:hover {
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  color: #000080;
}

.footerCTA {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 85%;
  gap: 3vh;
}

.footerCTA .footerCTASub {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  color: #00001b;
  font-weight: 400;
  margin-left: 10%;
}

.footerLogoCont {
  display: flex;
  justify-content: center;
}

.footerCTA, .footerCTASub, .footerCTASubText, .footerContactFormText {
  font-size: calc(0.7vw + 0.45rem);
}

.footerCTA .footerCTASub .CTAFooter {
  width: 85%;
}

.footerCTA .footerCTASub #takeSurveyFooter {
  width: 100%;
  justify-content: center;
}

.footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
  font-size: calc(0.5vw + 0.45rem);
}

.footerContContact {
  border-right: none;
  flex-direction: column;
  padding-right: 0 !important;
}

.footerContContactDiv {
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.footerNewsLetterText {
  font-family: "Source Sans Pro";
  padding-bottom: 5%;
}

.footerNewsLetter {
  height: 48%;
  border-bottom: 1px solid #000080;
}

.footerNewsLetterInput {
  height: 40%;
  width: 95%;
  border-radius: 25px;
  border-color: rgba(0, 0, 0, 0.5607843137);
  padding-left: 5%;
}

.footerContactForm {
  height: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 2%;
  padding-right: 0;
}

.aboutCont {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-evenly;
  width: 90%;
  gap: 5vh;
}

.mainResearchers {
  display: flex;
  justify-content: space-between;
  margin-left: 5vw;
  margin-right: 5vw;
}

.researchersWrapper {
  width: 25%;
  display: flex;
  flex-direction: column;
  height: auto;
}

.researcherDetailsWrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3vw;
}

.Unipi {
  width: 65%;
}

.Institution {
  height: 7vh;
  display: flex;
  align-items: flex-end;
  margin-bottom: 5vh;
}

.researchersPhoto {
  display: block;
  height: auto;
  border-radius: 50%;
  margin-bottom: 2vh;
  width: -moz-fit-content;
  width: fit-content;
}

.researcherPhotoWrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.researcherPhoto {
  width: 17vw;
  max-width: 270px;
  border-radius: 50%;
  filter: grayscale(1);
}

.collaborators {
  margin-left: 5vw;
  margin-right: 5vw;
}

.collaboratorsWrapper {
  display: flex;
  justify-content: space-evenly;
}

.researcherPhotoC {
  width: 11vw;
  max-width: 220px;
  border-radius: 50%;
  filter: grayscale(1);
}

@media screen and (min-width: 1900px) and (max-height: 780px) {
  .LandingPageCont .LandingPageTextCont {
    height: 80%;
  }
}
@media screen and (max-width: 1900px) and (min-height: 825px) {
  .LandingPageCont .LandingPageTextCont {
    height: 60%;
  }
}
@media screen and (max-width: 1750px) {
  a {
    font-size: calc(0.6vw + 0.5em);
  }
  .HeaderCont .logoCont .logo {
    height: 4vh;
  }
  .HeaderCont .callToAction {
    height: 4vh;
  }
  .HeaderCont .callToAction .buttonCTA {
    width: 9.25vw;
  }
  .HeaderCont .callToAction .buttonHeaderText {
    font-size: calc(0.4vw + 0.5em);
  }
  .aboutCont {
    gap: 4vh;
  }
}
@media screen and (min-width: 1750px) and (max-height: 820px) {
  .LandingPageCont .LandingPageTextCont {
    height: 75%;
  }
}
@media screen and (max-width: 1485px) {
  .LandingPageSection {
    width: 90vw;
  }
  .footerLinksCont {
    gap: 0.65vh;
    margin-top: 1.2vh;
  }
  .footerCont {
    padding-left: 3%;
  }
  .footerCTA {
    gap: 1.25vh;
    height: 100%;
  }
  .footerSiteMapCont {
    height: 100%;
  }
  .footerContContactDiv {
    height: 100%;
  }
  .footerNewsLetter {
    height: 50%;
  }
  .researcherName {
    font-size: calc(0.95vw + 0.6rem);
  }
  .Institution {
    font-size: calc(1vw + 0.625rem);
  }
  .researchersWrapper {
    width: auto;
  }
  .researcherDetailsWrapper {
    gap: 4vw;
  }
}
@media screen and (max-width: 1485px) and (min-height: 850px) {
  .LandingPageCont .LandingPageTextCont {
    height: 55%;
  }
  .Institution {
    margin-bottom: 3vw;
  }
  .aboutCont {
    gap: 2vh;
  }
  .LandingPageCont .LandingPageImageCont {
    height: 80% !important;
  }
  footer {
    padding: 1.25vw 5%;
  }
}
@media screen and (max-width: 1220px) {
  .LandingPageCont .LandingPageTextCont .LandingPageSubtitle {
    font-size: calc(0.95vw + 0.6em);
  }
  .LandingPageCont .LandingPageTextCont .CTALanding .buttonCTA {
    width: 46%;
  }
  .LandingPageCont .LandingPageTextCont {
    height: 75%;
  }
  .LandingPageSubtitle {
    font-size: calc(0.9vw + 0.5rem);
  }
  .footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
    font-size: calc(0.5vw + 0.325rem);
  }
  .callToAction .buttonCTA {
    height: 70%;
  }
  .callToAction .buttonCTAHeader {
    height: 100%;
  }
  .footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
    font-size: calc(0.5vw + 0.275rem);
  }
}
@media screen and (max-width: 1220px) and (min-height: 720px) {
  .LandingPageCont .LandingPageTextCont {
    height: 60%;
  }
}
@media screen and (max-width: 1100px) {
  .Institution {
    font-size: calc(1vw + 0.7rem);
  }
  .footerCTA {
    gap: 1vh;
  }
  .footerNewsLetter {
    height: inherit;
  }
  .callToAction {
    height: 3.5vh;
  }
  .callToAction .buttonCTA {
    height: 100%;
  }
  .footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
    font-size: calc(0.4vw + 0.3rem);
  }
  .footerTitleP {
    font-size: calc(0.5vw + 0.5rem);
  }
  .footerCTA, .footerCTASub, .footerCTASubText, .footerContactFormText {
    font-size: calc(0.7vw + 0.35rem);
  }
  .footerNewsLetterInput {
    height: 25px;
    font-size: calc(0.3vw + 0.43rem);
  }
}
@media screen and (max-width: 1100px) and (min-height: 800px) {
  .LandingPageCont .LandingPageTextCont {
    height: 65%;
  }
}
@media screen and (max-width: 1024px) and (max-aspect-ratio: 1) {
	
  .section {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    padding-top: 0;
  }
  #Landing {
    display: none;
  }
  .HeaderCont .logoCont .logo {
    height: 3.25vh;
  }
  .buttonCTAHeader {
    display: none !important;
  }
  header .HeaderCont .NavBarCont {
    display: none;
  }
  .hb {
    display: block;
    width: 2rem;
    stroke: #000080;
  }header {
    position: relative;
    z-index: 101;
  }
  .hbMenue {
    position: absolute;
    display: flex;
    margin-top: 2vw;
    right: 0;
    justify-content: start;
    align-items: end;
    width: 100vw;
    height: auto;
    z-index: 100;
    background-color: #f5f5f5;
  }
  .NavLink{
    font-size: calc(2vw + 1.25rem);
  }
  .linkContWrapper{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 3vh;
    margin-left: 2vh;
  }
  .LinksCont{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin-top: 0;
  }
  .buttonCTAHeaderHB{
    margin-top: 2vh;
    font-size: calc(2vw + 1.25rem);
  }

  .hbMenue {
  overflow: hidden;
  max-height: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition:
    max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s ease,
    opacity 0.4s ease;
  }

  .hbMenue.open {
    max-height: 100vh;
    transform: translateY(0);
    opacity: 1;
  }

  /* stagger targets */
  .hbMenue .NavLink,
  .hbMenue .buttonCTAHeaderHB {
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
	
  .hbMenue.open .NavLink,
  .hbMenue.open .buttonCTAHeaderHB {
    opacity: 1;
    transform: translateY(0);
  }
	.LandingPageSectionP{
		margin-top: -1rem;
	}
  .LandingPageContP {
    width: 100%;
  }
  .LandingPageTitleDivP {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin-bottom: 6%;
  }
  .LandingPageImageCont {
    margin-bottom: 7%;
  }
  .LandingPageTextContP {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .callToActionP {
    display: flex;
  }
  .HeaderCont .callToAction {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .LandingPageSubtitleP {
    font-size: calc(1.2vw + 1rem);
  }
  .LandingPageTitleP {
    font-size: calc(8vw + 1.5rem);
  }
  .CTALandingP {
    display: flex;
    width: 100%;
    height: 5vh;
    align-items: center;
  }
  .LandingPageImageP {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .buttonCTAP {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #000080;
    color: #f5f5f5;
    margin-right: 5%;
    border-radius: 12px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .buttonHeaderTextP, .subButtonlight {
    font-size: calc(0.85vw + 0.85rem);
    line-height: 1;
  }
  .section2 .section2Cont {
    width: 100%;
    gap: 6vh;
    height: 100%;
  }
  .section2 .section2Cont .section2TextCon {
    flex-direction: column;
    height: auto;
    gap: 3vh;
  }
  .section2Title {
    font-size: calc(2vw + 1rem);
  }
  .section2 .section2Cont .section2TextCon .section2Title, .section2 .section2Cont .section2TextCon .section2Sub {
    width: 100%;
  }
  .section2 .section2Cont .section2TextCon .section2Sub .textLink {
    font-weight: 400;
  }
  .section22ndSubCD {
    display: none;
  }
  .section22ndSubCP {
    display: block;
  }
  .section2MainSub {
    font-size: calc(1.5vw + 1.1rem);
  }
  .section22ndSub {
    font-size: calc(1.2vw + 0.9rem);
  }
  .section2 .section2Cont .section2TextCon .section2Sub .section2Link {
    font-size: calc(1.2vw + 0.9rem);
  }
  .section22ndSubC, .section2LinkC, .section2LinkC {
    font-size: calc(1.2vw + 0.6rem) !important;
  }
  .declaration {
    font-size: calc(1.2vw + 0.55rem);
    width: 100%;
  }
  .declarationSub {
    align-self: center;
  }
  .section3 {
    padding-bottom: 3vh;
    padding-top: 2vh;
  }
  .section2TextConLast {
    margin-bottom: 2vh;
  }
  .footerNewsLetterInput {
    height: 20px;
    font-size: calc(0.3vw + 0.3rem);
    margin-bottom: 1.75vh;
  }
  .footerCTA .footerCTASub #takeSurveyFooter {
    width: 100%;
    justify-content: center;
    height: 20px;
  }
  .footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
    font-size: calc(0.4vw + 0.3rem);
  }
  .footerLinksCont {
    gap: 0.3vh;
    margin-top: 0.5vh;
  }
  .footerNewsLetter {
    height: 52%;
  }
  .footerNewsLetterText {
    padding-bottom: 2%;
  }
  .footerLinkP {
    font-size: calc(1vw + 0.5rem);
  }
	.footerLinkaPhone{
    font-size: calc(1vw + 0.65rem);
  }
  .aboutCont {
    width: 100%;
  }
  .section2 {
    margin-bottom: 0vh;
  }
  header {
    padding: 2vw 5%;
  }
}
@media screen and (max-width: 880px) {
  footer {
    padding: 5% 5%;
  }
  .footerMainCont {
    flex-direction: column;
    gap: 1.25vh;
  }
  .footerContLogo {
    order: 4;
  }
  .footerContSiteMap {
    order: 2;
    width: 100%;
  }
  .footerContContact {
    order: 3;
    padding-left: 0 !important;
  }
  .footerContactForm {
    padding-top: 2vh;
    margin-top: 0;
    padding-bottom: 0 !important;
  }
  .footerContCTA {
    order: 1;
  }
  .footerCont {
    width: 100%;
    padding-left: 5%;
    margin-bottom: 2vh;
  }
  .footerCTA {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footerCTA .footerCTASub {
    margin-left: 0;
  }
  .footerCTA .footerCTASub .CTAFooter {
    width: 45%;
  }
  .footerTitleP, .footerContactFormButton {
    font-size: calc(1.25vw + 0.8rem);
  }
  .callToAction {
    height: inherit;
  }
  .footerCTA .footerCTASub #takeSurveyFooter {
    border-radius: 8px;
    width: 100%;
    justify-content: center;
    height: 100%;
  }
  .footerCTASubText {
    font-size: calc(1vw + 0.7rem);
  }
  .footerSiteMapCont {
    width: 100%;
  }
  .footerLinksCont {
    margin-left: 0;
    flex-direction: row;
    width: 80%;
    gap: 4vw;
  }
  .footerLink {
    font-size: calc(1vw + 0.65rem);
    color: #38404A;
  }
  .footerCont {
    border: none;
    border-bottom: 1px solid #000080;
    padding-bottom: 2.25vh;
  }
  .footerCTA .footerCTASub #takeSurveyFooter .buttonHeaderText {
    font-size: calc(1vw + 0.5rem);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .footerContContactDiv {
    width: 100%;
    padding-left: 0;
  }
  .footerContactForm, .footerNewsLetter {
    padding-left: 5vw;
    padding-bottom: 2vh;
    gap: 2vh;
  }
  .footerNewsLetterInput {
    margin-bottom: 0;
    height: 2rem;
    font-size: calc(0.65vw + 0.43rem);
    padding-left: 2%;
    width: 75%;
  }
  .inlineLinkFooter {
    padding-left: 1vw;
  }
  .footerLogo {
    display: none;
  }
  .footerLogoV {
    display: block;
  }
  .footerContCTA {
    border-top: 1px solid #000080;
    padding-top: 2vh;
  }
	.NavLink{
    font-size: calc(2vw + 0.9rem);
  }
	.buttonCTAHeaderHB{
    margin-top: 2vh;
    font-size: calc(2vw + 0.9rem);
  }

}
@media screen and (max-width: 600px) {
  .buttonHeaderTextP, .subButtonlight {
    font-size: calc(0.75vw + 0.7rem);
  }
  .aboutCont {
    width: 100%;
    gap: 0;
  }
  .section2 {
    margin-bottom: 4vh;
  }
  .aboutTitle {
    margin-bottom: 2vh;
  }
  .mainResearchers {
    margin-left: 0;
    margin-right: 0;
  }
  .Institution {
    height: 1.75rem;
    font-size: calc(1vw + 0.5rem);
  }
  .researcherName {
    font-size: calc(1vw + 0.5rem);
  }
  .researcherPhotoC {
    width: 22vw;
  }
  .researcherPhoto {
    width: 24vw;
  }
  .Institution {
    margin-bottom: 2vh;
  }
  .collaborators {
    margin-left: 0;
    margin-right: 0;
  }
  .footerLinksCont {
    width: 100%;
  }
  .footerNewsLetterText {
    margin-bottom: 1vh;
  }
}
@media screen and (max-width: 530px) {
  .footerLogo {
    display: block;
  }
  .footerLogoV {
    display: none;
  }
  .footerLogo {
    width: 100%;
  }
  .section2MainSub {
    font-size: calc(1.5vw + 0.85rem);
  }
  .section22ndSub {
    font-size: calc(1.2vw + 0.75rem);
  }
  .section2 .section2Cont .section2TextCon .section2Sub .section2Link {
    font-size: calc(1.2vw + 0.75rem);
  }
  .section22ndSubC, .section2LinkC, .section2LinkC {
    font-size: calc(1.2vw + 0.65rem) !important;
  }
}
@media screen and (max-width: 480px) {
  .LandingPageSubtitleP {
    font-size: calc(1.2vw + 0.925rem);
  }
  .buttonHeaderTextP, .subButtonlight {
    font-size: calc(0.65vw + 0.6rem);
  }
  .footerLink {
    font-size: calc(1vw + 0.6rem);
  }
  a {
    font-size: calc(1vw + 0.6rem);
  }
  .footerNewsLetterInput {
    width: 100%;
  }
  .footerContContactDiv {
    padding-right: 5%;
  }
}
@media screen and (max-width: 480px) and (min-height: 700px) {
  .CTALandingP {
    margin-bottom: 2vh;
  }
}
@media screen and (max-width: 380px) {
  .buttonCTAP {
    width: 45%;
  }
}/*# sourceMappingURL=style.css.map */