/**
* Template Name: Impact
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #008374; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  /* --nav-hover-color: #008374; - Applied to main navmenu links when they are hovered over or active */
  --nav-hover-color: #4A9A97; /* Theo add */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #01433c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008374; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #4A9A97;
  --dark-background-color: #008374;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00b6a1;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Global
------------------------------*/

.float-left {
  float: left !important;
}
.radi-10 {
  border-radius: 10px;
}
.rem05-top,
p.rem05-top {
  margin-top: 0.5rem;
}
.rem1-top,
p.rem1-top {
  margin-top: 1rem;
}
.rem2-top,
p.rem2-top {
  margin-top: 2rem;
}
.rem1-bottom {
  margin-bottom: 1rem;
}
.rem2-bottom {
  margin-bottom: 2rem;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav.breadcrumbs a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav.breadcrumbs a:hover,
.page-title nav.breadcrumbs a.dropdown-toggle {
  color: var(--default-color);
}

.page-title nav.breadcrumbs a.dropdown-item {
  color: var(--nav-dropdown-color);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  display: none !important;
}
.header .logo h1 {
  font-size: 36px; /* Theo edit */
  margin: 0;
  font-weight: 400; /* Theo edit */
  color: var(--heading-color);
}
.header .logo i { /* Theo add */
  font-size: 28px;
  margin: 0;
  margin-right: 10px;
  margin-left: 5px;
  color: var(--heading-color);
}


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    line-height: 30px;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 60px 0;
  scroll-margin-top: 62px; /* Theo edit - original value: 112px */
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 80px; /* Theo edit - original value: 100px */
  }
}
@media (max-width: 992px) {
  section,
  .section {
    padding-top: 25px; /* Theo edit - original value: 60px */
  }
}
@media (max-width: 576px) {
  section,
  .section {
    padding-top: 20px; /* Theo edit - original value: 60px */
  }
}

.popover.popover-green{
  --bs-popover-border-color: var(--accent-color);
  --bs-popover-border-width: 2px;
}
.popover-green .popover-body{
  color: var(--nav-dropdown-color);        /* grønn tekst */
  font-weight: 600;      /* semibold */
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title.no-text {
  padding-bottom: 30px;
}



/*--------------------------------------------------------------
# NAV Menu
--------------------------------------------------------------*/
.mobile-nav-active .navmenu {
  margin-left: auto;
  width: 350px;
}



/*--------------------------------------------------------------
# Top Section
--------------------------------------------------------------*/
.top {
  width: 100%;
  position: relative;
  padding: 140px 0 0 0;
}

.top .container {
  position: relative;
  z-index: 3;
}

.top h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.top h2 .accent {
  color: var(--conrast-color);
}

.top h4 {
  margin-bottom: 25px;
}

.top p {
  color: color-mix(in srgb, var(--default-color), transparent 20%); /* Theo edit */
  font-weight: 400;
  margin-bottom: 30px;
}

.top .btn-get-started {
  color: var(--contrast-color);
  color: #FFFFFF;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600; /* Theo edit */
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, #0a58ca, transparent 50%);
  /* background-color: color-mix(in srgb, var(--default-color), transparent 90%); */
  /* box-shadow: 0 0 1em 0.5em #FFFFE4; */
}

.top .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}


.top .order-txt {
  font-size: 16px;
  transition: 0.5s;
  margin-right: 25px;
  font-weight: 600;
  color: var(--default-color);
}
.top p.order-tid {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-top: 20px;
  padding-left: 10px;
  display: none;
}

.top .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.top .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.top .btn-watch-video:hover i {
  color: var(--default-color);
}

.top .top-hoyre { /* Theo add */
  text-align: center;
  padding-top: 40px;
}
.top .top-hoyre h3 { /* Theo add */
  margin-bottom: 20px;
}


@media (max-width: 640px) {
  .top h2 {
    font-size: 36px;
  }

  .top .btn-get-started,
  .top .btn-watch-video {
    font-size: 14px;
  }
}

.top .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (max-width: 992px) {
  .top .btn-get-started {
    margin: auto;
  }
  .top p,
  .top h2 {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .top .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.top .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #FFFFFF; /* Theo edit */
  border: 3px solid var(--dark-background-color); /* Theo add */
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.top .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.top .icon-box .title a {
  color: color-mix(in srgb, var(--dark-background-color), transparent 20%); /* Theo edit background color */
  transition: 0.3s;
}

.top .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--dark-background-color), transparent 20%); /* Theo edit background color */
}

.top .icon-box:hover {
  background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.top .icon-box:hover .title a,
.top .icon-box:hover .icon {
  color: var(--contrast-color);
}

.top .icon-box:hover .icon .fa-star-exclamation {
  color: gold;
}



@media (max-width: 769px) {
  .top .icon-box {
    padding: 30px;
  }
}


/*--------------------------------------------------------------
# About Section - Gjertrud & Theo
--------------------------------------------------------------*/

#about .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
  line-height: 26px;
}
#about .container.section-virep {
  padding-bottom: 50px;
}
#about .section-theo img {
  margin-bottom: 10px;
}
#about .container.section-gjertrud {
  padding-bottom: 40px;
}


/*==================================================*/
/*     13.  SECTION ABOUT                           */
/*==================================================*/

section#about {
	padding: 130px 0 60px 0;
}


section#team {
	overflow: visible;
  padding: 40px 0 40px 0;
}

@media (max-width: 767.98px) {
  section#team {
    margin: 0 -15px;
  }
}

#team .right-rad p {
  margin-top: 20px;
}

#team .nedre-rad {
	padding-top: 30px;
  text-align: left;
}







#section-about {
	padding: 80px 0 80px 0;
}
#section-about .section-header p.about-header-txt {
	padding-top: 30px;
	padding-bottom: 20px;
	text-align: center;
}
#section-about h3 {
	margin-bottom: 1rem;
}

#section-about .row.about-th {
	margin-bottom: 25px;
}

.img-me-gj {
	float: left;
}
.img-me-th {
	float: right;
}


#workshop .section-heading {
  padding: 0 0 30px 0;
  text-align: center;
}
#workshop .work-box1 h4,
#workshop .work-box2 h4,
#workshop .work-box3 h4 {
	margin-top: 10px;
}
#workshop .work-box1 img,
#workshop .work-box2 img,
#workshop .work-box3 img {
	margin-top: 5px;
	margin-bottom: 5px;
}

@media (max-width: 991.98px) {
	#workshop .work-box1 img,
	#workshop .work-box2 img,
	#workshop .work-box3 img {
		margin-top: 5px;
	}
}




#reuse h4 {
  font-size: 28px;
}
#reuse .section-heading {
  padding: 0 0 30px 0;
  text-align: center;
}
#reuse .post-container {
  margin: 6px 0 50px 20px;  
  overflow: auto;
}
#reuse .post-thumb {
  float: left;
}
#reuse .post-thumb img {
  display: block;
}
#reuse .post-content {
  margin-left: 160px;
}
#reuse .post-content.post2 {
  padding-top: 10px;
}
#reuse .post-title {
  font-weight: bold;
  font-size: 200%;
}

@media (max-width: 992px) {
  #reuse .col-md-6.col-nr-2 {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
	#section-about p.img-txt {
		clear: right;
		padding-top: 1rem;
	}
	.img-me-1 {
		padding-right: 10px;
	}
  #reuse .section-heading.reuse-why {
    padding: 20px 0 20px 0;
  }
  #reuse .section-heading.reuse-more {
    padding: 70px 0 15px 0;
  }
  #reuse .post-container {
    margin: 0 0 0 0;
    text-align: center;
  }
  #reuse .post-thumb {
    float: none;
  }
  #reuse .post-thumb.img1 {
    margin: 20px 0;
  }
  #reuse .post-thumb.img2 {
    margin: 20px 0 10px 0;
  }
  #reuse .post-thumb img {
    display: block;
    margin: auto;
  }
  #reuse .post-content {
    margin-left: 0;
  }
  #reuse .post-content.post2 {
    padding-top: 0;
  }
}





/*--------------------------------------------------------------
# Testemonials
--------------------------------------------------------------*/

#testimonial .testimonial-item .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
  line-height: 10px;
}

#testimonials .section-title {
  padding-bottom: 30px;
}

.review-rating {
  color: #FFC107;
}

/*==================================================*/
/*     8.  SECTION OLD MACHINE                      */
/*==================================================*/

#section-old-m {
	padding: 60px 0;
	background-color: var(--sec-bg-col);
}
#section-old-m .service-box1 p {
  padding-top: 15px;
  margin: 0;
}
#section-old-m p.som_main1_txt1,
#section-old-m p.som_main2_txt1,
#section-old-m p.som_main3_txt1 {
  padding-top: 0px;
}


#section-old-m p.som_main_txt3_box {
  padding-top: 0px;
}

@media (max-width: 991.98px) {
  #section-old-m p.som_main_txt3_box {
    padding-top: 15px;
  }
  #section-old-m p.som_main_txt2_box,
  #section-old-m p.som_main_txt3_box.wide-box {
    padding-top: 0px;
    padding-bottom: 15px;
  }
}


#section-old-m .repold2 {
	margin-top: 50px;
}

#section-old-m .repold2 h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}


@media (max-width: 1199.98px) {
  #section-old-m .repold2 {
    margin-top: 50px;
  }
}

@media (max-width: 991.98px) {
  #section-old-m .repold2 {
    margin-top: 0px;
  }
  #section-old-m h3.repold2h3 {
    margin-top: 40px;
  }
  #section-old-m .bottom-box {
    padding-bottom: 30px;
  }  
}

@media (max-width: 766.98px) {
  #section-old-m p.som_main_txt3_box.wide-box {
    padding-top: 15px;
  }
}


/*
#section-old-m h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
*/

#section-old-m .service-box1 h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}
#section-old-m h4 {
	font-size: 1.4rem;
	font-weight: 600;
}
#section-old-m h4.d-lg-none {
	margin-bottom: 1.5rem;
}
#section-old-m img {
	margin-bottom: 5px;
  border-radius: 10px;
}
#section-old-m img.rep-img1 {
	margin-bottom: 15px;
}
#section-old-m img.rep-img2,
#section-old-m img.rep-img3 {
	margin-top: 5px;
}

#reuse .section-heading {
	padding-bottom: 40px;
}
#section-old-m .img-box-old {
	margin-top: 50px;
}
#section-old-m .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  text-align: center;
}

@media (min-width: 1200px) {
	.som_main_txt_box {
		display: none;
	}
}
@media (min-width: 992px) {
	.som_main_txt2_box {
		display: none;
	}
}
@media (max-width: 1199.98px) {
	.som_main_txt3 {
		display: none;
	}
  #section-old-m p.som_main_txt3_box {
    margin-bottom: 0px;
  }
}
@media (max-width: 991.98px) {
	#section-old-m .som_main_txt_box {
		padding-bottom: 10px;
	}
  #section-old-m p.som_main_txt2_box {
    margin-bottom: 0px;
  }

	.som_main_txt2 {
		display: none;
	}  
	#section-old-m .img-box-old {
		margin-top: 20px;
	}
  #section-old-m h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
	#section-old-m p,
	#section-old-m .img-box-old-top h4 {
		margin-bottom: 1rem;
	}
}
@media (max-width: 576px) {
	#section-old-m .section-heading {
		padding-bottom: 40px;
	}
}



/*==================================================*/
/*     15.  SECTION CONTACT                         */
/*==================================================*/

#contact {
  padding-bottom: 5px;
}

/* ======  Contact inside Map  ====== */
.contact-info-inner {
	position: absolute;
	color: #FFFFFF;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(74,154,151,.9);
	padding: 25px 30px;
	max-width: 400px;
	max-height: 426px;
	text-align: left;
	font-weight: 500;
}
.contact-info-inner p {
	overflow: hidden;
	margin-bottom: 30px;
	color: #FFFFFF;
}
.contact-info-inner a {
	color: #FFFFFF;
}
.contact-info-inner h3 {
	color: #FFFFFF;
	margin-bottom: 28px;
}
.contact-info-inner p strong {
	display: block;
}
.contact-info-inner i {
	margin-right: 20px !important;
	font-size: 24px;
	margin-top: 10px;
}
.map-wrapper {
	position: relative;
}

@media (max-width: 575.98px) {
	#menu-contact1.section-heading {
			padding: 0 0 10px;
	}
	.text-center-575 {
		text-align: center
	}
}

@media (max-width: 767.98px) {
	.contact-info-inner {
		padding: 10px 30px;
	}
	.contact-info-inner p {
		margin-bottom: 12px;
	}
	.contact-info-inner h3 {
		margin-bottom: 12px;
	}
  .text-center-767 {
		text-align: center
	}
}

@media (min-width: 768px) {
	#contact-text i {
		float: left;
		padding: 0 25px 0 0;
	}
	#contact-text h3.mb-3 {
		margin-bottom: 0 !important;
	}
}

@media (max-width: 991.98px) {
  .text-center-992 {
		text-align: center
  }
}

@media (min-width: 992px) {
	#menu-contact1.section-heading {
			padding: 0 0 60px;
	}
}

@media (min-width: 576px) {
	.mt-5, .my-5 {
    margin-top: 3rem!important;
	}
}

.mt-th1 {
   margin-bottom: 3rem!important;
}

.mt-th1.contact-last {
   margin-bottom: 5rem!important;
}


/*==================================================*/
/*     16.  GOOGLE MAP                              */
/*==================================================*/

#map {
	width: 100%;
	height: 400px;
	background-color: grey;
}
.map {
  position: relative;
	z-index: 1;
}
* + .map {
  margin-top: 29px;
}
.map_model {
  height: 171px;
}
.map_model img {
  max-width: none !important;
}
.map_locations {
  display: none;
}
.map .gm-style-iw .iw-content {
  font-size: 12px;
}
* + .map__mod {
  margin-top: 0px;
}
.map__mod .map_model {
  height: 426px;
}
.map__mod .map_model img {
  max-width: none !important;
}

@media (max-width: 767.98px) {
  .map_model {
    height: 300px;
  }
  .map__mod .map_model {
    height: 300px;
  }
}

@media (max-width: 479px) {
  .map_model {
    height: 250px;
  }
  .map__mod .map_model {
    height: 250px;
  }
}




/*--------------------------------------------------------------
  Services Pages
--------------------------------------------------------------*/

.page-title .heading.hided {
	padding: 0px 0 70px 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

#services h3 {
  margin-bottom: 1rem;  
}
#services.service-details p {
  font-size: 16px;
}
p.srv-top-2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
p.srv-bunn-0 {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .page-title .heading.hided {
    padding: 0px 0 60px 0;
  }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about .logo span i {
  font-size: 28px;
  margin: 0;
  color: var(--heading-color);
}

.footer .footer-adress i,
.footer .footer-adress .twolines i {
  margin-right: 15px !important;
  font-size: 14px;
  margin-top: 4px;
}
.footer .footer-adress.twolines i {
  margin-top: 12px;
}
.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);
}


#footer .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
  vertical-align: -0.17em;
  margin-left: 1px;
}


@media (max-width: 767.98px) {
  .footer .footer-contact {
    width: 80%;
    margin-left: 20%;
  }
}



/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.grey-back {
  padding: 30px 30px 15px 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 30px;
}

p.blog-top-1, 
p.blog-top-10 {
  font-size: 22px;
  font-weight: 500;
}
p.blog-top-2 {
  font-size: 18px;
  font-weight: 500;
}
p.blog-bunn-0 {
  margin-bottom: 0;
}

.content.blog1 p.blog-top-1 {
  margin-top: 3rem;
}

.content.blog1 .grey-back {
  padding: 20px 30px 10px 30px;
}



/*==================================================*/
/*      Registrerings side                          */
/*==================================================*/

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #444444;
	font-weight: 600;
	/*background-color: var(--pri-txt-clr);*/
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
	color: #495057;
	/*background-color: #DDDDDD;*/
	border-color: var(--global-color);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
input#epost.form-control,
input#confepost.form-control,
input#telefon.form-control,
input#conftlf.form-control {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
#rep-reg-page .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: .65rem .75rem;
}
#rep-reg-page ul {
  text-align: left;
  margin-top: 50px;
}
#rep-reg-page .section-title {
  padding-bottom: 0;
}
#rep-reg-page section#register-page {
  padding: 30px 0 0 0;
}

button#send-message {
  width: 300px;
  margin: 0 auto;
  clear: both;
}
@media (max-width: 767.98px) {
  button#send-message {
    width: 250px;
  }
}
@media (max-width: 479px) {
  button#send-message {
    width: 200px;
  }
}

#rep-reg-page #hvor_rep_felt {
  margin-top: 1rem;
  margin-bottom: 2rem !important;
}
#rep-reg-page .form-check.godtar_ok {
  margin-top: 1rem;
  margin-bottom: 3rem !important;
}

#reg-sidetxt p {
  margin-left: 0;
	font-size: 14px;
  margin-bottom: 0;
  line-height: 24px;
}
#reg-sidetxt h5,
#reg-sidetxt p.sidetext-top {
  margin-left: 16px;
}
#reg-sidetxt h5 {
  font-weight: 600;
}
#reg-sidetxt h6 {
  font-weight: 600;
  line-height: 1.5;
}
#reg-sidetxt ul {
  margin-top: 20px;
}

.text-muted {
	font-size: 14px;
}
.validate-txt {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;  
}
.validate-txt.invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

#SyRepFormModal .btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  margin: 4px;
  width: auto;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#SyRepFormModal .btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
#SyRepFormModal .btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
#SyRepFormModal .close {
  font-size: 30px;
  font-weight: 600;
}
#kontakt-info {
  padding-left: 15px;
}
#kontakt-info h4 {
  padding-left: 10px;
}
h4 span.top-text-muted {
  font-size: 22px;
  color: #6c757d!important;
}
#rep-reg-page .lines {
  font-weight: 400;
  line-height: 32px;
}
#rep-reg-page .lines i {
  width: 40px;
  text-align: center;
}
#rep-reg-page .lines i.gone {
  color: var(--pri-bg-col);
}
#rep-reg-page .lines.addresse {
  line-height: 26px;
  padding-bottom: 25px;
}
#left-info {
  font-weight: 500;
  color: var(--pri-txt-col);
}
#left-info p {
  font-size: 80%;
}

#problemer label {
  text-align: left;
}

.modal-body.mod-serie-nr {
	font-weight: 400;
}
.modal-body.mod-serie-nr p {
	margin: 20px 0 10px 0;
}


.modal-header {
  background-color: var(--accent-color);
}
.modal-header h5 {
  color: white;
}
.modal-header button.btn-close {
  margin-right: 2px;
}
  
.faq-content.inmodal p {
  margin-bottom: 2rem;
}




/*==================================================*/
/*       Gallery siden	                            */
/*==================================================*/

section#gallery.gallery.section {
  padding: 0;
}

.container.section-title.gallery-title {
  padding-bottom: 0;
}
.gallery-toptext p {
  text-align: center;
  margin-bottom: 1.5rem;
}
.gallery .gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;   /* Tvinger 4:3 */
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Fyller rammen */
  display: block;
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
  
  
  
/*==================================================*/
/*       Repair siden	                              */
/*==================================================*/


/* More Features Section
--------------------------------*/
/*
#more-features {
  padding: 80px 0 70px 0;
  overflow: hidden;
}
*/

#resource .container.section-title {
  padding-bottom: 30px;
}

#resource .section-top h5 {
  font-weight: 500;
}

section#more-features {
  padding: 30px 0;
}

#more-features .box,
#more-features-bottom .box {
  height: 165px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
}

#more-features-bottom .box {
  height: 145px;
  padding: 30px;
}

#more-features .icon,
#more-features-bottom .icon {
  float: left;
}

#more-features .icon.i-1,
#more-features .icon.i-2,
#more-features .icon.i-3,
#more-features .icon.i-4 {
  margin-top: -5px;
}

#more-features .icon.i-3,
#more-features .icon.i-4 {
  padding-left: 5px;
}

#more-features-bottom .icon.ib-1 {
  padding-left: 5px;
}
#more-features-bottom .icon.ib-1 i.fal {
  padding-top: 40px;
}

#more-features-bottom .icon.ib-2 {
  padding-left: 5px;
}
#more-features-bottom .icon.ib-2 i.fal {
  padding-top: 40px;
}

#more-features .icon i,
#more-features-bottom .icon i {
  font-size: 75px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i.fal {
  padding-top: 50px;
}

#more-features .icon i.fa-light {
  padding-top: 45px;
}

#more-features .icon i:before,
#more-features-bottom .icon i:before {
  background: var(--global-color);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4,
#more-features-bottom h4 {
  margin-left: 120px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a,
#more-features-bottom h4 a {
  color: #111;
}

#more-features p,
#more-features-bottom p {
  font-size: 14px;
  margin-left: 120px;
  margin-bottom: 0;
  line-height: 24px;
}

#more-features #repair-img h4,
#more-features #repair-img p {
  margin-left: 100px;
}
#more-features #repair-img img {
  margin-top: 8px;
}


#more-features p.section-description {
  margin-left: 0;
}

#more-features p.section-description.rep-description {
  margin-left: 60px;
	margin-right: 60px;
}

@media (max-width: 992px) {
	#more-features p.section-description.rep-description {
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
    height: 210px;
    padding: 25px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4, #more-features p {
    margin-left: 0;
    text-align: center;
  }
	#more-features p.section-description.rep-description {
		margin-left: 0;
		margin-right: 0;
	}
	#more-features #repair-img h4,
	#more-features #repair-img p {
		margin-left: 0;
	}
	#more-features #repair-img img {
		margin-top: 0;
	}	
}




#section-service p.section-description.infotxt {
	font-style: normal;
  margin-left: 60px;
	margin-right: 60px;
}
#section-service p.section-description.infotxt span {
	font-style: italic;
	float: right;
}

@media (max-width: 992px) {
	#section-service p.section-description.infotxt {
		margin-left: 20px;
		margin-right: 20px;
	}	
}

@media (max-width: 767px) {
	#section-service p.section-description.infotxt {
		margin-left: 0;
		margin-right: 0;
	}	
}

.repair-box h6.title {
	text-align: center;
	font-weight: 600;
	margin-bottom: 5px;
}
.repair-box .underbox-4 h6.title {
	margin-right: -5px;
	margin-left: -5px;
}
.repair-box image {
	text-align: center;
}
.repair-box i {
	font-size: xxx-large; 
	margin-top: 10px;
	color: #1E1E1E
}
.repair-box i.no-down {
	color: #C5C5C5
}
.repair-box img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.repair-box .smal-underbox {
	text-align: center;
}
#more-features #repair-img h4, 
#more-features #repair-img p {
    margin-left: 5px;
}

@media (max-width: 992px) {
	.repair-box .underbox-2,
	.repair-box .underbox-3,
	.repair-box .underbox-4,
	.repair-box .underbox-5 {
		margin-top: 35px;
	}
	#more-features .box.repair-box {
    height: 285px;
	}
}
@media (max-width: 767px){
	#more-features .box.repair-box {
    height: 385px;
	}
}
@media (max-width: 576px) {
#more-features .box.repair-box {
    height: 615px;
	}
}


.row.section_serialnumbers {
  padding: 80px 0 70px 0;
}
.row.section_serialnumbers h3 {
  padding-left: 20px;
  margin-bottom: 10px;
}
.row.section_serialnumbers button {
  margin-top: 10px;
  margin-bottom: 3px;
  padding: 4px 15px;
}
.row.section_serialnumbers input {
  width: 250px;
}

/* For WebKit-baserte nettlesere (Chrome, Safari, Edge) */
.row.section_serialnumbers .box.input_serial input[type=number]::-webkit-inner-spin-button,
.row.section_serialnumbers .box.input_serial input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* For Firefox */
.row.section_serialnumbers .box.input_serial input[type=number] {
  -moz-appearance: textfield;
}
.row.section_serialnumbers .form-row input {
  width: 80px;
}
.row.section_serialnumbers .box {
  padding: 35px 40px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
}
.row.section_serialnumbers .box .alert {
  padding: 5px 0 5px 10px;
  text-align: center;
  line-height: 29px;
}
.row.section_serialnumbers .alert.alert-success {
  margin: 0;
}
.row.section_serialnumbers .box .alert-success h3 {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  font-size: 24px;
  font-weight: 500;
}
.row.section_serialnumbers .box label.svar {
  margin-top: 15px;
}
p.mellomrom {
  font-size: 24px;
  margin: 0 0 0 10px;
}
.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -5px;
  padding-left: 5px;
  width: 194px;
}

@media (max-width: 992px) {
	.row.section_serialnumbers .box {
    height: inherit;
	}	
}


