@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-style: normal;
  src: url("../assets/fonts/Poppins-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-style: italic;
  src: url("../assets/fonts/Poppins-BlackItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: bold;
  font-style: normal;
  src: url("../assets/fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  src: url("../assets/fonts/Poppins-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-lighter";
  font-weight: lighter;
  font-style: italic;
  src: url("../assets/fonts/Poppins-Light.ttf") format("truetype");
}
body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  margin: 0;
  width: 100%;
}

header {
  font-family: "Poppins", sans-serif;
  margin: 0;
  width: 100%;
}

footer {
  font-family: "Poppins", sans-serif;
  margin: 0;
  width: 100%;
}

.nav {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  position: absolute;
  width: 90%;
}
@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: row;
    float: left;
    width: 200px;
  }
  .nav__menu {
    display: none !important;
  }
  .nav .download-button {
    display: none !important;
  }
  .nav .burguerButton {
    display: block !important;
    height: 25px;
    margin-bottom: auto;
    margin-left: 10px;
    margin-top: auto;
    width: 25px;
  }
  .nav .topNav {
    display: block !important;
    background-color: #2A2356;
    border-radius: 5px;
    display: block;
    margin-top: 50px;
    position: absolute;
    transition: 0.5s;
    width: 100%;
  }
  .nav .topNav__menu {
    display: flex;
    flex-direction: column;
  }
  .nav .topNav__menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
  }
}
.nav .topNav {
  display: none;
}
.nav .hideNav {
  display: none;
}
.nav .burguerButton {
  display: none;
}
.nav__logo {
  color: white;
  margin-left: 40px;
  width: 100px;
}
.nav__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-right: 40px;
  margin-top: 20px;
  width: 100%;
}
.nav__menu a {
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin-left: 40px;
  text-decoration: none;
}
.nav__menu a:hover {
  color: #FF6B00;
  transition: 0.5s;
}
.nav .download-button {
  background-color: #FFCC00;
  border-style: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
  min-height: 48px !important;
  width: 209px;
}
.nav .download-button:hover {
  background-color: #FF6B00;
  scale: 1.2;
  transition: 0.5s;
}

.mainBox {
  background-image: url("../assets/img/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  margin: 0;
  min-height: 1000px;
  width: 100%;
}
.mainBox .price-component {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 40px;
  margin-top: 125px;
  max-height: 400px;
  width: 100%;
}
@media (max-width: 768px) {
  .mainBox .price-component {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 200px;
    width: 100%;
  }
  .mainBox .price-component .text-title {
    font-size: 34px !important;
    text-align: center;
  }
  .mainBox .price-component .text-message {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
  .mainBox .price-component .text-paragraph {
    font-size: 26px;
    margin-bottom: 0px;
    text-align: center;
  }
  .mainBox .price-component .price-box {
    align-items: center;
    display: flex;
    flex-direction: column !important;
    justify-content: center;
  }
  .mainBox .price-component .text-title {
    font-size: 64px;
    font-weight: bold;
  }
  .mainBox .price-component .text-message {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
    width: 300px;
  }
  .mainBox .price-component .order-button {
    background-color: #FFCC00;
    border-style: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-inline: auto;
    min-height: 48px !important;
    width: 209px;
  }
  .mainBox .price-component .order-button:hover {
    background-color: #FF6B00;
    scale: 1.2;
    transition: 0.5s;
  }
}
.mainBox .price-component .text-paragraph {
  font-size: 26px;
  margin-bottom: 0px;
}
.mainBox .price-component .price-box {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-right: auto;
  width: 100%;
}
.mainBox .price-component .text-title {
  font-size: 64px;
  font-weight: bold;
}
.mainBox .price-component .text-message {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 20px;
  width: 300px;
}
.mainBox .price-component .order-button {
  background-color: #FFCC00;
  border-style: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
  min-height: 48px !important;
  width: 209px;
}
.mainBox .price-component .order-button:hover {
  background-color: #FF6B00;
  scale: 1.2;
  transition: 0.5s;
}
.mainBox .price-circle {
  align-items: center;
  background-color: #FFCC00;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 22px;
  height: 120px;
  justify-content: center;
  margin-right: 10px;
  text-align: center;
  width: 120px;
}
.mainBox .price-circle .price {
  color: #FF6B00;
  font-size: 30px;
  font-weight: bold;
  margin-top: 30px;
}
.mainBox .price-circle:hover {
  background-color: #FF6B00;
  scale: 1.2;
  transition: 0.5s;
}

.categories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}
.categories__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-inline: auto;
}
@media (max-width: 1160px) {
  .categories__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .categories__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }
}
.categories__item {
  align-items: end;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
  width: 277px;
}
.categories__item__information {
  border-style: none;
  color: black;
  font-size: 14px;
  font-weight: bold;
  margin-top: auto;
  min-height: 48px !important;
  text-align: center;
  width: 100%;
}
.categories__item:hover {
  scale: 1.1;
  transition: 0.5s;
}

.features {
  background-color: #2A2356;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.features__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-inline: auto;
}
@media (max-width: 1160px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__item {
  color: white;
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  max-width: 380px !important;
  text-align: center;
  width: 100%;
}
.features__item .description {
  font-size: 20px;
  font-weight: bold;
  margin-inline: auto;
  width: 160px;
}
.features__item > img {
  height: 115px;
  margin-inline: auto;
  width: 115px;
}

.partners {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.partners__grid {
  min-height: 400px;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}
.partners__grid img {
  height: 200px;
  width: 278px;
}
@media (max-width: 1200px) {
  .partners__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background-color: white;
  display: flex;
  flex-direction: row;
  height: 200px;
  justify-content: center;
  width: 100%;
}
.footer__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-inline: auto;
  max-width: 80%;
}
.footer__grid .companyLogo {
  color: #FFCC00;
}
.footer__grid .paragraph {
  color: #231900;
  font-family: "Poppins-lighter", sans-serif;
  font-size: 14px;
  font-weight: lighter !important;
  text-align: start;
}
@media (max-width: 1160px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__grid .lists {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: start;
  width: 100%;
}
.footer__grid .lists ul {
  color: #231900;
  font-size: 17px;
  list-style-type: none;
  padding: 0;
  text-decoration: none;
}
.footer__grid .lists ul > li {
  color: #231900;
  font-family: "Poppins-lighter", sans-serif;
  font-size: 14px;
  font-weight: lighter !important;
  text-align: start;
}