@charset "UTF-8";
@import url(css/bootstrap/bootstrap-grid.min.css);
@import url(css/bootstrap/bootstrap-reboot.min.css);

body {
    line-height:1.1;
    font-family:Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

p {
    color: #222222;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

*, ::after, ::before {
    box-sizing: inherit;
}

.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.row.display-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.divider-heading {
    border-top: 1px solid #e0e0e0;
    padding: 20px;
}

hr {
    margin: 1rem 0;
    color: #e0e0e0;
    border: 0;
    border-top: 1px solid;
}

h1,.h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin: 0;
    padding: 0;
}

.h2, h2 {
    font-size: 2.5rem;
}

.h6, h6 {
    font-size: 1.25rem;
}

.single h4 {
    font-size: 18px;
}

.box-big h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

button {
    color: #222222;
    border: 2px solid #222;
    padding: 14px 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 10px;
    border-radius: 3px;
    background: none;
}

ul.non {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul {
    margin-bottom: 20px;
    list-style: circle;
    margin-left: 20px;
    margin-top: 10px;
    padding:0;
}

li {
    margin-bottom: 8px;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

footer h6 {
    padding-bottom: 30px;
    margin: 0;
}

#logo img {
    height: 50px;
    margin-top: 5px;
}
.arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 2px;
    margin-left: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.font-bold {
    font-weight: bold !important;
    color: #A9202B !important;
}

.my-auto {
    margin-top: auto!important;
    margin-bottom: auto!important;
}

a {
    text-decoration: none;
    color: #999;
}

/* start */

#mobile-menu ul {
    margin: 0;
    padding: 0 7%;
    text-decoration: none;
    list-style: none;
    text-underline: none;
}

#mobile-menu ul li {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

#mobile-menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 26px;
    font-weight: bold;
}

#mobile-menu ul li a:hover {
    opacity: 0.5;
}

/* stop */


.menu-holder ul li {
    display: inline-block;
    padding: 1rem 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-holder ul li a {
    margin: 0 1rem;
    font-size: 14px;
    line-height: 1.2;
    font-weight: normal;
    color: #222220;
    text-decoration: none;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.menu-holder ul li a:hover {
    opacity: .4;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    cursor: hover;
}

header {
    border-bottom: 1px solid #e0e0e0;
    padding: 14px 0;
}

header nav.main-navigation, header nav.top-navigation {
    height: 60px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background-image: none;
    background-color: transparent;
    border: none;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) height;
    -o-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) height;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) height;
}

header nav.main-navigation #main-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 15;
}

#mobile-menu {
    display: none;
    position: fixed;
    background: #FFF;
    z-index: 99999;
    width: 100%;
    left: 0;
    top: 90px;
}

#mobile-button {
    display: none;
    cursor: pointer;
}

.dropdown-parent {
    position: relative;
}

.dropdown-inner {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    min-width: 220px;
    max-width: 100vw;
    z-index: 15;
    display: none;
}

nav li:hover .dropdown-inner {
    display: block;
}

.dropdown-inner ul {
    background: #FFF;
    -webkit-box-shadow: 0 2px 17px rgba(34, 34, 32, 0.1);
    box-shadow: 0 2px 17px rgba(34, 34, 32, 0.1);
    border-radius: 5px;
}

.dropdown-inner ul li {
    padding: 8px 0;
}

.max-container {
    background-color: #e0e0e0;
}

.sec-divider {
    height: 60px;
    width: 100%;
}

.box {
    background: rgba(0,0,0,.05);
    padding: 20px;
    height: 100%;
    margin: 10px 0;
    line-height: 20px;
}

.fixed {
    overflow:hidden;
}

.kat-img {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.kat-img:hover {
    border: 1px solid #A9202B;
    border-radius: 10px;
    cursor: pointer;
}

.img-box {
  position:relative;
  width:100%;
  padding: 60px 0;

}

.main-container .img-box {
  position:relative;
  width:100%;
  padding-top: 0px;
  padding-bottom: 40px;
}

.img-box.left {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width: 50vw;
}

.img-box.right {
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width: 50vw;
  background: url(img/bagger.jpg);
  background-size: cover;
}

@media only screen and (max-width: 1020px) {
    .img-box.left, .img-box.right  {
      position:absolute;
      top:0px;
      left:0px;
      right:0px;
      bottom:0px;
      width:100%;
    }

    .content-box {
        min-height:300px;
    }

    .menu-holder {
        display: none !important;
    }

    #mobile-button {
        display: block;
    }

    footer h6 {
        margin-top: 20px;
    }

}

.single {
    margin-top: 0;
}

.intro-heading {
    line-height: 42px;
    padding-bottom: 20px;
}

.hstl {
    font-size: 36px;
}

.item-spacer {
    height: 20px;
    width: 100%;
}

.hs-section {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px !important;
}

.advs-box {
    margin: 10px 0;
    padding: 26px 20px;
    position: relative;
    transition: all .4s;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.advs-box:before {
    content: "";
    position: absolute;
    width: calc(100% + 2px);
    height: 3px;
    top: -1px;
    left: -1px;
    transform: translate3d(0,0,0);
    z-index: 2;
    background-color: #a9202b;
}

.ad1-box a {
    text-decoration: none;
    color: #222220;
    transition: 0.25s;
}

.ad1-box a:hover {
    opacity: 0.5;
}

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

.box-big {
    background: rgba(0,0,0,.05);
    padding: 40px;
    height: 100%;
    line-height: 20px;
}

#footer {
    background: #A9202B;
    padding: 70px 0;
    color: #FFFFFF;
    line-height: 26px;
}

.main-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.title-container {
    margin: 20px 0;
}

.hstl {
    font-size: 36px;
}

.menu-holder ul {
    margin: 0;
}

.menu-holder ul li {
    margin-bottom: 0;
}

small {
    text-transform: uppercase;
    padding-bottom: 20px;
    display: block;
    color: #A9202B;
    font-weight: bold;
}

.intro-heading {
    line-height: 42px;
    padding-bottom: 20px;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
    line-height: 20px;
}
caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
label {
    display: inline-block;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #000;
}

th {
    font-weight: bold;
}
.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}
.table-striped-columns > :not(caption) > tr > :nth-child(2n) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}
.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

table tr td:first-of-type,
table tr th:first-of-type,
table tr td:first-of-type {
    white-space: nowrap;
}

table tr th:last-of-type {
    width: 30px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

footer ul li a {
    color: #FFF !important;
    text-decoration: none;
    margin-bottom: 0;
    font-size: 15px;
}

footer p {
    color: #FFF !important;
    font-size: 15px;
    margin: 0;
}