/*
Theme Name: March
*/
@font-face {
  font-family: "Assistant-Regular";
  src: url("assets/fonts/Assistant-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Assistant-Bold";
  src: url("assets/fonts/Assistant-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Assistant-ExtraBold";
  src: url("assets/fonts/Assistant-ExtraBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html, body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

#main-header {
  animation: zoomIn; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.7s; /* don't forget to set a duration! */
}

h1 {
  font-family: "Assistant-ExtraBold";
}

h2 {
  font-family: "Assistant-Bold";
}

h3, h4, p, a {
  font-family: "Assistant-Regular";
}

@media (min-width: 0) {
  h1 {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 0) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 0) {
  h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

@media (min-width: 0) {
  h4 {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

@media (min-width: 0) {
  p, ul {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  p, ul {
    font-size: 1rem;
  }
}

.page-wrapper {
  height: 100%;
  flex: 1;
}

.banner {
  text-align: right;
  box-sizing: border-box;
}
.banner .triangle {
  background-color: #021621;
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
  position: absolute;
  right: 0px;
  top: 0px;
  width: 70%;
  height: 300px;
}
@media (min-height: 0) {
  .banner .triangle {
    width: 90% !important;
    height: 150px !important;
  }
}
@media (min-width: 576px) {
  .banner .triangle {
    width: 80% !important;
    height: 225px !important;
  }
}
@media (min-width: 768px) {
  .banner .triangle {
    width: 70% !important;
    height: 300px !important;
  }
}
@media (min-width: 992px) {
  .banner .triangle {
    height: 350px !important;
  }
}
@media (min-width: 1200px) {
  .banner .triangle {
    height: 400px !important;
  }
}
@media (min-width: 1500px) {
  .banner .triangle {
    height: 500px !important;
  }
}
.banner .logo {
  display: flex;
  position: absolute;
  right: 50px !important;
  top: 70px !important;
}
@media (min-width: 0) {
  .banner .logo {
    right: 20px !important;
    top: 20px !important;
  }
}
@media (min-width: 576px) {
  .banner .logo {
    right: 20px !important;
    top: 17px !important;
  }
}
@media (min-width: 768px) {
  .banner .logo {
    right: 27px !important;
    top: 20px !important;
  }
}
@media (min-width: 992px) {
  .banner .logo {
    right: 40px !important;
    top: 35px !important;
  }
}
@media (min-width: 1200px) {
  .banner .logo {
    right: 50px !important;
    top: 50px !important;
  }
}
@media (min-width: 1500px) {
  .banner .logo {
    right: 50px !important;
    top: 70px !important;
  }
}
.banner .logo img {
  width: 500px;
  height: 100px;
}
@media (min-width: 0) {
  .banner .logo img {
    width: 150px !important;
    height: 50px !important;
  }
}
@media (min-width: 576px) {
  .banner .logo img {
    width: 210px !important;
    height: 80px !important;
  }
}
@media (min-width: 768px) {
  .banner .logo img {
    width: 275px !important;
    height: 120px !important;
  }
}
@media (min-width: 992px) {
  .banner .logo img {
    width: 350px !important;
    height: 120px !important;
  }
}
@media (min-width: 1200px) {
  .banner .logo img {
    width: 400px !important;
    height: 120px !important;
  }
}
@media (min-width: 1500px) {
  .banner .logo img {
    width: 500px !important;
    height: 120px !important;
  }
}

main {
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  main {
    padding-top: 100px;
    width: 300px !important;
  }
}
@media (min-width: 576px) {
  main {
    padding-top: 150px;
    width: 450px !important;
  }
}
@media (min-width: 768px) {
  main {
    padding-top: 250px;
    width: 600px !important;
  }
}
@media (min-width: 992px) {
  main {
    padding-top: 350px;
    width: 800px !important;
  }
}
@media (min-width: 1200px) {
  main {
    padding-top: 350px;
    width: 1000px !important;
  }
}
@media (min-width: 1500px) {
  main {
    padding-top: 350px;
    width: 1350px !important;
  }
}
main .investments .investments-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: center;
}
@media (min-width: 0) {
  main .investments .investments-grid {
    gap: 8px;
    padding-top: 10px;
  }
}
@media (min-width: 576px) {
  main .investments .investments-grid {
    gap: 12px;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  main .investments .investments-grid {
    gap: 16px;
    padding-top: 25px;
  }
}
@media (min-width: 992px) {
  main .investments .investments-grid {
    gap: 16px;
    padding-top: 35px;
  }
}
@media (min-width: 1200px) {
  main .investments .investments-grid {
    gap: 24px;
    padding-top: 35px;
  }
}
@media (min-width: 1500px) {
  main .investments .investments-grid {
    gap: 32px;
    padding-top: 45px;
  }
}
main .investments .investments-grid img {
  width: 100%;
  height: auto;
  max-width: 200px;
}
main .investments .investments-grid .investment-item {
  animation: zoomIn; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.6s; /* don't forget to set a duration! */
  display: flex;
  aspect-ratio: 1/1;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  justify-content: space-evenly;
  align-items: center;
  object-fit: contain;
}
@media (min-width: 0) {
  main .investments .investments-grid .investment-item {
    padding: 12px;
    width: 122px;
    height: 122px;
  }
}
@media (min-width: 576px) {
  main .investments .investments-grid .investment-item {
    padding: 12px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 768px) {
  main .investments .investments-grid .investment-item {
    padding: 2rem;
    width: 170px;
    height: 170px;
  }
}
@media (min-width: 992px) {
  main .investments .investments-grid .investment-item {
    width: 230px;
    height: 230px;
  }
}
@media (min-width: 1200px) {
  main .investments .investments-grid .investment-item {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 1500px) {
  main .investments .investments-grid .investment-item {
    width: 300px;
    height: 300px;
  }
}
main .investments .investments-grid .investment-item-with-link {
  animation: zoomIn; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.6s; /* don't forget to set a duration! */
  display: flex;
  aspect-ratio: 1/1;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  justify-content: space-evenly;
  align-items: center;
}
@media (min-width: 0) {
  main .investments .investments-grid .investment-item-with-link {
    width: 122px;
    height: 122px;
    padding: 12px;
  }
}
@media (min-width: 576px) {
  main .investments .investments-grid .investment-item-with-link {
    width: 120px;
    height: 120px;
    padding: 12px;
  }
}
@media (min-width: 768px) {
  main .investments .investments-grid .investment-item-with-link {
    width: 170px;
    height: 170px;
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  main .investments .investments-grid .investment-item-with-link {
    width: 230px;
    height: 230px;
  }
}
@media (min-width: 1200px) {
  main .investments .investments-grid .investment-item-with-link {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 1500px) {
  main .investments .investments-grid .investment-item-with-link {
    width: 300px;
    height: 300px;
  }
}
main .investments .investments-grid .investment-item-with-link:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #021621;
  color: #FFFFFF;
  clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 30%);
  height: 500px;
  width: 100%;
  margin-top: -150px;
  position: relative;
  bottom: 0;
}
@media (min-width: 0) {
  .footer {
    height: 300px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 60%);
  }
}
@media (min-width: 768px) {
  .footer {
    height: 330px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 50%);
  }
}
@media (min-width: 768px) {
  .footer {
    height: 350px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 50%);
  }
}
@media (min-width: 992px) {
  .footer {
    height: 380px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 50%);
  }
}
@media (min-width: 1200px) {
  .footer {
    height: 450px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 40%);
  }
}
@media (min-width: 1500px) {
  .footer {
    height: 500px;
    clip-path: polygon(35% 75%, 100% 75%, 100% 100%, 0 100%, 0 30%);
  }
}
.footer .footer-links {
  position: relative;
  top: 35%;
  display: flex;
  gap: 3rem;
}
.footer .footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: large;
  transition: color 0.3s ease;
}
@media (min-width: 0) {
  .footer .footer-links a {
    font-size: small;
  }
}
@media (min-width: 768px) {
  .footer .footer-links a {
    font-size: larger;
  }
}
.footer .footer-links a:hover {
  color: #939393;
}

/*# sourceMappingURL=style.css.map */
