 /* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@charset 'UTF-8';

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

@-webkit-keyframes opGradient {
  0% {
    -webkit-transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes opGradient {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes nonesearching {
  0% {
    left: 20%;
    -webkit-transform: scale3d(1, 1, 1);
    opacity: 1;
  }

  100% {
    left: 34%;
    -webkit-transform: scale3d(0, 0, 0);
    opacity: 0;
  }
}

@keyframes nonesearching {
  0% {
    left: 20%;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }

  100% {
    left: 34%;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    opacity: 0;
  }
}

#banner {
  margin-bottom: 0;
}

#banner .slick-prev,
#banner .slick-next {
  opacity: 0;
  height: 100%;
  width: 10%;
}

#banner .banner {
  height: 560px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}

#banner .banner:hover .slick-prev,
#banner .banner:hover .slick-next {
  opacity: 1;
  display: block \9 !important;
}

#banner .slick-initialized .slick-slide {
  position: relative;
  overflow: hidden;
  height: 560px;
}

#banner .slick-dots {
  bottom: 50px;
   color: #fff;
  position: relative;
  max-width: 1106px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}

#banner .slick-next {
  right: 0;
}

#banner .slick-prev {
  left: 0;
}

#banner .slick-dots li button {
  background: rgba(255, 255, 255, 0);
}

#banner .slick-dots li.slick-active button {
  background: #404040;
}

#banner .slick-dots li {
  width: 14px;
}

#banner .banner-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

#banner .banner-text {
  position: relative;
  color: #fff;
  text-align: center;
  margin-top: 200px;
  vertical-align: middle;
}

#banner .banner-text h2 {
  font-size: 60px;
  line-height: 80px;
}

#banner .banner-text a {
  font-size: 22px;
  color: #fff;
}

#banner .banner-text a:hover {
  text-decoration: none;
}

#banner .banner-text a em {
  display: inline-block;
  padding-left: 15px;
  font-size: 18px;
}

#banner .navigation-buckets {
  background: #fff;
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0;
  border-radius: 5px;
  bottom: 60px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
}

#banner .navigation-buckets [class*="col-"] {
  border-left: 0px solid #d4d4d4;
}

#banner .navigation-buckets [class*="col-"] a {
  padding: 10px 40px 0px 30px;
  color: #222222;
  display: block;
}

#banner .navigation-buckets [class*="col-"] a span.lazy-placeholder {
  width: 47px;
  height: 98px;
  background-size: 86%;
  float: left;
  overflow: hidden;
  padding-top: 0 !important;
  margin-right: 31px;
  display: block;
}

#banner .navigation-buckets [class*="col-"] a h3 {
  font-size:12px;
  line-height: 34px;
}

#banner .navigation-buckets [class*="col-"] a h3 em {
  display: none \9;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  /*-webkit-transition-duration: 0.3s;
							transition-duration: 0.3s;*/
  -webkit-transition-property: transform;
  transition-property: transform , opacity;
  opacity: 0;
  font-size: 20px;
}

#banner .navigation-buckets [class*="col-"] a:hover {
  text-decoration: none;
}

#banner .navigation-buckets [class*="col-"] a:hover h3 {
  color: #f66f6a;
}

#banner .navigation-buckets [class*="col-"] a:hover h3 em {
  padding-left: 15px \9;
  display: inline-block;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 1;
  color: #222222;
}

#banner .navigation-buckets [class*="col-"]:first-child {
  border-left: 0;
}

#banner .navigation-buckets [class*="col-"]:first-child a {
  padding-left: 40px;
}

#banner .navigation-buckets [class*="col-"] img {
  display: inline-block;
  float: left;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-top: 10px;
}

#banner .navigation-buckets [class*="col-"] div h3 {
  margin-bottom: 5px;
}

#banner .navigation-buckets [class*="col-"] div p {
  margin-top: 0;
  color: #808080;
}

@media (width: 768px) {
  .navigation-buckets .hwic_open-in-new {
    display: inline-block !important;
  }

  #banner .navigation-buckets [class*="col-"] a {
    padding: 10px 0px 0px 15px;
  }

  #banner .navigation-buckets [class*="col-"] img {
    padding-right: 15px;
  }

  #banner .navigation-buckets [class*="col-"]:first-child a {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  #banner {
    width: 100%;
    height: 100%;
    margin-bottom: 60px;
  }

  #banner .banner {
    height: 495px;
  }

  #banner .banner-text h2 {
    font-size: 28px;
    line-height: 40px;
  }

  #banner .banner-text a {
    font-size: 18px;
  }

  #banner > .banner + .container {
    padding: 0;
  }

  #banner .slick-next,
  #banner .slick-prev {
    display: none !important;
  }

  #banner .slick-dots {
    bottom: 120px;
    text-align: center;
  }

  #banner .banner-img {
    left: 0;
    transform: translateX(0);
    width: 100%;
  }

  #banner .banner-img img {
    width: 100%;
  }

  #banner .navigation-buckets {
    border-radius: 0;
    padding: 0;
    bottom: 0;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  }

  #banner .navigation-buckets [class*="col-"] {
    border-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  #banner .navigation-buckets [class*="col-"]:first-child a {
    border: 0;
    padding-left: 20px;
  }

  #banner .navigation-buckets [class*="col-"] div h3 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 30px;
  }

  #banner .navigation-buckets [class*="col-"] div h3 em {
    opacity: 1;
    float: right;
    margin-top: 5px;
  }

  #banner .navigation-buckets [class*="col-"] a {
    padding: 20px;
    font-size: 18px;
    line-height: 30px;
    border-top: 1px solid #d4d4d4;
    display: block;
  }

  #banner .navigation-buckets [class*="col-"] a:hover h3 em {
    transform: translateX(0);
  }

  #banner .navigation-buckets div p {
    display: none;
  }

  #banner .banner-text h2 {
    font-size: 38px;
    line-height: 52px;
  }
}

@media (max-width: 400px) {
  #banner .banner {
    height: 385px;
  }

  #banner .slick-dots {
    bottom: 210px;
    text-align: center;
  }

  #banner .banner-text {
    margin-top: 130px;
  }
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 100px;
}

body {
  position: relative;
  background: #fff;
  line-height: 1.625;
  font-weight: normal;
  color: #282828;
  font-size: 16px;
  font-family: "AkkuratPro-Regular", Helvetica, Arial, sans-serif;
}

body,
input,
textarea,
select,
button {
  text-rendering: optimizeLegibility;
  /* 1 */
  -webkit-font-smoothing: antialiased;
  /* 2 */
  -moz-osx-font-smoothing: grayscale;
  /* 3 Default: auto */
  -moz-font-feature-settings: "liga", "kern";
}

/*Only phones */

@media (max-width: 991px) {
  /**
   * Break strings if their length exceeds the width of their container
   */

  body {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
}

.hw_space {
  height: 67px;
}

/**
 * links
 */

a {
  color: #282828;
}

a:hover,
a:focus {
  color: #282828;
}

a:focus {
  outline: thin dotted;
  outline: 1px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  text-decoration: none !important;
}

a:focus {
  outline: none !important;
}

/* Insert */

ins {
  background: #ffa;
  color: #282828;
}

/**
 * Mark
 * Note: Addresses styling not present in IE 8/9.
 */

mark {
  background: #ffa;
  color: #282828;
}

/**
 * Abbreviation and definition
 */

abbr[title],
dfn[title] {
  cursor: help;
}

dfn[title] {
  border-bottom: 1px dotted;
  font-style: normal;
}

/* Spacing for block elements */

p,
hr,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 12px 0;
}

* + p,
* + hr,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 12px;
}

/* Headings
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px 0;
  font-weight: 500;
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 48px;
  line-height: 60px;
  margin-top: 25px;
}

h2 {
  font-size:28px;
  line-height:30px;
}

h3 {
  font-size: 28.000000000000004px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 20px;
}

/* Ordered and unordered lists */

ul,
ol {
  padding-left: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reset margin for nested lists */

ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 1px;
}

/* Description lists */

dt {
  font-weight: bold;
}

dt + dd {
  margin-top: .05em;
}

dd {
  margin-left: 0;
}

dd + dt {
  margin-top: 0.1em;
}

/**
 * Horizontal rule
 * 1. Address differences between Firefox and other browsers.
 */

hr {
  display: block;
  padding: 0;
  border: 0;
  height: 0;
  border-top: 1px solid #eeeeee;
  -moz-box-sizing: content-box;
  /* 1 */
  box-sizing: content-box;
  /* 1 */
}

/* Address */

address {
  font-style: normal;
}

/* Quotes */

blockquote {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  border-left: 4px solid #eeeeee;
  /* Small print for identifying the source */
  /* Smaller margin if `small` follows */
}

blockquote small {
  display: block;
  color: #777777;
  text-align: right;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

/* iframe */

iframe {
  border: 0;
}

/* Forms
   ========================================================================== */

/**
  * Vertical alignment
  * Exclude `radio` and `checkbox` elements because the default `baseline` value aligns better with text
  */

button,
input:not([type="radio"]):not([type="checkbox"]),
select {
  vertical-align: middle;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

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

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

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

.text-muted {
  color: #777777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #f66f6a;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #f3413a;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.bg-yellow {
  background-color: #ffdf4f;
}

a.bg-yellow:hover,
a.bg-yellow:focus {
  background-color: #ffd61c;
}

.bg-teal {
  background-color: #59c8d5;
}

a.bg-teal:hover,
a.bg-teal:focus {
  background-color: #33b9c8;
}

.bg-blue {
  background-color: #15b0eb;
}

a.bg-blue:hover,
a.bg-blue:focus {
  background-color: #108dbd;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 13px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 26px;
}

dt,
dd {
  line-height: 1.625;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    display: block;
    word-wrap: normal;
    /* for IE */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 13px 26px;
  margin: 0 0 26px;
  font-size: 20px;
  border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.625;
  color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }
}

@font-face {
  font-family: 'akkuratpro-light';
  src: url('../fonts/akkuratpro-light.eot');
  src: url('../fonts/akkuratpro-light.eot?#iefix20180113') format('embedded-opentype'), url('../fonts/akkuratpro-light.ttf?20180113') format('truetype'), url('../fonts/akkuratpro-light.woff?20180113') format('woff'), url('../fonts/akkuratpro-light.svg?20180113#corpfont') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'akkuratpro-bold';
  src: url('../fonts/akkuratpro-bold.eot');
  src: url('../fonts/akkuratpro-bold.eot?#iefix20180113') format('embedded-opentype'), url('../fonts/akkuratpro-bold.ttf?20180113') format('truetype'), url('../fonts/akkuratpro-bold.woff?20180113') format('woff'), url('../fonts/akkuratpro-bold.svg?20180113#corpfont') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AkkuratPro-Regular';
  src: url('../fonts/AkkuratPro-Regular.eot');
  src: url('../fonts/AkkuratPro-Regular.eot?#iefix20180113') format('embedded-opentype'), url('../fonts/AkkuratPro-Regular.ttf?20180113') format('truetype'), url('../fonts/AkkuratPro-Regular.woff?20180113') format('woff');
  font-weight: normal;
  font-style: normal;
}

.lg-container {
  width: 100% !important;
  max-width: 1440px;
  margin: 0 auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  width: 100% !important;
  max-width: 1230px;
}

@media (max-width: 767px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }
}

a,
a:hover,
a:focus input,
select,
* {
  outline: none;
  
}

.show-more a {
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #f66f6a;
  /*&[aria-expanded="true"]{
			& em{
				&:before{
					content:"\e15b"
				}
			}
		}*/
}

.show-more a em {
  margin-right: 15px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: 0;
}

.show-more a:hover {
  text-decoration: none;
}

.show-more a.active .hwic_add {
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

.show-more a.active .hwic_add:before {
  content: "-";
  font-size: 16px;
  font-weight: bold;
}

.slick-dots {
  bottom: -60px;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 14.000000000000002px;
  height: 14.000000000000002px;
  display: inline-block;
  background: #fff;
  border: 2px solid #404040;
  border-radius: 50%;
}

.slick-dots li button:before {
  font-size: 0;
}

.slick-dots li.slick-active button {
  background: #404040;
}

.slick-prev {
  left: 0px;
  z-index: 9;
  width: 44px;
  height: 44px;
}

.slick-prev:before {
  font-family: corpfont;
  content: "\e901";
  color: #f66f6a;
  font-size: 44px;
}

.slick-next {
  right:0px;
  z-index: 9;
  width: 44px;
  height: 44px;
}

.slick-next:before {
  font-family: corpfont;
  content: "\e902";
  color: #f66f6a;
  font-size: 44px;
}

@media (max-width: 767px) {
  .slick-next {
    right: 0;
  }

  .slick-prev {
    left: 0;
  }
}

.container > .title {
  margin-bottom:30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .container > .title {
    margin-bottom: 40px;
  }
}

.title {
  display: block;
  margin-bottom: 0;
}

.title h2 {
  float: left;
  margin-bottom: 20px;
  line-height:40px;
  width:100%;
}

.title h2 a {
  color: #222222;
  line-height: 1;
}

.title h2 a em {
  display: inline-block !important;
  font-size: 38px;
  vertical-align: middle;
  line-height: 1;
}

.title h2 + a {
  float: right;
  color: #222222;
  font-size: 22px;
}

.title h2 + a:hover {
  text-decoration: none;
}

.title h2 + a em {
  font-size: 36px;
  display: inline-block;
  vertical-align: middle;
  font-family: "AkkuratPro-Regular", Helvetica, Arial, sans-serif;
}

@media (max-width: 767px) {
  .container > .title .title-mattes {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
  }

  .title h2 {
    width: 100%;
    position: relative;
  }

  .title h2 em {
    display: inline-block !important;
    vertical-align: middle;
    font-size: 40px;
  }

  .title h2 a em {
    display: inline-block !important;
  }

  .title h2 + a {
    display: none;
  }
}

.navbar-toggle[aria-expanded="true"] em:before {
  content: "\e15b";
}

.img-rounded {
  border-radius: 5px;
}

[class^="icon-"] {
  display: inline-block;
  vertical-align: middle;
}

.share ul {
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1;
  padding-left: 0;
}

.share ul li {
  float: left;
  margin-right: 20px;
  list-style: none;
  margin: 0 10px !important;
}

.share ul li a {
  color: #aaa !important;
}

.share ul li a:hover {
  background-color: #fff !important;
  text-decoration: none;
  color: #282828;
}

.share ul li a.icon-twitter:hover {
  color: #55acee !important;
}

.share ul li a.icon-facebook:hover {
  color: #44619D !important;
}

.share ul li a.icon-twitter:hover {
  color: #55acee !important;
}

.share ul li a.icon-weibo:hover {
  color: #ff763b !important;
}

.share ul li a.icon-wechat:hover {
  color: #7bc549 !important;
}

.share ul li a.icon-google:hover {
  color: #000 !important;
}

.page-bottom-share ul li {
  margin-right: 12px;
  margin-left: 0;
}

.page-bottom-share ul li a {
  width: 30px;
  height: 20px;
  display: inline-block;
  background: #282828;
  border-radius: 4px;
  text-align: center;
}

.page-bottom-share ul li a em {
  color: #fff;
  font-size: 16px;
  margin-top: 2px;
  display: block;
}

.page-bottom-share ul li a.icon-VK1 em {
  margin-top: 4px;
}

.page-bottom-share ul li a:hover.icon-linkedin {
  background: #0084bf !important;
}

.page-bottom-share ul li a:hover.icon-facebook {
  background: #3b5998 !important;
}

.page-bottom-share ul li a:hover.icon-twitter {
  background: #1da1f2 !important;
}

.page-bottom-share ul li a:hover.icon-weibo {
  background: #e33237 !important;
}

.page-bottom-share ul li a:hover.icon-wechat {
  background: #348903 !important;
}

.page-bottom-share ul li a:hover.icon-google {
  background: #db4437 !important;
}

.page-bottom-share ul li a:hover.icon-VK1 {
  background: #348903 !important;
}

.page-bottom-share ul li a:hover.icon-habrahabr {
  background: #348903 !important;
}

.page-bottom-share ul li a:hover.icon-youtube {
  background: #348903 !important;
}

.page-bottom-share ul li a:hover.icon-instagram {
  background: #348903 !important;
}

.link-submit {
  background: #f66f6a;
  color: #fff;
  padding: 15px 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  margin: 15px 0;
  text-decoration: none !important;
  min-width: 200px;
  margin-right: 20px;
  text-align: center;
  text-indent: 0 !important;
}

.link-submit:hover {
  text-decoration: none;
  color: #fff;
  background: #a54b4a;
}

.link-submit.disabled {
  background: #d4d4d4;
  color: #949494;
}

.link-submit.disabled em {
  color: #949494;
}

.link-submit em {
  padding-left: 70px;
  font-size: 16px;
  color: #fff;
}

.link-submit.witch {
  background: #fff;
  color: #282828;
  border: 1px solid #f66f6a;
}

.link-submit.witch em {
  color: #282828;
}

.link-submit.witch:hover {
  background: #fe9c99;
}

.link {
  margin-right: 20px;
  text-decoration: underline;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  display: none;
}

.pagination1,
.pagination {
  margin-top: 20px;
}

.pagination1 .left,
.pagination .left {
  float: left;
}

.pagination1 .left .select2-container,
.pagination .left .select2-container {
  margin: 0 10px;
  width: 61px !important;
}

.pagination1 .left a,
.pagination .left a {
  margin-right: 20px;
  display: inline-block;
  color: #282828;
}

.pagination1 .left a:hover,
.pagination .left a:hover {
  text-decoration: none;
}

.pagination1 .right,
.pagination .right {
  float: right;
}

.pagination1 .right ul li,
.pagination .right ul li {
  display: inline-block;
  padding: 0;
  border: 0;
  line-height: 26px;
  font-size: 14.000000000000002px;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border: 0 !important;
}

.pagination1 .right ul li input,
.pagination .right ul li input {
  width: 54px;
  height: 26px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  text-align: center;
  line-height: 26px;
  margin-right: 10px;
}

.pagination1 .right ul li a,
.pagination .right ul li a {
  color: #282828;
  font-size: 14.000000000000002px;
}

.pagination1 .right ul li a em,
.pagination .right ul li a em {
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
}

.pagination1 .right ul li.prev,
.pagination .right ul li.prev {
  margin-right: 10px;
}

.pagination1 .right ul li.next,
.pagination .right ul li.next {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .pagination1 .right,
  .pagination .right {
    float: none;
  }
}

.input-search {
  width: 100%;
  border-radius: 5px;
  padding-left: 20px;
  outline: none;
  font-size: 16px;
  border: 1px solid #d4d4d4;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}

.input-search::placeholder {
  color: #949494;
}

.input-search + a {
  position: absolute;
  top: 10px;
  right: 15px;
}

.input-search + a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .iconfont-flash [class*="hwic_"]:before,
  .iconfont-flash.active [class*="hwic_"]:before,
  .iconfont-flash:focus [class*="hwic_"]:before {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 0;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }

  .iconfont-flash:hover [class*="hwic_"]:before,
  .iconfont-flash.active [class*="hwic_"]:before,
  .iconfont-flash:focus [class*="hwic_"]:before {
    webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  .iconfont-flash:hover .hwic_download:before,
  .iconfont-flash.active .hwic_download:before,
  .iconfont-flash:focus .hwic_download:before {
    webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  .external-link {
    cursor: pointer;
  }

  .external-link [class*="hwic_"]:before,
  .external-link.active [class*="hwic_"]:before,
  .external-link:focus [class*="hwic_"]:before {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding-right: 0;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    display: none;
  }

  .external-link:hover [class*="hwic_"]:before,
  .external-link.active [class*="hwic_"]:before,
  .external-link:focus [class*="hwic_"]:before {
    webkit-transform: translateX(10px);
    transform: translateX(10px);
    display: inline-block;
    color: #282828 !Important;
    margin-left: 10px \9;
  }

  .phone-flash {
    cursor: pointer;
  }

  .phone-flash .phone-img img {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }

  .phone-flash:hover .phone-img .flash-phone {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .phone-flash .phone-img .flash-phone-show {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    left: 0;
  }
}

@media (max-width: 1024px) {
  .product-callout .card.phone-flash .phone-img .flash-phone-show {
    bottom: -50px;
  }
}

.phone-flash:hover .phone-img .flash-phone-show {
  -webkit-transform: translateY(5px);
  /* transform: translateY(5px); */
  content: "";
}

.icon_print {
  display: inline-block;
  width: 26px;
  height: 25px;
  font-style: normal;
  position: relative;
  font-family: corpfont;
}

.icon_print:before {
  width: 26px;
  height: 25px;
  display: block;
  content: "\e922";
  font-size: 25px;
  position: absolute;
  top: -6px;
  left: 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.icon_print:after {
  width: 26px;
  height: 25px;
  display: block;
  content: "\e923";
  font-size: 25px;
  position: absolute;
  bottom: 6px;
  left: 0;
}

.icon_print:hover:before {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  opacity: 0;
}

.icon_download {
  display: inline-block;
  width: 25px;
  height: 25px;
  font-style: normal;
  position: relative;
  font-family: corpfont;
}

.icon_download:before {
  width: 25px;
  height: 25px;
  display: block;
  content: "\e918";
  font-size: 25px;
  position: absolute;
  top: -6px;
  left: 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.icon_download:after {
  width: 25px;
  height: 25px;
  display: block;
  content: "\e913";
  font-size: 25px;
  position: absolute;
  bottom: 6px;
  left: 0;
}

.icon_download:hover:before {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.link-flash .icon-open-in-new {
  display: inline-block;
  width: 27px;
  height: 27px;
  font-style: normal;
  position: relative;
  font-family: corpfont;
}

.link-flash .icon-open-in-new:before {
  width: 27px;
  height: 27px;
  display: block;
  content: "\e900";
  font-size: 24px;
  position: absolute;
  top: -7px;
  left: 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.link-flash .icon-open-in-new:after {
  width: 27px;
  height: 27px;
  display: block;
  content: "\e90e";
  font-size: 24px;
  position: absolute;
  bottom: 7px;
  left: 0;
}

.link-flash:hover .icon-open-in-new:before {
  -webkit-transform: translate(3px, -2px);
  transform: translate(3px, -2px);
}

@media (max-width: 1024px) {
  .hwic_open-in-new {
    display: none;
  }

  .navigation-buckets .hwic_open-in-new {
    display: block;
  }
}

.modal-dialog {
  margin-top: 0;
}

.modal-body {
  padding: 0;
}

.bootstrap-dialog .bootstrap-dialog-close-button {
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 96;
}

.modal-header {
  padding: 0;
}

.modal-header .close {
  color: #fff;
  font-size: 25px;
  opacity: 1;
}

.bootstrap-dialog.type-primary .modal-header {
  border: none;
}

.bootstrap-dialog-title {
  display: none !important;
}

.permission-dl-dialog .modal-header {
  background-color: #fff !important;
  height: 0;
  padding: 0;
  border: 0;
}

.permission-dl-dialog .modal-header .bootstrap-dialog-title {
  display: none;
}

.permission-dl-dialog .modal-header .bootstrap-dialog-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
}

.permission-dl-dialog .modal-header .close {
  cursor: pointer;
  color: #282828;
}

.permission-dl-message {
  padding: 30px 0;
}

.permission-dl-message .down_line {
  height: auto;
  line-height: 30px;
  display: block;
  clear: both;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

.permission-dl-message .down_line h2 {
  line-height: 120%;
  margin-bottom: 10px;
  height: auto;
  padding-top: 5px;
  font-size: 24px;
}

.permission-dl-message .down_line a {
  color: #023399;
}

.permission-dl-message .down_line em {
  margin: 0 15px;
  font-style: normal;
}

.loading-dialog .modal-header .close {
  display: none;
}

.load-box {
  width: 100%;
  height: 100%;
}

.loading {
  margin-top: -20px;
  z-index: 99;
  color: #fff;
  margin-left: -20px;
}

.loading-dialog .modal-content {
  background-color: transparent;
  box-shadow: 0 0 0;
  border: 0;
}

.loading .sk-circle {
  margin: 0px auto;
  width: 60px;
  height: 60px;
  position: relative;
}

.loading .sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.loading .sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.loading .sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.loading .sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.loading .sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.loading .sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.loading .sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.loading .sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.loading .sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.loading .sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.loading .sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.loading .sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.loading .sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.loading .sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.loading .sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.loading .sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.loading .sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.loading .sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.loading .sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.loading .sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.loading .sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.loading .sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.loading .sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.loading .sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.loading .ie-loading {
  display: none;
}

@media (max-width: 767px) {
  .loading .spinner {
    margin: 0 auto;
  }

  .loading-dialog .modal-dialog {
    position: absolute !Important;
    left: 0;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .loading .ie-loading {
    display: none;
  }
}

.red-highlight {
  color: #fe0000;
  display: inline-block;
}

.float-none {
  float: none !important;
}

.loading .spinner {
  margin: 100px auto;
  width: 80px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.loading .spinner > div {
  background-color: #f66f6a;
  height: 20px;
  width: 6px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 25%;
  -webkit-animation: sk-stretchdelay 2s infinite ease-in-out;
  animation: sk-stretchdelay 2s infinite ease-in-out;
}

.loading .spinner .rect2 {
  -webkit-animation-delay: -1.9s;
  animation-delay: -1.9s;
  background-color: #f7a655;
}

.loading .spinner .rect3 {
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s;
  background-color: #ffdf4f;
}

.loading .spinner .rect4 {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
  background-color: #84d0a2;
}

.loading .spinner .rect5 {
  -webkit-animation-delay: -1.3s;
  animation-delay: -1.3s;
  background-color: #15b0e8;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(-10px);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }

  20% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
}

.common-dialog .modal-body {
  height: 200px;
}

.common-dialog .bootstrap-dialog-body {
  display: table;
  width: 100%;
  height: 100%;
}

.common-dialog .bootstrap-dialog-message {
  font-size: 24px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.common-dialog .modal-header .close {
  color: #666;
}

.yes-no {
  margin-top: 30px;
  width: 100%;
}

.yes-no a {
  width: 100px;
  display: inline-block;
  height: 35px;
  line-height: 34px;
  border: 1px solid #f66f6a;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

::-ms-reveal {
  display: none;
}

.yes-no a.yes {
  background: #f66f6a;
  color: #fff;
  border: none;
  margin-right: 15px;
}

.yes-no a.yes:hover {
  background: #a54b4a;
  text-decoration: none;
}

.yes-no a.no:hover {
  background: #fe9c99;
  text-decoration: none;
}

::-ms-clear {
  display: none;
}

::-ms-reveal {
  display: none;
}

.video_box {
  z-index: 98;
}

.img-radius {
  border-radius: 5px;
}

.weixin-pic {
  position: absolute;
  top: -100000px;
  left: -10000px;
}

.psirt-set-out .expand-moreb span {
  color: #db7775;
}

.events-location {
  margin-bottom: 60px;
}

.events-location h2 {
  margin-bottom: 60px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 26px;
  font-size: 24px;
  line-height: inherit;
  color: #282828;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 1px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 106px;
  font-size: 16px;
  line-height: 1.625;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.625;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 50px;
  }

  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 210px;
  }

  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 320px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 26px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 106px;
  padding-bottom: 106px;
  margin-bottom: 0;
  min-height: 42px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}

.input-sm {
  height: 210px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 210px;
  line-height: 210px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 210px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 210px;
  line-height: 210px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 210px;
  min-height: 38px;
  padding: 105px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 320px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 320px;
  line-height: 320px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 320px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 320px;
  line-height: 320px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 320px;
  min-height: 44px;
  padding: 110.00000000000001px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 62.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 320px;
  height: 320px;
  line-height: 320px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 210px;
  height: 210px;
  line-height: 210px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 526px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #686868;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }

  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7.000000000000001px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 33px;
}

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}

.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7.000000000000001px;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.forms input,
.forms select,
.forms textarea {
  height: 50px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  width: 100%;
  padding: 0 10px;
}

.forms input::-webkit-input-placeholder,
.forms select::-webkit-input-placeholder,
.forms textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #777777;
}

.forms input::-moz-placeholder,
.forms select::-moz-placeholder,
.forms textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #777777;
}

.forms input:-ms-input-placeholder,
.forms select:-ms-input-placeholder,
.forms textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #777777;
}

.forms input:-moz-placeholder,
.forms select:-moz-placeholder,
.forms textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #777777;
}

.forms input:focus,
.forms select:focus,
.forms textarea:focus {
  border: 1px solid #15b0eb;
  color: #282828;
  box-shadow: 0px 3px 8px #d4d4d4;
}

.forms label {
  font-size: 14.000000000000002px;
  display: block;
  font-family: "akkuratpro-light", Helvetica, Arial, sans-serif;
  margin-top: 10px;
  color: #777777;
}

.forms label em {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  display: none;
}

.forms .forms-error input {
  border: 1px solid #f66f6a;
}

.forms .forms-error input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #f66f6a;
}

.forms .forms-error input::-moz-placeholder {
  /* Firefox 19+ */
  color: #f66f6a;
}

.forms .forms-error input:-ms-input-placeholder {
  /* IE 10+ */
  color: #f66f6a;
}

.forms .forms-error input:-moz-placeholder {
  /* Firefox 18- */
  color: #f66f6a;
}

.forms .forms-error label {
  color: #f66f6a;
  display: block;
}

.forms label.error {
  color: #f66f6a;
}

.forms input.error,
.forms textarea.error {
  color: #f66f6a;
  border: 1px solid #f66f6a;
}

.forms input.error::-webkit-input-placeholder,
.forms textarea.error::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #f66f6a;
}

.forms input.error::-moz-placeholder,
.forms textarea.error::-moz-placeholder {
  /* Firefox 19+ */
  color: #f66f6a;
}

.forms input.error:-ms-input-placeholder,
.forms textarea.error:-ms-input-placeholder {
  /* IE 10+ */
  color: #f66f6a;
}

.forms input.error:-moz-placeholder,
.forms textarea.error:-moz-placeholder {
  /* Firefox 18- */
  color: #f66f6a;
}

.forms .select2-container.error .select2-selection {
  color: #f66f6a;
  border: 1px solid #f66f6a;
}

.forms .select2-container.error .select2-selection .select2-selection__rendered {
  color: #f66f6a;
}

.forms .select2-container--default .select2-selection--single .select2-selection__rendered,
.forms .select2-container .select2-selection--single {
  height: 50px;
  width: 100%;
  line-height: 50px;
}

.forms .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 11px;
}

.forms .phone .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 2px;
}

.forms .phone .select2-container--default .select2-selection--single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #d4d4d4;
}

.forms .select2-container {
  float: left;
}

.forms .phone div:focus {
  border: 1px solid #15b0eb;
  color: #282828;
  box-shadow: 0px 3px 8px #d4d4d4;
}

.forms .phone div select {
  width: 20%;
  max-width: 77px;
  float: left;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding: 0 10px;
}

.forms .phone div input {
  width: 80%;
  max-width: 293px;
  float: left;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left: 0;
}

.forms .description textarea {
  height: 114.99999999999999px;
  padding-top: 5px;
}

.forms .code .code-input {
  width: 47%;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.forms .code .code-img {
  width: 47%;
  float: left;
}

.forms .code .btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background: #f66f6a;
  color: #fff;
  border-radius: 5px;
  margin-top: 30px;
  display: block;
  font-size: 18px;
}

.forms .code .btn:hover {
  background: #a54b4a;
}

.forms .code .btn em {
  color: #fff;
  font-size: 38px;
  float: right;
  margin-top: 6px;
}

@media (max-width: 767px) {
  .forms .code-input {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .forms.phone .select2-container {
    width: 30% !important;
  }

  .forms.phone div input {
    width: 70%;
  }
}

.checkbox li {
  margin-bottom: 15px;
}

.checkbox .icheckbox_square-blue {
  border-radius: 3px;
}

.checkbox label em {
  font-style: normal;
}

.checkbox .forms-error inout {
  border: 1px solid #f66f6a;
}

.checkbox .forms-error label {
  color: #f66f6a;
}

.checkbox .disabled + label {
  color: #eee;
}

.checkbox [type="radio"] {
  width: 26px;
  height: 26px;
  border: 1px solid #15b0eb;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
}

.forms-warp {
  margin-top: 60px;
  padding: 40px;
  background: #fff;
  box-shadow: 0px 0 40px #d4d4d4;
}

.forms-warp h3 {
  font-size: 28.000000000000004px;
  margin-bottom: 40px;
}

.forms-warp > div {
  margin-bottom: 30px;
}

.forms-warp > div span {
  display: block;
  margin-bottom: 3px;
}

.product-callout {
  display: block;
  margin-bottom:40px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  min-height: 641px;
}

.product-callout .container {
  padding-right: 0;
}

.product-callout .col-lg-6 > a {
  display: block;
}

.product-callout .col-lg-6 .card {
  padding-top: 100px;
  padding-bottom: 120px;
  position: static;
  height: 450px;
  width: 82%;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.product-callout .col-lg-6 .card > div {
  float: right;
  margin-right: 160px;
}

.product-callout .col-lg-6 .card p {
  color: #fff;
  font-size: 18px;
}

.product-callout .col-lg-6 .card span {
  font-size: 22px;
  color: #fff;
}

.product-callout .col-lg-6 .card span:hover {
  text-decoration: none;
}

.product-callout .col-lg-6 .card span em {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  font-size: 18px;
}

.product-callout .col-lg-6 .card-bg {
  background: -webkit-linear-gradient(left top, #000, #000);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(bottom right, #000, #000);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(bottom right, #000, #000);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to bottom right, #000, #000);
  /* 标准的语法 */
  background-color: #000\9;
  height:670px;
  position: absolute;
  left: -60%;
  width: 150%;
  top: 0;
  z-index: -1;
  border-radius: 5px;
}

.product-callout .phone-img {
  position: absolute;
  top:160px;
  right: 0px;
  padding-bottom: 15px;
  width: 264px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-callout .col-lg-6 {
    width: 60%;
    float: left;
  }

  .product-callout .col-lg-5 {
    width: 40%;
    float: left;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .product-callout .container {
    padding-right: 15px;
  }

  .product-callout [class*=col-] {
    float: none;
  }

  .product-callout .featured-card {
    margin-top: 210px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .product-callout .phone-img {
    top: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-callout .col-lg-6 {
    width: 60%;
    float: left !important;
  }

  .product-callout .col-lg-5 {
    width: 40%;
    float: left !important;
  }

  .product-callout .featured-card {
    margin-top: 0px;
  }
}

@media (width: 768px) {
  .product-callout {
    margin-bottom: 60px;
  }

  .product-callout > .container {
    padding: 0;
  }

  .product-callout .col-lg-6 {
    padding-top: 100px;
    margin-bottom: 60px;
  }

  .product-callout .col-lg-6 .card {
    width: 100%;
    border-radius: 0;
    height: 600px;
  }

  .product-callout .col-lg-6 .card-bg {
    left: 0;
    height: 100%;
    top: 0;
  }

  .product-callout .phone-img {
    top: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%);
  }

  .product-callout .card-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
  }
}

@media (max-width: 767px) {
  .product-callout {
    margin-bottom: 60px;
  }

  .product-callout > .container {
    padding: 0;
  }

  .product-callout .col-lg-6 {
    padding-top: 100px;
    margin-bottom: 60px;
    overflow: hidden;
  }

  .product-callout .col-lg-6 .card {
    width: 100%;
    border-radius: 0;
    height: 600px;
  }

  .product-callout .col-lg-6 .card p {
    margin-top: 30px;
  }

  .product-callout .col-lg-6 .card-bg {
    left: 0;
    height: 100%;
    top: 0;
    margin-top: 100px;
  }

  .product-callout .phone-img {
    top: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%);
  }

  .product-callout .card-text {
    position: absolute;
    bottom:20px;
    left:30px;
  }
}

.card .card-img img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.card:hover .card-img img {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.card h2 {
  font-size:20px;
  line-height:30px;
}

.card-content {
  padding: 10px 15px;
  background: #dde6ed;
}

.card-content h3 {
  font-size:15px;
  line-height:25px;
  margin-top: 5px;
  margin-bottom: 0;
}

.card-content a {
  color: #222222;
}

.card-content a:hover {
  text-decoration: underline;
}

.card-content p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}

a.read-more,
span.read-more {
  font-size:15px;
  line-height:15px;
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  color: #222222;
  display: block;
}

a.read-more:hover,
span.read-more:hover {
  text-decoration: none;
}

a.read-more em,
span.read-more em {
  display: inline-block;
  font-size: 15px;
  margin-left: 15px;
  vertical-align: middle;
}

.category-name {
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  font-size: 14.000000000000002px;
  line-height: 22px;
  color: #808080;
  margin-bottom: 0;
  text-transform: uppercase;
}

.height-fixed {
  max-height: 108px;
  overflow: hidden;
  margin-bottom:10px;
}

.height-normal {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .card {
    padding: 0;
    display: flex;
    flex: 1;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .card h2 {
    font-size: 28.999999999999996px;
    line-height: 39px;
  }

  .card .card-img {
    width:100%;
    order: 2;
    overflow: hidden;
    position: relative;
    height: 140px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card .card-img img {
    width: auto;
    position: absolute;
    transform: translate(-50%, -50%) !important;
    right: -20px;
    left: 50%;
    top: 40%;
  }

  .height-fixed {
    height: 75px;
  }

  .card-content {
    width:100%;
    padding: 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .card-content h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .card-content p {
    text-align: left;
    font-size: 14px;
    line-height: 22px;
  }

  .read-more {
    font-size: 22px;
    line-height: 22px;
  }
}

.featured-card .card {
  background: #dde6ed;
  border-radius: 5px;
  display: block;
}

.featured-card .card img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}

.featured-card .card a {
  display: block;
}

.featured-card .card a:hover {
  text-decoration: none;
}

.featured-card .card .video_text {
  padding-bottom: 40px;
  padding-top: 40px;
  padding-left: 60px;
  padding-right: 60px;
  min-height:340px;
}

.featured-card .card .video_text .content {
  height: 234px;
  overflow: hidden;
}

.featured-card .card .video_text h2 {
  margin-top: 10px;
}

.featured-card .card .video_text p {
  font-size: 18px;
  line-height: 30px;
}

.featured-card .card .video_text span {
  font-size:18px;
  color: #222222;
  position: absolute;
  bottom:24px;
}

.featured-card .card .video_text span em {
  font-size: 18px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .featured-card .card .video_text h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .featured-card .card .video_text .content {
    height: 215px;
  }
}

@media (max-width: 767px) {
  .featured-card .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .featured-card .card .video_text {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    min-height: 1px;
  }

  .featured-card .card .video_text .content {
    height: auto;
  }

  .featured-card .card .video_text h2 {
    margin-bottom: 0;
  }

  .featured-card .card .video_text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.multi-action-callout {
  margin-bottom: 100px;
  padding-top: 200px;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.multi-action-callout .col-sm-10 {
  height: 500px;
}

.multi-action-callout .col-sm-10 > a {
  display: block;
}

.multi-action-callout .card.left {
  background: #dde6ed;
  padding-top: 192px;
  padding-left: 30px;
  border-radius: 6px;
  height: 500px;
  padding-bottom: 60px;
}

.multi-action-callout .card.left .content {
  height: 245.00000000000003px;
  overflow: hidden;
}

.multi-action-callout .card.left .title {
  padding-top: 40px;
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  font-size: 14.000000000000002px;
  color: #808080;
  margin-bottom: 0;
}

.multi-action-callout .card.left h2 {
  margin-bottom: 0;
  margin-top: 0;
  color: #222222;
}

.multi-action-callout .card.left span {
  font-size: 18px;
  line-height: 30px;
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
}

.multi-action-callout .card.left p {
  margin-bottom: 0;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.multi-action-callout .hero-bg {
  background: #dde6ed;
  height: 500px;
  position: absolute;
  left: -60%;
  width: 70%;
  top: 0;
  z-index: -1;
}

.multi-action-callout .event-img {
  position: absolute;
  top: -200px;
}

.multi-action-callout .event-img img {
  border-radius: 5px;
}

.multi-action-callout .event-actions {
  position: absolute;
  top: 80px;
  right: -18.66%;
  background: #f66f6a;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
  border-radius: 5px;
  z-index: 1;
}

.multi-action-callout .event-actions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.multi-action-callout .event-actions ul li {
  font-size: 22px;
  line-height: 34px;
  padding-top: 40px;
  line-height: 1;
}

.multi-action-callout .event-actions ul li:first-child {
  padding-top: 0;
}

.multi-action-callout .event-actions ul li a {
  color: #fff;
}

.multi-action-callout .event-actions ul li a:hover {
  text-decoration: none;
}

.multi-action-callout .event-actions ul li a em {
  display: inline-block;
  vertical-align: middle;
  padding-left: 70px;
  float: right;
}

.multi-action-callout .event-actions ul li a em.hwic_play2 {
  float: right;
  margin-top: 3px;
  font-size: 16px;
}

.multi-action-callout .event-actions ul li a em.hwic_sharing_share {
  padding-left: 67px;
  font-size: 16px;
}

.multi-action-callout .event-actions ul li a em.hwic_sharing_share:before {
  color: #fff;
}

@media (max-width: 767px) {
  .multi-action-callout {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 60px;
  }

  .multi-action-callout .container {
    padding: 0;
  }

  .multi-action-callout .container .col-sm-10 {
    height: 500px;
  }

  .multi-action-callout .event-actions em {
    padding-left: 60px !important;
  }

  .multi-action-callout .event-img {
    position: static;
  }

  .multi-action-callout .event-img img {
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5, 0.5);
  }

  .multi-action-callout .card.left {
    padding-top: 150px;
    height: 500px;
    padding-left: 22px;
    padding-right: 22px;
    text-align: center;
  }

  .multi-action-callout .card.left h2 {
    font-size: 22px;
    margin-top: 10px;
  }

  .multi-action-callout .card.left .content {
    height: 220.00000000000003px;
  }

  .multi-action-callout .card.left .title {
    margin-bottom: 0;
  }

  .multi-action-callout .card.left a:hover {
    text-decoration: underline;
  }

  .multi-action-callout .card.left p {
    max-width: 100%;
    font-size: 18px;
    line-height: 28.000000000000004px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .multi-action-callout .event-actions {
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: -100px;
    margin-left: -157px;
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    margin-right: -155px;
    border-radius: 5px;
    max-width: 314px;
  }

  .multi-action-callout .event-actions a em:before {
    padding-right: 0;
  }

  .multi-action-callout .event-actions ul li {
    font-size: 22px;
    line-height: 22px;
    padding-top: 20px;
  }
}

.secondary-hero {
  margin-bottom:10px;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  height:650px;
}

.secondary-hero .hero-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.secondary-hero .card {
  padding-top: 60px;
  background-color: inherit;
  position: absolute;
  top: 0;
  right: 150px;
  z-index: 98;
}

.secondary-hero .card .title {
  padding-top: 140px;
}

.secondary-hero .card .explore-more {
  padding-top: 130px;
  padding-bottom: 200px;
}

.secondary-hero .card .explore-more a {
  color: #fff;
  font-size: 22px;
  display: inline-block;
}

.secondary-hero .card .explore-more a:hover {
  text-decoration: none;
}

.secondary-hero .card .explore-more a em {
  display: inline-block;
  padding-left: 15px;
  text-decoration: none;
  vertical-align: middle;
  font-size: 18px;
}

@media (min-width: 1100px) and (max-width: 1260px) {
  .secondary-hero .card {
    right: 80px;
  }

  .secondary-hero .hero-img {
    transform: translateX(-60%);
  }
}

@media (min-width: 991px) and (max-width: 1100px) {
  .secondary-hero .card {
    right: 20px;
  }

  .secondary-hero .hero-img {
    transform: translateX(-65%);
  }
}

@media (max-width: 767px) {
  .secondary-hero {
    height: auto;
    margin-bottom: 60px;
  }

  .secondary-hero .hero-img {
    position: static;
    transform: translateX(0);
  }

  .secondary-hero .card {
    padding-top: 20px;
    right: 30px;
    left: 30px;
  }

  .secondary-hero .card .title {
    padding-top: 40px;
  }

  .secondary-hero .card .title img {
    max-width: 100%;
  }
}

.vertical-card {
  margin-bottom:0px;
}

.vertical-card .container > .title {
  margin-bottom: 0;
}

.vertical-card .container > p {
  margin-bottom: 40px;
  width: 80%;
}

.vertical-card h2 {
  margin-bottom: 60px;
  line-height: 1;
}

.vertical-card .title h2 {
  margin-bottom:20px;
}

.vertical-card .row {
  display: flex;
}

.vertical-card .row .col-sm-4 {
  margin-bottom: 40px;
  display: flex;
  padding: 0 33px;
}

.vertical-card .card {
  position: relative;
  background: #dde6ed;
  border-radius: 5px;
  width: 100%;
  margin-top: 90px;
}

.vertical-card .card a {
  display: block;
}

.vertical-card .card a:hover {
  text-decoration: none;
}

.vertical-card .card:hover .card-img {
  margin-left: -20px;
}

.vertical-card .card.no-hover .card-img {
  margin-left: 0;
}

.vertical-card .card.no-hover .height-fixed {
  margin-bottom: 0;
}

.vertical-card .card .card-img {
  margin-top: -90px;
  height: 178px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.vertical-card .card .card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 0;
  transform: translate(-50%, -50%);
}

.vertical-card .card-content {
  padding-bottom:0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.vertical-card .card-content .height-fixed p + div {
  display: none;
}

.vertical-card .read-more {
  position: absolute;
  bottom:10px;
}

.vertical-card .speaker-ux-card .card-content .height-fixed {
  height: auto;
  max-height: 100%;
}

.vertical-card .speaker-ux-card .card-content h3 {
  -webkit-line-clamp: inherit;
}

.vertical-card .speaker-ux-card .card-content p {
  -webkit-line-clamp: inherit;
}

.vertical-card > .container > .category-name {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .vertical-card .row .col-sm-4 {
    padding: 0 11px;
  }

  .vertical-card .card:hover .card-img {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .vertical-card .card .card-img {
    height: 134px;
  }

  .vertical-card .card-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .vertical-card {
    margin-bottom: 20px;
  }

  .vertical-card > .container > h2 {
    margin-bottom: 40px;
  }

  .vertical-card > .container > p {
    width: 100%;
  }

  .vertical-card .category-name h2 {
    margin-bottom: 40px;
  }

  .vertical-card .card {
    margin-top: 0;
  }

  .vertical-card .card a {
    display: flex;
    flex: 1;
  }

  .vertical-card .card .card-img {
    margin-top: 0;
    height: 140px;
    border-top-left-radius: 0;
  }

  .vertical-card .card .card-img img {
    top: 50%;
    margin-left: 0;
    margin-top: 0;
    max-height: 100%;
  }

  .vertical-card .row {
    display: block;
  }

  .vertical-card .row .col-sm-4 {
    margin-bottom: 40px;
    padding-left: 11px;
    padding-right: 11px;
    margin-top: 0;
    max-height: 140px;
    overflow: hidden;
  }
}

.vertical-card .card.no-hover .height-fixed {
  max-height: 128px;
  height: auto;
  margin-bottom: 0;
}

.vertical-card .card.no-hover .card-content {
  padding-bottom: 40px;
}

.vertical-card .card.no-hover .card-img {
  margin-left: 0;
}

@media (max-width: 767px) {
  .vertical-card .card.no-hover .height-fixed {
    max-height: 85px;
  }

  .vertical-card .speaker-ux-card .card-content .height-fixed {
    max-height: 95px !important;
  }
}

.image-text-carousel {
  padding-bottom:70px;
}

.image-text-carousel .container > p {
  margin-bottom: 40px;
  width: 80%;
}

.image-text-carousel .slick-prev,
.image-text-carousel .slick-next {
  display: block !important;
}

.image-text-carousel .slick-slide > a {
  display: block;
}

.image-text-carousel .card {
  background: #dce6ee;
  border-radius: 6px;
  padding-top: 50px;
  padding-bottom: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  height: 440px;
}

.image-text-carousel .card .content {
  height: 200px;
  overflow: hidden;
}

.image-text-carousel .card .title {
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  font-size: 14.000000000000002px;
  color: #808080;
  margin: 0;
}

.image-text-carousel .card h3 {
  font-size: 28.000000000000004px;
  line-height: 38px;
  margin-bottom: 0;
  margin-top: 0;
}

.image-text-carousel .card h3 a {
  margin-top: 0;
}

.image-text-carousel .card h3 + span {
  font-family: "akkuratpro-bold", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.image-text-carousel .card .col-sm-5 {
  padding-right:10px;
}

.image-text-carousel .card span.read-more {
  color: #282828;
  margin-top:0px;
  font-size: 28px;
  display: block;
}

.image-text-carousel .card span.read-more:hover {
  text-decoration: none;
}

.image-text-carousel .card span.read-more em {
  display: inline-block;
  margin-left: 15px;
}

.image-text-carousel .card p {
  font-size: 18px;
  line-height: 30px;
}

.image-text-carousel .events-img {
  position: absolute;
  top: -105px;
  right: 0;
}

.image-text-carousel .events-img img {
  border-radius: 5px;
}

@media (min-width: 768px) and (max-width: 1250px) {
  .image-text-carousel .slick-prev {
    left: 0;
  }

  .image-text-carousel .slick-next {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .image-text-carousel .card {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
}

@media (width: 1024px) {
  .image-text-carousel .events-img {
    margin-top: -18%;
    top: 0 !important;
  }
}

@media (width: 991px) {
  .image-text-carousel .events-img {
    margin-top: -17%;
    top: 0 !important;
  }
}

@media (width: 768px) {
  .image-text-carousel .events-img {
    margin-top: -8%;
    top: 0 !important;
  }

  .image-text-carousel .card {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .image-text-carousel {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }

  .image-text-carousel > .container > .title {
    margin-bottom: 40px;
  }

  .image-text-carousel > .container > p {
    width: 100%;
  }

  .image-text-carousel > .container .card {
    position: relative;
    margin-top: 100px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }

  .image-text-carousel > .container .card > div {
    width: 100%;
  }

  .image-text-carousel > .container .card .col-sm-6 {
    position: static;
  }

  .image-text-carousel > .container .card .col-sm-6 .events-img {
    position: static;
  }

  .image-text-carousel > .container .card .col-sm-6 .events-img img {
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7, 0.6);
  }

  .image-text-carousel > .container .card .col-sm-5 {
    text-align: center;
    margin-top: 90px;
    padding-right: 0;
    padding: 0 35px;
  }

  .image-text-carousel > .container .card .col-sm-5 h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 30px;
  }

  .image-text-carousel > .container .card .col-sm-5 h3 + span {
    font-size: 16px;
  }

  .image-text-carousel > .container .card .col-sm-5 .title {
    padding-top: 40px;
  }

  .image-text-carousel > .container .card .col-sm-5 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 115.99999999999999px;
  }

  .image-text-carousel > .container .slick-prev {
    top: 100px;
  }

  .image-text-carousel > .container .slick-next {
    top: 100px;
  }

  .image-text-carousel .events-img {
    margin: 0 31px;
    top: -180px;
    right: inherit;
  }
}

@media (max-width: 350px) {
  .image-text-carousel > .container .card .col-sm-5 h3 {
    font-size: 24px;
  }

  .image-text-carousel > .container .card .col-sm-5 span {
    font-size: 14.000000000000002px;
  }
}

.columns-list {
  margin-bottom: 100px;
}

.columns-list .card {
  margin-left: 20px;
  margin-right: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.columns-list .card > a {
  display: block;
}

.columns-list .card > a:hover {
  text-decoration: none;
}

.columns-list .card .card-img {
  height:335px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}

.columns-list .card .card-img img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.columns-list .card-content {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  height:170px;
  overflow: hidden;
  position: relative;
}

.columns-list .card-content .content {
  overflow: hidden;
  height: 152px;
}

.columns-list .card-content span.read-more {
  position: absolute;
  bottom: 30px;
}

.columns-list .card-content .height-normal {
  margin-bottom: 0;
}

.columns-list ul {
  list-style: none;
  margin: 0;
  padding-right: 0.666%;
}

.columns-list ul li {
  padding-top:10px;
}

.columns-list ul li:first-child {
  padding-top: 0;
}

.columns-list ul li .time {
  color: #808080;
}

.columns-list ul li p {
  margin: 0;
}

.columns-list ul li a {
  color: #282828;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 18px;
  line-height: 30px;
}

.columns-list ul li a:hover {
  text-decoration: underline;
}

.columns-list ul li .date {
  color: #808080;
  text-transform: uppercase;
  font-size: 14.000000000000002px;
}

@media (max-width: 991px) {
  .columns-list ul li {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .columns-list {
    margin-bottom: 40px;
  }

  .columns-list > .container > .title {
    margin-top: 0;
    margin-bottom: 60px !important;
  }

  .columns-list .col-lg-5 .card {
    margin: 0;
    display: block;
    text-align: center;
    margin-bottom: 60px;
  }

  .columns-list .col-lg-5 .card img {
    width: 100%;
  }

  .columns-list .col-lg-5 .card .card-img {
    border-bottom-right-radius: 0;
  }

  .columns-list .col-lg-5 .card p {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
  }

  .columns-list .col-lg-5 .card .card-content {
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
  }

  .columns-list .col-lg-5 .card .card-content .height-normal h3 {
    line-height: 34px;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .columns-list .col-lg-5 .card .card-content .content {
    height: 240px;
    padding: 10px 0;
  }

  .columns-list ul {
    padding: 0;
  }

  .columns-list ul li {
    padding-bottom: 0;
    padding-top: 40px;
  }

  .columns-list ul li:first-child {
    padding-top: 0;
  }

  .latest-news {
    width: 100%;
  }
}

@media (min-width: 421px) and (max-width: 450px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 205px;
  }
}

@media (min-width: 401px) and (max-width: 420px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 190px;
  }
}

@media (min-width: 381px) and (max-width: 400px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 180px;
  }
}

@media (min-width: 361px) and (max-width: 380px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 170px;
  }
}

@media (min-width: 351px) and (max-width: 360px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 160px;
  }
}

@media (min-width: 320px) and (max-width: 350px) {
  .columns-list .col-lg-5 .card .card-img {
    height: 148px;
  }
}

.player-outer-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 98;
}

.video_box_ux {
  width: 100%;
  position: relative;
  z-index: 97;
  overflow: hidden;
}

.video_box_ux .circle {
  width: 69px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -35px;
  z-index: 8;
}

.video_box_ux .circle:before {
  content: "";
  background: #000;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.video_box_ux em {
  position: absolute;
  font-size: 45px;
  color: #eb5b56;
  top: 50%;
  left: 50%;
  margin-top: -21px;
  margin-left: -5px;
  z-index: 11;
}

.video_box_ux a:hover .circle {
  transition-duration: 0.2s;
  transform: scale(1.1);
}

.video_box_ux img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}

.modal-dialog {
  margin-top: 0;
}

.modal-body {
  padding: 0;
}

.bootstrap-dialog .bootstrap-dialog-close-button {
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 96;
}

.modal-header {
  padding: 0;
}

.modal-header .close {
  color: #fff;
  font-size: 25px;
  opacity: 1;
}

.bootstrap-dialog.type-primary .modal-header {
  border: none;
}

.bootstrap-dialog-title {
  display: none !important;
}

#player_wrapper .jwplayer {
  display: table !important;
}

#player_wrapper .jwplayer {
  position: absolute;
  left: 0;
  top: -1px;
}

#player_wrapper {
  position: relative;
  padding-top: 56.25%;
  background-color: rgba(0, 0, 0, 0.8);
}

#playerContainer_wrapper {
  position: absolute !important;
  top: -1px;
  left: 0;
}

.video-dialog .modal-dialog {
  width: 100%;
  max-width:960px;
  margin: auto;
}

@media (max-width: 767px) {
  .video-dialog .modal-dialog {
    position: absolute;
    left: 0;
  }

  .video_box_ux img {
    border-radius: 0;
  }

  #player_wrapper .jwplayer {
    display: inline-block !important;
  }

  .modal:before {
    display: none;
  }

  .modal-dialog {
    width: 100%;
    z-index: 98;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) !important;
  }
}

.video_box {
  width: 100%;
  position: relative;
  z-index: 97;
  overflow: hidden;
}

.video_box a.js_img_link,
.video_box a.js_video_icon,
.video_box a.js_video_player {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/video_btn.png) 50% no-repeat;
}

.video_box a.js_img_link {
  background: none;
}

.video_box a.video_player {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/video_btn.png) 50% no-repeat;
}

.video_box a.js_video_icon:hover,
.video_box a.js_video_player:hover {
  background: url(../images/video_btn_hover.png) 50% no-repeat;
}