* {
  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;
}

.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;
}

header {
  overflow: hidden;
  position: fixed;
  z-index: 4;
  padding: 20px;
}

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;
  width: 90%;
  justify-content: center;
}
nav .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
nav .logo img {
  width: 15%;
  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(12px, 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: 70px;
  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 {
  display: flex;
  transform: translateY(0);
  top: 0;
  margin-top: 70px;
}

.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;
}

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

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

h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

h4 {
  font-size: 16px;
}

.banner {
  min-height: 100vh;
}

.banner-img {
  background-image: url(../images/background/banner.png);
  background-size: cover;
  padding-top: 150px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 70px;
}

.article-detail {
  padding: 20px 30px;
  background-color: #F5F5F5;
}

.bg-article {
  background-color: #F5F5F5;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.article-cover {
  width: 280px;
  height: 280px;
}

article {
  margin-top: 20px;
}
article p {
  font-size: 14px;
}

.graphic {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/background/Group\ 377.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

footer {
  background-color: #1C4839;
  padding: 30px;
  min-height: 80vh;
}
footer h6 {
  font-size: clamp(10px, 6vw, 14px);
}
footer h5 {
  font-size: clamp(20px, 6vw, 32px);
}
footer span {
  font-size: clamp(10px, 6vw, 12px);
}
footer hr {
  color: #F5F5F5;
  width: 100%;
  margin-top: 80px;
}
footer h4 {
  margin-bottom: 20px;
}
footer .logo {
  width: 100%;
  height: 100%;
}
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;
  padding-top: 40px;
  padding-left: 0;
}
footer .contact ul li {
  list-style: none;
}
footer .contact .caption {
  font-size: 18px;
}
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: 0px;
  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: 32px;
  line-height: 70px;
}
footer .contact .play-store {
  gap: 30px;
}
footer .contact .medsos-1 {
  gap: 20px;
}
footer .contact .medsos-1 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 .medsos-1 li:nth-child(2) a:before {
  background: #FF0000;
}
footer .contact .medsos-1 li:nth-child(3) a:before {
  background: #000;
}
footer .contact .medsos-2 {
  gap: 40px;
}
footer .contact .medsos-2 li:nth-child(1) a:before {
  background: #4267B2;
}
footer .contact .medsos-2 li:nth-child(2) 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 .medsos-2 li:nth-child(3) a:before {
  background: #000;
}
footer .contact .caption {
  font-size: 14px;
}

@media screen and (min-width: 500px) {
  nav .logo img {
    width: 10%;
  }
  h3 {
    font-size: 24px;
  }
  .graphic {
    min-height: 70vh;
  }
}
@media screen and (min-width: 600px) {
  nav .logo img {
    width: 10%;
  }
}
@media screen and (min-width: 635px) and (max-width: 767px) {
  h3 {
    font-size: 30px;
  }
  nav .logo img {
    width: 10%;
  }
  .graphic {
    min-height: 80vh;
  }
  footer h6 {
    font-size: 25px;
  }
  footer span {
    font-size: 16px;
  }
  .article-cover {
    width: 450px;
    height: 450px;
  }
}
@media screen and (min-width: 768px) and (max-width: 927px) {
  header {
    padding-left: 45px;
    padding-right: 50px;
  }
  nav .logo img {
    width: 10%;
  }
  .article-cover {
    width: 80%;
    height: 100%;
  }
  .bg-article {
    padding: 30px;
  }
  h3 {
    font-size: 30px;
  }
  article p {
    font-size: 16px;
  }
  .graphic {
    min-height: 80vh;
  }
}
@media screen and (min-width: 928px) {
  header {
    padding-left: 55px;
    padding-right: 60px;
  }
  nav {
    justify-content: center;
    align-items: center;
    padding: 3px 18px;
  }
  nav .nav-links {
    flex-direction: row;
    transform: none;
    z-index: 0;
    transition: none;
    justify-content: right;
    position: relative;
    background-color: transparent;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 0;
    gap: 50px;
  }
  nav .logo img {
    width: 20%;
  }
  nav ul li a {
    font-size: 14px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 34px;
  }
  .burger {
    display: none;
  }
  .banner-img {
    padding-top: 180px;
  }
  .article-cover {
    width: 40%;
    height: 100%;
  }
  .bg-article {
    padding: 20px 50px;
  }
  article p {
    font-size: 18px;
  }
  .graphic {
    background-image: url(../images/background/Group\ 377.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  footer {
    padding: 50px 130px;
  }
  footer h6 {
    font-size: 30px;
  }
  footer span {
    font-size: 20px;
  }
  footer .contact .caption {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  header {
    padding: 20px 90px;
  }
  nav {
    padding: 20px 25px;
  }
  nav ul li a {
    font-size: 18px;
  }
  h4 {
    font-size: 20px;
  }
  .article-detail {
    padding: 30px 80px;
  }
  .banner-img {
    padding-bottom: 180px;
  }
  .bg-article {
    padding: 60px;
  }
  article p {
    font-size: 20px;
  }
  footer {
    min-height: 100vh;
    padding-left: 350px;
    padding-right: 350px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  footer hr {
    margin-top: 10px;
  }
  footer span {
    margin-top: 10px;
  }
  footer h4 {
    font-size: 40px;
  }
  .graphic {
    background-image: url(../images/background/Group\ 377.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 120vh;
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 20px;
  }
  header {
    padding: 20px 90px;
  }
  nav {
    padding: 20px 25px;
  }
  nav ul li a {
    font-size: 18px;
  }
  .banner-img {
    padding-bottom: 220px;
    padding-top: 200px;
  }
  footer h6 {
    font-size: 30px;
  }
  footer span {
    font-size: 20px;
  }
  footer .contact .caption {
    font-size: 24px;
  }
}/*# sourceMappingURL=detail.css.map */