@font-face {
  font-family: Roboto;
  src: url(../assets/fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: Neuropolitical;
  src: url(../assets/fonts/Neuropolitical.ttf);
}

html {
  width: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: Roboto;
}

nav {
  background-color: #006078;
  width: 65px;
  height: 65px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  border-radius: 50%;
}

#menuToggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  top: 25px;
  left: 19px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

#menuToggle input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 5px 0px;
          transform-origin: 5px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-3px, -1px);
          transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 60vw;
  height: 100vh;
  -webkit-box-shadow: 0 0 10px #85888C;
          box-shadow: 0 0 10px #85888C;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  list-style-type: none;
  font-size: 1.5em;
}

#menu li {
  padding: 10px 0;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

#menuToggle input:checked ~ ul {
  -webkit-transform: none;
          transform: none;
}

.menu__desktop {
  visibility: hidden;
  display: none !important;
}

@media (min-width: 992px) {
  .menu__desktop {
    visibility: visible;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.menu__mobile {
  visibility: visible;
}

@media (min-width: 992px) {
  .menu__mobile {
    visibility: hidden;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 7vh;
  width: 100%;
  background: #0088aa;
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
}

.nav__middle {
  height: 16vh;
  width: 16vh;
  margin-top: 11vh;
  padding: 2vh;
  background: white;
  -webkit-box-shadow: 0px 3px 15px 0px #707070;
          box-shadow: 0px 3px 15px 0px #707070;
  border: 1px solid white;
  border-radius: 50%;
}

.nav__link {
  min-width: 8vw;
  max-width: 8vw;
  font-size: 1.7rem;
  padding: 0 3vh;
  color: white;
  text-decoration: none;
}

.nav__link:hover {
  color: lightgray;
  text-decoration: none;
}

.nav__link:active {
  color: white;
  text-decoration: none;
}

.nav__link:visited {
  color: white;
  text-decoration: none;
}

.nav__link:focus {
  color: white;
  text-decoration: none;
}

.nav__left {
  text-align: right;
  width: 35vw;
}

.nav__right {
  text-align: left;
  width: 35vw;
}

.hero {
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-image: url("../assets/bg4.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  color: white;
  margin-bottom: 10vh;
}

@media (min-width: 992px) {
  .hero {
    background-size: 100% 100vh !important;
  }
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  margin-top: -7vh;
  text-align: center;
}

@media (min-width: 992px) {
  .hero__content {
    width: 500px;
  }
}

.hero__btn {
  margin: 2vh;
}

.hero__title {
  font-size: 5rem;
}

.hero__lang {
  position: fixed;
  top: 2vh;
  right: 2vh;
  z-index: 200;
}

@media (min-width: 992px) {
  .hero__lang {
    top: 1vh;
    right: 2vw;
  }
}

.hero__lang-img {
  width: 18vw;
  height: 18vw;
  padding: 1vh;
  cursor: pointer;
}

@media (min-width: 992px) {
  .hero__lang-img {
    width: 5vh;
    height: 5vh;
    padding: 0;
    margin: 0 1vh;
  }
}

.about {
  margin: 5vh;
}

@media (min-width: 992px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15vh;
  }
}

.about__left {
  width: 80vw;
}

@media (min-width: 992px) {
  .about__left {
    width: 22vw;
    margin: 5vh;
  }
}

.about__right {
  width: 80vw;
}

@media (min-width: 992px) {
  .about__right {
    width: 35vw;
    margin: 5vh;
  }
}

.about__motto {
  color: #0088aa;
  font-family: Neuropolitical;
}

.about__text {
  font-size: 2rem;
}

.team {
  text-align: center;
}

@media (min-width: 992px) {
  .team {
    margin: 10vw;
  }
}

.team__title {
  margin: 10vh;
}

.team__grid {
  width: 100vw;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
}

@media (min-width: 992px) {
  .team__grid {
    -ms-grid-columns: auto auto auto;
        grid-template-columns: auto auto auto;
    width: 60vw;
  }
}

.team__grid-item {
  width: 100%;
  margin-bottom: 10vh;
}

@media (min-width: 992px) {
  .team__grid-item {
    width: 20vw;
    margin: 0 auto;
    margin-bottom: 10vh;
  }
}

.team__grid-img {
  margin: 0 auto;
  width: 30vw;
  height: 30vw;
  border: 2px solid #0088aa;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 30vw 30vw !important;
}

@media (min-width: 992px) {
  .team__grid-img {
    width: 8vw;
    height: 8vw;
    background-size: 8vw 8vw !important;
  }
}

.partners {
  text-align: center;
}

@media (min-width: 992px) {
  .partners {
    margin: 20vh;
  }
}

.partners__text {
  font-size: 2rem;
}

.partners__grid {
  margin-bottom: 5vh;
}

@media (min-width: 992px) {
  .partners__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.partners__grid-card {
  width: 90vw;
  margin: 0 auto;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .partners__grid-card {
    width: 18vw;
    min-height: 60vh;
    padding: 1vh;
    margin: 2vh;
  }
}

.partners__grid-link {
  color: black;
  text-decoration: none;
}

@media (min-width: 992px) {
  .partners__grid-link {
    margin: 0 4vw;
  }
}

.partners__grid-link:hover {
  color: black;
  text-decoration: none;
}

.partners__grid-link:visited {
  color: black;
  text-decoration: none !important;
}

.partners__grid-link:active {
  color: black;
  text-decoration: none;
}

.partners__grid-link:focus {
  color: black;
  text-decoration: none;
}

.partners .card-img-top {
  width: 70%;
}

@media (min-width: 992px) {
  .partners .card-img-top {
    width: inherit;
  }
}

.partners .card-title {
  margin: 5vh 0;
}

.btn-primary {
  background: #0088aa;
  border: #0088aa;
}

.btn {
  padding: 2vw;
  font-size: 2rem;
}

@media (min-width: 992px) {
  .btn {
    padding: 1vw;
  }
}

.contact {
  width: 80%;
  margin: 0 auto;
  padding: 15vh 0;
  text-align: center;
  padding-bottom: 30vh;
}

.contact__btn {
  padding-bottom: 5vh;
}

.footer {
  background-color: #006078;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .footer {
    font-size: 2rem;
  }
}

.footer__text {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .footer__text {
    font-size: inherit;
  }
}

.footer__menu {
  margin: 2vw;
  padding-top: 15px;
  width: 15%;
  visibility: hidden;
  display: none;
}

@media (min-width: 992px) {
  .footer__menu {
    visibility: visible;
    display: block;
  }
}

.footer__menu-link {
  color: white;
  text-decoration: none;
}

.footer__menu-link:hover {
  color: lightgray;
  text-decoration: none;
}

.footer__menu-link:active {
  color: white;
  text-decoration: none;
}

.footer__menu-link:visited {
  color: white;
  text-decoration: none;
}

.footer__menu-link:focus {
  color: white;
  text-decoration: none;
}

.footer__media {
  margin: 2vw;
  width: 80%;
}

@media (min-width: 992px) {
  .footer__media {
    width: 65%;
  }
}

.footer__media-icon {
  font-size: 3rem;
  padding: 20px 10px;
  color: white;
  text-decoration: none;
}

.footer__media-icon:hover {
  color: lightgray;
  text-decoration: none;
}

.footer__media-icon:active {
  color: white;
  text-decoration: none;
}

.footer__media-icon:visited {
  color: white;
  text-decoration: none;
}

.footer__media-icon:focus {
  color: white;
  text-decoration: none;
}

@media (min-width: 992px) {
  .footer__media-icon {
    font-size: 3rem;
    padding: 0 1rem;
    padding-top: 15px;
  }
}
/*# sourceMappingURL=style.css.map */