@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s linear;
}

html {
  font-size: 70%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-track {
  background: #111;
}
html::-webkit-scrollbar-thumb {
  background: #ffc901;
}

body {
  background: linear-gradient(to top, rgb(69, 71, 166), rgb(88, 134, 228));
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

.main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.logo {
  position: absolute;
  right: 1rem;
  top: 2rem;
  z-index: 21;
  background-color: rgba(69, 71, 166, 0.7);
}
.logo a {
  font-size: 3rem;
  font-weight: bolder;
  letter-spacing: 0.2rem;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #fff;
}

.blob {
  animation: blobby 4s infinite;
}

.blob2 {
  animation: blobby2 6s infinite;
}

@keyframes blobby {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blobby2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}
.svg-bg {
  position: absolute;
  top: 0;
}

#svg-right {
  display: block;
  fill: rgb(69, 71, 166);
  opacity: 0.5;
  right: 0;
  width: 60%;
  z-index: 10;
}

#svg-left {
  fill: rgb(88, 134, 228);
  margin: 0;
  width: 60%;
  z-index: 10;
}

.menu-container {
  background-color: #ffc901;
  border-radius: 100%;
  color: white;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  width: 200px;
  height: 200px;
  left: -100px;
  top: -100px;
  transition: all 0.3s;
}
.menu-container .menu-btn {
  color: white;
  font-size: 3.5em;
  position: relative;
  top: 120px;
  left: 120px;
  z-index: 102;
}
.menu-container .menu-btn i {
  opacity: 0.7;
  transform: scale(1);
}
.menu-container .menu-btn i:hover {
  opacity: 1;
  transform: scale(1.2);
}
.menu-container .menu-items {
  width: 100%;
  height: 0%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.menu-container .menu-items nav {
  font-size: 3rem;
  width: 100%;
  height: 100%;
  margin: auto;
  font-weight: 400;
  text-align: center;
}
.menu-container .menu-items nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
}
.menu-container .menu-items nav ul li {
  display: block;
  padding: 2rem;
  min-height: 50px;
}
.menu-container .menu-items nav ul li a {
  display: block;
  color: rgb(69, 71, 166);
  text-decoration: none;
  overflow: hidden;
  transform: scale(1);
}
.menu-container .menu-items nav ul li a:hover, .menu-container .menu-items nav ul li a:focus, .menu-container .menu-items nav ul li a:active {
  color: #fff;
  opacity: 1;
  transform: scale(1.2);
}
.menu-container.expand {
  border-radius: 0;
  padding: 0 !important;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
.menu-container.expand .menu-btn {
  top: 40px;
  left: 40px;
  color: #111;
}
.menu-container.expand .menu-items {
  opacity: 0.9;
  visibility: visible;
  height: auto;
  margin-top: 8rem;
}
.menu-container.expand .menu-items ul li li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.menu-container.expand .menu-items ul li li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.menu-container.expand .menu-items ul li li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.menu-container.expand .menu-items ul li li:nth-of-type(4) {
  animation-delay: 0.5s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.btn {
  margin-top: 2rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: bolder;
  letter-spacing: 0.1rem;
  padding: 1rem 2rem;
  color: rgb(69, 71, 166);
  background: #ffc901;
  border: 0.2rem solid rgb(69, 71, 166);
  border-radius: 3rem;
  cursor: pointer;
}
.btn:hover {
  background: rgb(69, 71, 166);
  color: #fff;
  border: 0.2rem solid #fff;
}

.swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
  right: 0;
  top: 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-v {
  background: transparent;
}

.home .mySwiperHome .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content {
  width: 80%;
  padding: 2rem;
  border-radius: 2rem;
  background-color: rgba(69, 71, 166, 0.7) !important;
  text-align: start;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 2rem;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content ul {
  list-style: none;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li {
  margin-bottom: 1rem;
  color: #fff;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li i {
  font-size: 2.5rem;
  color: #ffc901;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li span {
  font-size: 2.2rem;
  margin-left: 2rem;
  font-weight: 300;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content .btn {
  letter-spacing: 0.2rem;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content .btn i {
  font-size: 2rem;
}
.home .mySwiperHome .swiper-wrapper .swiper-slide .content .btn span {
  margin-left: 1rem;
}

.about .mySwiperAbout .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about .content-about {
  width: 80%;
  height: 90%;
  margin-top: auto;
}
.about .content-about h1 {
  margin-bottom: 2rem;
  color: #fff;
}
.about .content-about h3 {
  margin-bottom: 1rem;
  color: #ffc901;
}
.about .content-about p {
  text-align: justify;
  text-indent: 3rem;
  margin-bottom: none !important;
  color: white;
  background: rgba(17, 17, 17, 0.4);
  padding: 2rem 3rem;
  border-radius: 2rem;
}
.about .content-about span {
  display: inline-block;
  position: relative;
}
.about .content-about span i {
  position: absolute;
  top: 0rem;
  right: -2rem;
  font-size: 4rem;
  color: #ffc901;
  animation: scrollArrowAnimation 2.5s ease-in-out infinite;
  animation-delay: 0.35s;
}

@keyframes scrollArrowAnimation {
  0% {
    opacity: 0;
    top: 0rem;
  }
  25% {
    opacity: 1;
    top: 3rem;
  }
  50% {
    opacity: 0;
    top: 0rem;
  }
  75% {
    opacity: 1;
    top: 3rem;
  }
  100% {
    opacity: 0;
    top: 0rem;
  }
}
.faq .content-faq h1 {
  margin-bottom: 2rem;
  color: #fff;
}
.faq .content-faq h3 {
  margin-bottom: 1rem;
  color: #ffc901;
}
.faq .content-faq .collapse-content {
  width: 90%;
  margin: auto;
  text-align: start;
}
.faq .content-faq .collapse {
  background: #fff;
}
.faq .content-faq .collapse a {
  font-size: 1.6rem;
  display: block;
  padding: 0.9rem 1.8rem;
  color: #fff;
  position: relative;
}
.faq .content-faq .collapse a.question {
  background: rgb(69, 71, 166);
}
.faq .content-faq .collapse a.question i {
  margin-right: 1rem;
  color: #ffc901;
}
.faq .content-faq .collapse a:before {
  content: "";
  border-top: 7px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  top: 25px;
  right: 30px;
}
.faq .content-faq .inner-content {
  padding: 1.8rem;
  font-weight: 300;
}
.faq .content-faq .content {
  max-height: 0em;
  font-size: 1.3rem;
  transition: 0.3s linear 0s;
  overflow: hidden;
}
.faq .content-faq .collapse + .collapse a {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.faq .content-faq .collapse:target .content {
  max-height: 15em;
}
.faq .content-faq .collapse:target a:before {
  transform: rotate(-90deg);
}

.products .content-products {
  width: 80%;
}
.products .content-products h1 {
  margin-bottom: 2rem;
  color: #fff;
}
.products .content-products h3 {
  margin-bottom: 2rem;
  color: #ffc901;
}
.products .content-products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}
.products .content-products .box-container .box {
  border-radius: 1rem;
  background: whitesmoke;
  padding: 1rem 1rem 1rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 0.2rem solid #fff;
}
.products .content-products .box-container .box:hover {
  border: 0.2rem solid #fff;
  overflow: hidden;
  background: white;
  box-shadow: #fff 0px 2px 4px 0px, #fff 0px 2px 16px 0px;
}
.products .content-products .box-container .box .product-image {
  font-size: 3rem;
  padding: 1rem;
  border-radius: 100%;
  background: rgb(69, 71, 166);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products .content-products .box-container .box .product-image i {
  width: 1em;
  height: 1em;
  color: white;
}
.products .content-products .box-container .box .product-content {
  text-align: start;
  margin-left: 3rem;
}
.products .content-products .box-container .box .product-content h3 {
  color: #111;
  margin-bottom: 0.5rem;
}
.products .content-products .box-container .box .product-content a {
  color: rgb(88, 134, 228);
}
.products .content-products .box-container .box .product-content a i {
  color: rgb(88, 134, 228);
  margin-left: 1rem;
}
.products .content-products .box-container .box .product-content a:hover {
  color: rgb(69, 71, 166);
  letter-spacing: 0.1rem;
}
.products .content-products .box-container .box .product-content a:hover i {
  color: rgb(69, 71, 166);
  margin-left: 2rem;
}

.calculator .content-calculator {
  width: 80%;
}
.calculator .content-calculator h1 {
  margin-bottom: 2rem;
  color: #fff;
}
.calculator .content-calculator .calculator-container {
  background: rgb(69, 71, 166);
  border-radius: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem 4rem;
}
.calculator .content-calculator .calculator-container .calculator-description {
  width: 45%;
  text-align: start;
}
.calculator .content-calculator .calculator-container .calculator-description h2 {
  margin-bottom: 2rem;
  color: #ffc901;
  position: relative;
}
.calculator .content-calculator .calculator-container .calculator-description h2::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -8px;
  left: 0px;
}
.calculator .content-calculator .calculator-container .calculator-description p {
  color: #fff;
}
.calculator .content-calculator .calculator-container .calculator-description ul {
  margin-top: 2rem;
  list-style: none;
}
.calculator .content-calculator .calculator-container .calculator-description ul li {
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
.calculator .content-calculator .calculator-container .calculator-description ul li a {
  display: inline-block;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 3rem;
}
.calculator .content-calculator .calculator-container .calculator-description ul li a i {
  color: #ffc901;
  font-size: 2rem;
  margin-right: 1.5rem;
}
.calculator .content-calculator .calculator-container .calculator-description ul li a span {
  color: #fff;
}
.calculator .content-calculator .calculator-container .calculator-description ul li:hover a {
  background: rgb(88, 134, 228);
}
.calculator .content-calculator .calculator-container .calculator-description ul li:hover a i {
  margin-right: 2rem;
  color: #fff;
}
.calculator .content-calculator .calculator-container .calculator-description ul li:hover a span {
  color: #ffc901;
}
.calculator .content-calculator .calculator-container .calculator-form {
  width: 45%;
  border-radius: 2rem;
  padding: 2rem;
  background: whitesmoke;
}
.calculator .content-calculator .calculator-container .calculator-form form {
  height: 100%;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group {
  position: relative;
  display: flex;
  border: 0.2rem solid black;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group label {
  font-size: 1.3rem;
  font-weight: 500;
  position: absolute;
  padding: 0.2rem 1.8rem;
  border-radius: 3rem;
  color: #111;
  background: lightgray;
  left: 0.8rem;
  top: -17px;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group input {
  width: 85%;
  font-size: 1.5rem;
  padding: 1rem 0rem 1rem 1rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group span {
  width: 15%;
  font-size: 1.5rem;
  font-weight: 400;
  background: lightgray;
  color: #111;
  padding: 1rem 1rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group {
  position: relative;
  border: 0.2rem solid black;
  padding: 1rem 1rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group .result-heading {
  font-size: 1.3rem;
  font-weight: 500;
  position: absolute;
  padding: 0.2rem 1.8rem;
  border-radius: 3rem;
  background: #ffc901;
  color: #111;
  left: 0.8rem;
  top: -17px;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group p {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a {
  background-color: rgb(69, 71, 166);
  border-radius: 2rem;
  width: 30%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 0.2rem solid rgb(69, 71, 166);
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a:hover {
  background-color: #fff;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a:hover span {
  color: rgb(69, 71, 166);
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a i {
  color: #ffc901;
  font-size: 2rem;
}
.calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a span {
  text-transform: lowercase;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

.contact .content-contact {
  width: 80%;
}
.contact .content-contact h1 {
  margin-bottom: 2rem;
  color: #fff;
}
.contact .content-contact h3 {
  margin-bottom: 2rem;
  color: #ffc901;
}
.contact .content-contact .contact-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.contact .content-contact .contact-container .contact-container-heading {
  position: relative;
  color: white;
}
.contact .content-contact .contact-container .contact-container-heading::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ffc901;
  position: absolute;
  bottom: -4px;
  left: 0px;
}
.contact .content-contact .contact-container .contact-details {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .content-contact .contact-container .contact-details a {
  display: inline-block;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 2rem;
  color: white;
  border-radius: 3rem;
  text-align: left;
}
.contact .content-contact .contact-container .contact-details a:hover {
  background-color: rgb(69, 71, 166);
}
.contact .content-contact .contact-container .contact-details a:hover i {
  margin-right: 2.5rem;
}
.contact .content-contact .contact-container .contact-details a i {
  font-size: 2.5rem;
  margin-right: 1rem;
}
.contact .content-contact .contact-container .contact-details a span {
  font-size: 2rem;
}
.contact .content-contact .contact-container .contact-form {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .content-contact .contact-container .contact-form input {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgb(69, 71, 166);
  color: #fff;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
}
.contact .content-contact .contact-container .contact-form input::-moz-placeholder {
  color: #fff;
}
.contact .content-contact .contact-container .contact-form input::placeholder {
  color: #fff;
}
.contact .content-contact .contact-container .contact-form select {
  padding: 1rem;
  background-color: rgb(69, 71, 166);
  color: #fff;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
}
.contact .content-contact .contact-container .contact-form textarea {
  padding: 1rem;
  margin-top: 1rem;
  background-color: rgb(69, 71, 166);
  color: #fff;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
}
.contact .content-contact .contact-container .contact-form textarea::-moz-placeholder {
  color: #fff;
}
.contact .content-contact .contact-container .contact-form textarea::placeholder {
  color: #fff;
}
.contact .content-contact .contact-container .contact-address {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .content-contact .contact-container .contact-address iframe {
  width: 100%;
  min-height: 330px;
}

@media (max-width: 1400px) {
  .calculator .content-calculator {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .contact .content-contact {
    width: 95%;
  }
}
@media (max-width: 991px) {
  .faq .content-faq {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .faq .content-faq h1 {
    margin-bottom: 0rem;
    font-size: 2.5rem;
  }
  .faq .content-faq h3 {
    font-size: 1.8rem;
  }
  .faq .content-faq .collapse-content .collapse a {
    font-size: 1.4rem;
  }
  .faq .content-faq .collapse-content .collapse a::before {
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    top: 20px;
    right: 20px;
  }
  .faq .content-faq .collapse-content .collapse a i {
    margin-right: 0.5rem;
  }
  .faq .content-faq .collapse-content .collapse .content .inner-content {
    padding: 1rem;
    font-size: 1.2rem;
  }
  .contact .content-contact {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .contact .content-contact h1 {
    margin-bottom: 0;
  }
  .contact .content-contact .contact-container {
    flex-direction: column;
  }
  .contact .content-contact .contact-container .contact-container-heading {
    align-self: start;
  }
  .contact .content-contact .contact-container .contact-details {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .contact .content-contact .contact-container .contact-form {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .contact .content-contact .contact-container .contact-address {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .calculator .content-calculator {
    width: 100%;
  }
  .calculator .content-calculator h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .calculator .content-calculator .calculator-container .calculator-description {
    width: 40%;
  }
  .calculator .content-calculator .calculator-container .calculator-description h2 {
    font-size: 2rem;
  }
  .calculator .content-calculator .calculator-container .calculator-description p {
    font-size: 1.5rem;
  }
  .calculator .content-calculator .calculator-container .calculator-description ul li a {
    padding: 0.5rem 1rem;
  }
  .calculator .content-calculator .calculator-container .calculator-form {
    width: 55%;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .logo a {
    font-size: 2.5rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content {
    width: 80%;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content h1 {
    font-size: 3rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li i {
    font-size: 2rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li span {
    font-size: 1.7rem;
    margin-left: 1rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content .btn span {
    font-size: 1.5rem;
  }
  .faq .content-faq {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .faq .content-faq h1 {
    font-size: 2.2rem;
    margin-bottom: 0rem;
  }
  .faq .content-faq h3 {
    font-size: 1.8rem;
  }
  .faq .content-faq .collapse-content .collapse a {
    font-size: 1.2rem;
  }
  .faq .content-faq .collapse-content .collapse a::before {
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 18px;
    right: 10px;
  }
  .faq .content-faq .collapse-content .collapse .content .inner-content {
    padding: 1.1rem;
    font-size: 1.1rem;
  }
  .products .content-products {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .products .content-products h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .products .content-products h3 {
    font-size: 1.8rem;
  }
  .products .content-products .box-container .box .product-content h3 {
    font-size: 2rem;
  }
  .contact .content-contact h1 {
    font-size: 2.2rem;
  }
  .calculator .content-calculator {
    width: 100%;
    height: 90%;
    margin-top: auto;
    overflow-y: auto;
  }
  .calculator .content-calculator h1 {
    font-size: 2.5rem;
  }
  .calculator .content-calculator .calculator-container {
    flex-direction: column;
  }
  .calculator .content-calculator .calculator-container .calculator-description {
    width: 100%;
    margin-bottom: 2rem;
  }
  .calculator .content-calculator .calculator-container .calculator-form {
    width: 100%;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a {
    justify-content: center;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a i {
    margin-right: 1rem;
  }
}
@media (max-width: 450px) {
  .menu-container .menu-items nav {
    font-size: 2rem;
  }
  .menu-container .menu-items nav ul li {
    padding: 1.5rem;
  }
  .logo a {
    font-size: 2rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content {
    width: 90%;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content h1 {
    font-size: 2.2rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content h1 br {
    display: none;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li i {
    font-size: 2rem;
  }
  .home .mySwiperHome .swiper-wrapper .swiper-slide .content ul li span {
    font-size: 1.7rem;
    margin-left: 1rem;
  }
  .about .content-about {
    width: 90%;
  }
  .about .content-about h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .about .content-about h3 {
    font-size: 1.8rem;
  }
  .about .content-about p {
    font-size: 1.4rem;
  }
  .faq .content-faq {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .faq .content-faq h1 {
    font-size: 2.2rem;
    margin-bottom: 0rem;
  }
  .faq .content-faq h3 {
    font-size: 1.8rem;
  }
  .faq .content-faq .collapse-content .collapse a {
    font-size: 1.2rem;
  }
  .faq .content-faq .collapse-content .collapse a::before {
    border-top: 4px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    top: 15px;
    right: 10px;
  }
  .faq .content-faq .collapse-content .collapse a i {
    margin-right: 0.5rem;
  }
  .faq .content-faq .collapse-content .collapse .content .inner-content {
    padding: 1rem;
    font-size: 1.1rem;
  }
  .products .content-products {
    width: 90%;
    height: 90%;
    margin-top: auto;
    overflow-y: scroll;
  }
  .products .content-products h1 {
    font-size: 2.2rem;
    margin-bottom: 0rem;
  }
  .products .content-products h3 {
    font-size: 1.2rem;
  }
  .products .content-products .box-container .box {
    flex-direction: column;
    align-items: start;
  }
  .products .content-products .box-container .box .product-content {
    margin-left: 0;
    margin-top: 1rem;
  }
  .products .content-products .box-container .box .product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .calculator .content-calculator h1 {
    font-size: 2.2rem;
  }
  .calculator .content-calculator .calculator-container {
    flex-direction: column;
    padding: 2rem;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group label {
    padding: 0.2rem 0.8rem;
    left: 0rem;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group input {
    width: 80%;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-inputs .input-group span {
    width: 20%;
  }
  .calculator .content-calculator .calculator-container .calculator-form form .calc-results .result-group a {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */