@charset "UTF-8";
@font-face {
  font-family: "Josefin Sans";
  src: url("/static/fonts/JosefinSans-VariableFont_wght.ttf");
  font-style: normal;
}
@font-face {
  font-family: "Encoded Sans";
  src: url("/static/fonts/EncodeSansExpanded-Regular.ttf");
  font-style: normal;
}
@font-face {
  font-family: "Encoded Sans Bold";
  src: url("/static/fonts/EncodeSansExpanded-SemiBold.ttf");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 200px;
}

.mask-follow {
  --msize: 240px; /* hole size */
  --mx: 0px; /* set by JS */
  --my: 0px;
  --r: calc(var(--msize) / 2); /* half for centering */
  mask-image: radial-gradient(#fff, #fff), url("/static/img/mask.svg"); /* layer 2: shape only */
  mask-size: 100% 100%, var(--msize) var(--msize);
  mask-position: 0 0, calc(var(--mx) - var(--r)) calc(var(--my) - var(--r));
  mask-repeat: no-repeat, no-repeat;
  /* Subtract layer 2 from layer 1 (Chromium/Firefox) */
  mask-composite: exclude;
  cursor: none;
  /* WebKit (Safari/iOS) needs its own syntax (list has N-1 entries) */
  -webkit-mask-image: radial-gradient(#fff, #fff), url("/static/img/mask.svg");
  -webkit-mask-size: 100% 100%, var(--msize) var(--msize);
  -webkit-mask-position: 0 0, calc(var(--mx) - var(--r)) calc(var(--my) - var(--r));
  -webkit-mask-repeat: no-repeat, no-repeat;
  /* Compose first over second with XOR → subtract */
  -webkit-mask-composite: xor; /* for 2 layers, one value is enough */
  display: block; /* avoid inline-img gaps */
}

/* Optional: expand mask a bit on hover for a nice feel */
.mask-follow:hover {
  --msize: 230px;
}

img,
video {
  max-height: 100%;
  max-width: 100%;
}

video {
  border-radius: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
}

#mobile-nav-open,
#mobile-nav-close {
  display: none;
}

button {
  cursor: pointer;
}

strong {
  font-family: "Encoded Sans Bold";
  font-weight: bold;
}

a {
  text-decoration: none;
}

p {
  margin: 0.5rem 0;
}

body {
  font-family: "Encoded Sans", sans-serif;
  background-color: rgb(239, 239, 239);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

nav.nav {
  background: #ffffff;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.2);
}
nav.nav .on-mobile {
  display: none !important;
}
nav.nav .content {
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  height: 12vh;
  right: 0;
}
nav.nav .content .logo img {
  height: 5vh;
}
nav.nav .content .menu {
  display: flex;
}
nav.nav .content .menu i {
  color: rgb(45, 88, 207);
  margin-right: 10px;
}
nav.nav .content .menu a {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 300;
  position: relative;
}
nav.nav .content .menu a .image-icon {
  margin-right: 10px;
  height: 20px;
}
nav.nav .content .menu a::after {
  content: "";
  height: 2px;
  width: 0;
  background: rgb(45, 88, 207);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: 0.2s ease-in-out;
}
nav.nav .content .menu a:hover::after {
  width: 100%;
}
nav.nav .content .menu a .fa-arrow-up-right-from-square {
  font-size: 10px;
  position: absolute;
  right: -10px;
  top: 5px;
}
nav.nav .content .menu .dropdown {
  position: relative;
  display: flex;
}
nav.nav .content .menu .dropdown .dropdown-menu {
  display: block;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  width: max-content;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
  z-index: 20;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 5px 5px;
}
nav.nav .content .menu .dropdown .dropdown-menu a {
  display: block;
}
nav.nav .content .menu .dropdown:hover .dropdown-menu {
  padding: 2.5rem 1rem 1rem 1rem;
  height: auto;
}

header.header {
  padding: 2rem;
  color: #fff;
  position: sticky;
  top: 0;
  width: 100vw;
  height: 86dvh;
  background: linear-gradient(to right, rgb(45, 88, 207), rgb(70, 129, 211));
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.55);
  z-index: 0;
}
header.header .header-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 2px);
  background: rgb(239, 239, 239);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
header.header video {
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
}
header.header .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, rgba(62, 62, 62, 0.5), rgba(34, 82, 184, 0.4));
}
header.header .content {
  max-width: 1400px;
  padding-top: 12vh;
  margin: 0 auto;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  z-index: 3;
}
header.header .content .left,
header.header .content .right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header.header .content .left img,
header.header .content .right img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.65));
}
header.header .content .left h1,
header.header .content .right h1 {
  font-size: 3rem;
  line-height: 1.2;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.65));
}
header.header .content .left p,
header.header .content .right p {
  font-size: 1.5rem;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.65));
}

header.header-small {
  margin-top: 12vh;
  min-height: 13vh;
  color: #fff;
  z-index: 1;
  background: linear-gradient(to right, rgb(45, 88, 207), rgb(70, 129, 211));
}
header.header-small .content {
  padding: 1rem 0;
  min-height: 13vh;
  display: flex;
  align-items: center;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  overflow-y: hidden;
}
header.header-small .content .background-image {
  position: absolute;
  right: 0;
  min-height: 400%;
  object-fit: cover;
  z-index: 1;
}
header.header-small .content h1 {
  font-size: 3rem;
  z-index: 2;
}

main.main {
  position: relative;
}
main.main .background-pattern {
  position: fixed;
  top: 0;
  opacity: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-image: url("/static/img/body-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 150%;
  pointer-events: none;
  transition: 1s ease-in-out;
}
main.main .bg-visible {
  opacity: 1;
}
main.main section {
  position: relative;
  padding: 2rem;
  z-index: 2;
}
main.main section.light-background {
  background: #f9f9f9;
  padding: 5rem 2rem;
}
main.main article.services h2 {
  font-size: 2.5rem;
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
  display: flex;
  justify-content: center;
}
main.main article.services h2 .fade-icon {
  position: relative;
  width: 5%;
}
main.main article.services h2 .fade-icon .fade-in-icon,
main.main article.services h2 .fade-icon .fade-out-icon {
  height: 35px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
main.main article.services h2 .fade-icon .fade-in-icon-left,
main.main article.services h2 .fade-icon .fade-out-icon-left {
  left: 0;
}
main.main article.services h2 .fade-icon .fade-in-icon-right,
main.main article.services h2 .fade-icon .fade-out-icon-right {
  right: 0;
}
main.main article.services h2 .fade-icon .fade-in-icon {
  opacity: 0;
}
main.main article.services h2::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 2px;
  border-radius: 50%;
  background: rgb(45, 88, 207);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
main.main article.services h2::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 2px;
  border-radius: 50%;
  background: rgb(45, 88, 207);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
main.main article.services p.read-more-below {
  text-align: center;
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}
main.main article.services p.read-more-below::before {
  z-index: 2;
  content: "";
  position: absolute;
  width: 35%;
  height: 2px;
  border-radius: 50%;
  background: rgb(45, 88, 207);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
main.main article.services p.read-more-below::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 2px;
  border-radius: 50%;
  background: rgb(45, 88, 207);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
main.main article {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}
main.main article img {
  border-radius: 10px;
}
main.main article img.not-rounded {
  border-radius: 0;
}
main.main article .tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0 0;
}
main.main article .tags a {
  padding: 8px 16px;
  background: rgb(99, 219, 14);
  color: #333333;
  border-radius: 3px;
}
main.main .contact-article {
  background: #ffffff;
  background-image: url("/static/img/nepower-icon-light.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 15px;
  background-size: 60%;
  background-position: -100px center;
}

footer.footer {
  padding: 2rem;
}
footer.footer .content {
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(45deg, rgb(45, 88, 207), rgb(70, 129, 211));
  padding: 2.5rem;
  max-width: 1800px;
  margin: 0 auto;
}
footer.footer .content .contact,
footer.footer .content .certificates,
footer.footer .content .site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer.footer .content .certificates .certs {
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: space-around;
}
footer.footer .content .certificates .certs img {
  height: 100px;
}
footer.footer .content .site-menu h4 {
  font-size: 1.2rem;
}
footer.footer .content .site-menu img {
  width: 100%;
}
footer.footer .content .sitemenu {
  list-style-image: url("/static/img/nepower-icon-white.svg");
}
footer.footer .content .sitemenu li a {
  color: #fff;
}
footer.footer .copy {
  text-align: center;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-around;
}
footer.footer .copy a {
  color: #fff;
}
footer.footer img {
  padding: 1rem;
  max-width: 300px;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.direction-column {
  flex-direction: column;
}

.ptb-3 {
  padding: 3rem 1rem 3rem 1rem;
}

span.green {
  color: #00ff46;
}

.cta {
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  color: #333333;
  background: rgb(99, 219, 14);
  display: inline-block;
  font-weight: bold;
  margin: 1rem 0;
}

.file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem;
  padding: 1rem;
  border: 1px solid rgb(45, 88, 207);
  border-radius: 5px;
}

form {
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}
form .form-field {
  margin-bottom: 0.7rem;
}
form .form-field label {
  display: block;
  font-weight: bold;
}
form .form-field input,
form .form-field textarea {
  width: 100%;
  padding: 14px;
  font-family: inherit;
  background: #f2f2f2;
  border: none;
  border-radius: 5px;
  font-size: clamp(16px, 1rem, 1.5em);
  outline: none;
  transition: 0.2s ease-in-out;
}
form .form-field input:focus,
form .form-field textarea:focus {
  border-bottom: 1px solid rgb(45, 88, 207);
}
form .form-field textarea {
  height: 200px;
  resize: vertical;
}
form .form-button {
  display: flex;
  justify-content: flex-end;
}
form .form-button button {
  font-size: clamp(16px, 1rem, 1.5em);
  background: rgb(99, 219, 14);
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
}

.service-card {
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.service-card .image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .image img {
  max-height: 80vh;
  filter: drop-shadow(5px 10px 4px rgba(62, 62, 62, 0.2705882353));
  max-width: 100%;
}
.service-card .content {
  display: flex;
  align-items: center;
}
.service-card .content .text h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}
.service-card .content .text h2 span {
  color: rgba(0, 0, 0, 0.031372549);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  white-space: nowrap;
  z-index: -1;
  text-transform: uppercase;
  pointer-events: none;
}
.service-card .content .text p {
  font-size: 1.2rem;
}

ul {
  margin: 0.5rem 0.7rem;
  list-style-image: url("/static/img/nepower-icon.svg");
}

.news-article {
  display: flex;
  flex-direction: column;
  background: #fcfcfc;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 50vh;
}
.news-article .image {
  height: 30vh;
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  border-radius: 10px 10px 0 0;
}
.news-article .image img {
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}
.news-article .content {
  border-top: 3px solid rgb(99, 219, 14);
  text-align: center;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-article .content strong {
  font-size: 1.5rem;
}
.news-article .content h2 {
  flex: 1;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.news-article .content .description-content {
  flex: 1;
}
.news-article .content .cta {
  display: inline-block;
}

.job-article {
  display: flex;
  flex-direction: column;
  background: #fcfcfc;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 30vh;
}
.job-article .image {
  min-height: 20vh;
  max-height: 20vh;
  overflow: hidden;
  display: block;
  width: 100%;
  background: #ffffff;
  border-radius: 10px 10px 0 0;
}
.job-article .image img {
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}
.job-article .title {
  padding: 1rem;
  text-align: center;
  border-top: 2px solid rgb(99, 219, 14);
}
.job-article .title strong {
  font-size: 1.5rem;
}
.job-article .content {
  border-top: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
}
.job-article .content .text {
  flex: 1;
  text-align: center;
}
.job-article .content .locations {
  display: flex;
  padding: 1.2rem 0;
  justify-content: space-around;
}
.job-article .content .hybrid {
  text-align: center;
}
.job-article .cta-block {
  padding: 1rem;
}
.job-article .cta-block a {
  display: block;
  text-align: center;
}

.card-service-intro {
  display: flex;
  flex-direction: column;
}
.card-service-intro .title h3 {
  font-size: 1.8rem;
}
.card-service-intro .content {
  flex: 1;
}
.card-service-intro .link {
  margin-top: 1rem;
}
.card-service-intro .link a {
  color: #333;
  background: rgb(99, 219, 14);
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
}

.project-card {
  color: #333;
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 1.5rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}
.project-card .image img {
  border-radius: 10px 0 0 10px;
  height: 100%;
  object-fit: cover;
}
.project-card .content {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.project-card .content .title {
  border-bottom: 2px solid rgb(99, 219, 14);
}
.project-card .content .project-description {
  flex: 1;
  padding: 1.5rem 0;
}
.project-card .content .schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-card .content .schedule .start,
.project-card .content .schedule .finish {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card .content .schedule .start i,
.project-card .content .schedule .finish i {
  color: rgb(45, 88, 207);
  margin-right: 10px;
}
.project-card:hover {
  transform: translateY(5px) scale(1.01);
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15);
}

.greyed {
  color: rgba(51, 51, 51, 0.0705882353);
  font-size: 5em;
  padding: 0;
  margin: 0;
  line-height: 0.5;
  display: block;
  transform: translateY(60%);
}

.icon {
  background: rgb(99, 219, 14);
  border-radius: 50%;
  padding: 2rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-right: 2rem;
}
.icon i {
  font-size: 3rem;
}
.icon .fa-regular {
  display: none;
}
.icon:hover .fa-regular {
  display: block;
}
.icon:hover .fa-solid {
  display: none;
}

.contact-person-card {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 2rem;
}
.contact-person-card .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}
.contact-person-card .image img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.contact-person-card .details {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.contact-person-card .details .name,
.contact-person-card .details .title,
.contact-person-card .details .contact {
  text-align: left;
}
.contact-person-card .details .name h3,
.contact-person-card .details .title h3,
.contact-person-card .details .contact h3 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.contact-person-card .details .title {
  color: rgb(45, 88, 207);
}
.contact-person-card .details .name {
  margin-top: 1.2rem;
}
.contact-person-card .details .contact p {
  margin: 0;
}

p.large-text {
  font-size: 2.2rem;
  line-height: 1.6;
  color: rgb(45, 88, 207);
  font-weight: bold;
}

#enps-value {
  color: rgb(99, 219, 14);
}

.rating-svg {
  width: 100%;
  max-width: 528px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.news-item .image {
  height: 35vh;
}
.news-item .image img {
  width: 100%;
  object-fit: cover;
}
.news-item .content {
  padding: 2rem 0;
}
.news-item .content p {
  margin: 0.8rem 0;
}
.news-item .content img {
  width: 50%;
  display: block;
  margin: 2rem auto 2rem auto;
}
.news-item .content blockquote {
  padding: 2rem;
  text-align: center;
  color: rgb(45, 88, 207);
  font-size: 1.8rem;
}
.news-item .details {
  border-top: 1px solid rgb(45, 88, 207);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.image-left .image {
  grid-area: left;
}
.image-left .content {
  grid-area: right;
}

.image-right .image {
  grid-area: right;
}
.image-right .content {
  grid-area: left;
}

.contact-block {
  width: 100%;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}
.contact-block .content h2 {
  font-size: 2rem;
}
.contact-block .content p {
  font-size: 1.2rem;
}
.contact-block .contact-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 3px;
  border-radius: 5px;
}
.contact-block .contact-card .image {
  height: 20vh;
  border-radius: 80px 20px 50px 20px;
  overflow: hidden;
}
.contact-block .contact-card .image img {
  width: 100%;
  object-fit: cover;
}
.contact-block .contact-card .name {
  padding: 1rem 0 0.2rem 0;
  text-align: center;
}
.contact-block .contact-card .contact-details {
  text-align: center;
}

table {
  border-radius: 10px;
}
table tbody tr {
  border: none;
  border: 0.5px solid rgb(45, 88, 207);
}
table tbody tr td {
  padding: 10px;
}

.text-align-center {
  text-align: center;
}

.years {
  display: flex;
  margin: 2rem 0;
  overflow-x: auto;
}
.years .years-scroller {
  width: 200vh;
  display: flex;
  justify-content: center;
}
.years .years-scroller .year-item {
  width: 200px;
  display: flex;
  flex-direction: column;
}
.years .years-scroller .year-item .year-line {
  display: flex;
  align-items: center;
}
.years .years-scroller .year-item .year-line img {
  height: 30px;
}
.years .years-scroller .year-item .year-line .scroll-line {
  display: block;
  width: 100%;
  height: 3px;
  background: rgb(45, 88, 207);
}
.years .years-scroller .year-item .year-content {
  padding: 1rem;
}
.years .years-scroller .year-item .year-content strong {
  font-size: 1.6rem;
}
.years .years-scroller .year-item .year-content p {
  font-size: 0.8rem;
}

@media screen and (max-width: 900px) {
  img {
    max-width: 100%;
    object-fit: cover;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  footer.footer .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .flex {
    flex-direction: column;
  }
  .why-work-with-us {
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .service-card {
    display: grid;
    grid-template-areas: "left" "right";
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  nav.nav {
    height: 6vh;
  }
  nav.nav .on-mobile {
    display: block !important;
  }
  nav.nav .hide-on-mobile {
    display: none !important;
  }
  nav.nav .content {
    padding: 0 2rem;
    height: 6vh;
    align-items: center;
  }
  nav.nav .content .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  nav.nav .content .logo img {
    height: 3vh;
  }
  nav.nav .content .menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 0;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: height 0.3s ease-in-out;
  }
  nav.nav .content .menu a {
    font-size: 2rem;
    padding: 1rem 0;
  }
  nav.nav .content .menu a .image-icon {
    height: 35px;
  }
  nav.nav .content .nav-open {
    height: 100dvh;
  }
  nav.nav .content #mobile-nav-open,
  nav.nav .content #mobile-nav-close {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
  }
  nav.nav .content #mobile-nav-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
  }
  main.main article.services h2::before, main.main article.services h2::after {
    width: 15%;
  }
  main.main article.services h2 .fade-icon {
    width: 15%;
  }
  .project-card {
    grid-template-columns: 1fr;
  }
  .project-card .image {
    border-radius: 10px 10px 0 0;
  }
  .project-card .content {
    border-radius: 0 0 10px 10px;
  }
  .image-right .image,
  .image-left .image {
    grid-area: left;
  }
  .image-right .content,
  .image-left .content {
    grid-area: right;
  }
  header.header {
    padding: 2rem;
    margin-top: 6vh;
    height: auto;
  }
  header.header video {
    border-radius: 0;
  }
  header.header .content {
    max-width: 100vw;
    padding: 2rem;
    grid-template-columns: 1fr;
  }
  header.header .content .left .header-content h1 {
    font-size: 2rem;
  }
  header.header .content .left .header-content p {
    font-size: 1.2rem;
  }
  header.header .content .right img {
    height: auto;
  }
  .greyed {
    color: rgba(51, 51, 51, 0.0705882353);
    font-size: 3em;
    padding: 0;
    margin: 0;
    line-height: 0.5;
    display: block;
    transform: translateY(60%);
  }
  header.header-small {
    margin-top: 6vh;
    padding: 2rem;
    color: #fff;
  }
  header.header-small .content h1 {
    font-size: 2rem;
  }
  .news-item .image {
    height: auto;
  }
  footer.footer .content {
    padding: 2rem;
  }
  footer.footer .content h3 {
    text-decoration: underline;
  }
  footer.footer .content .grid {
    grid-template-columns: 1fr;
  }
  footer.footer .content .gap-5 {
    gap: 1rem;
  }
  footer.footer .content .site-menu {
    padding: 0;
  }
  footer.footer .content .site-menu .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer.footer .content .certificates .certs {
    border-radius: 10px;
    background: #fff;
    display: flex;
    justify-content: space-around;
  }
  footer.footer .content .certificates .certs img {
    height: 100px;
  }
  footer.footer .content .site-menu img {
    width: 100%;
  }
  footer.footer .content .sitemenu {
    list-style-image: url("/static/img/nepower-icon-white.svg");
  }
  footer.footer .content .sitemenu li a {
    color: #fff;
  }
  footer.footer .copy {
    text-align: center;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
  footer.footer .copy a {
    color: #fff;
  }
  footer.footer img {
    padding: 1rem;
    max-width: 300px;
  }
}

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