* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", "Poppins", sans-serif;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.font-heading {
  font-family: "Inter", sans-serif;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.open-recruitment {
  display: grid;
  justify-items: center;
  background-color: #0f936d;
  color: #f5f5f5;
  padding: 5px 15px;
  border-radius: 20px;
}

.open-recruitment a {
  color: #f5f5f5 !important;
}

.open-recruitment a:hover {
  color: #f5f5f5;
  text-decoration: none;
}

.btn-dark-green {
  background-color: #3b5d50;
  color: #f5f5f5;
}

.btn-dark-green:hover {
  background-color: #ca8239;
  color: #f5f5f5;
}

.text-primary {
  color: #0f936d;
}

.text-dark-green {
  color: #3b5d50;
}

.text-light-green {
  color: #dde7b8;
}

.text-orange {
  color: #ca8239;
}

.text-gradient {
  background: linear-gradient(92deg, #417741 7.58%, #9fb51e 98.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-light-yellow {
  background-color: #fadb5d;
}

.text-yellow {
  color: #e8ba01;
}

h1 {
  font-size: clamp(38px, 5vw, 40px);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

h2 {
  font-size: clamp(12px, 5vw, 16px);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}


header {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: 5;
  position: absolute;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 25px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  border-radius: 38px;
  margin: 20px 30px;
  justify-content: center;
  z-index: 5;
}
nav .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
nav .logo img {
  width: 20%;
  height: auto;
  z-index: 3;
}
nav .logo .name {
  width: 100%;
  color: black;
  font-size: 5rem;
  font-family: "Holtwood One SC", sans-serif;
}
nav ul li a {
  font-size: clamp(14px, 5vw, 16px);
  color: #000;
}
nav .nav-links {
  display: flex;
  flex-direction: column;
  padding: 70px 16px 16px 16px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  gap: 20px;
  width: 90%;
  transform: translateY(-100%);
  text-align: center;
  color: black;
  transition: all 0.5s ease;
  z-index: 2;
}
nav .nav-links a:hover {
  text-decoration: none;
  color: #0F936D;
  font-weight: 700;
}
nav .nav-links.show {
  padding: 30px;
  display: grid;
  transform: translateY(0);
  top: 0;
  margin-top: 70px;
}
nav .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.burger {
  display: block;
  cursor: pointer;
  margin-left: auto;
  z-index: 2;
}
.burger .line {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #0f936d;
  border-radius: 3px;
}

#hero {
  padding: 30px;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #dde7b8 7.58%, #1c4839 98.88%);
}
#hero .group {
  flex-direction: column;
}
#hero .caption-heading {
  margin-top: 20px;
}
#hero h2 {
  line-height: 1.5;
}
#hero .floating-image {
  width: 90%;
  height: 100%;
  position: relative;
  animation: floatAnimation 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#review {
  background: linear-gradient(
    180deg,
    #1c4839 4.5%,
    #159771 82.5%,
    #dde7b8 100%
  );
  padding: 10px 30px;
}
#review hr {
  color: #fff;
  font-size: 2px;
}
#review a {
  color: #f5f5f5;
  font-size: 10px;
  text-decoration: none;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
#review a:hover {
  color: #e8ba01;
}

#news {
  background: linear-gradient(
    180deg,
    #dde7b8 4.5%,
    #159771 32.5%,
    #0f936d 70%,
    #f5f5f5 100%
  );
  padding: 10px 30px 100px 30px;
}
#news hr {
  color: #1c4839;
}
#news a {
  color: #f5f5f5;
  font-size: 10px;
  text-decoration: none;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#news a:hover {
  color: #e8ba01;
}

.article {
  min-height: 100svh;
}
.article a {
  color: #f5f5f5;
}
.article a:hover {
  color: #e8ba01;
}
.article h3 {
  font-size: 30px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.article .card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}
.article .card {
  background-color: transparent;
  border: none;
  width: 100%;
}
.article .card img {
  width: 100%;
}
.article .card h5 {
  font-size: 14px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.article .card span {
  font-size: 12px;
}
.article .card p {
  font-size: 12px;
  line-height: 1.5;
}
.article .card-body {
  padding: 5px 0px;
}

#graphic {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/background/graphic.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

footer {
  background-color: #1c4839;
  padding: 30px;
  min-height: 100vh;
}
footer h4 {
  font-size: clamp(20px, 6vw, 32px);
  margin-bottom: 20px;
}
footer h5 {
  font-size: clamp(20px, 6vw, 32px);
}
footer span {
  font-size: clamp(10px, 6vw, 18px);
  margin-top: 5%;
}
footer hr {
  color: #f5f5f5;
  width: 100%;
  margin-top: 80px;
}
footer h4 {
  margin-bottom: 20px;
}
footer .recap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
}
footer .recap iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
footer .contact {
  margin-top: 50px;
}
footer .contact ul {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 20px;
  padding-top: 40px;
  padding-left: 0;
}
footer .contact ul li {
  list-style: none;
}
footer .contact ul li a {
  width: 80px;
  height: 80px;
  background-color: transparent;
  text-align: center;
  line-height: 100px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow-y: hidden;
  border: 3px solid #f5f5f5;
  z-index: 1;
}
footer .contact ul li a .icon {
  position: relative;
  color: #f5f5f5;
  transition: 0.5s;
  z-index: 3;
  font-size: 32px;
  margin-top: 2px;
  overflow-y: hidden;
}
footer .contact ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
footer .contact ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
footer .contact ul li a:hover:before {
  top: 0;
}
footer .contact .fa-brands.fa-instagram.icon {
  font-size: 35px;
  line-height: 70px;
}
footer .contact ul li:nth-child(1) a:before {
  background:
    radial-gradient(
      61.46% 59.09% at 36.25% 96.55%,
      #ffd600 0%,
      #ff6930 48.44%,
      #fe3b36 73.44%,
      rgba(254, 59, 54, 0) 100%
    ),
    radial-gradient(
      202.83% 136.37% at 84.5% 113.5%,
      #ff1b90 24.39%,
      #f80261 43.67%,
      #ed00c0 68.85%,
      #c500e9 77.68%,
      #7017ff 89.32%
    );
}
footer .contact ul li:nth-child(2) a:before {
  background: #000;
}
footer .contact ul li:nth-child(3) a:before {
  background: #0077b5;
}
footer .contact ul li:nth-child(4) a:before {
  background: #dd4b39;
}

@media screen and (min-width: 500px) {
  h1 {
    font-size: clamp(42px, 5vw, 45px);
  }
  h2 {
    font-size: clamp(16px, 5vw, 18px);
  }
  #hero {
    padding: 40px;
  }
  #hero .image-float {
    display: flex;
    justify-content: center;
  }
  #hero .group {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #hero .floating-image {
    width: 65%;
  }
  #graphic {
    min-height: 70vh;
  }
  footer {
    padding: 80px;
  }
}
@media screen and (min-width: 600px) {
  nav .logo img {
    width: 15%;
  }
}
@media screen and (min-width: 635px) and (max-width: 767px) {
  nav .logo img {
    width: 15%;
  }
  #graphic {
    min-height: 90vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 927px) {
  header {
    padding-left: 50px;
    padding-right: 50px;
  }
  nav .logo img {
    width: 10%;
  }
  .article {
    min-height: 50vh;
  }
  .article .card-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  #graphic {
    min-height: 100vh;
  }
}
@media screen and (min-width: 880px) {
  .article .card-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media screen and (min-width: 928px) {
  header {
    padding-left: 60px;
    padding-right: 60px;
  }
  nav {
    justify-content: center;
    align-items: center;
    padding: 3px 18px;
  }
  nav .nav-links {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 50px 50px 50px 80px 105px 110px;
    transform: none;
    z-index: 0;
    transition: none;
    justify-content: right;
    position: relative;
    background-color: transparent;
    align-items: center;
    padding: 8px 0px;
    margin-bottom: 0;
    gap: 30px;
  }
  nav .logo img {
    width: 20%;
  }
  nav ul li a {
    font-size: 14px;
  }
  .burger {
    display: none;
  }
  .article h3 {
    font-size: 40px;
  }
  .article .card-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .article .card h5 {
    font-size: 14px;
  }
  .article .card p {
    font-size: 16px;
  }
  .article .card span {
    font-size: 12px;
  }
  #graphic {
    min-height: 100vh;
  }
}
@media screen and (min-width: 1400px) {
  h1 {
    font-size: clamp(58px, 5vw, 60px);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  h2 {
    font-size: clamp(20px, 5vw, 22px);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    width: 80%;
    line-height: 1.5;
  }
  header {
    padding: 0px 100px;
  }
  nav {
    padding: 10px 25px;
    margin: 20px 90px;
  }
  nav .logo img {
    width: 15%;
  }
  #hero {
    padding: 40px 90px;
  }
  #hero .group {
    flex-direction: row-reverse;
    text-align: left;
  }
  #hero .floating-image {
    width: 85%;
  }
  #review {
    padding: 40px 90px;
  }
  #news {
    padding: 40px 90px;
  }
  .article .card span {
    font-size: 14px;
  }
  .article .card h5 {
    font-size: 16px;
  }
  .article .card-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    max-width: 1400px;
  }
  #graphic {
    background-image: url(../images/background/MacBook\ Air\ -\ 2.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 120vh;
  }
  footer {
    min-height: 100vh;
    padding-left: 350px;
    padding-right: 350px;
    padding-bottom: 50px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  footer hr {
    margin-top: 10px;
  }
  footer span {
    margin-top: 10px;
  }
  footer h4 {
    font-size: clamp(40px, 5vw, 48px);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
  }
} /*# sourceMappingURL=research.css.map */
