/* line 4, ../sass/style.scss */
body {
  padding: 20px;
  font-family: Montserrat, arial, sans-serif;
  font-weight: 700;
}
@media (max-width: 992px) {
  /* line 4, ../sass/style.scss */
  body {
    padding: 0;
  }
}
/* line 12, ../sass/style.scss */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 20px;
  right: 20px;
  height: 90px;
  background: #222;
  z-index: 90;
  transform: translateY(-100%);
  transition: 0.3s;
}
@media (max-width: 992px) {
  /* line 12, ../sass/style.scss */
  body:before {
    height: 60px;
    left: 0;
    right: 0;
  }
}
/* line 31, ../sass/style.scss */
body.sticky:before {
  transform: translateY(0);
}

/* line 37, ../sass/style.scss */
section {
  background: #eaeaea;
  margin: 0 auto 20px;
  position: relative;
  max-width: 1920px;
}
@media (max-width: 992px) {
  /* line 37, ../sass/style.scss */
  section {
    margin: 0 auto;
  }
}
/* line 46, ../sass/style.scss */
section.background-light {
  background: #fff;
}
/* line 50, ../sass/style.scss */
section.background-dark {
  background: #282828;
  color: #fff;
}
/* line 55, ../sass/style.scss */
section.background-yellow {
  background: #ffde00;
}
/* line 59, ../sass/style.scss */
section .image-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 5;
}
/* line 68, ../sass/style.scss */
section .container {
  position: relative;
  z-index: 10;
}

/* line 74, ../sass/style.scss */
.vtable {
  width: 100%;
  height: 100%;
  display: table;
}
/* line 79, ../sass/style.scss */
.vtable .vcell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* line 87, ../sass/style.scss */
i.fa, i.fab {
  font-weight: normal;
}

/* line 93, ../sass/style.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}
/* line 103, ../sass/style.scss */
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
/* line 108, ../sass/style.scss */
h1 span.marker,
h2 span.marker,
h3 span.marker,
h4 span.marker,
h5 span.marker,
h6 span.marker {
  display: inline-block;
  color: #ffde00;
  font-size: inherit;
  font-weight: 900;
}

/* line 117, ../sass/style.scss */
p {
  margin-bottom: 20px;
}

/* line 121, ../sass/style.scss */
a {
  color: #444;
}
/* line 124, ../sass/style.scss */
a:hover {
  color: #ffde00;
  text-decoration: none;
}

/* line 130, ../sass/style.scss */
a.btn {
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 0;
  transition: 0.3s;
  position: relative;
}
/* line 139, ../sass/style.scss */
a.btn span {
  position: relative;
  z-index: 5;
}
/* line 144, ../sass/style.scss */
a.btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  background: #ffde00;
  -webkit-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* line 163, ../sass/style.scss */
a.btn:hover {
  color: #222;
  border-color: #ffde00;
}
/* line 167, ../sass/style.scss */
a.btn:hover:after {
  right: 0;
}

/* line 173, ../sass/style.scss */
.topbar {
  float: left;
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  display: table;
  z-index: 100;
  background: none;
}
@media (max-width: 992px) {
  /* line 173, ../sass/style.scss */
  .topbar {
    top: 40px;
  }
}
/* line 187, ../sass/style.scss */
.sticky .topbar {
  position: fixed;
  top: 20px;
}
@media (max-width: 992px) {
  /* line 187, ../sass/style.scss */
  .sticky .topbar {
    top: 15px;
  }
}
/* line 195, ../sass/style.scss */
.topbar .container {
  padding: 0 20px;
}
@media (max-width: 992px) {
  /* line 195, ../sass/style.scss */
  .topbar .container {
    padding: 0;
  }
}
/* line 202, ../sass/style.scss */
.topbar .table {
  display: table;
  position: relative;
}
/* line 206, ../sass/style.scss */
.topbar .table .cell {
  display: table-cell;
}
/* line 209, ../sass/style.scss */
.topbar .table .cell.valign-bottom {
  vertical-align: middle;
  padding-top: 38px;
  transition: 0.3s;
}
/* line 214, ../sass/style.scss */
.sticky .topbar .table .cell.valign-bottom {
  padding-top: 0;
}
/* line 221, ../sass/style.scss */
.topbar .logo {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 992px) {
  /* line 221, ../sass/style.scss */
  .topbar .logo {
    width: 100%;
    float: left;
    display: block;
    text-align: center;
  }
}
/* line 231, ../sass/style.scss */
.topbar .logo a {
  float: left;
}
@media (max-width: 992px) {
  /* line 231, ../sass/style.scss */
  .topbar .logo a {
    margin-left: 20px;
  }
}
/* line 237, ../sass/style.scss */
.topbar .logo a img {
  height: 50px;
}
@media (max-width: 992px) {
  /* line 237, ../sass/style.scss */
  .topbar .logo a img {
    height: 30px;
  }
}
/* line 246, ../sass/style.scss */
.topbar .nav {
  float: right;
}
@media (max-width: 992px) {
  /* line 246, ../sass/style.scss */
  .topbar .nav {
    top: 60px;
    float: left;
    position: absolute;
    left: 10px;
    right: 100%;
    padding: 20px 0;
    background: #222;
    color: #222;
    overflow: hidden;
    transition: 0.5s 0.5s;
  }
  /* line 260, ../sass/style.scss */
  .mobile .topbar .nav {
    right: 10px;
    transition: 0.5s 0s;
  }
  /* line 265, ../sass/style.scss */
  .topbar .nav .nav-wrapper {
    margin: 0 auto;
  }
}
/* line 270, ../sass/style.scss */
.topbar .nav ul {
  margin: 0;
  float: right;
}
@media (max-width: 992px) {
  /* line 270, ../sass/style.scss */
  .topbar .nav ul {
    margin: 0 auto;
    padding: 0;
    float: none;
  }
}
/* line 279, ../sass/style.scss */
.topbar .nav ul li {
  list-style: none;
  float: left;
}
@media (max-width: 992px) {
  /* line 279, ../sass/style.scss */
  .topbar .nav ul li {
    width: 100%;
    text-align: center;
  }
}
/* line 287, ../sass/style.scss */
.topbar .nav ul li a {
  color: #fff;
  padding: 0 10px;
  line-height: 14px;
  float: left;
}
@media (max-width: 992px) {
  /* line 287, ../sass/style.scss */
  .topbar .nav ul li a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}
/* line 298, ../sass/style.scss */
.topbar .nav ul li a:hover {
  color: #ffde00;
}
@media (max-width: 992px) {
  /* line 305, ../sass/style.scss */
  .topbar .nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffde00;
    transform: translateX(0);
    transition: 0.5s 0s;
  }
  /* line 316, ../sass/style.scss */
  .mobile .topbar .nav:after {
    transform: translateX(100%);
    transition: 0.5s 0.5s;
  }
}
/* line 324, ../sass/style.scss */
.topbar .nav-toggle {
  position: absolute;
  height: 30px;
  z-index: 50;
  top: 0;
  right: 20px;
}
@media (min-width: 993px) {
  /* line 324, ../sass/style.scss */
  .topbar .nav-toggle {
    display: none;
  }
}
/* line 334, ../sass/style.scss */
.topbar .nav-toggle .bars {
  margin: 11px 0 0;
  width: 24px;
  height: 19px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
/* line 342, ../sass/style.scss */
.sticky .topbar .nav-toggle .bars {
  margin: 6px 0 0;
}
/* line 346, ../sass/style.scss */
.topbar .nav-toggle .bars .bar {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  float: left;
  position: absolute;
  transition: 0.3s 0.3s;
  transform-origin: center;
}
/* line 355, ../sass/style.scss */
.topbar .nav-toggle .bars .bar:nth-child(1) {
  top: 0;
  left: 0;
}
/* line 360, ../sass/style.scss */
.topbar .nav-toggle .bars .bar:nth-child(2) {
  top: 8px;
  left: 0;
}
/* line 365, ../sass/style.scss */
.topbar .nav-toggle .bars .bar:nth-child(3) {
  top: 16px;
  left: 0;
}
/* line 370, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar {
  transition: 0.3s 0s;
}
/* line 373, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar:nth-child(1) {
  top: 8px;
}
/* line 376, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar:nth-child(1) span {
  transform: rotate(45deg);
}
/* line 381, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar:nth-child(2) {
  transition-delay: 0.15s;
  opacity: 0;
}
/* line 386, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar:nth-child(3) {
  top: 8px;
}
/* line 389, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar:nth-child(3) span {
  transform: rotate(-45deg);
}
/* line 395, ../sass/style.scss */
.topbar .nav-toggle .bars .bar span {
  width: 24px;
  height: 3px;
  background: #fff;
  float: left;
  transform-origin: center;
  transition: 0.3s 0s;
}
/* line 403, ../sass/style.scss */
.mobile .topbar .nav-toggle .bars .bar span {
  transition: 0.3s 0.3s;
  background: #fff;
}
/* line 412, ../sass/style.scss */
.topbar .nav-toggle .bars:active .bar:nth-child(1) {
  transform: translateY(0);
}
/* line 416, ../sass/style.scss */
.topbar .nav-toggle .bars:active .bar:nth-child(3) {
  transform: translateY(0);
}

/* line 425, ../sass/style.scss */
.hero {
  background: #444;
  height: calc(100vh - 40px);
  min-height: 500px;
  color: #fff;
}
/* line 431, ../sass/style.scss */
.hero h1 {
  margin-bottom: 15px;
}
/* line 435, ../sass/style.scss */
.hero h2 {
  margin-bottom: 10px;
}
/* line 441, ../sass/style.scss */
.hero.sub .container h1 {
  font-size: 20px;
  margin: 0 0 20px;
}
/* line 446, ../sass/style.scss */
.hero.sub .container h2 {
  font-size: 60px;
}
/* line 451, ../sass/style.scss */
.hero.sub .more {
  display: none;
}
/* line 456, ../sass/style.scss */
.hero .image-container {
  background: #444 url("../gfx/hero.jpg") no-repeat center;
  background-size: cover;
  opacity: 0.25;
}
/* line 462, ../sass/style.scss */
.hero .container {
  height: 100%;
  position: relative;
}
/* line 466, ../sass/style.scss */
.hero .container h2 {
  font-weight: 700;
  color: #ffde00;
}
/* line 472, ../sass/style.scss */
.hero .container h1 {
  font-weight: 700;
  font-size: 60px;
}
@media (max-width: 768px) {
  /* line 472, ../sass/style.scss */
  .hero .container h1 {
    font-size: 40px;
  }
}
/* line 481, ../sass/style.scss */
.hero .more {
  position: absolute;
  z-index: 50;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  animation: wink 2s ease;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
/* line 492, ../sass/style.scss */
.hero .more a {
  color: #fff;
}
@keyframes wink {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}
/* line 513, ../sass/style.scss */
.text {
  position: relative;
}
@media (max-width: 992px) {
  /* line 516, ../sass/style.scss */
  .text .image-container {
    position: static;
  }
}
/* line 521, ../sass/style.scss */
.text .image-container .row {
  height: 100%;
  margin: 0;
}
/* line 525, ../sass/style.scss */
.text .image-container .row .col-md-12 {
  padding: 0;
}
/* line 529, ../sass/style.scss */
.text .image-container .row .col-md-12:nth-child(1) .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
/* line 537, ../sass/style.scss */
.text .image-container .row .col-md-12:nth-child(2) .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
/* line 545, ../sass/style.scss */
.text .image-container .row .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  /* line 545, ../sass/style.scss */
  .text .image-container .row .image {
    position: static;
    width: 100%;
    height: auto;
    padding: 0 0 50%;
    background-size: cover !important;
  }
}
@media (min-width: 993px) {
  /* line 565, ../sass/style.scss */
  .text.background-wide .image-container .row .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  /* line 574, ../sass/style.scss */
  .text.background-wide .image-container .row .col-lg-6:nth-child(1) .image {
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
  }
  /* line 582, ../sass/style.scss */
  .text.background-wide .image-container .row .col-lg-6:nth-child(2) .image {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
  }
}
/* line 594, ../sass/style.scss */
.text .container {
  height: 100%;
}
@media (max-width: 768px) {
  /* line 597, ../sass/style.scss */
  .text .container h2 {
    font-size: 25px;
  }
}
/* line 603, ../sass/style.scss */
.text .container .row {
  height: 100%;
  padding: 150px 0;
}
@media (min-width: 993px) {
  /* line 603, ../sass/style.scss */
  .text .container .row {
    min-height: 640px;
  }
}
@media (max-width: 992px) {
  /* line 603, ../sass/style.scss */
  .text .container .row {
    padding: 25px 0 0;
  }
}
@media (min-width: 993px) {
  /* line 615, ../sass/style.scss */
  .text .container .row > div:nth-child(1) {
    padding-right: 100px;
  }
  /* line 619, ../sass/style.scss */
  .text .container .row > div:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 992px) {
  /* line 625, ../sass/style.scss */
  .text .container .row .padder {
    padding: 0 10px 10px;
  }
}
/* line 632, ../sass/style.scss */
.text table {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}
/* line 637, ../sass/style.scss */
.text table tr td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 700;
}
/* line 642, ../sass/style.scss */
.text table tr td span {
  font-weight: 500;
  display: block;
}
/* line 647, ../sass/style.scss */
.text table tr td:first-child {
  padding-right: 50px;
  width: 1%;
  vertical-align: top;
}
@media (max-width: 992px) {
  /* line 647, ../sass/style.scss */
  .text table tr td:first-child {
    padding-right: 20px;
  }
}

/* line 660, ../sass/style.scss */
.tickets {
  background: #f8f7fa;
}
/* line 663, ../sass/style.scss */
.tickets iframe {
  margin: 0 50px;
  width: calc(100% - 100px);
}
@media (max-width: 992px) {
  /* line 663, ../sass/style.scss */
  .tickets iframe {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
}
/* line 672, ../sass/style.scss */
.tickets .row {
  margin: 0;
}
/* line 675, ../sass/style.scss */
.tickets .row .container-tickets {
  text-align: center;
  padding: 0 0 50px;
}
@media (max-width: 992px) {
  /* line 675, ../sass/style.scss */
  .tickets .row .container-tickets {
    padding: 30px 0;
  }
}
/* line 683, ../sass/style.scss */
.tickets .row .container-share {
  padding: 0 50px;
  background: #222 url(../gfx/share.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  border-left: 20px solid #fff;
}
@media (max-width: 992px) {
  /* line 683, ../sass/style.scss */
  .tickets .row .container-share {
    padding: 50px 30px;
    border-left: 0;
  }
}
@media (max-width: 768px) {
  /* line 694, ../sass/style.scss */
  .tickets .row .container-share h2 {
    font-size: 25px;
  }
}
/* line 700, ../sass/style.scss */
.tickets .row .container-share h5 {
  font-weight: 500;
  text-transform: none;
}
@media (max-width: 768px) {
  /* line 700, ../sass/style.scss */
  .tickets .row .container-share h5 {
    font-size: 16px;
  }
}
/* line 708, ../sass/style.scss */
.tickets .row .container-share i {
  font-size: 30px;
  margin-right: 5px;
}
/* line 714, ../sass/style.scss */
.tickets .row .container-share .vtable .vcell {
  text-align: left;
}

/* line 722, ../sass/style.scss */
.form {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 992px) {
  /* line 722, ../sass/style.scss */
  .form {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  /* line 729, ../sass/style.scss */
  .form h2 {
    font-size: 30px;
  }
}
/* line 735, ../sass/style.scss */
.form .image-container {
  background: #444 url("../gfx/hero.jpg") no-repeat center;
  background-size: cover;
  opacity: 0.05;
}
@media (max-width: 992px) {
  /* line 735, ../sass/style.scss */
  .form .image-container {
    background: #444;
  }
}
/* line 747, ../sass/style.scss */
.form .contains-form > div .field:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 16px;
  right: 20px;
}
/* line 758, ../sass/style.scss */
.form .contains-form > div:nth-child(1) .field:after {
  content: "\f007";
}
/* line 766, ../sass/style.scss */
.form .contains-form > div:nth-child(2) .field:after {
  content: "\f1fa";
}
/* line 774, ../sass/style.scss */
.form .contains-form > div:nth-child(3) .field:after {
  content: "\f036";
}
/* line 782, ../sass/style.scss */
.form .field {
  position: relative;
  display: block;
  width: 600px;
  margin: 10px auto 0;
}
@media (max-width: 992px) {
  /* line 782, ../sass/style.scss */
  .form .field {
    width: 100%;
  }
}
/* line 791, ../sass/style.scss */
.form .field i {
  position: absolute;
  top: 20px;
  right: 20px;
}
/* line 797, ../sass/style.scss */
.form .field input,
.form .field textarea {
  width: 600px;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 40px 15px 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 992px) {
  /* line 797, ../sass/style.scss */
  .form .field input,
  .form .field textarea {
    width: 100%;
  }
}
/* line 810, ../sass/style.scss */
.form .field input:focus,
.form .field textarea:focus {
  outline: none;
}
/* line 814, ../sass/style.scss */
.form .field input::placeholder,
.form .field textarea::placeholder {
  color: #fff;
  opacity: 1;
}
/* line 819, ../sass/style.scss */
.form .field input:-ms-input-placeholder,
.form .field textarea:-ms-input-placeholder {
  color: #fff;
}
/* line 823, ../sass/style.scss */
.form .field input::-ms-input-placeholder,
.form .field textarea::-ms-input-placeholder {
  color: #fff;
}
/* line 828, ../sass/style.scss */
.form .field textarea {
  min-height: 100px;
}
/* line 833, ../sass/style.scss */
.form .form-footer,
.form .submit {
  margin-top: 20px;
  position: relative;
  display: inline-block;
}
/* line 839, ../sass/style.scss */
.form .form-footer:after,
.form .submit:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  background: #ffde00;
  -webkit-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* line 859, ../sass/style.scss */
.form .form-footer:hover:after,
.form .submit:hover:after {
  right: 0;
}
/* line 864, ../sass/style.scss */
.form .form-footer button[type="submit"],
.form .form-footer input[type="submit"],
.form .submit button[type="submit"],
.form .submit input[type="submit"] {
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 0;
  transition: 0s;
  background: none;
  position: relative;
  z-index: 5;
  cursor: pointer;
  transition: 0.3s;
}
/* line 878, ../sass/style.scss */
.form .form-footer button[type="submit"]:hover,
.form .form-footer input[type="submit"]:hover,
.form .submit button[type="submit"]:hover,
.form .submit input[type="submit"]:hover {
  color: #222;
  border-color: #ffde00;
}
/* line 885, ../sass/style.scss */
.form button[type="reset"] {
  display: none;
}
/* line 890, ../sass/style.scss */
.form .form-question .card {
  background: none;
  border: 0;
}
/* line 894, ../sass/style.scss */
.form .form-question .card .field-label {
  display: none;
}

/* line 901, ../sass/style.scss */
.footer {
  padding: 20px;
}
@media (max-width: 992px) {
  /* line 901, ../sass/style.scss */
  .footer {
    float: left;
    width: 100%;
  }
  /* line 907, ../sass/style.scss */
  .footer.background-light {
    background: none;
  }
}
/* line 912, ../sass/style.scss */
.footer .left {
  float: left;
}
@media (max-width: 992px) {
  /* line 912, ../sass/style.scss */
  .footer .left {
    width: 100%;
    text-align: center;
  }
}
/* line 920, ../sass/style.scss */
.footer .right {
  float: right;
}
@media (max-width: 992px) {
  /* line 920, ../sass/style.scss */
  .footer .right {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
/* line 929, ../sass/style.scss */
.footer i {
  color: #444;
  font-size: 20px;
  margin-left: 5px;
}
/* line 937, ../sass/style.scss */
.footer a:hover i {
  color: #ffde00;
}

@media (max-width: 992px) {
  /* line 947, ../sass/style.scss */
  #programma .image,
  #seminar .image {
    display: none;
  }
}

@media (max-width: 992px) {
  /* line 955, ../sass/style.scss */
  #programma .padder {
    padding: 0 10px 30px;
  }
}

@media (max-width: 992px) {
  /* line 963, ../sass/style.scss */
  #seminar .padder {
    padding: 0 10px 10px;
  }
}

/* line 969, ../sass/style.scss */
.addthis_inline_share_toolbox {
  line-height: 0;
}
