/*
  Theme Name: Avilon
  Theme URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/


/*==================================================*/
/*     1.  Global Fonts                             */
/*==================================================*/
@import 'https://fonts.googleapis.com/css?family=Raleway:300,400,400i,500,600,700,800,900|Reem+Kufi|Farsan|Suez+One';
@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700|Open+Sans:300,300i,400,400i,700,700i';



/*==================================================*/
/*     2.  Global Variables                         */
/*==================================================*/
:root {
	--global-color: #4A9A97;
	--pri-txt-clr: #565553;
	--sec-txt-clr: #FAFAFA;
  --drk-txt-clr: #444444;
	--pri-bg-col: #F2F8F7;
  --sec-bg-col: #EFF5F5;
  --btn-hov-clr: #3D8280;
}


/*==================================================*/
/*     3.  Global Styles                            */
/*==================================================*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--global-color);
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: var(--global-color);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #111111;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: var(--global-color);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: var(--global-color);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: var(--global-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: var(--global-color);
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 i {
  font-size: smaller;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
    margin-top: 0;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: var(--global-color);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(74, 154, 151, 0.8), rgba(74, 154, 151, 0.8)), url("../images/intro-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }
}

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 100px;
  right: 0;
  height: calc(50% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#intro h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#intro .btn-get-started:hover {
  color: var(--global-color);
  background: #fff;
}

#intro .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#intro .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#intro .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 400px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    display: none;
  }
}




/*==================================================*/
/*     6.  SECTION TOP                              */
/*==================================================*/

#section-top {
	padding: 50px 0 70px 0;
}
#section-top h2 {
	color: var(--drk-txt-clr);
  padding-top: 10px;
  margin-bottom: 10px;
}
#section-top h4 {
	color: var(--drk-txt-clr);
	padding-top: 5px;
	padding-bottom: 40px;
	font-weight: 600;
}

@media (max-width: 767px) {
  #section-top h2 {

  }
  #section-top h4 {
    font-size: 1rem;
  }
}


/*==================================================*/
/*     6.  SECTION BANNER                           */
/*==================================================*/

#section-banner {
	padding: 120px 0 70px 0;
	position: relative;
	width: 100%;
	/* background: #F2F8F7 url(../images/bg_sub-header.png) repeat 0 0; */
  background: #cbe2e1 url(../images/bg_sub-header.png) repeat 0 0;
}
#section-banner h1 {
	font-size: 4rem;
	font-weight: 400;
	color: var(--drk-txt-clr);
	font-family: 'Suez One', serif;
}
#section-banner h2 {
	color: var(--drk-txt-clr);
  padding-top: 10px;
  margin-bottom: 10px;
}
#section-banner h4 {
	color: var(--drk-txt-clr);
	padding-top: 5px;
	/* padding-bottom: 40px; */
	font-weight: 600;
}
#section-banner h5 {
	font-weight: 600;
  color: var(--drk-txt-clr);
}
#section-banner h6 {
	font-weight: 500;
  margin-bottom: 30px;
  color: var(--drk-txt-clr);
}
#section-banner p {
  color: var(--drk-txt-clr);
  margin: 0 0 12px 0;
}
#section-banner .btn {
	width: 300px;
  display: block;
  margin: auto;
}
#section-banner .alert {
	width: 685px;
  display: block;
  margin: auto;
}
.img-verksted {
	padding: 10px;
}
.img-logo {
	margin-top: 10px;
	margin-bottom: 30px;
}
.img-brands {
	margin-top: 15px;
	margin-bottom: 30px;
}
.img-center {
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
}

@media (min-width: 768px) {
  #section-banner br.mobile {
		display: none;
	}
}
@media (max-width: 991.98px) { 
	#section-banner h1 {
		font-size: 4rem;
	}
}
@media (max-width: 767.98px) {
	.img-logo {
		margin-top: 10px;
	}
	#section-banner h1 {
		font-size: 3.1rem;
	}
  #section-banner h5 {
    font-size: 1rem;
  }
  #section-banner .alert {
	  width: 100%;
  }
  .img-center-767 {
    margin: auto;
    display: flow-root;
  }
}
@media (max-width: 575.98px) {
	#section-banner h1 {
		font-size: 2.3rem;
	}
  .img-center-575 {
    margin: auto;
    display: flow-root;
  }
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  font-family: "Font Awesome 6 Pro";
	font-weight: 600;
  content: "\f0dd";
  position: absolute;
  right: 15px;
	top: 0px;
  font-style: normal;
	-webkit-font-smoothing: antialiased;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 992px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: var(--global-color);
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#rep-reg-page #mobile-nav-toggle {
  position: absolute;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 992px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--global-color);
}

#mobile-nav ul .menu-item-active {
  color: var(--global-color);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Brukerikon i mobilvisning */
#mobile-nav ul .menu-has-children i.fa-user {
  left: 0;
}
span.mypg {
	margin-left: 30px;
}
@media (min-width: 992px) {
  span.mypg {
		display: none;
	}
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--global-color);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i.fal,
#about .content i.far {
  font-size: 17px;
  padding-right: 4px;
  color: var(--global-color);
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .font-icon {
  display:inline-block;
  color: var(--global-color);
  font-size: 40px;
  width: 80px;
  height: 60px;
  text-align: center;
  vertical-align: bottom;
  margin-bottom: 10px;
}

#features .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  font-size: 50px;
  transition: 0.5s;
  float: left;
  padding: 10px 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: var(--global-color);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: var(--global-color);
  border: 2px solid var(--global-color);
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 80px 0 70px 0;
  overflow: hidden;
}

#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;
	}	
}


/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#pricing h4 {
  font-size: 46px;
  color: var(--global-color);
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: var(--global-color);
  font-size: 17px;
  padding-right: 4px;
}

#pricing .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#pricing .featured {
  border: 2px solid var(--global-color);
}

#pricing .featured .get-started-btn {
  background: var(--global-color);
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  padding: 70px 0;
  overflow: hidden;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 15px 0;
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  padding-right: 30px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #faq #faq-list a {
    font-size: 18px;
  }
  #faq #faq-list i {
    top: 13px;
  }
}

#faq #faq-list a.collapse {
  color: var(--global-color);
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f0d7" !important;
}



/* Our Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: var(--global-color);
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--global-color);
}

@media (max-width: 576px) {
	#contact .contact-about h3 {
		text-align: center;
	}
}

#contact .contact-about h3 i {
  font-size: smaller;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: var(--global-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid var(--global-color);
}

#contact .social-links a:hover {
  background: var(--global-color);
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 26px;
  color: var(--global-color);
  float: left;
}

#contact .info i.fa-home {
  line-height: 26px;
}
#contact .info i.fa-map-marker-smile {
  line-height: 52px;
  padding-left: 4px;
}
#contact .info i.fa-at {
  line-height: 30px;
}
#contact .info i.fa-phone {
  line-height: 28px;
}
#contact .info i.fa-clock {
  line-height: 52px;
}

#contact .info p {
  padding: 0 0 0 42px;
  margin: 0 0 15px 0;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: var(--global-color);
  border: 1px solid var(--global-color);
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: var(--global-color);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .form button[type="submit"]:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: var(--global-color);
}




/*==================================================*/
/*     8.  SECTION OLD MACHINE                      */
/*==================================================*/

#section-old-m {
	padding: 90px 0;
	background-color: var(--sec-bg-col);
}
#section-old-m p.som_main_txt1,
#section-old-m p.som_main_txt2,
#section-old-m p.som_main_txt3 {
  margin: 0px;
}
#section-old-m p.som_main_txt2,
#section-old-m p.som_main_txt3,
#section-old-m p.som_main_txt2_box,
#section-old-m p.som_main_txt3_box {
  padding-top: 20px;
}
#section-old-m h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
#section-old-m .service-box1 h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
}
#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;
}
#section-old-m .section-heading {
	padding-bottom: 60px;
}
#section-old-m .img-box-old {
	margin-top: 40px;
}
#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;
	}
}


/*==================================================*/
/*     9.  SECTION SERVICE                          */
/*==================================================*/

#section-service {
	padding: 90px 0;
}
.service-caption h4 {
	margin-bottom: 15px;
}
.service-box2 h4,
.service-box3 h4 {
	margin-top: 10px;
}
.service-box2 img,
.service-box3 img {
	margin-top: 5px;
}

@media (max-width: 991.98px) {
	.service-box2 img,
	.service-box3 img {
		margin-top: 25px;
	}
}

.garanti {
	margin-top: 1rem;
}
.img-garanti {
	width: 70px;
}


/*==================================================*/
/*     10.  SECTION SCHOOL                          */
/*==================================================*/

#section-school i {
	color: #ED1C24;
}
#section-school a {
	color: #FFFFFF;
  font-weight: 600;
}
#section-school i.fa-chalkboard-teacher {
	padding-top: 10px;
	padding-bottom: 10px;
}

#section-school .parallax-window {
	min-height: 300px;
	position: relative;
	background: transparent;
}
#section-school .container-fluid {
	position: absolute;
  top: 50%;
	left: 0;
	right: 0;
  transform: translateY(-50%);
	/* padding: 90px 0; */
	color: var(--sec-txt-clr);
}
#section-school .container-fluid h3 {
	color: var(--sec-txt-clr);
}

@media (min-width: 768px) {
	#section-school i {
		float: left;
		padding: 0 25px 0 0;
	}
	#section-school h3.mb-3 {
		margin-bottom: 0 !important;
	}
}
@media (max-width: 767.98px) {
	#section-school {
		padding-top: 80px;
	}
}
@media (max-width: 575.98px) {
	#section-school .parallax-window {
	  min-height: 400px;
	}
}

/*==================================================*/
/*     11.  SECTION BERNINA                         */
/*==================================================*/

#section-bernina {
	padding: 90px 0;
}
#section-bernina h4 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 0 14px;;
}
#section-bernina img {
	margin-bottom: 5px;
}
#section-bernina .section-heading {
	padding-bottom: 60px;
}
#section-bernina .img-box-old {
	margin-top: 30px;
}
#section-bernina h4.d-lg-none {
	margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
	#section-bernina p {
		margin-bottom: 5px;
	}
}
@media (max-width: 992px) {
	#section-bernina .img-box-old {
		margin-top: 20px;
	}
}
@media (max-width: 767px) {
	#section-bernina p,
	#section-bernina .img-box-old-top h4 {
		margin-bottom: 1rem;
	}
}
@media (max-width: 576px) {
	#section-bernina .section-heading {
		padding-bottom: 40px;
	}
}

/*  Dropdown  */

#section-bernina .row.faq-list {
  padding: 15px 0 0;
}
#section-bernina #faq-list {
  padding: 0;
  list-style: none;
}
#section-bernina ul#faq-list {
  margin: 0;
}
#section-bernina #faq-list>li {
  border-bottom: 1px solid #ddd;
}


/* Font Awesome List icon */
#section-bernina ul.bernina-list {
	padding-inline-start: 30px;
	list-style: none;
}
#section-bernina ul.bernina-list li {
	position: relative;
	padding-left: 10px;
}
#section-bernina ul.bernina-list li:before {
	content: "\f00c";
	font-weight: 500;
  font-family: "Font Awesome 5 Pro";
	position: absolute;
	left: -1em;
	color: var(--global-color);
}
/* end Font Awesome List icon */


#section-bernina #faq-list a {
  padding: 5px 0 14px 0;
  display: block;
  position: relative;
  font-size: 22px;
  line-height: 1;
  padding-right: 20px;
}
#section-bernina #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}
#section-bernina #faq-list p {
  margin-bottom: 20px;
}
#section-bernina #faq-list p.berni {
	font-weight: 700;
	margin-top: 15px;
  margin-bottom: 2px;
}
#section-bernina #faq-list p.berni-top {
  margin-top: 15px;
	margin-bottom: 10px;
}
#section-bernina #faq-list ul.berni-bunn {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #section-bernina #faq-list a {
    font-size: 18px;
  }
  #section-bernina #faq-list i {
    top: 13px;
  }
}

#section-bernina #faq-list a:hover {
  color: var(--global-color) !important;
	text-decoration: none;
}
#section-bernina #faq-list a.collapsed {
  color: var(--pri-txt-clr);
}
#section-bernina #faq-list a.collapsed i::before {
  content: "\f0d7" !important;
}


/*  Image Slider  */
.cd-image-container {
  position: relative;
  width: 90%;
  max-width: 768px;
  margin: 0em auto;
}
.cd-image-container img {
  display: block;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}

@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #dc717d url("../images/cd-arrows.svg") no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}


/*==================================================*/
/*     12.  SECTION HVA I EN SERVICE                */
/*==================================================*/

#section-hva_service {
	padding: 80px 0 80px 0;
	background-color: rgba(74,154,151,0.20);
}

#section-hva_service i {
	color: var(--global-color);
}

#section-hva_service .section-heading {
	padding: 0;
}



/*==================================================*/
/*     12.5  GOOGLE REVIEWS                         */
/*==================================================*/

#google_reviews {
	padding: 80px 0 80px 0;
	background-color: rgba(74,154,151,0.20);
}
#google_reviews i {
	color: var(--global-color);
}
#google_reviews .section-heading {
	padding: 0;
}
#google_reviews .section-header .section-description {
  padding-bottom: 0px;
}
#google_reviews .section-header .section-divider {
  margin-bottom: 50px;
}

/* Carousel indicators */
#carouselIndicators {
  height: 325px;
}
.carousel-indicators li {
  background-color: #4A9A97;
}

/* Carousel buttons/controls */
button.carousel-control-prev {
  border: none;
  left: -40px;
}
button.carousel-control-next {
  border: none;
  right: -40px;
}
button.carousel-control-prev, button.carousel-control-next {
  width: 30px;
  background: none;
  padding: 0;
}
.carousel-control-prev, .carousel-control-next {
  opacity: 1;
}
#carouselIndicators i {
  position: absolute;
  top: 125px;
  font-size: 24px;
}


/* Carousel review box */
.carousel-box {
  height: 275px;
  padding: 20px 40px 40px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  border-radius: .5rem;
}
.review-author {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #222222;
}
.review-rating {
  color: #FFD700;
  margin-bottom: 0.5em;
}
.review-text {
  font-size: 14px;
}
.review-number {
  color: #222222;
}

span.review-google {
  color: #666666;
  font-size: 12px;
  padding-left: 5px;
}


@media (max-width: 1199.98px) {
	.carousel-box {
		padding: 20px 30px 30px 30px;
    height: 295px;
	}
  #carouselIndicators {
    height: 345px;
  }
  #carouselIndicators i {
    top: 135px;
  }
}
@media (min-width: 992px) {
	.review-row1-2,
  .review-row2-2,
  .review-row3-2,
	.review-row1-1,
  .review-row2-1,
  .review-row3-1  {
		display: none;
	}
}
@media (max-width: 991.98px) {
	.review-row1-3,
  .review-row2-3,
  .review-row3-3 {
		display: none;
	}
  .carousel-box {
		padding: 20px 30px 30px 30px;
    height: 280px;
	}
  #carouselIndicators {
    height: 330px;
  }
  #carouselIndicators i {
    top: 130px;
  }
}
@media (max-width: 767.98px) {
  .carousel-box {
		padding: 20px 25px 25px 25px;
    height: 360px;
	}
  #carouselIndicators {
    height: 410px;
  }
  #carouselIndicators i {
    top: 170px;
  }
}
@media (min-width: 576px) {
	.review-row1-1,
  .review-row2-1,
  .review-row3-1  {
		display: none;
	}
}
@media (max-width: 575.98px) {
	.review-row1-3,
  .review-row2-3,
  .review-row3-3,
	.review-row1-2,
  .review-row2-2,
  .review-row3-2  {
		display: none;
	}
  .container.cont-carousel {
    width: 80%;
  }
  .carousel-box {
		padding: 20px 25px 25px 25px;
    height: 300px;
	}
  #carouselIndicators {
    height: 350px;
  }
  #carouselIndicators i {
    top: 140px;
  }

}

              

/*==================================================*/
/*     13.  SECTION ABOUT                           */
/*==================================================*/

#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 {
	padding-right: 15px;
	float: left;
}
.img-me-th {
	padding-right: 15px;
	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 .section-heading {
  padding: 0 0 30px 0;
  text-align: center;
}
#reuse .post-container {
  margin: 6px 0 20px 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;
  }
}


/*==================================================*/
/*     14.  SECTION EXPRESS                         */
/*==================================================*/

#section_express1 i,
#section_express2 i {
	color: var(--global-color);
}
#section_express1 p,
#section_express2 p {
	color: var(--sec-txt-clr);
}
#section_express2 .parallax-window {
	min-height: 400px;
	position: relative;
	background: transparent;
}
#section_express2 .container {
	position: absolute;
  top: 50%;
	left: 0;
	right: 0;
  transform: translateY(-50%);
	/* padding: 90px 0; */
	color: var(--sec-txt-clr);
}
#section_express2 .container h3 {
	color: var(--sec-txt-clr);
}

@media (max-width: 575.98px) {
	#section_express2 .parallax-window {
	  min-height: 450px;
	}
}

/* 
.parallax {
	background: url(../images/stars.jpg) no-repeat;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-attachment: fixed !important;
	padding: 90px 0;
	color: var(--sec-txt-clr);
}
*/

/*==================================================*/
/*     15.  SECTION CONTACT                         */
/*==================================================*/

#contact-text i {
	color: var(--global-color);
}
#contact-text i.fa-car {
	margin-left: 4px;
	margin-right: 4px;
}
#contact-text i.fa-plane {
	margin-top: 8px;
	padding-bottom: 5px;
}
#contact-text i.fa-person-dolly {
	margin-top: 10px;
	margin-right: 2px;
  margin-left: 6px;
}

#contact-text i.fa-credit-card {
	margin-top: 4px;
}
#contact-text i.fa-plus {
	margin-top: 8px;
	margin-left: 10px;
	margin-right: 6px;
}
#map-wrapper {
	/* margin: 50px 0 90px 0; */
	padding-top: 70px;
}

@media (max-width: 576px) {
	#contact-text {
		text-align: center;
	}
}




/* ======  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: 8px;
}
.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 (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;
  }
}


/*==================================================*/
/*     17.  SECTION CONTACT XS                      */
/*==================================================*/

#section-contact {
	margin-top: 90px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
}
#section-contact i {
	color: var(--global-color);
}
#section-contact p {
	font-size: 20px;
}
.logo{
    text-transform: uppercase;
    border: 1px solid#eee;
    width: 50%;
    margin: 0 auto ;
    padding: 15px 0px;
}
.footer-content p{
    width: 60%;
    margin: 35px auto;
/*  text-transform: capitalize;  */
}
.footer-contact{
    margin-top: 40px;
}
.footer-contact ul li {
    padding: 0px 20px;
}
.footer-contact ul li i{
/*  margin-right:20px; */
    color:var(--global-color);
    width: 50px;
    height: 50px;
    text-align: center;
    font-size:30px;
    padding-top: 15px;
    margin-bottom: 10px;
/*  float: left; */
}
.contact-box{
/*  float: left; */
}
.footer-contact ul li h4,.footer-contact ul li h5{
    font-family: 'Reem Kufi', sans-serif;
}
.footer-contact ul li h5{
    font-weight: 500;
}



/*==================================================*/
/*     18.  SECTION SPØRSMÅL & SVAR                 */
/*==================================================*/

#section-qa {
	padding: 70px 0 90px 0;
}
#section-qa .nav-link::before {
	margin: 0 20px 0 0;
	font-size: 2em;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	content: "\f2fd";
}
#section-qa .nav-link.active::before {
	color: var(--global-color);
	content: "\f14a";
}
.nav-pills .nav-link {
	color: var(--pri-txt-clr);
	border-right: 1px solid #333333;
	padding: 15px 2px 15px 0;
	border-bottom: 0;
	border-radius: 0;
}
.nav-pills .nav-link.active i {
	color: var(--global-color);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: var(--pri-txt-clr);
	border-right: 5px solid var(--global-color);
	margin-right: -2px;
  background-color: #F2F8F7;
	text-decoration: none;
}
a.nav-link {
  display: flex;
  align-items: center;
}
.tab-content i {
	color: var(--global-color);
	margin: 5px 0 20px 0;
}
@media (max-width: 991.98px) {
	#section-qa .container {
    max-width: 100% !important;
	}
}
@media (max-width: 575.98px) {
	.nav-pills .nav-link {
		padding: 5px 2px 5px 0;
	}
	.tab-content i {
		margin: 25px 0 20px 0;
	}
}


/*==================================================*/
/*     19.  SECTION BILDER                          */
/*==================================================*/

#bilder {
  padding: 80px 0;
	background-color: var(--sec-bg-col);
}

#bilder #portfolio-wrapper {
  /* padding-right: 15px; */
}

#bilder #portfolio-flters {
  padding: 0;
  margin: 0 0 45px 0;
  list-style: none;
  text-align: center;
}

#bilder #portfolio-flters li {
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  /* background: #fff; */
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#bilder #portfolio-flters li:hover, #bilder #portfolio-flters li.filter-active {
  background: var(--global-color);
  color: #fff;
}

#bilder .portfolio-item {
  position: relative;
  /* height: 200px; */
  overflow: hidden !important;
  margin-bottom: 15px;
  transition: all 350ms ease;
  transform: scale(1);
}

#bilder .portfolio-item a {
  display: block;
  /* margin-right: 15px; */
}

#bilder .portfolio-item img {
	width: 100%; /* Add by Theo */
  position: relative;
  top: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#bilder .portfolio-item .details {
  background: var(--global-color);
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -50px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#bilder .portfolio-item .details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 8px 0 2px 8px;
  margin: 0;
}

#bilder .portfolio-item .details span {
  display: block;
  color: #fff;
  font-size: 13px;
  padding-left: 8px;
}

#bilder .portfolio-item:hover .details {
  bottom: 0;
}

#bilder .portfolio-item:hover img {
  top: -30px;
}



/*==================================================*/
/*     18.  SECTION IMAGES                          */
/*==================================================*/

#section-images {
	padding: 70px 0;
}
.img-verksted {
	padding: 2px 0;
	width: 100%;
}
.img-verk-thumb>.col, .img-verk-thumb>[class*=col-] {
	padding-right: 2px;
	padding-left: 2px;
}
.lb-data .lb-number {
	font-size: 14px;
	font-weight: 500;
	color: #CCCCCC;
}



/*==================================================*/
/*      Registrerings side                          */
/*==================================================*/

body#rep-reg-page {
  background: #EFF5F5;
}

#rep-reg-page #SyRepRegForm h6 {
  color: #006E66;
}

#rep-reg-page #header {
  margin-bottom: 25px;
  position: static;
}


#rep-reg-page #section-banner {
  margin: 70px 0 90px 0;
}

label {
	text-align: right;
}
h3.form-top {
	padding-bottom: 9px;
	margin: 40px 0 20px;
	border-bottom: 1px solid #eee;
	text-align: center;
}
.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-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.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;
}



/*==================================================*/
/*      levere.php				                          */
/*==================================================*/

body#lev-page {
  background: #EFF5F5;
}
#lev-page #mobile-nav-toggle {
  position: absolute;
}
#lev-page #header {
  margin-bottom: 25px;
  position: static;
}
#more-features ul {
	font-size: 14px;
	margin-left: 100px;
	margin-bottom: 0;
	line-height: 24px;
}
#mottak,
#merking,
#levering,
#henting {
	padding: 60px 0;
	background-color: var(--sec-bg-col);
}
#merking,
#levering,
#henting {
	padding: 50px 0;
}
#mottak h2,
#merking h2,
#levering h2,
#henting h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
#mottak h2 {
  font-size: 32px;
	margin-bottom: 35px;
}
#levering .section-header {
	margin-bottom: 60px;
}
#mottak .service-box1 h3,
#merking .service-box1 h3,
#levering .service-box1 h3,
#henting .service-box1 h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
}
#mottak .service-box1 ul li {
  text-align: left;	
}
#mottak h4,
#merking h4,
#levering h4,
#henting h4 {
	font-size: 1.4rem;
	font-weight: 600;
}
#mottak h4.d-lg-none,
#merking h4.d-lg-none,
#levering h4.d-lg-none,
#henting h4.d-lg-none {
	margin-bottom: 1.5rem;
}
#mottak img,
#merking img,
#levering img,
#henting img {
	margin-bottom: 5px;
}
#mottak p {
	margin-bottom: 10px;
}
#mottak .service-box1 {
  text-align:center;
	color:#333333;
}
#mottak .section-heading,
#merking .section-heading,
#levering .section-heading,
#henting .section-heading {
	padding-bottom: 60px;
}
#mottak .img-box-old,
#merking .img-box-old,
#levering .img-box-old,
#henting .img-box-old {
	margin-top: 40px;
}
#mottak .description,
#merking .description,
#levering .description,
#henting .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
	#merking p,
	#levering p,
	#henting p {
		margin-bottom: 5px;
	}
}
@media (max-width: 992px) {
	#mottak .img-box-old,
	#merking .img-box-old,
	#levering .img-box-old,
	#henting .img-box-old {
		margin-top: 20px;
	}
  #mottak h2,
	#merking h2,
	#levering h2,
	#henting h2 {
    text-align: center;
  }
	#levering .section-header {
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	#merking p,
	#levering p,
	#henting p,
	#mottak .img-box-old-top h4,
	#merking .img-box-old-top h4,
	#levering .img-box-old-top h4,
	#henting .img-box-old-top h4 {
		margin-bottom: 1rem;
	}
  #mottak .description,
	#merking .description,
	#levering .description,
	#henting .description {
    text-align: center;
  }
	#levering .section-header {
		margin-bottom: 20px;
	}
	#more-features ul {
		margin-left: -20px;
	}
}
@media (max-width: 576px) {
	#mottak .section-heading,
	#merking .section-heading,
	#levering .section-heading,
	#henting .section-heading {
		padding-bottom: 40px;
	}
	#mottak h3 {
		font-size: 26px;
	}
}


#mottak ul,
#merking ul,
#henting ul { 
	display: table;
  margin: 0 auto;
	margin-bottom: 45px;
}
#merking ul .ul-overskrift { 
  color: #333333;
	font-weight: 600;
	margin-left: -30px;
	padding-bottom: 5px;
}
@media (max-width: 575.98px) {
	#mottak ul,
	#merking ul,
	#henting ul {
		padding-inline-start: 20px;
	}
	#merking ul .ul-overskrift {
		margin-left: -20px;
	}
}



/*==================================================*/
/*              Language	                          */
/*==================================================*/

#section-banner {
  padding: 100px 0 70px 0;
}
.lang-div {
	padding: 75px 0 30px 0;
  position: relative;
  width: 100%;
	background-color: #cbe2e1;
}
.lang-div a {
	float: right !important;
	color: #444444;
}
.lang-div img {
	padding-bottom: 3px;
}

@media (max-width: 992px) {
	.lang-div {
		padding: 75px 20px 30px 0;
	}
}
@media (min-width: 992px) {
	.lang-div {
		max-width: 960px;
		width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	}
}
@media (min-width: 1200px) {
	.lang-div {
    max-width: 1140px;
		width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	}
}


/*==================================================*/
/*      Brukerinfo siden	                          */
/*==================================================*/

html, body#minside {
  height: 100%;
}
body#minside {
  display: flex;
  flex-direction: column;
	background: #EFF5F5;
}
#minside main {
  flex: 1 0 auto;
}
#minside #nav-menu-container {
  color: #FFFFFF;
}
#minside #nav-menu-container span.navbar-text {
  padding-right: 20px;
}
#minside #mobile-nav-toggle {
  position: absolute;
}
#minside .nav-menu a {
   padding: 9px 8px 10px 8px;
}
#minside #header {
  margin-bottom: 25px;
  position: static;
}
#minside #header form {
  margin-top: -4px;
}
#minside #footer {
  flex-shrink: 0;
}
/*
#minside #inn-p {
  margin: 0 5px;
}
*/
#minside #section-main,
#minside #section-resetpwd,
#minside #section-signup,
#minside #section-reset {
  padding: 20px 0;
	text-align: center;
}
#minside #section-resetpwd h6,
#minside #section-signup h6,
#minside #section-reset h6 {
  line-height: 25px;
}
#minside #section-resetpwd form.form-resetpwd,
#minside #section-signup form.form-signin,
#minside #section-reset form.form-signin,
#minside #section-main form.form-signin {
	width: 100%;
	max-width: 330px;
	padding: 15px;
	margin: auto;
}
#minside #section-main form.form-signin {
	display: block;
} 
#minside #section-resetpwd .form-resetpwd input,
#minside #section-signup .form-signin input, 
#minside #section-reset .form-signin input,
#minside #section-main .form-signin input {
	margin-bottom: 2px;
}
#minside #section-resetpwd .form-resetpwd button,
#minside #section-signup .form-signin button, 
#minside #section-reset .form-signin button,
#minside #section-main .form-signin button {
	margin-top: 20px;
}
#minside #section-main .card-header {
	text-align: left;
	border: 1px solid rgba(0,0,0,.125);
}
#minside #section-main .card-body {
	border: 1px solid rgba(0,0,0,.125);
	border-top: 0px solid rgba(0,0,0,.125);
}
#minside #section-main .card-header,
#minside #section-main .card-body {
	text-align: left;
}
#minside #section-main .card-title {
	margin-bottom: 0;
}
#minside #section-main .card-body span.badge {
	font-size: 100%;
  font-weight: 500;
}
#minside .alert {
	margin: auto;
	margin-top: 10px;
	margin-bottom: 25px;
	max-width: 600px;
}
#minside .mt-0 {
	margin-top: 0;
}
#minside a.s-ordre {
	margin-top: 15px;
}


@media (max-width: 992px) {
	#minside #section-main form.form-signin {
		display: block;
	}
	#minside #section-main button {
		margin-bottom: 15px;
	}
	#minside #inn-p {
		margin: 0;
	}
	#minside #logginn {
		display: none!important;
	}
}

@media (min-width: 576px) {
	#minside #stat_und_576 {
		display: none;
	}
  #minside .stat_und_576 {
		display: none;
	}
}

@media (max-width: 575.98px) {
	#minside #section-main .container {
		padding-right: 7px;
    padding-left: 7px;
	}
	#minside #stat_ovr_576 {
		display: none;
	}
  #minside .stat_ovr_576 {
		display: none;
	}
}

.tidslinje {
	margin-top: 50px;
}
.hori-timeline .events {
	border-top: 3px solid #e9ecef;
}
.hori-timeline ul,
.hori-timeline .events .event-list p.text-muted {
	margin-bottom: 0;
}
.hori-timeline .events .event-list {
	display: block;
	position: relative;
	text-align: center;
	padding-top: 70px;
	margin-right: 0;
}
.hori-timeline .events .event-list h5 {
	margin-bottom: 8px;
}

.hori-timeline .events .event-list:before {
	content: "";
	position: absolute;
	height: 36px;
	border-right: 2px dashed #dee2e6;
	top: 0;
}
.hori-timeline .events .event-list .event-date {
	position: absolute;
	top: 38px;
	left: 0;
	right: 0;
	width: 75px;
	margin: 0 auto;
	border-radius: 4px;
	padding: 2px 4px;
}
.hori-timeline .events .event-list .event-icon {
	position: absolute;
	top: -27px;
	left: 0;
	right: 0;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	border-radius: 25px;
	/* padding: 2px; */
	border: 1px solid rgba(0,0,0,.125);
}
.hori-timeline .events .event-list .event-icon i {
	color: #666666;
}
.hori-timeline .events .event-list.timereg h5,
.hori-timeline .events .event-list.timereg .event-icon i {
	color: #CCCCCC;
}
.hori-timeline .events .event-list .event-icon i.fa-person-carry {
	font-size: 27px;
	padding-top: 12px;
  padding-left: 3px;
}
.hori-timeline .events .event-list .event-icon i.fa-tools {
	font-size: 25px;
	padding-top: 12px;
  padding-left: 2px;
}
.hori-timeline .events .event-list .event-icon i.fa-check {
	font-size: 27px;
	padding-top: 12px;
  padding-left: 1px;
}
.hori-timeline .events .event-list .event-icon i.fa-box-heart {
	font-size: 25px;
	padding-top: 12px;
  padding-left: 1px;
}

@media (min-width: 992px) {
	.hori-timeline .events .event-list {
		display: inline-block;
		width: 24%;
		padding-top: 45px;
	}
	.hori-timeline .events .event-list .event-date {
		top: -12px;
	}
}
@media (max-width: 992px) {
	.hori-timeline .events .event-list {
		padding-top: 45px;
		margin-top: 55px;
	}
	.hori-timeline .events {
    border-top: 0px solid #e9ecef;
	}
}


.bg-soft-icon {
	background-color: #F7F7F7 !important;
}
.bg-soft-primary {
	background-color: rgba(64,144,203,.5)!important;
}
.bg-soft-success {
	background-color: rgba(71,189,154,.3)!important;
}
.bg-soft-danger {
	background-color: rgba(231,76,94,.3)!important;
}
.bg-soft-warning {
	background-color: rgba(249,213,112,.3)!important;
}
.card {
	border: none;
	margin-bottom: 24px;
	-webkit-box-shadow: 0 0 13px 0 rgba(236,236,241,.44);
	box-shadow: 0 0 13px 0 rgba(236,236,241,.44);
}




/*==================================================*/
/*       Gallery siden	                            */
/*==================================================*/

#header #logo h1 a,
#footer a {
	text-decoration: none;
}
.gallery-text-right {
	text-align: right;
}



/*==================================================*/
/*       Infmormasjon siden                         */
/*==================================================*/

#informasjon .container {
  padding-top: 25px;
}
#informasjon .container p {
  font-size: 1rem;
}
#informasjon .alert {
  margin-bottom: 2rem;
}
#informasjon .alert-danger {
  font-weight: 600;
  color: #000000;
  background-color: #FF735F;
  border-color: #FF543B;
}

@media (min-width: 768px) {
  #informasjon .container {
    max-width: 960px;
    padding-left: 5px;
    padding-right: 5px;
  }
}



/*==================================================*/
/*       Repair siden	                              */
/*==================================================*/

.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;
	}
}



/*==================================================*/
/*          jobbreg.php  -  jobsend.php             */
/*==================================================*/

#jobbsend .container {
padding-top: 100px;
}

#jobbsend h4 {
	text-align: center;
  line-height: 35px;
}

@media (max-width: 992px) {
	#jobbsend .container {
		padding-top: 100px;
	}
}

