* {
  outline: none;
  box-sizing: border-box;
}

HTML {
}
BODY {
  padding: 0;
  margin: 0;
  font-family: mr-eaves-xl-modern, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #f29200;
}

H1 {
  font-family: pragmatica, sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
}
H2 {
  font-family: pragmatica, sans-serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}
H3 {
  font-family: pragmatica, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}
H4 {
  font-family: pragmatica, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}
H5 {
  font-family: pragmatica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}
H6 {
}

H1 A,
H2 A,
H3 A,
H4 A,
H5 A,
H6 A {
  text-decoration: none;
}

IMG {
  border: none;
}
HR {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.clr {
  clear: both;
}

.width {
  position: relative;
  width: 1160px;
  margin: 0 auto 0 auto;
}
.p4_inner {
  position: relative;
  width: 900px;
  margin: 0 auto 0 auto;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}
.full-width-image IMG {
  width: 100%;
  height: auto;
  display: block;
}
.full-width-iframe {
  display: block;
}

.image-bg {
  background-image: url(../img/sample-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
}

.bg-white {
  background-color: #ffffff;
}
.bg-dgrey {
  background-color: #333333;
}
.bg-black {
  background-color: #000000;
}
.bg-lorange {
  background-color: #fccf97;
}
.bg-lorange-half {
  background: linear-gradient(90deg, rgba(252, 207, 151, 1) 0%, rgba(252, 207, 151, 1) 50%, rgba(242, 146, 0, 1) 50%);
}
.bg-orange-white-half {
  background: linear-gradient(90deg, rgba(242, 146, 0, 1) 0%, rgba(242, 146, 0, 1) 50%, rgba(255, 255, 255, 1) 50%);
}

.bg-black H1,
.bg-black H2,
.bg-black H3,
.bg-black H4,
.bg-black H5,
.bg-black H6,
#page .bg-black P {
  color: #ffffff;
}
.bg-blackG H1,
.bg-blackG H2,
.bg-blackG H3,
.bg-blackG H4,
.bg-blackG H5,
.bg-blackG H6,
#page .bg-blackG P {
  color: #ffffff;
}

.shadow-it {
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.15);
}

/* ********************************************************************* */
/*	COLUMNS
/* ********************************************************************* */

.row {
  padding: 0;
  position: relative;
  z-index: 997;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -20px 0 -20px;
}
.item {
  box-sizing: border-box;
  padding: 0;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

.row.no-gutter .container {
  margin: 0 0 0 0;
}
.row.no-gutter .item {
  margin: 0 0 0 0;
}

.item-vtop {
  justify-content: flex-start;
}
.item-vcenter {
  justify-content: center;
}
.item-vend {
  justify-content: flex-end;
}

.item-hstart {
  justify-content: flex-start;
}
.item-hcenter {
  justify-content: center;
}
.item-hend {
  justify-content: flex-end;
}
.item-hbetween {
  justify-content: space-between;
}
.item-haround {
  justify-content: space-around;
}
.item-hevenly {
  justify-content: space-evenly;
}

.item-1-1 {
  width: calc(100% - 40px);
}
.no-gutter .item-1-1 {
  width: 100%;
}

.item-1-2 {
  width: calc(50% - 40px);
}
.no-gutter .item-1-2 {
  width: 50%;
}

.item-1-3 {
  width: calc(33.3333% - 40px);
}
.item-2-3 {
  width: calc(66.6666% - 40px);
}
.no-gutter .item-1-3 {
  width: 33.3333%;
}
.no-gutter .item-2-3 {
  width: 66.6666%;
}

.item-1-4 {
  width: calc(25% - 40px);
}
.item-3-4 {
  width: calc(75% - 40px);
}
.no-gutter .item-1-4 {
  width: 25%;
}
.no-gutter .item-3-4 {
  width: 75%;
}

.item-1-5 {
  width: calc(20% - 40px);
}
.item-2-5 {
  width: calc(40% - 40px);
}
.item-3-5 {
  width: calc(60% - 40px);
}
.item-4-5 {
  width: calc(80% - 40px);
}
.no-gutter .item-1-5 {
  width: 20%;
}
.no-gutter .item-2-5 {
  width: 40%;
}
.no-gutter .item-3-5 {
  width: 60%;
}
.no-gutter .item-4-5 {
  width: 80%;
}

/* ********************************************************************* */
/*	PAGE
/* ********************************************************************* */

#page {
  background: transparent;
}

#page P {
  font-size: 16px;
  line-height: 1.2;
}

#page UL LI {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
#page OL LI {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

#page A {
  text-decoration: none;
}
#page A:hover {
}

#page P A {
  text-decoration: underline;
}

article.news-block {
  margin: 10px;
}
/*
article.news-block H3 a {
  font-family: mr-eaves-xl-modern, sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  color: #000000;
}
article.news-block H3 a:hover {
  color: #ff9b00;
}

article.news-block .article-top {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}
article.news-block .article-top ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
}
article.news-block .article-top ul li a {
  color: #ff9b00;
  text-decoration: none;
  padding-right: 5px;
}
article.news-block .article-top ul li a:hover {
  color: black;
}

article.news-block .article-image {
  position: relative;
  height: 0;
  padding-bottom: 65.7%;
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-bottom: 15px;
}

article.news-block .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

*/

footer {
  padding-top: 140px !important;
}

/*
footer {
  background: #666666;
  color: white;
  position: relative;
  padding-bottom: 80px;
  padding-top: 60px;
}
@media all and (max-width: 650px) {
  footer {
    padding-top: calc(16vw + 40px);
  }
}
footer a {
  color: white;
}
footer a:hover {
  color: #ff9b00;
}
footer .button {
  border-color: white;
}
footer .footer-triangle {
  width: 100%;
  height: 0;
  padding-bottom: 19.03%;
  position: relative;
  top: -1px;
  background: white;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  margin-bottom: 90px;
}
footer h3 {
  margin-bottom: 0;
}
footer .two-col {
  padding-right: 20px;
}
footer ul {
  padding: 0;
}
footer ul li {
  display: inline-block;
  margin-right: 15px;
}
@media all and (max-width: 650px) {
  footer ul li {
    display: block;
  }
}

.footer-logo {
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
}
.footer-logo img {
  max-width: 140px;
  max-height: 190px;
}
.footer-logo .bkl-advanced img {
  max-width: 260px;
  max-height: 190px;
}

.download-module {
  display: inline-block;
  vertical-align: middle;
}
.download-module A {
  display: block;
}

@media all and (max-width: 580px) {
  .footer-logo {
    margin-bottom: 20px;
  }
  .download-module {
    display: block;
    margin-top: 30px;
  }
}

a.app-download {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: white;
  color: #666;
  height: 38px;
  width: 38px;
  margin-bottom: 5px;
}

a.app-download:hover {
  color: #666;
  background: #ff9b00;
}

footer ul.menu {
  margin-top: 50px;
}

.flex-row {
  display: flex;
  align-items: flex-start;
}
*/

@media all and (max-width: 650px) {
  .flex-row {
    display: block;
    width: 100%;
  }
}
.flex-row .left {
  padding-right: 60px;
}
@media all and (max-width: 650px) {
  .flex-row .left {
    padding-right: 0;
  }
}
.flex-row .flex-item {
  flex: 1;
}
@media all and (max-width: 650px) {
  .flex-row .flex-item {
    display: block;
    margin-bottom: 30px;
  }
}
.flex-row .flex-item.flex-shrink {
  flex: 0.4;
}
.flex-row .flex-item.flex-grow {
  flex-grow: 3;
}

.button,
input[type="submit"] {
  font-weight: bold;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 50px;
  padding: 14px 55px;
  display: inline-block;
}
.button:hover,
input[type="submit"]:hover {
  background: #ff9b00;
  color: white;
  border-color: #ff9b00;
}
.button.filled {
  background: #ff9b00;
  color: white;
  border-color: #ff9b00;
}
.button.filled:hover {
  background: #d98400;
  border-color: #d98400;
}
@media all and (max-width: 650px) {
  .button,
  input[type="submit"] {
    padding: 14px 20px;
  }
}

.button h3 {
  margin: 0;
  font-family: pragmatica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
}

.button + .button {
  margin-left: 20px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

ul.social {
  list-style: none;
  margin: 40px 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0px;
}
ul.social li {
  display: inline-block;
  margin-right: 20px;
}
ul.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: white;
  color: #666;
  height: 38px;
  width: 38px;
}
ul.social li a:hover {
  background: #ff9b00;
}

p.small {
  font-size: 14px;
  font-weight: 600;
}

/* ********************************************************************* */
/* ***** RESPONSIVE **************************************************** */
/* ********************************************************************* */

@media screen and (max-width: 1220px) {
  .width {
    width: 960px;
  }
}

@media screen and (max-width: 980px) {
  .width {
    width: 100%;
  }
  .inner {
    width: 100%;
    padding: 20px;
  }

  .container.image-bg {
    /* background-image: none !important; */
  }

  .bg-orange-white-half {
    background: rgba(242, 146, 0, 1);
  }

  .container {
    margin: 0 0 0 0;
    padding: 0 0 0 0 !important;
  }
  .item {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 20px;
    margin-right: 20px;
  }

  .item-1-1 {
    width: 100%;
  }
  .no-gutter .item-1-1 {
    width: 100%;
  }

  .item-1-2 {
    width: 100%;
  }
  .no-gutter .item-1-2 {
    width: 100%;
  }

  .item-1-3 {
    width: 100%;
  }
  .item-2-3 {
    width: 100%;
  }
  .no-gutter .item-1-3 {
    width: 100%;
  }
  .no-gutter .item-2-3 {
    width: 100%;
  }

  .item-1-4 {
    width: 100%;
  }
  .item-3-4 {
    width: 100%;
  }
  .no-gutter .item-1-4 {
    width: 50%;
  }
  .no-gutter .item-3-4 {
    width: 50%;
  }

  .item-1-5 {
    width: 25%;
  }
  .item-2-5 {
    width: 25%;
  }
  .item-3-5 {
    width: 50%;
  }
  .item-4-5 {
    width: 50%;
  }
  .no-gutter .item-1-5 {
    width: 25%;
  }
  .no-gutter .item-2-5 {
    width: 25%;
  }
  .no-gutter .item-3-5 {
    width: 50%;
  }
  .no-gutter .item-4-5 {
    width: 50%;
  }

  article.news-block {
    margin: 10px auto;
  }
}

@media screen and (max-width: 780px) {
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 480px) {
}
