* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
  letter-spacing: 1px;
  background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
}

/****************************/
/* NAVIGATION */
/***************************/
.main-header {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
}

.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo h3 a {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 7px;
}

.logo span {
  font-size: 18px;
  color: #333;
}

.logo-2 h2 {
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 17px;
  font-weight: 300;
  align-items: center;
  color: #ffffff;
}

.nav-link:hover {
  text-decoration: underline;
}

.current {
  text-decoration: underline;
}

.add-dark {
  background-color: #d14306;
  padding: 8px 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  border-radius: 5px;
}

.add-dark i {
  color: #fff;
  margin-left: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.jt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.hero-video {
  width: 95%;
  max-width: 1100px;
  height: auto;
  border-radius: 12px;
}

.txt-aside h3 {
  padding-top: 90px;
  max-width: 60%;
  font-size: 30px;
}

/**********************************/
/*      MAIN HERO SECTIONS       */
/**********************************/
.hero {
  padding-bottom: 20px;
  background-color: #000000;
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-inner {
  flex: 1 1 50%;
}

.hero-inner h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-inner p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn  {
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: #FD814C;
  padding: 10px 0;
  border-bottom: solid #fff 1px;
}



.hero-center img {
  flex: 1 1 40%;
  width: 100%;
  max-width: 500px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.0) 30%,
    rgba(0, 0, 0, 0.0) 70%,
    rgb(0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

/*************************************************************************************/

.work-section {
  background-color: #f4eadc34;
  padding: 100px 0;
  font-family: sans-serif;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 20px;
  align-items: start;
}

.work-grid h2 {
  font-size: 52px;
  font-weight: 400;
  margin: 0;
  color: #111;
}

.work-content p {
  font-size: 24px;
  color: #000;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 40px;
}

.work-link {
  font-size: 22px;
  color: #111;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 2px solid #111;
  padding-bottom: 3px;
  transition: all 0.2s ease;
}

.work-link:hover {
  color: #db993c;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .work-grid h2 {
    font-size: 40px;
  }

  .work-content p {
    font-size: 18px;
  }
}


/****************************/
/* OUR SERVICES  */
/***************************/
.our-services {
  padding: 80px 15px;
  padding-bottom: 90px;
  background-color: #fdfcf8;
}

.cont-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 60px;
  align-items: center;
}

.cont-service img {
  height: 75vh;
  object-fit: cover;
}

.grd-serv {
  padding-top: 10px;
}

.cont-service h1 {
  color: #000;
  text-decoration: underline;
  font-size: 17px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 300;
}

.cont-service h2 {
  font-size: 34px;
  font-weight: 600;
  max-width: 600px;
  text-transform: uppercase;
  line-height: 1.3;
  color: #000000;
}

.cont-service p {
  font-size: 20px;
  color: #000;
  max-width: 90%;
  padding-top: 40px;
}

.btn-cta {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  border-radius: 10px;
  margin-top: 43px;
  background-color: #000;
  padding: 15px 34px;
}

.btn-cta:hover {
  background-color: #111111d9;
  color: #fff;
}

.btn-service i {
  margin-left: 15px;
  font-size: 20px;
}

.pt {
  padding-top: 50px;
}

.bg-pur {
  background-color: #CAD9FD;
}

.about-section {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #fff;
}

.about-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.about-text h2 {
  font-size: 33px;
  max-width: 100%;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
  color: #000;
  margin: 0;
}

.about-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-projects {
  display: inline-block;
  padding: 10px 26px;
  font-weight: 500;
  border-radius: 10px;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  background-color: #360000;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-projects i {
  margin-left: 10px;
}

.btn-projects:hover {
  background-color: #720d0d;
}

@media (max-width: 1024px) {
  .about-text h2 {
    font-size: 26px;
  }
  .about-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 20px;
  }
  .about-text p {
    font-size: 15px;
  }
  .btn-projects {
    font-size: 14px;
    padding: 8px 20px;
  }
}

.pd-top {
  padding-top: 15px;
  padding-bottom: 40px;
}


.CF-cont {
  background-color: #fff;
  width: 100%;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.marquee-track h2 {
  display: inline-block;
  margin: 0 1.6rem;
  font-weight: 300;
  color: #f1ffe3;
  font-size: 1.1rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .CF-cont {
    padding: 2px 0;
  }

  .marquee-track h2 {
    font-size: 14px;
  }
}

/*DARKEST*/
.dark {
  background-color: #000;
  color: #fff;
}

.fff h2 {
  color: #000000;
  font-weight: 400;
}

.fff i {
  color: #000;
  margin-right: 10px;
}

/****************************/
/* PROJECTS */
/***************************/
.projects {
  padding: 100px 0;
  background-color: #fff;
}

.project-filters {
  display: flex;
  padding-top: 30px;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 5px 18px;
  border: none;
  border-radius: 3px;
  background-color: #E3E2DA;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.filter-btn:hover {
  background-color: #dad9ce;
}

.filter-btn.active {
  background-color: #130f09;
  color: #fff;
}

.txt-projects {
  margin-bottom: 40px;
}

.txt-projects h3 {
  font-size: 54px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
  gap: 20px;
  row-gap: 60px;
}

.project-card {
  overflow: hidden;
}

.project-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card img,
.project-card video {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  aspect-ratio: 3/2;
  border-radius: 5px;
  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h5 {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin: 16px 0 6px;
}

.project-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .projects {
    padding: 90px 16px;
  }

  .txt-projects h3 {
    font-size: 28px;
    padding-top: 50px;
  }

  .filter-btn {
    width: auto;
    height: auto;
    padding: 8px 20px;
    font-size: 12px;
  }

  .filter-btn img {
    display: none;
  }

  .filter-btn::before {
    content: attr(data-label);
    font-size: 14px;
    color: #000;
  }

  .filter-btn.active::before {
    color: #fff;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card h5 {
    font-size: 14px;
  }
}

/*****************************************/
.sustainability-section {
  padding: 120px 0;
  background-color: #f9f9f9;
}

.sustainability-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}

.sustainability-text {
  background-color: #66f1a4; /* tilsvarende grønn */
  color: black;
  flex: 1 1 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
}

.sustainability-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sustainability-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.sustainability-sub {
  margin-top: auto;
  margin-top: 3rem;
}

.sustainability-image {
  flex: 1 1 50%;
  min-height: 300px;
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/****************************/
/* TESTMONIALS */
/***************************/
.testmonials {
  padding: 60px 0;
  padding-bottom: 90px;
  background-image: linear-gradient(to top, #292b30 0%, #17181b 100%);
  width: 100%;
  position: relative;
}

.testi-heads h2 {
  font-size: 35px;
  color: #ffffffe9;
  font-weight: 300;
  padding: 20px 0;
}

.scroll-buttons {
  position: absolute;
  top: 100px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.scroll-buttons button {
  background-color: #fffdf9;
  border: none;
  font-size: 34px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 30px;
}

.scroll-buttons button:hover {
  background-color: #f3e4cf;
}

.testmonials-comments {
  display: flex;
  gap: 30px;
  scroll-behavior: smooth;
  padding: 30px;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* for iOS */
}

.testmonials-comments::-webkit-scrollbar {
  display: none;
}

.testmonials-content {
  flex: 0 0 48%;
  flex-direction: column;
  justify-content: center;
  max-width: 48%;
  padding: 30px;
  padding-top: 80px;
  align-items: center;
  height: 55dvh;
  background-color: #fff9f0;
  border: solid 0.6px #c6c6c64b;
}

.testmonials-content p {
  color: #222;
  font-size: 20px;
  letter-spacing: 1.2px;
  font-weight: 300;
  line-height: 1.6;
}

.info-test {
  margin-top: 40px;
}

.info-test img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.info-test h4 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0;
}

.info-test h6 {
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

@media (max-width: 768px) {
  .testmonials {
    padding: 40px 0;
  }

  .testi-heads h2 {
    font-size: 20px;
    text-align: center;
    text-transform: lowercase;
    padding: 10px 20px;
  }

  .scroll-buttons {
    position: static;
    justify-content: center;
    margin: 20px 0;
  }

  .scroll-buttons button {
    font-size: 28px;
    padding: 8px;
  }

  .testmonials-comments {
    flex-direction: row;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    overflow-x: auto;
    padding: 10px;
    gap: 16px;
  }

  .testmonials-content {
    flex: 0 0 85%;
    max-width: 85%;
    height: auto;
    padding: 20px;
    scroll-snap-align: center;
    border-radius: 10px;
  }

  .testmonials-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .info-test {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-test img {
    width: 40px;
    height: 40px;
  }

  .info-test h4 {
    font-size: 16px;
    margin: 0;
  }

  .info-test h6 {
    font-size: 13px;
  }
}
/****************************/
/* BUILD YOUR PROJECT */
/***************************/
.build-project {
  background-color: #000;
  padding: 30px 50px;
}

.biuld-content {
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.biuld-content h1 {
  font-size: 70px;
  font-weight: 600;
  width: 900px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
}

.biuld-content p {
  color: #ffffffe6;
  padding: 30px 0;
  font-size: 20px;
  width: 500px;
  font-weight: 300;
}

.btn-letsgo {
  padding: 12px 40px;
  background-color: #e5fb52;
  border-radius: 5px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

/****************************/
/* FAQ */
/***************************/
.bg-yel {
  background-color: #ffd8a1;
}

.faqs {
  padding-top: 150px;
  background-color: #fff;
  padding-bottom: 120px;
}

.yfaq {
  padding-bottom: 40px;
}

.yfaq h2 {
  font-size: 50px;
}

.question {
  border-bottom: 1px solid #000;
}

.question button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border: none;
  outline: none;
  font-size: 25px;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.d-arrow {
  transition: transform 0.3s ease-in;
  color: #000;
}

/*add this class when click*/
.question p {
  font-size: 20px;
  max-height: 0;
  opacity: 0;
  line-height: 1.5;
  overflow: hidden;
  padding: 0 15px; /* så det ikke hopper ved toggle */
  transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
}

.question p.show {
  max-height: 500px; /* høy nok til å vise innhold */
  opacity: 1;
  padding: 15px 15px 30px 15px;
}

.question button .d-arrow.rotate {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  /* ABOUT SECTION */
  .about-wrapper {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-text p {
    font-size: 16px;
    margin-top: 40px;
    max-width: 100%;
  }

  .about-image img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .btn-rm {
    padding: 10px 24px;
    font-size: 16px;
  }


  /* FAQ SECTION */
  
  .faqs {
    padding: 30px 0;
  }

  .yfaq h2 {
    font-size: 32px;
    padding-top: 40px;
  }
  .question button {
    font-size: 16px;
    padding: 25px 0;
  }

  .question p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .question p.show {
    padding: 15px 10px 25px 10px;
  }
}

/****************************************************   OM OSS *************************/

.padding-top {
  padding-top: 140px;
  padding-bottom: 50px;
}

.about-geni {
  background-color: #f9f9f9;
  padding: 140px 20px;
  font-family: sans-serif;
}

.about-geni-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff2cd;

  flex-wrap: wrap;
}

.geni-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.geni-text a.geni-link {
  text-transform: uppercase;
  text-decoration: underline;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 15px;
}

.geni-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
}

.geni-text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: #111;
  max-width: 600px;
  margin-bottom: 40px;
}

.geni-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.geni-btn:hover {
  background-color: #111;
}

.geni-image {
  flex: 1;
  min-width: 300px;
}

.geni-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

/* Media query for mobile */
@media (max-width: 768px) {
  .about-geni-wrapper {
    flex-direction: column;
  }

  .geni-text h2 {
    font-size: 28px;
  }

  .geni-text p {
    font-size: 16px;
  }

  .geni-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.unikt-digital {
  padding: 100px 20px;
  background-color: #fff;
}

.unikt-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

.unikt-left {
  flex: 0 0 600px;
  font-weight: 800;
  position: sticky;

  top: 100px;
  line-height: 1.3;
  color: #111;
}

.unikt-left h2 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
}

.unikt-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.unikt-item h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

.unikt-item p {
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width: 768px) {
  .unikt-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .unikt-left {
    position: static;
    flex: 1;
    font-size: 28px;
    text-align: left;
  }

  .unikt-left h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .unikt-right {
    gap: 60px;
  }

  .unikt-item h3 {
    font-size: 22px;
    font-weight: 700;
  }

  .unikt-item p {
    font-size: 14px;
    max-width: 100%;
  }
}

.våre-kunder {
  padding: 90px 0;
  background-color: #fff;
}

.kunder-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  justify-content: space-between;
  padding: 40px 0;
}

.img-kunder img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .kunder-cont {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .kun-t h1 {
    font-size: 30px;
  }
}

/****************************************************   OUR SERVICES *************************/

.web-section {
  padding-top: 190px;
  background-color: #fff;
  padding-bottom: 40px;
}

.web-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.web-heading h2 {
  font-size: 54px;
  font-weight: 500;
  padding-top: 40px;
  padding-bottom: 50px;
  line-height: 1.2;
  color: #000000;
}

.web-text p {
  font-size: 20px;
  line-height: 1.8;
  padding-left: 90px;
  padding-top: 40px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 768px) {
  .web-section {
    padding: 0;
    margin: 0;
  }

  .web-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .web-text p {
    padding: 0;
  }

  .web-heading h2 {
    font-size: 32px;
    line-height: 1.5;
    padding-top: 40px;
    padding-bottom: 0px;
    text-align: left;
  }

  .web-text p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 20px;
    max-width: 100%;
    text-align: left;
  }

  .web-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}


.utstil {
  background-color: #ffff;
  padding-bottom: 90px;
}

.ut-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  background-color: #8e0b0b;
  border-radius: 5px;
}

.ut-content img {
  border-radius: 0 10px 10px 0;
}

.ut-raw {
  padding: 70px;
}

.ut-raw h2 {
  color: #fff;
  font-size: 40px;
  padding-bottom: 40px;
}

.ut-raw p {
  color: #fffffff7;
  line-height: 1.7;
  max-width: 95%;
  font-weight: 300;
  font-size: 18px;
}

.cta-bes {
  display: inline-block;
  margin-top: 43px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ut-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ut-raw {
    padding: 22px;
    order: 2;
    padding-bottom: 40px;
  } 

  .ut-raw h2 {
    font-size: 27px;
  }

  .ut-raw p {
    font-size: 16px;
  }

  .cta-bes {
    font-size: 18px;
  }
}



.nettside {
  padding-bottom: 40px;
  background-color: #fff;
}

.nettside-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background-color: #cbc7bf86;
  gap: 60px;
  border-radius: 0 5px 5px 0;
}

.nettside-cont img {
  border-radius: 5px 0px 0px 5px;
}

.sider {
  padding: 20px;
}

.sider h2 {
  font-size: 35px;
  max-width: 80%;
  line-height: 1.4;
  font-weight: 700;
}

.sider p {
  padding: 30px 0;
  color: #000;
  line-height: 1.7;
  max-width: 80%;
  font-weight: 300;
  font-size: 18px;
}

.cta-nettside {
  display: inline-block;
  margin-top: 30px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nettside-cont {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sider {
    padding: 20px;
    padding-bottom: 40px;
  }

  .sider h2 {
    font-size: 25px;
  }

  .cta-nettside {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
  }
}



.offer-section {
  padding: 7.5rem 10px;
  background-color: #fff;
}

.offer-title {
  font-size: 2.2rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 3rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.offer-item {
  text-align: left;
  padding: 1rem 0;
}

.offer-number {
  display: block;
  color: #434242;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

.offer-heading {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.offer-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: #000;
  margin-top: 40px;
}

.dprice h1 {
  font-size: 46px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.pricing-section {
  padding: 4rem 0;
  background: #fff;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card { 
  background: #E4E2DE;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.featured {
  background-color: #1a1818;
  color: #fff;
}

.featured .pricing-button {
  background-color: #fff;
  color: #000;
}

.featured .badge {
  background-color: #ffffff;
    color: #000;

}

.featured .pricing-desc  {
  color: #fff;
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-weight: 300;
  background: #fff;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.pricing-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.pricing-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #222;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
  font-size: 1rem;
  line-height: 1.9;
}

.pricing-button {
  background: #000000;
  border: none;
  padding: 10px 20px;
  font-size: 1.3rem;
  margin-top: 30px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .dprice h1 {
    font-size: 30px;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .badge {
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
    top: 1rem;
    right: 1rem;
  }

  .pricing-title {
    font-size: 1rem;
  }

  .pricing-price {
    font-size: 1.8rem;
  }

  .pricing-desc {
    font-size: 0.9rem;
  }

  .pricing-features {
    font-size: 0.95rem;
    margin: 1rem 0;
  }

  .pricing-button {
    font-size: 1rem;
    padding: 0.8rem;
    margin-top: 20px;
    width: 100%;
  }
}

/****************************/
/* UTILITY CLASSESSSSSSSSSSS */
/***************************/
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/****************************/
/* CONTACT */
/***************************/

.kontakt-seksjon {
  padding: 7rem 1rem;
  padding-top: 9rem;
  background-image: linear-gradient(to top, #292b30 0%, #17181b 100%);
}

.kontakt-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff4e7;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 5px;
  align-items: center;
}

.kontakt-form {
  flex: 1;
  max-width: 700px;
  width: 100%;
  padding: 30px;
}

.kontakt-form h1 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}

.kontakt-form p {
  font-size: 1.2rem;
  margin-bottom: 1.7rem;
  color: #000;
}

.kontakt-form a {
  font-weight: 500;
  color: #000;
  display: block;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.form-rad {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-rad input {
  flex: 1 1 200px;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  border: solid #3333337f 0.5px;
  background-color: #ffffff;
  font-size: 1rem;
  margin-top: 20px;
}

button[type="submit"] {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #000;
  margin-top: 40px;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background: #333;
}

.kontakt-bilde img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }

  .kontakt-form h1 {
    font-size: 35px;
  }

  button[type="submit"] {
    font-size: 18px;
  }

  .kontakt-bilde img {
    display: none;    
  }
}

/****************************/
/* FOOTER */
/***************************/
.custom-footer {
  background-image: linear-gradient(to top, #181a1f 0%, #0f1012 100%);

  color: #fff;
  padding-top: 60px;
  padding-bottom: 40px;
  font-family: sans-serif;
}

.logo-2 img {
  width: 180px;
  padding-bottom: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.footer-col img {
  width: 100%;
  max-width: 180px;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-col a i {
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  border-top: 1px solid #333;
  padding-top: 30px;
}

.footer-left a {
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-address,
.footer-contact {
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-links,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    transform: none;
  }
}

.thank-you-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
}

.thank-you-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 600;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-home {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #333;
}

/****************************/
/* MEDIA QUARY */
/***************************/

@media (max-width: 768px) {
  .main-header {
    background-color: #0f1012;
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 1000;
  }

  .hamburger {
    display: block;
  }

  .logo img  {
       height: 40px;
    max-width: 190px;

  }

  .nav-link {
    color: #fff;
  }

  .add-dark {
    color: #fff;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    padding-top: 50px;
    padding-bottom: 30px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    background-color: #0f1012;
    transition: 0.3s;
  }

  .nav-item {
    margin: 30px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  /* HERO SECTION */

  .hero {
    margin-bottom: 20px;
  }

  .hero-center {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 40px 0;
  }

  .hero-inner h1 {
    font-size: 35px;
    padding-top: 60px;
    line-height: 1.7;
    font-weight: 400;
    color: #fff;
  }

  .hero-text p {
    margin: 10px 0;
    font-size: 16px;
    color: #000000da;
    font-weight: 400;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .hero-center img {
    display: none;
  }

  .hero-text .btn-cont {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 10px;
    margin-right: 15px;
  }

  .hero-btn {
    font-size: 18px;
  }

  .logos {
    padding: 16px 0;
  }

  .logos-slide img {
    width: 230px;
  }

  .work-grid h2 {
    font-size: 30px;
  }

  .work-content p {
    font-size: 16px;
    width: 100%;
  }

  .work-link {
    font-size: 18px;
  }

  /*LOGO SLIDER*/
  .logo-slider::before,
  .logo-slider::after {
    width: 100px; /* Reduce the width of the gradient overlays */
  }

  .slide h2 {
    font-size: 17px; /* Smaller font size for smaller screens */
  }

  .logo-slider .slide {
    height: 110px;
    width: 190px; /* Smaller slide width for smaller screens */
  }

  .logo-slider .logo-slide-track {
    width: calc(120px * 16); /* Adjust width to match new slide size */
  }

  @keyframes logo-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 7)); /* Adjust animation distance */
    }
  }

  /*STRATEGI*/
  .content-stra {
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
  }

  .content-stra h1 {
    font-size: 40px; /* Justert fontstørrelse for mindre skjermer */
    max-width: 100%;
    margin-bottom: 10px;
    padding-top: 10px; /* Mindre padding på toppen */
  }

  .flex-p p {
    font-weight: 400;
    padding-top: 40px; /* Mindre padding på toppen */
    max-width: 100%;
  }

  /*Service*/
  .our-services {
    padding: 60px 5px;
  }

  .cont-service {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .grd-serv {
    order: 2;
    padding: 0;
    margin: 0;
  }

  .grd-serv h1 {
    font-size: 16px;
    text-decoration: none;
  }

  .grd-serv h2 {
    font-size: 22px;
  }

  .grd-serv p {
    font-size: 15px;
    padding-top: 22px;
  }

  .btn-cta {
    margin-top: 34px;
    font-size: 16px;
    padding: 16px 20px;
  }

  .our-services img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    order: 1;
  }

  /*STARTEGI*/
  .txt-stategi {
    padding: 0;
    display: grid;
    order: 2;
    padding-top: 0px;
  }

  .Our-strategi {
    padding: 40px 10px;
  }

  .cont-strategi {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cont-strategi img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
  }

  .txt-stategi h2 {
    font-size: 23px;
  }

  .txt-stategi p {
    font-size: 16px;
  }

  .strategi-li li h4 span {
    font-size: 12px;
    font-weight: 500;
  }

  .strategi-li {
    padding-bottom: 0;
  }

  .strategi-li i {
    display: none;
  }

  /*Med-sec*/
  .Med-sec {
    padding-top: 20px;
  }

  .conte-med {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .txt-med {
    display: grid;
    padding: 0;
  }

  .txt-med h3 {
    font-size: 15px;
  }

  .txt-med h2 {
    font-size: 25px;
  }

  .txt-med p {
    font-size: 16px;
  }

  .conte-med img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  /*Tillegtjenester*/
  .Tilgg {
    background-color: #33333306;
    padding: 15px;
  }

  .tlg-head h2 {
    font-size: 18px;
    text-decoration: underline;
    margin-bottom: 0px;
    padding-top: 30px;
  }

  .it-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .slf-tillg {
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 12px;
  }

  .slf-tillg h2 {
    font-size: 23px;
    font-weight: 500;
  }

  /*HEAD CONTENT*/
  .head-text {
    background-color: #fdf3ea50;
  }

  .head-container {
    grid-template-columns: 1fr;
  }

  .head-container img {
    height: 45vh;
    border-radius: 10px;
    object-fit: cover;
    order: 1;
  }

  .head-content {
    padding: 10px;
    order: 2;
  }

  .head-text h1 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .head-content h4 {
    font-size: 18px;
  }

  .btn-contact {
    font-size: 16px;
    padding: 15px 18px;
    margin-top: 20px;
  }

  .flex-p p {
    font-size: 17px;
  }

  /*COMMERS*/
  .commers {
    background-color: #002226;
    padding: 15px;
  }

  .commers-header {
    padding: 30px 0;
  }

  .commers-header h1 {
    font-size: 32px;
    max-width: 100%;
  }

  .commers-header p {
    font-size: 17px;
    max-width: 100%;
  }

  /*PROJECTS*/
  .flx-ph {
    display: grid;
    grid-template-columns: 1fr;
  }

  .projects {
    padding: 90px 10px;
  }

  .pro-header h1 {
    font-size: 16px;
    text-decoration: none;
  }

  .project h4 {
    font-size: 14px;
    max-width: 33%;
  }

  .project-content {
    grid-template-columns: 1fr;
  }

  .project h2 a {
    font-size: 20px;
  }

  .plans-m {
    display: none;
  }

  .flx-ph a {
    margin-top: 26px;
  }

  .flx-ph h2 {
    padding-top: 10px;
  }

  /*ABOUT US */
  .about-us {
    padding: 60px 5px;
  }

  .abt-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .abt-content img {
    height: 100%;
    width: 100%;

    order: 1;
    border-radius: 10px;
  }

  .abt-text {
    order: 2;
    padding: 0;
  }

  .abt-text h2 {
    font-size: 16px;
    text-decoration: none;
    color: #333333d6;
  }
  .abt-text h1 {
    font-size: 20px;
  }

  .abt-text p {
    font-size: 16px;
    margin: 0;
  }

  .HDS {
    padding: 5px;
    padding-top: 60px;
  }

  .HDS-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .h2-HDS {
    padding-bottom: 20px;
  }

  .h2-HDS h2 {
    font-size: 26px;
  }

  .side-HDS p {
    font-size: 16px;
  }

  /*TESTIMONIALS*/
  .testmonials-comments {
    grid-template-columns: 1fr;
  }

  .testi-heads h2 {
    font-size: 28px;
  }

  .testmonials-content {
    padding: 10px;
  }

  .testmonials-content p {
    font-size: 16px;
  }

  .info-test img {
    width: 10%;
  }

  .info-test h4 {
    font-size: 16px;
  }

  .info-test h6 {
    font-size: 14px;
  }

  /*FAQ*/
  .accordion-beg {
    padding-top: 60px;
  }

  .accordion h1 {
    font-size: 29px;
    padding: 0 10px;
  }

  .accordion-item {
    margin-top: 20px;
    padding: 5px;
  }

  .accordion-item h2 {
    font-size: 19px;
  }

  .accordion-item .accordion-item-title {
    font-size: 14px;
    padding: 15px 0;
  }

  .accordion-item .accordion-item-desc {
    font-size: 16px;
    padding: 20px;
  }

  .accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    font-size: 24px;
  }

  .accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    font-size: 24px;
  }

  .info-test img {
    width: 40px;
    height: 40px;
  }

  @media (max-width: 768px) {
    .reklame-content {
      grid-template-columns: 1fr;
      width: 100%;
      padding: 10;
    }

    .icon-garanti h4 {
      font-size: 10px;
    }
    .form {
      grid-template-columns: 1fr;
      z-index: 2;
    }

    .contact-info .title {
      font-size: 22px;
      width: 100%;
      margin-bottom: 40px;
    }

    .reklame-text h2 {
      font-size: 32px;
      line-height: 1.1;
      font-weight: 500;
    }

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

    .icon-garanti {
      margin-bottom: 20px;
    }

    .icon-garanti h4 {
      font-size: 20px;
      margin-left: 10px;
    }

    .reklame-text i {
      font-size: 28px;
    }

    .form {
      background-color: #fff;
    }

    .contact-form {
      background-color: #eff9f1;
    }

    .contact-form {
      padding-top: 5px;
    }

    .contact-form form {
      padding-top: 5px;
    }

    .social-media {
      padding-top: 30px;
    }

    footer .content .link-boxes {
      flex-wrap: wrap;
      padding: 10px;
    }

    footer .content .link-boxes .box {
      width: 100%;
      margin-bottom: 20px;
    }
  }
}



