@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  body {
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    gap: 96px;
  }
}
body.stopScroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

p,
label,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style-type: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 992px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

@media screen and (max-width: 767.98px) {
  .hide-phone {
    display: none !important;
  }
}

@media screen and (max-width: 1023.98px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .hide-laptop {
    display: none !important;
  }
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.jcc {
  display: flex;
  justify-content: center;
}

.sectionTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .sectionTitle {
    font-size: 32px;
  }
}

#wallpaperSection {
  position: relative;
}
#wallpaperSection img,
#wallpaperSection video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#wallpaperSection .content {
  padding: 32px 0 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(55, 178, 67, 0.6), rgba(30, 188, 238, 0.6));
}
@media screen and (min-width: 1024px) {
  #wallpaperSection .content {
    min-height: 85vh;
    padding: 32px 0 90px;
  }
}
#wallpaperSection .content h1 {
  text-align: center;
  color: white;
  font-weight: 600;
  line-height: 1.3;
}
#wallpaperSection .content h1 strong {
  display: block;
  margin-top: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  #wallpaperSection .content h1 {
    font-size: 34px;
  }
}
#wallpaperSection .content .buttonBox {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
#wallpaperSection .content .buttonBox a {
  padding: 16px 24px;
  border: 2px solid white;
  color: white;
  font-size: 18px;
  border-radius: 12px;
  min-width: 150px;
  text-align: center;
  font-weight: 500;
}
#wallpaperSection .content .buttonBox a:hover {
  background-color: white;
  color: #37B243;
}
#wallpaperSection .content svg {
  position: absolute;
  bottom: 0;
  height: 32px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
#wallpaperSection .content svg path {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}
@media screen and (min-width: 1024px) {
  #wallpaperSection .content svg {
    height: 58px;
  }
}

#accountingSystemsSection .gridBox {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  #accountingSystemsSection .gridBox {
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
#accountingSystemsSection .gridBox li {
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.13);
  background-color: white;
  display: flex;
  gap: 24px;
}
#accountingSystemsSection .gridBox li svg {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}
#accountingSystemsSection .gridBox li svg path {
  stroke-width: 1.5;
}
#accountingSystemsSection .gridBox li p {
  font-size: 20px;
  font-weight: 500;
}
#accountingSystemsSection .gridBox li span {
  display: block;
  margin-top: 12px;
  color: #616f74;
}

.withImage .gridBox {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .withImage .gridBox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.withImage .gridBox img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
}
.withImage .gridBox ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.withImage .gridBox ul li {
  font-weight: 500;
  display: flex;
  gap: 16px;
}
.withImage .gridBox ul li div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.withImage .gridBox ul li div strong {
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .withImage .gridBox ul li div strong {
    font-size: 22px;
  }
}
.withImage .gridBox ul li div small {
  color: #616f74;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .withImage .gridBox ul li div small {
    font-size: 16px;
  }
}
.withImage .gridBox ul li::before {
  content: "";
  display: block;
  margin-top: 10px;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to left, rgba(55, 178, 67, 0.6), rgba(30, 188, 238, 0.6));
  flex: 0 0 auto;
}

#securitySection ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  #securitySection ul {
    gap: 32px;
  }
}
#securitySection ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.13);
  background-color: white;
}
@media screen and (min-width: 768px) {
  #securitySection ul li {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 1024px) {
  #securitySection ul li {
    width: calc(33.3333333333% - 22px);
  }
}
#securitySection ul li .iconBox {
  width: 80px;
  border-radius: 12px;
  aspect-ratio: 1;
  background: linear-gradient(to top, rgba(55, 178, 67, 0.6), rgba(30, 188, 238, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
#securitySection ul li .iconBox svg {
  width: 48px;
  height: 48px;
}
#securitySection ul li .iconBox svg path {
  stroke: white;
  stroke-width: 1.5;
}
#securitySection ul li .iconBox .textIcon {
  width: 48px;
  height: 48px;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 100%;
  font-weight: 600;
}
#securitySection ul li span {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#chartsSection .gridBox {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  #chartsSection .gridBox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#chartsSection .gridBox .chartTitle {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
  color: #616f74;
}

#renewableEnergySection .gridBox {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  #renewableEnergySection .gridBox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#renewableEnergySection .gridBox .square {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  border-radius: 24px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
#renewableEnergySection .gridBox .square img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
#renewableEnergySection .gridBox .square div {
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  max-width: calc(100% - 32px);
}
#renewableEnergySection .gridBox .square div p {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
}
#renewableEnergySection .gridBox .square div small {
  color: #616f74;
  display: block;
}/*# sourceMappingURL=style.css.map */