/* Resets default browser styling */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: top;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, time, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input, textarea, select {
  display: inline-block;
  -webkit-appearance: none;
  outline: none;
  color: inherit;
  overflow: visible;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

button,
input[type='button'],
input[type='submit'] {
  cursor: pointer;
}

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

/* END OF Resets default browser styling */

#DNDLogoTop {
    margin-left: auto;
    margin-right: auto;
    width: 17%;
    display: block;
    margin-bottom: 0%;
    margin-top: -1%;
}

/*Backgound Image wood look */

.bg-default-darken {
    background-image: url(../images/nav_bg.jpg);
}

.bg-default-darken2 {
    background-image: url("../images/nbalabs_bg.jpg");
}

/* End of Background Images */

/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/
.lt-ie11 input {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom-left-radius: 1px !important;
}

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

a,
a[href^="tel:"],
a[href^="callto:"] {
  color: inherit;
  text-decoration: none;
}

a:focus,
a[href^="tel:"]:focus,
a[href^="callto:"]:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a, button, input {
  transition: .3s all ease;
}

/*
* @section      Page Layouts
* @description  This section holds style declarations of all
*               included page layouts
*/
.page {
  overflow: hidden;
}

/*
* @subsection Boxed Layout
*/
html.boxed body {
  background: #444;
}

html.boxed .page {
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.35), 2px 3px 8px 0px rgba(0, 0, 0, 0.35);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/*
* @section      TM Grid System
*
* @description  A powerful and flexible css flex grid system
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
* @version      1.0.0
*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 300px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 2048px;
}

/*.row {
  margin-left: -15px;
  margin-right: -15px;
}*/



html.lt-ie10 * + .row,
* + .row {
  margin-top: 40px;
}

@media (min-width: 992px) {
  html.lt-ie10 * + .row,
  * + .row {
    margin-top: 70px;
  }
}

html.lt-ie10 * + [class*='col-'],
* + [class*='col-'] {
  margin-top: 40px;
}

html.lt-ie10 .row-no-gutter, .row-no-gutter {
  margin-left: 0;
  margin-right: 0;
}

html.lt-ie10 .row-no-gutter > [class*='col'], .row-no-gutter > [class*='col'] {
  padding-left: 0;
  padding-right: 0;
}

html.lt-ie10 .row-no-gutter > * + [class*='col'], .row-no-gutter > * + [class*='col'] {
  margin-top: 0;
}

@media (min-width: 480px) {
  * + [class*='col-xs-'] {
    margin-top: 0;
  }
  .row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row > [class*='col'] {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .row-xs-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .row-xs-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .row-xs-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .row-xs-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .row-xs-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .row-xs-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .row-xs {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .row-xs-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .row-xs-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .row-xs-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .col-xs-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .col-xs-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .col-xs-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .row > .col-xs-preffix-0 {
    margin-left: 0%;
  }
  .row > .col-xs-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-xs-preffix-1 {
    margin-left: 8.33333%;
  }
  .row > .col-xs-push-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .row > .col-xs-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-xs-preffix-2 {
    margin-left: 16.66667%;
  }
  .row > .col-xs-push-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .row > .col-xs-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .row > .col-xs-preffix-3 {
    margin-left: 25%;
  }
  .row > .col-xs-push-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .row > .col-xs-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-xs-preffix-4 {
    margin-left: 33.33333%;
  }
  .row > .col-xs-push-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .row > .col-xs-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-xs-preffix-5 {
    margin-left: 41.66667%;
  }
  .row > .col-xs-push-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .row > .col-xs-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .row > .col-xs-preffix-6 {
    margin-left: 50%;
  }
  .row > .col-xs-push-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .row > .col-xs-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-xs-preffix-7 {
    margin-left: 58.33333%;
  }
  .row > .col-xs-push-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .row > .col-xs-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-xs-preffix-8 {
    margin-left: 66.66667%;
  }
  .row > .col-xs-push-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .row > .col-xs-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .row > .col-xs-preffix-9 {
    margin-left: 75%;
  }
  .row > .col-xs-push-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .row > .col-xs-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-xs-preffix-10 {
    margin-left: 83.33333%;
  }
  .row > .col-xs-push-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .row > .col-xs-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-xs-preffix-11 {
    margin-left: 91.66667%;
  }
  .row > .col-xs-push-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .row > .col-xs-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .row > .col-xs-preffix-12 {
    margin-left: 100%;
  }
  .row > .col-xs-push-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}

@media (min-width: 768px) {
  * + [class*='col-sm-'] {
    margin-top: 0;
  }
  .row-sm-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .row-sm-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .row-sm-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .row-sm-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .row-sm-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .row-sm-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .row-sm {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .row-sm-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .row-sm-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .row-sm-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .col-sm-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .col-sm-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .col-sm-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .row > .col-sm-preffix-0 {
    margin-left: 0%;
  }
  .row > .col-sm-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-sm-preffix-1 {
    margin-left: 8.33333%;
  }
  .row > .col-sm-push-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .row > .col-sm-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-sm-preffix-2 {
    margin-left: 25.66667%;
  }
  .row > .col-sm-push-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .row > .col-sm-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .row > .col-sm-preffix-3 {
    margin-left: 25%;
  }
  .row > .col-sm-push-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .row > .col-sm-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-sm-preffix-4 {
    margin-left: 25.33333%;
  }
  .row > .col-sm-push-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .row > .col-sm-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-sm-preffix-5 {
    margin-left: 41.66667%;
  }
  .row > .col-sm-push-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .row > .col-sm-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .row > .col-sm-preffix-6 {
    margin-left: 50%;
  }
  .row > .col-sm-push-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .row > .col-sm-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-sm-preffix-7 {
    margin-left: 58.33333%;
  }
  .row > .col-sm-push-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .row > .col-sm-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-sm-preffix-8 {
    margin-left: 66.66667%;
  }
  .row > .col-sm-push-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .row > .col-sm-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .row > .col-sm-preffix-9 {
    margin-left: 75%;
  }
  .row > .col-sm-push-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .row > .col-sm-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-sm-preffix-10 {
    margin-left: 83.33333%;
  }
  .row > .col-sm-push-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .row > .col-sm-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-sm-preffix-11 {
    margin-left: 91.66667%;
  }
  .row > .col-sm-push-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .row > .col-sm-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .row > .col-sm-preffix-12 {
    margin-left: 100%;
  }
  .row > .col-sm-push-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}

@media (min-width: 992px) {
  * + [class*='col-md-'] {
    margin-top: 0;
  }
  .row-md-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .row-md-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .row-md-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .row-md-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .row-md-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .row-md-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .row-md {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .row-md-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .row-md-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .row-md-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .col-md-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .col-md-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .col-md-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  /*.row > .col-md-preffix-0 {
    margin-left: 0%;
  }*/
  .row > .col-md-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-md-preffix-1 {
    margin-left: 8.33333%;
  }
  .row > .col-md-push-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .row > .col-md-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-md-preffix-2 {
    margin-left: 16.66667%;
  }
  .row > .col-md-push-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .row > .col-md-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .row > .col-md-preffix-3 {
    margin-left: 25%;
  }
  .row > .col-md-push-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .row > .col-md-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-md-preffix-4 {
    margin-left: 33.33333%;
  }
  .row > .col-md-push-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .row > .col-md-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-md-preffix-5 {
    margin-left: 41.66667%;
  }
  .row > .col-md-push-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .row > .col-md-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .row > .col-md-preffix-6 {
    margin-left: 50%;
  }
  .row > .col-md-push-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .row > .col-md-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-md-preffix-7 {
    margin-left: 58.33333%;
  }
  .row > .col-md-push-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .row > .col-md-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-md-preffix-8 {
    margin-left: 66.66667%;
  }
  .row > .col-md-push-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .row > .col-md-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .row > .col-md-preffix-9 {
    margin-left: 75%;
  }
  .row > .col-md-push-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .row > .col-md-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-md-preffix-10 {
    margin-left: 83.33333%;
  }
  .row > .col-md-push-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .row > .col-md-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-md-preffix-11 {
    margin-left: 91.66667%;
  }
  .row > .col-md-push-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .row > .col-md-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .row > .col-md-preffix-12 {
    margin-left: 100%;
  }
  .row > .col-md-push-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}

@media (min-width: 1200px) {
  * + [class*='col-lg-'] {
    margin-top: 0;
  }
  .row-lg-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .row-lg-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .row-lg-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .row-lg-justify {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .row-lg-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .row-lg-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .row-lg {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .row-lg-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .row-lg-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .row-lg-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .col-lg-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .col-lg-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .col-lg-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .row > .col-lg-preffix-0 {
    margin-left: 0%;
  }
  .row > .col-lg-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  .row > .col-lg-preffix-1 {
    margin-left: 8.33333%;
  }
  .row > .col-lg-push-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .row > .col-lg-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  .row > .col-lg-preffix-2 {
    margin-left: 16.66667%;
  }
  .row > .col-lg-push-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .row > .col-lg-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .row > .col-lg-preffix-3 {
    margin-left: 25%;
  }
  .row > .col-lg-push-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .row > .col-lg-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  .row > .col-lg-preffix-4 {
    margin-left: 33.33333%;
  }
  .row > .col-lg-push-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .row > .col-lg-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  .row > .col-lg-preffix-5 {
    margin-left: 41.66667%;
  }
  .row > .col-lg-push-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .row > .col-lg-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .row > .col-lg-preffix-6 {
    margin-left: 50%;
  }
  .row > .col-lg-push-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .row > .col-lg-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  .row > .col-lg-preffix-7 {
    margin-left: 58.33333%;
  }
  .row > .col-lg-push-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .row > .col-lg-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  .row > .col-lg-preffix-8 {
    margin-left: 66.66667%;
  }
  .row > .col-lg-push-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .row > .col-lg-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .row > .col-lg-preffix-9 {
    margin-left: 75%;
  }
  .row > .col-lg-push-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .row > .col-lg-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  .row > .col-lg-preffix-10 {
    margin-left: 83.33333%;
  }
  .row > .col-lg-push-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .row > .col-lg-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  .row > .col-lg-preffix-11 {
    margin-left: 91.66667%;
  }
  .row > .col-lg-push-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .row > .col-lg-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .row > .col-lg-preffix-12 {
    margin-left: 100%;
  }
  .row > .col-lg-push-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}

html.lt-ie10 .row > .col-xs-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 8.33333%;
}

html.lt-ie10 .row > .col-xs-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 16.66667%;
}

html.lt-ie10 .row > .col-xs-3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 25%;
}

html.lt-ie10 .row > .col-xs-4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 33.33333%;
}

html.lt-ie10 .row > .col-xs-5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.66667%;
}

html.lt-ie10 .row > .col-xs-6 {
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}

html.lt-ie10 .row > .col-xs-7 {
  margin-left: auto;
  margin-right: auto;
  max-width: 58.33333%;
}

html.lt-ie10 .row > .col-xs-8 {
  margin-left: auto;
  margin-right: auto;
  max-width: 66.66667%;
}

html.lt-ie10 .row > .col-xs-9 {
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
}

html.lt-ie10 .row > .col-xs-10 {
  margin-left: auto;
  margin-right: auto;
  max-width: 83.33333%;
}

html.lt-ie10 .row > .col-xs-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: 91.66667%;
}

html.lt-ie10 .row > .col-xs-12 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

html.lt-ie10 .row > .col-sm-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 8.33333%;
}

html.lt-ie10 .row > .col-sm-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 16.66667%;
}

html.lt-ie10 .row > .col-sm-3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 25%;
}

html.lt-ie10 .row > .col-sm-4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 33.33333%;
}

html.lt-ie10 .row > .col-sm-5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.66667%;
}

html.lt-ie10 .row > .col-sm-6 {
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}

html.lt-ie10 .row > .col-sm-7 {
  margin-left: auto;
  margin-right: auto;
  max-width: 58.33333%;
}

html.lt-ie10 .row > .col-sm-8 {
  margin-left: auto;
  margin-right: auto;
  max-width: 66.66667%;
}

html.lt-ie10 .row > .col-sm-9 {
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
}

html.lt-ie10 .row > .col-sm-10 {
  margin-left: auto;
  margin-right: auto;
  max-width: 83.33333%;
}

html.lt-ie10 .row > .col-sm-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: 91.66667%;
}

html.lt-ie10 .row > .col-sm-12 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

html.lt-ie10 .row > .col-md-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 8.33333%;
}

html.lt-ie10 .row > .col-md-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 16.66667%;
}

html.lt-ie10 .row > .col-md-3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 25%;
}

html.lt-ie10 .row > .col-md-4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 33.33333%;
}

html.lt-ie10 .row > .col-md-5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.66667%;
}

html.lt-ie10 .row > .col-md-6 {
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}

html.lt-ie10 .row > .col-md-7 {
  margin-left: auto;
  margin-right: auto;
  max-width: 58.33333%;
}

html.lt-ie10 .row > .col-md-8 {
  margin-left: auto;
  margin-right: auto;
  max-width: 66.66667%;
}

html.lt-ie10 .row > .col-md-9 {
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
}

html.lt-ie10 .row > .col-md-10 {
  margin-left: auto;
  margin-right: auto;
  max-width: 83.33333%;
}

html.lt-ie10 .row > .col-md-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: 91.66667%;
}

html.lt-ie10 .row > .col-md-12 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

html.lt-ie10 .row > .col-lg-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 8.33333%;
}

html.lt-ie10 .row > .col-lg-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 16.66667%;
}

html.lt-ie10 .row > .col-lg-3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 25%;
}

html.lt-ie10 .row > .col-lg-4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 33.33333%;
}

html.lt-ie10 .row > .col-lg-5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.66667%;
}

html.lt-ie10 .row > .col-lg-6 {
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}

html.lt-ie10 .row > .col-lg-7 {
  margin-left: auto;
  margin-right: auto;
  max-width: 58.33333%;
}

html.lt-ie10 .row > .col-lg-8 {
  margin-left: auto;
  margin-right: auto;
  max-width: 66.66667%;
}

html.lt-ie10 .row > .col-lg-9 {
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
}

html.lt-ie10 .row > .col-lg-10 {
  margin-left: auto;
  margin-right: auto;
  max-width: 83.33333%;
}

html.lt-ie10 .row > .col-lg-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: 91.66667%;
}

html.lt-ie10 .row > .col-lg-12 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

html.lt-ie10 .row > [class*="col-xs-preffix-"],
html.lt-ie10 .row > [class*="col-sm-preffix-"],
html.lt-ie10 .row > [class*="col-md-preffix-"],
html.lt-ie10 .row > [class*="col-lg-preffix-"] {
  margin-left: auto;
}

/*
* @section      Main Styles
* @description  This section holds template default elements style declarations
*/
html {
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75em;
  -webkit-text-size-adjust: none;
  color: #757575;
  background: #fff;
}

.page {
  min-height: 100vh;
}

@media (min-height: 640px) {
  .desktop .page-content > section:first-child .well-cover {
    height: 100vh;
  }
}

/*
* @subsection   Typography
* @description  Describes default font settings for basic html elements and
*               css classes
*/
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  display: block;
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.heading-1 a:hover, .heading-2 a:hover, .heading-3 a:hover, .heading-4 a:hover, .heading-5 a:hover, .heading-6 a:hover {
  color: #fff;
}

h1, .heading-1 {
  font-size: 3.125rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h1, .heading-1 {
    font-size: 6rem;
    line-height: 1;
  }
}

h2, .heading-2 {
  font-size: 2.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h2, .heading-2 {
    font-size: 4rem;
    line-height: 1.3;
  }
}

h3, .heading-3 {
  font-size: 2.375rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h3, .heading-3 {
    font-size: 3.5rem;
    line-height: 1.3;
  }
}

h4, .heading-4 {
  font-size: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h4, .heading-4 {
    font-size: 2.625rem;
    line-height: 1.3;
  }
}

h5, .heading-5 {
  font-size: 1.625rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  h5, .heading-5 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

h6, .heading-6 {
  font-size: 1.25rem;
  line-height: 1.80;
}

@media (min-width: 768px) {
  h6, .heading-6 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

 .list a:hover, .contact-info {
  color: #fff;
}

mark {
  display: inline-block;
  padding: 5px;
  color: #FFF;
  background: #fff;
}

em {
  color: #fff;
}

small, .small {
  display: block;
  font-size: 0.875em;
  line-height: 1.643em;
}

.big {
  font-size: 1.2em;
}

time:before {
  padding-right: 8px;
}

/*
* @section      Main Layout
* @description  This section holds class declarations for elements indent creation
*/
/*
* @subsection   Offsets
* @description  Describes vertical indentation between the elements
*/
h4 + p,
* + p {
  margin-top: 1.75rem;
}

h5 + p {
  margin-top: 4px;
}

h3 + * {
  margin-top: 1.875rem;
}

h3 + .btn-group {
  margin-top: 3.75rem;
}

h4 + *,
h4 + .row,
* + .heading-1,
* + h1 {
  margin-top: 0.8125rem;
}

* + img {
  margin-top: 1px;
  margin-bottom: 30px;
}

.row + p {
  margin-top: 3.6rem;
}

.brand + .rd-mailform {
  margin-top: 2.625rem;
}

section.index-list__item + section.index-list__item {
  margin-top: 0;
}

* + .box {
  margin-top: 20px;
}

.container + .container {
  margin-top: 6.25rem;
}

.container .rd-navbar-search-results .result-item + .result-item {
  margin-top: 30px;
}

/*
* @subsection   Postfix
* @description  Describes instant right margin classes
*/
/*
* @subsection   Prefix
* @description  Describes instant right margin classes
*/
/*
* @subsection   Insets
* @description  Describes instant padding classes
*/
.inset-1 {
  padding: 22px 10% 1px 17%;
}

.inset-1 {
  padding: 0;
}


.inset-2 {
  padding: 15%;
}

@media (min-width: 992px) {
  .inset-2 {
    padding: 2% 0% 2% 0%;
  }
}

/*
* @subsection   Well
* @description  Describes section inner indents
*/
.tablet .well-cover,
.desktop .well-cover {
  min-height: 100vh;
}

.well-sm {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.well-md {
  padding-top: 5.5rem;
  padding-bottom: 7.5rem;
}

.well-lg {
  padding-top: 10.625rem;
  padding-bottom: 10.625rem;
}

@media (min-width: 992px) {
  .well-md-reset {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/*
* @subsection   Backgrounds
*/
.bg-default {
  background: #212121;
}

.bg-default .rd-mailform input, .bg-default .rd-mailform select, .bg-default .rd-mailform textarea {
  color: #212121;
  background: #fff;
  border-color: #fff;
}

.bg-default .rd-mailform input:-moz-placeholder, .bg-default .rd-mailform select:-moz-placeholder, .bg-default .rd-mailform textarea:-moz-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input::-webkit-input-placeholder, .bg-default .rd-mailform select::-webkit-input-placeholder, .bg-default .rd-mailform textarea::-webkit-input-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input::-moz-placeholder, .bg-default .rd-mailform select::-moz-placeholder, .bg-default .rd-mailform textarea::-moz-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input:-ms-input-placeholder, .bg-default .rd-mailform select:-ms-input-placeholder, .bg-default .rd-mailform textarea:-ms-input-placeholder {
  color: #212121;
}

.bg-default .box-bound .box__part svg path {
  stroke: #fff;
}

.bg-default .box-default {
  border-color: #fff;
}

.bg-default, .bg-default .devider, .bg-default.index-list__item .container .index-list__counter, .bg-default h1, .bg-default h2, .bg-default h3, .bg-default h4, .bg-default h5, .bg-default h6,
.bg-default .heading-1, .bg-default .heading-2, .bg-default .heading-3, .bg-default .heading-4, .bg-default .heading-5, .bg-default .heading-6 {
  color: #fff;
}

.bg-default .icon-default {
  border-color: #fff;
}

.bg-default .icon-default:hover {
  color: #212121;
  background: #fff;
  
}

.bg-contrast {
  background: #fff;
}

.bg-default-darken {
  background-image: url("../images/nav_bg.jpg");
}

.bg-default-darken h1, .bg-default-darken h2, .bg-default-darken h3, .bg-default-darken h4, .bg-default-darken h5, .bg-default-darken h6,
.bg-default-darken .heading-1, .bg-default-darken .heading-2, .bg-default-darken .heading-3, .bg-default-darken .heading-4, .bg-default-darken .heading-5, .bg-default-darken .heading-6 {
  color: #fff;
}

/*
* @section      Helpers
* @description  This section holds various helper classes for
*               conditional page styling
*/
.pull-lg-none {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .pull-md-out-left {
    margin-left: -23.89078498293515%;
  }
}

@media (min-width: 992px) {
  .pull-md-out-right {
    margin-right: -17.54385964912281%;
  }
}

@media (min-width: 992px) {
  .pull-md-out-right-medium {
    margin-right: -27.02702702702703%;
  }
}

@media (min-width: 992px) {
  .pull-md-out-right-large {
    margin-right: -54.05405405405405%;
  }
}

@media (min-width: 1200px) {
  .cell-lg {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

@media (min-width: 992px) {
  .cell-md-medium {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

@media (min-width: 992px) {
  .cell-md-large {
    padding-top: 10.625rem;
    padding-bottom: 10.625rem;
  }
}

.round {
  border-radius: 50%;
}

.drop-shadow-lg {
  box-shadow: 9px 15px 34px 0px rgba(0, 0, 0, 0.2);
}

.drop-shadow {
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .drop-border-md {
    position: relative;
  }
  .drop-border-md:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    border: 2px solid #e0e0e0;
    width: 100%;
    height: 100%;
    margin-right: 21.27659574468085%;
    margin-bottom: 15.53191489361702%;
  }
  .drop-border-md * {
    position: relative;
  }
}

.to-front {
  position: relative;
  z-index: 1;
}

.set-relative {
  position: relative;
}

/*
* @subsection   Colors
*/
html body .page .text-primary {
  color: #fff;
}

html body .page .text-default-lighten {
  color: #e0e0e0;
}

/*
* @subsection   Backgrounds
*/
.bg-default {
  background: #212121;
}

.bg-default .rd-mailform input, .bg-default .rd-mailform select, .bg-default .rd-mailform textarea {
  color: #212121;
  background: #fff;
  border-color: #fff;
}

.bg-default .rd-mailform input:-moz-placeholder, .bg-default .rd-mailform select:-moz-placeholder, .bg-default .rd-mailform textarea:-moz-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input::-webkit-input-placeholder, .bg-default .rd-mailform select::-webkit-input-placeholder, .bg-default .rd-mailform textarea::-webkit-input-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input::-moz-placeholder, .bg-default .rd-mailform select::-moz-placeholder, .bg-default .rd-mailform textarea::-moz-placeholder {
  color: #212121;
}

.bg-default .rd-mailform input:-ms-input-placeholder, .bg-default .rd-mailform select:-ms-input-placeholder, .bg-default .rd-mailform textarea:-ms-input-placeholder {
  color: #212121;
}

.bg-default .box-bound .box__part svg path {
  stroke: #fff;
}

.bg-default .box-default {
  border-color: #fff;
}

.bg-default, .bg-default .devider, .bg-default.index-list__item .container .index-list__counter, .bg-default h1, .bg-default h2, .bg-default h3, .bg-default h4, .bg-default h5, .bg-default h6,
.bg-default .heading-1, .bg-default .heading-2, .bg-default .heading-3, .bg-default .heading-4, .bg-default .heading-5, .bg-default .heading-6 {
  color: #fff;
}

.bg-default .icon-default {
  border-color: #fff;
}

.bg-default .icon-default:hover {
  color: #212121;
  background: #fff;
  
}

.bg-contrast {
  background: #fff;
}

.bg-default-darken {
  background-image: url("../images/nav_bg.jpg");
}

.bg-default-darken h1, .bg-default-darken h2, .bg-default-darken h3, .bg-default-darken h4, .bg-default-darken h5, .bg-default-darken h6,
.bg-default-darken .heading-1, .bg-default-darken .heading-2, .bg-default-darken .heading-3, .bg-default-darken .heading-4, .bg-default-darken .heading-5, .bg-default-darken .heading-6 {
  color: #fff;
}

/*
* @subsection   Floating System
*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (min-width: 480px) {
  .pull-xs-left {
    float: left;
  }
  .pull-xs-none {
    float: none;
  }
  .pull-xs-right {
    float: right;
  }
}

@media (min-width: 768px) {
  .pull-sm-left {
    float: left;
  }
  .pull-sm-none {
    float: none;
  }
  .pull-sm-right {
    float: right;
  }
}

@media (min-width: 992px) {
  .pull-md-left {
    float: left;
  }
  .pull-md-none {
    float: none;
  }
  .pull-md-right {
    float: right;
  }
}

@media (min-width: 1200px) {
  .pull-lg-left {
    float: left;
  }
  .pull-lg-none {
    float: none;
  }
  .pull-lg-right {
    float: right;
  }
}

/*
* @subsection   Text Alignment
*/
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .text-xs-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-xs-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-xs-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .text-sm-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-sm-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-sm-right {
    text-align: right;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .text-md-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-md-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-md-right {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .text-lg-left {
    text-align: left;
  }
  html:not(.lt-ie10) .text-lg-center {
    text-align: center;
  }
  html:not(.lt-ie10) .text-lg-right {
    text-align: right;
  }
}

	div:after {
		content: '';
		width: 100%;
	}

/*
* @subsection   Text Styling
*/
.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.text-strike {
  text-decoration: line-through;
}

.text-thin {
  font-weight: 100;
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-sbold {
  font-weight: 600;
}

.text-bold, strong {
  font-weight: 700;
}

.text-ubold {
  font-weight: 900;
}

.text-uppercase {
  text-transform: uppercase;
}

/*
* @subsection   Buttons
*/
.btn {
  display: inline-block;
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
  max-width: 100%;
  border-style: solid;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: .3s all ease;
}

.btn:before {
  margin-right: 8px;
}

.btn-xs,
.btn-sm,
.btn-md,
.btn-lg,
.btn-xl {
  border-width: 2px;
  min-width: 176px;
}

.btn-xs {
  padding: 0.22em 0.745em;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.26em 0.785em;
  font-size: 1.125rem;
}

.btn-md {
  padding: 0.3em 0.825em;
  font-size: 1.25rem;
}

.btn-lg {
  padding: 0.34em 0.865em;
  font-size: 1.375rem;
}

.btn-xl {
  padding: 0.38em 0.905em;
  font-size: 1.5rem;
}

.btn-default {
  color: #212121;
  background: transparent;
  border-color: #e0e0e0;
}

.btn-default:hover, .btn-default:active {
  background: #e0e0e0;
}

.btn-primary {
  color: #fff;
  background: #ff8d00;
  border-color: #ff8d00;
}

/*.btn-primary:hover, .btn-primary:active {
  background: #fc5e45;
  border-color: #fc5e45;
}*/

.btn-group {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  margin-bottom: -20px;
  margin-left: -20px;
}

.btn-group .btn {
  margin-top: 20px;
  margin-left: 20px;
}

/*
* @subsection   Link
*/
.link {
  display: inline-block;
}

/*
* @subsection   Icons
*/
.icon {
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-color: transparent;
}

.icon-xs {
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-size: 30px;
  border-width: 2px;
}

.icon-sm {
  width: 80px;
  height: 80px;
  line-height: 76px;
  font-size: 35px;
  border-width: 2px;
}

.icon-md {
  width: 83px;
  height: 83px;
  line-height: 79px;
  font-size: 35px;
  border-width: 2px;
}

.icon-lg {
  width: 100px;
  height: 100px;
  line-height: 96px;
  font-size: 46px;
  border-width: 2px;
}

.icon-xl {
  width: 120px;
  height: 120px;
  line-height: 116px;
  font-size: 96px;
  border-width: 2px;
}

.icon-default {
  border-color: #e0e0e0;
}

.icon-primary {
  color: #fc745e;
  border-color: #e0e0e0;
}

a.icon-default:hover {
  background: #e0e0e0;
}

a.icon-primary:hover {
  color: #fc745e;
  background: #e0e0e0;
}

/*
* @subsection   RD Mail Form
*
* @description  Describes style declarations for RD Mail Form extension
*
* @author       Aleksey Patsurkivskiy
* @version      2.0.0
*/
@-webkit-keyframes sprite-animation {
  from {
    background-position: 0 0;
  }
}

@keyframes sprite-animation {
  from {
    background-position: 0 0;
  }
}

.rd-mailform {
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.rd-mailform fieldset {
  border: none;
}

.rd-mailform fieldset > .row + .row {
  margin-top: 20px;
}

.rd-mailform {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 25px;
  text-align: center;
}

.rd-mailform:first-child {
  margin-top: 0;
}

.rd-mailform label {
  font-weight: inherit;
}

.rd-mailform input, .rd-mailform select {
  height: 50px;
}

.rd-mailform input, .rd-mailform textarea {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 34px;
  padding: 6px 18px;
  color: #fff;
  font-weight: 700;
  background: none;
  border: 2px solid #fff;
  border-radius: 0;
}

.rd-mailform input:-moz-placeholder, .rd-mailform textarea:-moz-placeholder {
  color: #757575;
  opacity: 1;
  transition: 0.3s;
  text-transform: uppercase;
}

.rd-mailform input::-webkit-input-placeholder, .rd-mailform textarea::-webkit-input-placeholder {
  color: #757575;
  opacity: 1;
  transition: 0.3s;
  text-transform: uppercase;
}

.rd-mailform input::-moz-placeholder, .rd-mailform textarea::-moz-placeholder {
  color: #757575;
  opacity: 1;
  transition: 0.3s;
  text-transform: uppercase;
}

.rd-mailform input:-ms-input-placeholder, .rd-mailform textarea:-ms-input-placeholder {
  color: #757575;
  opacity: 1;
  transition: 0.3s;
  text-transform: uppercase;
}

.rd-mailform input:focus:-moz-placeholder, .rd-mailform textarea:focus:-moz-placeholder {
  opacity: 0.4;
}

.rd-mailform input:focus::-webkit-input-placeholder, .rd-mailform textarea:focus::-webkit-input-placeholder {
  opacity: 0.4;
}

.rd-mailform input:focus::-moz-placeholder, .rd-mailform textarea:focus::-moz-placeholder {
  opacity: 0.4;
}

.rd-mailform input:focus:-ms-input-placeholder, .rd-mailform textarea:focus:-ms-input-placeholder {
  opacity: 0.4;
}

.rd-mailform textarea {
  resize: vertical;
  overflow: auto;
  min-height: 50px;
  height: 159px;
  max-height: 238.5px;
}

.rd-mailform > * + * {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .rd-mailform {
    margin-top: 0;
  }
}

.rd-mailform-inline {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  margin-bottom: -20px;
  margin-left: -20px;
}

.rd-mailform-inline .rd-mailform-item {
  margin-top: 20px;
  margin-left: 16px;
  display: inline-block;
}

@media (min-width: 480px) {
  .rd-mailform-inline .rd-mailform-item input, .rd-mailform-inline .rd-mailform-item select, .rd-mailform-inline .rd-mailform-item textarea {
    width: 370px;
  }
}

div[class^="rd-mailform-validate"] {
  position: absolute;
  right: 40px;
  bottom: 50px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 400px;
  min-height: 50px;
  font-weight: 700;
  text-align: center;
  padding: 12px 25px 10px 40px;
  font-size: 16px;
  opacity: 0;
  transition: .3s;
  color: #fff;
  background: #ff6859;
  z-index: 999;
  pointer-events: none;
}

div[class^="rd-mailform-validate"]:before {
  content: '\f00d';
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  div[class^="rd-mailform-validate"] {
    bottom: auto;
    right: 50px;
    top: 0;
  }
}

div[class^="rd-mailform-validate"].success {
  opacity: 1;
}

div[class^="rd-mailform-validate"].error {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mfInput {
  position: relative;
}

html.lt-ie10 .rd-mailform * + [class*='col-'],
.rd-mailform * + [class*='col-'] {
  margin-top: 20px;
}

@media (min-width: 992px) {
  html.lt-ie10 .rd-mailform * + [class*='col-md-'],
  .rd-mailform * + [class*='col-md-'] {
    margin-top: 0;
  }
}

.yesNoLabel {
    float: left;
    padding-top: 10px;
    margin-top: -4.5%;
    font-weight: bolder;
    font-size: 1em;
    color: white;
}

.newsLetter {
    font-size: 2em;
    weight: bold;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 34px;
    padding: 6px 18px;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 0;
}

	div[class^="rd-mailform-validate"] {
    bottom: auto;
    right: 50px;
    top: 0;
}


div[class^="rd-mailform-validate"] {
    position: absolute;
    left: 40%;
    top:47.5%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    margin-left: auto;
    margin-right: auto;
    margin-top: 400px;
    max-width: 400px;
    min-height: 50px;
    font-weight: 700;
    text-align: center;
    padding: 12px 25px 10px 40px;
    font-size: 16px;
    opacity: 0;
    transition: .3s;
    color: #fff;
    background: #ff6859;
    z-index: 999;
    pointer-events: none;
}

@media only screen and (max-width:992px){
	div[class^="rd-mailform-validate"] {
	
	    right: 40%;
	    top:51.5%;
	    left:0%;
	
	}
}

/**
 * RD Validator
 * @Section
 */
.mfValidation {
  position: absolute;
  top: 0;
  left: 21px;
  color: #fc745e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 9px;
  line-height: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s all ease;
}

.mfValidation.mfValidation--active {
  opacity: 1;
  visibility: visible;
}

.mfInput {
  position: relative;
}

/*CSS for Navigation Bar Start */

/*Make dropdown links vertical*/

	.lnks-hoz .nav-hoz .lnks-hoz {
		display: block;
		float: none;
	}

/*Prevent text wrapping*/

	.lnks-hoz .nav-hoz .lnks-hoz .links {
		width: auto;
		min-width: 100px;
		padding: 0 20px;
	}

/*Display the dropdown on hover*/

	.nav-hoz .lnks-hoz .links:hover + .hidden, .hidden:hover .dropdown-content:hover {
		display: block;
	}

/*Style 'show menu' label button and hide it by default*/

	.show-menu {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		text-decoration: none;
		color: #fff;
		background-image: url("../images/nav_bg.jpg");
		text-align: center;
		padding: 10px 0;
		display: none;
	}

/*Hide check box*/
	input[type=checkbox]{
		display: none;
	}
	
/*Show menu when invisible check box is checked*/
	input[type=checkbox]:checked ~ .nav-hoz{
		display: block;
	}
	
/*Responsive Styles*//*Make dropdown links appear inline*//*Start of max-width:760px */

@media screen and (max-width : 891px){
	.nav-hoz  {
		 position: static;
		 display: none;
	}

/*Create vertical spacing*/
	.lnks-hoz .dropdown-content {
		margin-bottom: 1px;
		display: none;
	}

/*Make all menu links full width*/

	.nav-hoz .lnks-hoz, .lnks-hoz .links .dropdown-content {
		width: 100%;
	}

/*Display 'show menu' link*/

	.show-menu {
		display:block;
	}
	
	.dropdown-content {

		width: 100%;

	}
	
}
/******End of Max-Width: 760px ********/

	.text-primary{
		color: #ff8d00;
	}

	/*NavBar*/

	.nav-hoz {
		list-style-type: none;
		font-size: 1.2em;
		margin: 0;
		padding: 0;
		overflow: hidden;
		background-image: url("../images/nav_bg.jpg");
	}

	.lnks-hoz {
		/*border-right: 1px solid white;*/
		width: 19%;
		float: left;
	}

	.lnks-hoz .links {
		display: block;
		color: white;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		    font-size: 1.2em;
	}

	.lnks-hoz:hover .links:hover {
		/*font-weight: bold;*/
		color:grey;
	}

	/*Drop Down For Nav*/

	.dropbtn {
		display: block;
		color: white;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		    font-size: 1.2em;
	}

	.dropbtn:hover {
		/*font-weight: bold;*/
		color:grey;
	}

	.lnks-hoz {
		display: block;
	}

	.dropdown-content {
		display: none;
		position: absolute;
		min-width: 25%;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		background-image: url("../images/nav_bg.jpg");
		z-index: 10;
		font-size: 1em;
	}

	.lnks-hoz:hover .dropdown-content {
		display: block;
		
	}

	/*End of NarBar*/

/*End of Naigation Bar CSS */

/*
* @section      Components
* @description  This section holds all elements style declarations of template
*/
/*
 * @subsection   Box
 */
/*
* @subsection Box
*/
.box__left {
  padding-bottom: 30px;
}

.box__right {
  padding-top: 30px;
}

.box-rtl {
  direction: rtl;
}

.box-rtl > .box__left {
  padding-right: 0;
  padding-left: 30px;
}

.box-rtl > .box__right {
  padding-right: 30px;
  padding-left: 0;
}

.box-ltr {
  direction: ltr;
}

.box-group, .box-group-outer > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.box > .box__left img, .box > .box__right img {
  max-width: none;
}

.box > .box__left,
.box > .box__right,
.box > .box__body {
  padding: 0;
  direction: ltr;
  display: table-cell;
  vertical-align: top;
}

.box > .box__left {
  padding-right: 30px;
  padding-bottom: 0;
}

.box > .box__right {
  padding-left: 30px;
  padding-top: 0;
}

@media (min-width: 480px) {
  html:not(.lt-ie10) .box-xs > .box__left img, html:not(.lt-ie10) .box-xs > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-xs > .box__left,
  html:not(.lt-ie10) .box-xs > .box__right,
  html:not(.lt-ie10) .box-xs > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-xs > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-xs > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left img, html:not(.lt-ie10) .box-xs-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left,
  html:not(.lt-ie10) .box-xs-clear > .box__right,
  html:not(.lt-ie10) .box-xs-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-xs-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-xs-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-xs-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-xs-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-xs-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-xs-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-xs-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  html:not(.lt-ie10) .box-sm > .box__left img, html:not(.lt-ie10) .box-sm > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-sm > .box__left,
  html:not(.lt-ie10) .box-sm > .box__right,
  html:not(.lt-ie10) .box-sm > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-sm > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-sm > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left img, html:not(.lt-ie10) .box-sm-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left,
  html:not(.lt-ie10) .box-sm-clear > .box__right,
  html:not(.lt-ie10) .box-sm-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-sm-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-sm-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-sm-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-sm-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-sm-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-sm-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-sm-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  html:not(.lt-ie10) .box-md > .box__left img, html:not(.lt-ie10) .box-md > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-md > .box__left,
  html:not(.lt-ie10) .box-md > .box__right,
  html:not(.lt-ie10) .box-md > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-md > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-md > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left img, html:not(.lt-ie10) .box-md-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left,
  html:not(.lt-ie10) .box-md-clear > .box__right,
  html:not(.lt-ie10) .box-md-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-md-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-md-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-md-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-md-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-md-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-md-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-md-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-md-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  html:not(.lt-ie10) .box-lg > .box__left img, html:not(.lt-ie10) .box-lg > .box__right img {
    max-width: none;
  }
  html:not(.lt-ie10) .box-lg > .box__left,
  html:not(.lt-ie10) .box-lg > .box__right,
  html:not(.lt-ie10) .box-lg > .box__body {
    display: table-cell;
    vertical-align: top;
  }
  html:not(.lt-ie10) .box-lg > .box__left {
    padding-right: 30px;
    padding-bottom: 0;
  }
  html:not(.lt-ie10) .box-lg > .box__right {
    padding-left: 30px;
    padding-top: 0;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left img, html:not(.lt-ie10) .box-lg-clear > .box__right img {
    max-width: 100%;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left,
  html:not(.lt-ie10) .box-lg-clear > .box__right,
  html:not(.lt-ie10) .box-lg-clear .box__body {
    padding: 0;
    display: block;
    vert-align: top;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__left {
    padding-bottom: 30px;
  }
  html:not(.lt-ie10) .box-lg-clear > .box__right {
    padding-top: 30px;
  }
  html:not(.lt-ie10) .box-lg-rtl {
    direction: rtl;
  }
  html:not(.lt-ie10) .box-lg-rtl > .box__left {
    padding-right: 0;
    padding-left: 30px;
  }
  html:not(.lt-ie10) .box-lg-rtl > .box__right {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-lg-ltr {
    direction: ltr;
  }
  html:not(.lt-ie10) .box-lg-ltr > .box__left {
    padding-right: 30px;
    padding-left: 0;
  }
  html:not(.lt-ie10) .box-lg-ltr > .box__right {
    padding-right: 0;
    padding-left: 30px;
  }
}

.box .box__middle, html:not(.lt-ie10) .box .box__middle, .box-xs .box__middle, html:not(.lt-ie10) .box-xs .box__middle, .box-sm .box__middle, html:not(.lt-ie10) .box-sm .box__middle, .box-md .box__middle, html:not(.lt-ie10) .box-md .box__middle, .box-lg .box__middle, html:not(.lt-ie10) .box-lg .box__middle {
  vertical-align: middle;
}

.box .box__bottom, html:not(.lt-ie10) .box .box__bottom, .box-xs .box__bottom, html:not(.lt-ie10) .box-xs .box__bottom, .box-sm .box__bottom, html:not(.lt-ie10) .box-sm .box__bottom, .box-md .box__bottom, html:not(.lt-ie10) .box-md .box__bottom, .box-lg .box__bottom, html:not(.lt-ie10) .box-lg .box__bottom {
  vertical-align: bottom;
}

.box-bound {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
}

.box-bound .box {
  padding-bottom: 65%;
}

.box-bound .box__counter {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.box-bound .box__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  padding: 5px 10px;
}

.box-bound .box__part {
  display: none;
  position: absolute;
  width: 70px;
  height: 70px;
  opacity: .45;
}

.box-bound .box__part svg path {
  fill: none;
  stroke: #212121;
  stroke-width: 2px;
}

.box-bound .box__part--sm {
  width: 30px;
  height: 30px;
}

.box-bound .box__part-bottom-right {
  top: 100%;
  right: 0;
  margin-top: 30px;
}

.box-bound .box__part-right-bottom {
  bottom: 0;
  left: 100%;
  margin-left: 30px;
}

.box-bound .box__part-left-top {
  top: 0;
  right: 100%;
  margin-right: 30px;
}

.box-bound .box__part-top-right {
  right: 0;
  bottom: 100%;
  margin-bottom: 30px;
}

.box-bound .box__trigger {
  position: absolute;
  top: 7px;
  right: 10px;
}

@media (min-width: 768px) {
  .box-bound {
    max-width: none;
  }
  .box-bound .box__part {
    display: block;
  }
  .box-bound-group .row + .row {
    margin-top: 150px;
  }
  .box-bound .box {
    padding-bottom: 100%;
  }
}

@media (min-width: 992px) {
  .box-bound-group .row + .row {
    margin-top: 200px;
  }
}

@media (min-width: 1200px) {
  .box-bound .box__trigger .icon-xs {
    width: 70px;
    height: 70px;
    line-height: 68px;
  }
  .box-bound .box__trigger-top-right {
    top: auto;
    right: auto;
    bottom: 80%;
    left: 100%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    margin-left: 30px;
    margin-bottom: 30px;
  }
  .box-bound .box__trigger-top-right:before, .box-bound .box__trigger-top-right:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    margin-right:-3px;
  }
  .box-bound .box__trigger-top-right:before {
    width: 70px;
    margin-top: 70px;
    border-bottom: 1px solid;
  }
  .box-bound .box__trigger-top-right:after {
    height: 70px;
    border-right: 1px solid;
  }
  .box-bound .box__trigger-top-left {
    top: 0;
    right: 100%;
    border-right: 2px solid transparent;
    margin-right: 30px;
  }
  .box-bound .box__trigger-top-left:before, .box-bound .box__trigger-top-left:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-right: -1px;
  }
  .box-bound .box__trigger-top-left:before {
    width: 66px;
    margin-top: 70px;
    border-bottom: 1px solid;
  }
  .box-bound .box__trigger-top-left:after {
    height: 70px;
    border-left: 1px solid;
  }
  .box-bound .box__trigger-bottom-right {
    top: 100%;
    right: 0;
    border-top: 2px solid transparent;
    margin-top: 30px;
  }
  .box-bound .box__trigger-bottom-right:before, .box-bound .box__trigger-bottom-right:after {
    content: '';
    position: absolute;
    bottom: 50%;
    right: 97%;
    margin-bottom: -1px;
  }
  .box-bound .box__trigger-bottom-right:before {
    width: 70px;
    border-bottom: 1px solid;
  }
  .box-bound .box__trigger-bottom-right:after {
    margin-left: 70px;
    height: 68px;
    border-left: 1px solid;
  }
  .box-bound .box__trigger-right-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 100%;
    border-left: 2px solid transparent;
    margin-left: 30px;
  }
  .box-bound .box__trigger-right-bottom:before, .box-bound .box__trigger-right-bottom:after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 50%;
    margin-right: -3px;
  }
  .box-bound .box__trigger-right-bottom:before {
    width: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid;
  }
  .box-bound .box__trigger-right-bottom:after {
    height: 70px;
    border-right: 1px solid;
  }
}

/*.box-default {
  border: 2px solid #e0e0e0;
}*/