@charset "UTF-8";

/* Buttons */
@import url("steleco.buttons.css");

/* Accordions (About & Services) */
@import url("steleco.accordions.css");

/* Material Cards (Coworkers) */
@import url("steleco.material-cards.css");

/* Post Modules (News) */
@import url("steleco.post-modules.css");

/* Global ------------------------------------------------------------------- */
body {
  color: #617086;
  font-family: "Poppins", sans-serif;
  font-size: .9375rem;
  font-weight: 300;
  line-height: 22px;
}

.img-responsive {
	display:block;
	max-width: 100%;
	height: auto;
	padding-bottom:20px;
	margin: 0 auto;
}

/* Headings: */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  padding: 0;
}
h1, .h1 {
  color: #68B9EC;
  font-family: "Playfair Display", serif;
  font-size: 3.375rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 2rem;
  }
}
.text-white h1,
.text-white .h1 {
  color: #fff;
  margin-bottom:22px;
}
h2, .h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Paragraphs: */
p {
  font-size: 1rem;
  line-height: 24px;
}
p.large {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 50px;
}
p.small {
  font-size: .875rem;
  font-weight: 300;
  line-height: 16px;
}
p.ingress {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 30px;
}
p.text {
  font-size: 1rem;
}

/* Links: */

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    font-weight: 500;
    font-size: 20px;
}


a {
    color: #68B9EC;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0px;
    text-decoration: uppercase;
	line-height:28px;
}
a:hover,
a:focus {
  color: #68B9EC;
  text-decoration: none;
}
/* Make links in headers have the headers color. */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover,
.h1 a:focus, .h2 a:focus, .h3 a:focus, .h4 a:focus, .h5 a:focus, .h6 a:focus,
a.h1, a.h2, a.h3, a.h4, a.h5, a.h6,
a.h1:hover, a.h2:hover, a.h3:hover, a.h4:hover, a.h5:hover, a.h6:hover,
a.h1:focus, a.h2:focus, a.h3:focus, a.h4:focus, a.h5:focus, a.h6:focus {
  color: inherit;
  text-decoration: none;
}

/* Remove input[type="number"] spinners. */
input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Bootstrap Changes -------------------------------------------------------- */

/* Backgrounds: */
/* Dark */
.bg-dark {
  background-color: #333a45 !important;
}
/* Orange */
.bg-orange {
  background-color: #68B9EC !important;
}
/* Orange Semi-Transparent */
.bg-orange-t {
  background-color: #68B9EC !important;
}

/* Buttons: */
.btn {
  border-width: 2px;
  font-size: .7rem;
  font-weight: 700;
  overflow: hidden;
  padding: 6px 24px;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.btn:hover {
  font-weight: 700;
}

/* Containers-halves: (Used for padding only.) */
.container-half-left,
.container-half-right {
  padding: 0;
  width: 100%;
}
.container-half-left {
  margin-left: auto;
}
.container-half-right {
  margin-right: auto;
}
@media (min-width: 576px) {
  .container-half-left,
  .container-half-right {
    max-width: 270px;
  }
}
@media (min-width: 768px) {
  .container-half-left,
  .container-half-right {
    max-width: 360px;
  }
}
@media (min-width: 992px) {
  .container-half-left,
  .container-half-right {
    max-width: 480px;
  }
}
@media (min-width: 1200px) {
  .container-half-left,
  .container-half-right {
    max-width: 570px;
  }
}

/* Header ------------------------------------------------------------------- */
.section-header .navbar {
  background-color: #fff;
  border-bottom: 3px solid #68B9EC;
  padding: 2px 0 10px;
  transition: background .3s ease-in-out, border .3s ease-in-out;
}
.section-header .navbar.scrolled {
  background-color: rgba(255, 255, 255, .9);
  border-color: #68B9EC;
}
.section-header .navbar-brand {
  margin-right: 0;
}
.section-header .navbar-brand img {
  max-width: 220px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .section-header .navbar-brand img {
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .section-header .navbar-toggler {
    margin-right: 15px;
  }
}
.section-header .navbar-collapse {
  margin-top: 8px;
}
.section-header .navbar .navbar-nav {
  padding: 0 15px;
}
.section-header .navbar .navbar-nav > li > a {
	font-family: "Roboto Condensed", sans-serif;
	font-size:16px;
	letter-spacing: 1px;
  color: #68B9EC;
  font-weight: 700;
  text-transform: uppercase;
}
.section-header .navbar-expand-md .navbar-nav > li > a {
  padding: 15px;
}
.section-header .navbar .navbar-nav > li > a:hover,
.section-header .navbar .navbar-nav > .active > a {
  color: #68B9EC;
}
.section-header .btn {
	font-family: "Roboto Condensed", sans-serif;
	font-size:16px;
	letter-spacing: 1px;	
  font-size: .94rem;
  line-height: 1;
  padding: 7px;
}
.section-header .btn:hover {
  font-weight: 700;
  border-color: #68B9EC;
  color: #68B9EC;
}
@media (max-width: 575px) {
  .section-header .btn {
    margin-left: 15px;
  }
}

/* Hero --------------------------------------------------------------------- */
.section-hero .hero {
  background: url("") no-repeat fixed top center / cover;
  height: 900px;
  padding: 300px 0 0;
}
@media (max-width: 1199px) {
  .section-hero .hero {
    height: 700px;
    padding: 200px 0 0;
  }
}
.section-hero .card {
  border: 0;
}
.section-hero .card .card-body h1 {
  font-size: 3.8rem; /* 1.1851 times bigger than normal */
}
@media (max-width: 767px) {
  .section-hero .card .card-body h1 {
    font-size: 2.3703rem; /* 1.1851 times bigger than normal */
  }
}

/* About -------------------------------------------------------------------- */
.section-about {
  background-color: #f1f1f1;
}
.section-about .container {
  padding: 80px 15px;
  text-align: center;
}

/* Services ----------------------------------------------------------------- */
.section-besvar .container {
  padding: 120px 15px;
  text-align: center;
}

/* priser ----------------------------------------------------------------- */
.section-priser .bg-orange {
  padding: 120px 0;
}
.section-priser .bg-orange .container-half-right {
  padding-left: 55px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .section-priser .background {
    display: none;
  }
  .section-priser .bg-orange .container-half-right {
    max-width: 100%;
    padding: 0 55px;
  }
}
@media (max-width: 767px) {
  .section-priser .bg-orange .container-half-right {
    padding: 0 15px;
  }
}
.section-priser h1 {
  margin-bottom: 10px;
}
.section-priser .h3 {
  display: block;
  margin: 10px 0;
}

/* Coworkers ---------------------------------------------------------------- */
.section-coworkers .container {
  padding: 40px 15px;
  padding-bottom:120px;
}
.section-coworkers h1 {
  margin-bottom: 20px;
}
.section-coworkers hr {
  border-top-color: #eee;
  margin: 10px 0 20px;
}

/* foretag --------------------------------------------------------------- */
.section-foretag .bg-dark,
.section-foretag .bg-orange {
  padding: 120px 0;
}
.section-foretag .bg-dark .container-half-left {
  padding-left: 15px;
  padding-right: 55px;
}
.section-foretag .bg-orange .container-half-right {
  padding-left: 55px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .section-foretag .background {
    display: none;
  }
  .section-foretag .bg-dark .container-half-left,
  .section-foretag .bg-orange .container-half-right {
    max-width: 100%;
    padding: 0 55px;
  }
}
@media (max-width: 767px) {
  .section-foretag .bg-dark .container-half-left,
  .section-foretag .bg-orange .container-half-right {
    padding: 0 15px;
  }
}
.section-foretag .fa-ul {
  margin-left: 1.6em;
}
.section-foretag .fa-ul li {
  margin: 20px 0;
}

/* Page --------------------------------------------------------------------- */
.section-page .container {
  padding: 120px 15px 80px;
}
.section-page h1 {
  margin-bottom: 20px;
}
.section-page .card {
  background-color: #f1f1f1;
  border: 0;
  border-radius: 0;
}

/* News --------------------------------------------------------------------- */
/* News --------------------------------------------------------------------- */
.section-news .container {
  padding: 120px 15px;
  text-align: center;
}
.section-news .container > .row {
  text-align: left;
}

/* Follow ------------------------------------------------------------------- */
.section-follow .container {
  padding: 80px 15px;
}
@media (max-width: 767px) {
  .section-follow .container > .row div:first-child {
    margin-bottom: 2em;
  }
}
.section-follow a {
  color: #fff;
}
.section-follow a:hover,
.section-follow a:focus {
  color: #d0d0d0;
}
.section-follow .form-control {
  background-color: transparent;
  border-color: #fff;
  border-width: 2px;
  color: #fff;
  font-size: .875rem;
}
.section-follow .form-control:focus {
  background: transparent;
  border-color: #fff;
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
  color: #fff;
}
.section-follow .form-control::placeholder {
  color: #fff;
}
.section-follow .form-control,
.section-follow .btn {
  height: 50px;
}
@media (max-width: 767px) {
  .section-follow .input-group {
    border-radius: 4px;
    display: block;
    width:  100%;
  }
  .section-follow .input-group input,
  .section-follow .input-group .btn {
    border-radius: 4px !important;
    display: block;
    width:  100%;
  }
  .section-follow .input-group input {
    margin-bottom: 1em;
  }
}

/* Footer ------------------------------------------------------------------- */
.section-footer {
  color: #ced3d8;
  font-size: .8125rem;
}
.section-footer .container {
  padding: 80px 15px;
}
.section-footer img {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .section-footer img {
    max-width: 215px;
  }
}
.section-footer p.small {
  font-size: .8125rem;
}
.section-footer h2 {
  color: #fff;
  margin: 15px 0 10px;
}
.section-footer .fa-ul {
  margin-left: 1.6em;
}
.section-footer .fa-ul li.br {
  margin-bottom: .7em;
}
.section-footer hr {
  border-color: #fff;
}
.section-footer small {
  font-size: .8rem;
  text-transform: uppercase;
}

/* Modals ------------------------------------------------------------------- */
.modal-youtube {
  margin-top: 10%;
}
@media (min-width: 1200px) {
  .modal-youtube {
    width: 900px;
  }
  .modal-youtube > iframe {
    height: 506px;
    width: 900px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .modal-youtube > iframe {
    height: 506px;
    width: 900px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-youtube > iframe {
    height: 337px;
    width: 600px;
  }
}
@media (max-width: 767px) {
  .modal-youtube {
    max-width: 100%;
  }
  .modal-youtube > iframe {
    height: 240px;
    width: 100%;
  }
}
