@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
header,
#banner,
#content,
#informations,
#featured-section,
#footer,
#bottom-banner {
  transition: all 0.3s ease-in-out;
}

nav .logo,
.nav,
.actions i {
  font-size: 1rem;
}
@media screen and (max-width: 1280px) {
  nav .logo,
  .nav,
  .actions i {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  nav .logo,
  .nav,
  .actions i {
    font-size: 0.5rem;
  }
}

#content .content-top,
#content .content-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 769px) {
  #content .content-top,
  #content .content-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

#content,
#informations,
#featured-section,
#footer, footer {
  padding: 1.5rem 48px;
}
@media screen and (max-width: 769px) {
  #content,
  #informations,
  #featured-section,
  #footer, footer {
    padding: 1.125rem 32px;
  }
}
@media screen and (max-width: 480px) {
  #content,
  #informations,
  #featured-section,
  #footer, footer {
    padding: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  margin: 0 8px;
}

header {
  color: #fff;
  padding: 1.5rem 48px;
}
@media screen and (max-width: 769px) {
  header {
    padding: 1.125rem 32px;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 1.125rem 16px;
  }
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
header nav .logo {
  color: #232528;
  font-weight: 600;
  white-space: nowrap;
}
header nav .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header nav .nav .menus ul li {
  color: #232528;
  display: inline-block;
  margin: 0 0.5rem;
  font-weight: 500;
}
header nav .nav .menus ul li.active {
  font-weight: 700;
}
header nav .nav .actions {
  color: #232528;
  display: flex;
  gap: 1rem;
}
header nav .nav .actions i {
  font-weight: 500;
  cursor: pointer;
}

#banner {
  font-size: 0.875rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.0666666667);
  border: 1px solid #f9f9f9;
  height: 350px;
  padding: 0 48px;
  background-image: url("/assets/mainbanner3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 769px) {
  #banner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  #banner {
    padding: 0 16px;
  }
}
#banner .banner-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  #banner .banner-info {
    width: 400px;
  }
}
@media screen and (max-width: 1280px) {
  #banner .banner-info {
    width: 300px;
  }
}
@media screen and (max-width: 769px) {
  #banner .banner-info {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  #banner .banner-info {
    width: 100%;
    padding: 0;
  }
}
#banner .banner-info .banner-title {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 769px) {
  #banner .banner-info .banner-title {
    font-size: 1.125rem;
  }
}
#banner .banner-info .banner-description {
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 769px) {
  #banner .banner-info .banner-description {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #banner .banner-info .banner-description {
    font-size: 0.5rem;
  }
}
#banner .banner-info .banner-button {
  max-width: 150px;
  padding: 1rem;
  background-color: #232528;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
}
#banner .banner-info .banner-button:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 769px) {
  #banner .banner-info .banner-button {
    padding: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #banner .banner-info .banner-button {
    padding: 0.5rem;
  }
}

#content .header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232528;
  text-align: center;
  margin: 1.25rem;
}
#content .content-top .left,
#content .content-bottom .left {
  width: 100%;
  height: 45vh;
}
#content .content-top .right,
#content .content-bottom .right {
  width: 100%;
  height: 45vh;
}
#content .content-top .left {
  position: relative;
}
#content .content-top .left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content .content-top .right {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
#content .content-top .right .content-divide {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}
#content .content-top .right .content-divide img {
  width: 100%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content .content-top .right .content-divide .content-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232528;
}
@media screen and (max-width: 480px) {
  #content .content-top .right .content-divide .content-name {
    font-size: 0.875rem;
  }
}
#content .content-top .right .content-divide .content-button {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0.875rem;
  background-color: #fff;
  color: #232528;
  border: 1px solid #232528;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}
#content .content-top .right .content-divide .content-button:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 480px) {
  #content .content-top .right .content-divide .content-button {
    padding: 0.5rem;
  }
}
#content .content-bottom {
  margin-top: 1.25rem;
}
#content .content-bottom .left {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
#content .content-bottom .left .content-divide {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}
#content .content-bottom .left .content-divide img {
  width: 100%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content .content-bottom .left .content-divide .content-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232528;
}
@media screen and (max-width: 480px) {
  #content .content-bottom .left .content-divide .content-name {
    font-size: 0.875rem;
  }
}
#content .content-bottom .left .content-divide .content-button {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0.875rem;
  background-color: #fff;
  color: #232528;
  border: 1px solid #232528;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}
#content .content-bottom .left .content-divide .content-button:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 480px) {
  #content .content-bottom .left .content-divide .content-button {
    padding: 0.5rem;
  }
}
#content .content-bottom .right {
  position: relative;
}
#content .content-bottom .right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#informations .header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232528;
  text-align: center;
  margin: 1.25rem;
}
#informations .information-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 769px) {
  #informations .information-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #informations .information-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
#informations .information-wrapper .information-content {
  width: 100%;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#informations .information-wrapper .information-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
#informations .information-wrapper .information-content .information-name {
  color: #232528;
  font-size: 1.125rem;
  font-weight: 600;
  position: absolute;
  bottom: 0;
}

#featured-section {
  width: 100%;
  margin-bottom: 1.25rem;
}
#featured-section .header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232528;
  text-align: center;
  margin: 1.25rem;
}
#featured-section .featured-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 769px) {
  #featured-section .featured-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #featured-section .featured-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
#featured-section .features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
#featured-section .features img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#featured-section .features .feature-name {
  color: #232528;
  font-size: 1.125rem;
  font-weight: 600;
}
#featured-section .features .feature-description {
  color: #232528;
  font-size: 0.875rem;
  max-width: 80%;
  text-align: center;
}
@media screen and (max-width: 769px) {
  #featured-section .features .feature-description {
    max-width: 100%;
  }
}

#bottom-banner {
  margin: 1.5rem 48px;
  font-size: 0.875rem;
  height: 300px;
  background-image: url("/assets/bottomBanner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 769px) {
  #bottom-banner {
    margin: 0;
  }
}
#bottom-banner .bottom-banner-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 769px) {
  #bottom-banner .bottom-banner-title {
    font-size: 1.125rem;
  }
}
#bottom-banner .bottom-banner-description {
  font-size: 1.125rem;
  color: #fff;
  width: 60%;
  text-align: center;
}
@media screen and (max-width: 769px) {
  #bottom-banner .bottom-banner-description {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #bottom-banner .bottom-banner-description {
    font-size: 0.5rem;
  }
}
#bottom-banner .bottom-banner-button {
  max-width: 200px;
  padding: 1rem 1.5rem;
  background-color: #232528;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid #fff;
  transition: all 0.1s ease-in-out;
}
#bottom-banner .bottom-banner-button:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 769px) {
  #bottom-banner .bottom-banner-button {
    padding: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #bottom-banner .bottom-banner-button {
    padding: 0.5rem;
  }
}

#footer {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 480px) {
  #footer {
    grid-template-columns: repeat(1, 1fr);
  }
}
#footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 480px) {
  #footer .footer-left {
    align-items: center;
  }
}
#footer .footer-left .header {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232528;
}
#footer .footer-left .connect-bottom {
  max-width: 150px;
  padding: 1rem;
  background-color: #232528;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
}
#footer .footer-left .connect-bottom:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 769px) {
  #footer .footer-left .connect-bottom {
    padding: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer-left .connect-bottom {
    padding: 0.5rem;
  }
}
#footer .footer-left .connect-description {
  font-size: 0.875rem;
  color: rgba(35, 37, 40, 0.9);
  width: 60%;
}
@media screen and (max-width: 480px) {
  #footer .footer-left .connect-description {
    width: 100%;
  }
}
#footer .footer-right {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
#footer .footer-right .pages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .footer-right .pages .page-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232528;
}
@media screen and (max-width: 480px) {
  #footer .footer-right .pages .page-title {
    font-size: 1rem;
  }
}
#footer .footer-right .pages .page-link {
  font-size: 0.875rem;
  color: rgba(35, 37, 40, 0.9);
  cursor: pointer;
}

footer {
  margin-top: 1.25rem;
}
footer p {
  font-size: 0.875rem;
  color: rgba(35, 37, 40, 0.8);
}
footer p .download-link {
  color: rgba(35, 37, 40, 0.8);
  text-decoration: underline;
}
footer p .download-link:hover {
  color: #232528;
}/*# sourceMappingURL=style.css.map */