@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  scroll-behavior: smooth;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #9b9b9b;
  border-radius: 3px;
  cursor: pointer;
}
::selection {
  background: #66c887;
  color: #fff;
}
body {
  overflow-x: hidden;
}
.hiddenHeader {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  width: 100vw;
  transform: translateY(-50px);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transition: 0.3s;
}
.hiddenHeader img {
  width: 50px;
}
.hiddenHeader.showHeader {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hiddenHeader .menu {
  margin-top: -150px;
}
.menu {
  width: 100%;
  position: absolute;
  top: 0;
}
.menu .socials {
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  background-color: #c7ddcb;
  padding: 10px 300px;
  gap: 10px;
}
.menu .socials p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b4b4b;
}
.menu .socials a {
  color: #007f45;
  font-size: 13px;
  height: 25px;
  width: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}
.menu .navigation {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 90px;
  z-index: 1000;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.05);
}
.menu .navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
}
.menu .navigation ul li,
.menu .navigation ul li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b4b4b;
  cursor: pointer;
  text-align: center;
}
.menu .navigation ul li i {
  font-size: 0.6rem;
  color: #4b4b4b;
}
.menu .navigation img {
  width: 60px;
}
.menu .navigation button {
  padding: 8px 20px;
  background: #40916c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.menu .navigation button a {
  color: #fff;
  font-size: 0.9rem;
}
.menu .navigation button:hover {
  background: #2d6a4f;
}
.menu .navigation .dropdown {
  position: relative;
  padding: 40px 0;
}
.menu .navigation .dropdown .dropdown-menu {
  display: none;
}
.menu .navigation .dropdown.open i {
  transform: rotate(180deg);
  transition: 0.3s;
}
.menu .navigation .dropdown.open .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 80px;
  left: 0;
  background: #fff;
  padding: 20px 35px;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  gap: 20px;
}
.menu .navigation .dropdown-menu li a {
  font-weight: 500;
  color: #4b4b4b;
}
.menu .navigation .dropdown-menu li a:hover {
  color: #40916c;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #4b4b4b;
  cursor: pointer;
}
.backToTop {
  display: flex;
  font-size: 23px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #40916c;
  color: #fff;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100000;
  text-decoration: none;
  bottom: 40px;
  right: -500px;
  transition: 0.5s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}
.backToTop img {
  width: 40px;
}
.backToTop.activeBtn {
  visibility: visible;
  opacity: 1;
  right: 40px;
}
.backToTop:hover {
  color: #40916c;
  background: #fff;
}
.contact {
  padding: 15px 0px;
  z-index: 1000;
  position: fixed;
  top: 40vh;
  left: 0;
  align-items: center;
  background: #245b44;
  color: #fff;
  height: 120px;
  width: 45px;
}
.contact .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact span {
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  bottom: -50px;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.mainContainer {
  margin-top: 150px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 150px;
}
.mainContainer .researchDescription {
  padding: 20px 0;
  text-align: center;
}
.mainContainer .headerImage {
  width: 100%;
  object-fit: cover;
}
.mainContainer .links {
  display: flex;
  flex-direction: column;
}
.mainContainer .links a {
  padding: 5px 15px;
  color: blue;
  font-size: 20px;
  font-weight: 500;
}
.mainContainer .editorialBoards {
  width: 100%;
  text-align: left;
}
.mainContainer .editorialBoards .title {
  font-size: 30px;
}
.mainContainer .editorialBoards h4 {
  font-size: 20px;
}
.modalBG {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.modalBG .modal {
  align-items: center;
  justify-content: center;
  display: flex;
  height: auto;
  width: auto;
  position: relative;
  z-index: 900000;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}

.modalBG .modal .texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.modalBG .modal .texts .wrap p {
  font-size: 0.9rem;
}
.modalBG .modal .texts .wrap .position {
  font-weight: 600;
  margin-top: -5px;
}
.modalBG .modal .texts .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.modalBG .modal .texts .wrap h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
.modalBG .modal .texts .title {
  font-size: 2.3rem;
  font-weight: 700;
}

.modalBG.showModal {
  display: flex;
}
.modal .close {
  position: absolute;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  top: 0;
  right: 0;
  color: #4b4b4b;
  font-size: 20px;
  cursor: pointer;
}
.cont .dropdown {
  position: relative;
  width: 200px;
  height: 35px;
}
.cont .dropdown .input {
  cursor: pointer;
  position: absolute;
  border: 1px solid #4b4b4b;
  border-radius: 8px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  padding: 10px 15px;
  font-size: 13px;
}
.cont .dropdown.activeShow .option {
  visibility: visible;
  opacity: 1;
}
.cont .dropdown.activeShow .option {
  white-space: nowrap;
}
.cont .dropdown.activeShow .icon-down {
  transform: rotate(180deg);
}
.cont .dropdown .icon-down {
  pointer-events: none;
  align-items: center;
  justify-content: center;
  display: flex;
  left: 170px;
  top: 8px;
  transition: all 0.3s ease;
  position: absolute;
  height: 20px;
  width: 20px;
}
.cont .dropdown .icon-down i {
  font-size: 13px;
}
.cont .dropdown .option {
  position: absolute;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  top: 40px;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  color: #4b4b4b;
  z-index: 100;
  border: 0.5px solid #dddddd;
  transition: opacity 0.2s ease-in-out;
  max-height: 200px;
  overflow-y: auto;
}
.cont .dropdown .option::-webkit-scrollbar {
  width: 5px;
}
.cont .dropdown .option a {
  padding: 10px 15px;
  color: #000;
  font-size: 13px;
  transition: 0.25s;
  --hover: #52b788;
  background: #fff;
  line-height: 1;
  margin: 0.5em;
  border-radius: 5px;
}
.cont .dropdown .option a:hover {
  box-shadow: inset 19em 0 0 0 var(--hover);
  color: #fff;
}
.cont .dropdown .option a {
  padding: 10px 15px;
  color: #000;
  font-size: 13px;
  transition: 0.25s;
  --hover: #52b788;
  background: #fff;
  line-height: 1;
  margin: 0.5em;
  border-radius: 5px;
}
.cont .dropdown .option a:hover {
  box-shadow: inset 19em 0 0 0 var(--hover);
  color: #fff;
}
.cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cont .editorial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 35px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #000;
  color: #444444;
  font-size: 14px;
  cursor: pointer;
}
.goBack {
  cursor: pointer;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
footer {
  width: 100%;
  height: 19cm;
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}
footer .footer-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
footer .footer-container {
  position: relative;
  z-index: 1;
  height: 100%;
}
footer .footer-wrapper {
  height: 90%;
  display: flex;
}
footer .footer-wrapper .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
footer .footer-wrapper .wrapper:nth-of-type(2) {
  align-items: flex-end;
  padding: 90px 0;
  margin-top: 50px;
}
footer .footer-wrapper .wrapper img {
  width: 800px;
}
footer .footer-wrapper .wrapper .footer-links {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
}
footer .footer-wrapper .wrapper .footer-links .links {
  display: flex;
  gap: 30px;
  font-size: 2rem;
  margin-top: 10px;
}
footer .footer-wrapper .wrapper .footer-links .links a {
  color: #fff;
}
footer .footer-wrapper .wrapper .footer-links span {
  color: #74c69d;
}
footer .footer-wrapper .wrapper .navigational-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-wrapper .wrapper .navigational-link .navi {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
footer .footer-wrapper .wrapper .navigational-link .navi a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 10%;
}
footer .footer-wrapper .wrapper .footer-desc {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
  color: #fff;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper
  a {
  font-size: 0.8rem;
  text-align: right;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper
  span {
  font-size: 0.95rem;
  color: #59e9a8;
}
@media only screen and (min-width: 300px) and (max-width: 900px) {
  .menu .socials {
    padding: 10px 20px;
    justify-content: center;
  }
  .menu .navigation img {
    width: 45px;
  }
  .menu .navigation {
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    height: 70px;
  }

  .menu .navigation ul {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.05);
  }

  .menu .navigation ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu .navigation button {
    width: 80%;
    margin: auto;
  }

  .menu .navigation .dropdown {
    padding: 10px 0;
  }
  .menu .navigation .dropdown.open .dropdown-menu {
    position: static;
    padding: 10px 20px;
    box-shadow: none;
    background: none;
  }
  .menu .navigation .dropdown.open .dropdown-menu li a {
    font-size: 0.8rem;
  }
  .contact-nav {
    display: none;
  }
  .contact {
    display: none;
  }
  .mainContainer {
    gap: 10px;
    padding: 10px 30px;
  }
  .cont .editorial {
    width: 40%;
  }
  .dropdown {
    width: 60%;
  }
  .cont {
    gap: 10px;
  }
  .modalBG .modal .texts .title {
    font-size: 2rem;
  }
  .modalBG .modal .texts .wrap h4 {
    font-size: 1rem;
  }
  .modalBG .modal .texts .wrap p {
    font-size: 0.8rem;
  }
  footer {
    padding: 5px 15px;
  }
  footer .footer-bg {
    object-position: right center;
  }
  footer .footer-wrapper {
    flex-direction: column;
  }
  footer .footer-wrapper .wrapper {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .footer-wrapper .wrapper img {
    width: 400px;
  }
  footer .footer-wrapper .wrapper:nth-of-type(2) {
    padding: 10px 0;
    margin-top: 0;
  }
  footer .footer-wrapper .wrapper .footer-links {
    font-size: 2rem;
    margin-top: -40px;
  }
  footer .footer-wrapper .wrapper .footer-links .links {
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi {
    font-size: 0.9rem;
    font-weight: 600;
    gap: 5px;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi a {
    font-size: 0.7rem;
    font-weight: 400;
  }
  footer .footer-wrapper .wrapper .footer-desc {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    margin-top: 50px;
  }
  footer .footer-container .copyright p {
    font-size: 0.75rem;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi.contacts-link {
    margin-left: auto;
    text-align: right;
  }
  footer .copyright {
    height: 5%;
  }
  footer .footer-wrapper {
    height: 95%;
  }
}
