@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,400i,500,500i,700,700i&display=swap);





body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.2rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.8rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.4rem;
    font-size: calc( 0.825rem + (0.5 - 0.825) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.825rem + (0.5 - 0.825) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #133996 !important;
}
.bg-success {
  background-color: #00c48c !important;
}
.bg-info {
  background-color: #fdece8 !important;
}
.bg-warning {
  background-color: #ffcf5c !important;
}
.bg-danger {
  background-color: #939bb4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #133996 !important;
  border-color: #133996 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fc643f !important;
  border-color: #fc643f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #eb3104 !important;
  border-color: #eb3104 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3104 !important;
  border-color: #eb3104 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
  color: #d43712 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #00c48c !important;
  border-color: #00c48c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
  color: #5c4100 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #133996;
  color: #133996;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #133996;
  border-color: #133996;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #133996 !important;
  border-color: #133996 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #fc643f;
  color: #fc643f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #fc643f;
  border-color: #fc643f;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc643f !important;
  border-color: #fc643f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #fdece8;
  color: #fdece8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d43712;
  background-color: #fdece8;
  border-color: #fdece8;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #d43712 !important;
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #00c48c;
  color: #00c48c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #00c48c;
  border-color: #00c48c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ffcf5c;
  color: #ffcf5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5c4100;
  background-color: #ffcf5c;
  border-color: #ffcf5c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5c4100 !important;
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #939bb4;
  color: #939bb4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #939bb4;
  border-color: #939bb4;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #133996 !important;
}
.text-secondary {
  color: #fc643f !important;
}
.text-success {
  color: #00c48c !important;
}
.text-info {
  color: #fdece8 !important;
}
.text-warning {
  color: #ffcf5c !important;
}
.text-danger {
  color: #939bb4 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #08173b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #d22c03 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #005e43 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f59e8a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5ad00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #5c6685 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fdece8;
}
.alert-warning {
  background-color: #ffcf5c;
}
.alert-danger {
  background-color: #939bb4;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 10px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #133996;
  border-color: #133996;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #133996;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4272e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #44ffca;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dee1e8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
}
.form-control > .mbr-iconfont {
  font-size: 0.8rem;
  font-weight: 400;
}
blockquote {
  border-color: #133996;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #fc643f !important;
  border-color: #fc643f !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #fc643f !important;
  -webkit-box-shadow: 0 6px 16px 0 #fc643f !important;
  background-color: #fc643f !important;
  border-color: #fc643f !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #00c48c !important;
  -webkit-box-shadow: 0 6px 16px 0 #00c48c !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #133996;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #133996;
  border-bottom-color: #133996;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #133996 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #fc643f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23133996' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sqeE3kceL1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f2f6ff, #f2f6ff);
}
.cid-sqeE3kceL1 a {
  text-align: center;
}
.cid-sqeE3kceL1 p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sqeE3kceL1 span {
  font-size: 2rem;
}
.cid-sqeE3kceL1 .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sqeE3kceL1 .socicon-twitter {
  color: #4da7de;
}
.cid-sqeE3kceL1 .socicon-facebook {
  color: #3e5b98;
}
.cid-sqeE3kceL1 .socicon-googleplus {
  color: #dd4b39;
}
.cid-sqeE3kceL1 .socicon-instagram {
  color: #3f729b;
}
.cid-sqeE3kceL1 .social-list a:focus {
  text-decoration: none;
}
.cid-sqeE3kceL1 .text-copyright {
  width: 100%;
}
.cid-sqeE3kceL1 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sqeE3kceL1 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sqeE3kceL1 .logo-footer {
  line-height: normal;
}
.cid-sqeE3kceL1 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeE3kceL1 .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqeE3kceL1 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeE3kceL1 .media-container-row a {
  margin: 0 1rem;
}
.cid-sqek51Sjr0 {
  display: flex;
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpeg");
}
.cid-sqek51Sjr0 .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #ffffff);
}
.cid-sqek51Sjr0 .mbr-section-title {
  margin: 0;
}
.cid-sqek51Sjr0 .mbr-text {
  color: #efefef;
}
.cid-sqek51Sjr0 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqek51Sjr0 .card-img {
  text-align: left;
}
.cid-sqek51Sjr0 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sqek51Sjr0 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqek51Sjr0 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqek51Sjr0 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqek51Sjr0 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqek51Sjr0 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sqek51Sjr0 .mbr-section-subtitle,
.cid-sqek51Sjr0 .mbr-section-btn {
  text-align: center;
}
.cid-sqek51Sjr0 .title-cont,
.cid-sqek51Sjr0 .mbr-section-title {
  text-align: center;
}
.cid-sqeHyE7RBY {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f2f6ff, #f2f6ff);
}
.cid-sqeHyE7RBY a {
  text-align: center;
}
.cid-sqeHyE7RBY p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sqeHyE7RBY span {
  font-size: 2rem;
}
.cid-sqeHyE7RBY .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sqeHyE7RBY .socicon-twitter {
  color: #4da7de;
}
.cid-sqeHyE7RBY .socicon-facebook {
  color: #3e5b98;
}
.cid-sqeHyE7RBY .socicon-googleplus {
  color: #dd4b39;
}
.cid-sqeHyE7RBY .socicon-instagram {
  color: #3f729b;
}
.cid-sqeHyE7RBY .social-list a:focus {
  text-decoration: none;
}
.cid-sqeHyE7RBY .text-copyright {
  width: 100%;
}
.cid-sqeHyE7RBY .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sqeHyE7RBY .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sqeHyE7RBY .logo-footer {
  line-height: normal;
}
.cid-sqeHyE7RBY .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeHyE7RBY .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqeHyE7RBY .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeHyE7RBY .media-container-row a {
  margin: 0 1rem;
}
.cid-std7pSBba6 {
  display: flex;
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpeg");
}
.cid-std7pSBba6 .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #ffffff);
}
.cid-std7pSBba6 .mbr-section-title {
  margin: 0;
}
.cid-std7pSBba6 .mbr-text {
  color: #efefef;
}
.cid-std7pSBba6 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-std7pSBba6 .card-img {
  text-align: left;
}
.cid-std7pSBba6 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-std7pSBba6 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-std7pSBba6 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-std7pSBba6 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-std7pSBba6 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-std7pSBba6 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-std7pSBba6 .mbr-section-subtitle,
.cid-std7pSBba6 .mbr-section-btn {
  text-align: center;
}
.cid-std7pSBba6 .title-cont,
.cid-std7pSBba6 .mbr-section-title {
  text-align: center;
}
.cid-sqeMNX520q {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f2f6ff, #f2f6ff);
}
.cid-sqeMNX520q a {
  text-align: center;
}
.cid-sqeMNX520q p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sqeMNX520q span {
  font-size: 2rem;
}
.cid-sqeMNX520q .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sqeMNX520q .socicon-twitter {
  color: #4da7de;
}
.cid-sqeMNX520q .socicon-facebook {
  color: #3e5b98;
}
.cid-sqeMNX520q .socicon-googleplus {
  color: #dd4b39;
}
.cid-sqeMNX520q .socicon-instagram {
  color: #3f729b;
}
.cid-sqeMNX520q .social-list a:focus {
  text-decoration: none;
}
.cid-sqeMNX520q .text-copyright {
  width: 100%;
}
.cid-sqeMNX520q .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sqeMNX520q .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sqeMNX520q .logo-footer {
  line-height: normal;
}
.cid-sqeMNX520q .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeMNX520q .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqeMNX520q .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeMNX520q .media-container-row a {
  margin: 0 1rem;
}
.cid-sqeKGjojQX {
  display: flex;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpg");
}
.cid-sqeKGjojQX .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sqeKGjojQX .mbr-section-title {
  margin: 0;
}
.cid-sqeKGjojQX .mbr-text {
  color: #efefef;
}
.cid-sqeKGjojQX .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqeKGjojQX .card-img {
  text-align: left;
}
.cid-sqeKGjojQX .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sqeKGjojQX .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqeKGjojQX .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeKGjojQX .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqeKGjojQX .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqeKGjojQX .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sqeKGjojQX .mbr-section-subtitle,
.cid-sqeKGjojQX .mbr-section-btn {
  text-align: center;
}
.cid-sqeKGjojQX .title-cont,
.cid-sqeKGjojQX .mbr-section-title {
  text-align: center;
}
.cid-sqeMQutJoN {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f2f6ff, #f2f6ff);
}
.cid-sqeMQutJoN a {
  text-align: center;
}
.cid-sqeMQutJoN p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sqeMQutJoN span {
  font-size: 2rem;
}
.cid-sqeMQutJoN .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sqeMQutJoN .socicon-twitter {
  color: #4da7de;
}
.cid-sqeMQutJoN .socicon-facebook {
  color: #3e5b98;
}
.cid-sqeMQutJoN .socicon-googleplus {
  color: #dd4b39;
}
.cid-sqeMQutJoN .socicon-instagram {
  color: #3f729b;
}
.cid-sqeMQutJoN .social-list a:focus {
  text-decoration: none;
}
.cid-sqeMQutJoN .text-copyright {
  width: 100%;
}
.cid-sqeMQutJoN .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sqeMQutJoN .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sqeMQutJoN .logo-footer {
  line-height: normal;
}
.cid-sqeMQutJoN .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeMQutJoN .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqeMQutJoN .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeMQutJoN .media-container-row a {
  margin: 0 1rem;
}
.cid-sqeL0PqAT1 {
  display: flex;
  background-image: url("../../../assets/images/nena-licht-ist-ihr-18-studioalbum-920x517.jpeg");
}
.cid-sqeL0PqAT1 .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sqeL0PqAT1 .mbr-section-title {
  margin: 0;
}
.cid-sqeL0PqAT1 .mbr-text {
  color: #efefef;
}
.cid-sqeL0PqAT1 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqeL0PqAT1 .card-img {
  text-align: left;
}
.cid-sqeL0PqAT1 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sqeL0PqAT1 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqeL0PqAT1 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqeL0PqAT1 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqeL0PqAT1 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqeL0PqAT1 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sqeL0PqAT1 .mbr-section-subtitle,
.cid-sqeL0PqAT1 .mbr-section-btn {
  text-align: center;
}
.cid-sqeL0PqAT1 .title-cont,
.cid-sqeL0PqAT1 .mbr-section-title {
  text-align: center;
}
.cid-std8r7EOYQ {
  display: flex;
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpeg");
}
.cid-std8r7EOYQ .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #ffffff);
}
.cid-std8r7EOYQ .mbr-section-title {
  margin: 0;
}
.cid-std8r7EOYQ .mbr-text {
  color: #efefef;
}
.cid-std8r7EOYQ .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-std8r7EOYQ .card-img {
  text-align: left;
}
.cid-std8r7EOYQ .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-std8r7EOYQ .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-std8r7EOYQ .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-std8r7EOYQ .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-std8r7EOYQ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-std8r7EOYQ .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-std8r7EOYQ .mbr-section-subtitle,
.cid-std8r7EOYQ .mbr-section-btn {
  text-align: center;
}
.cid-std8r7EOYQ .title-cont,
.cid-std8r7EOYQ .mbr-section-title {
  text-align: center;
}
.cid-std8dYDXu8 {
  display: flex;
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpeg");
}
.cid-std8dYDXu8 .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #ffffff);
}
.cid-std8dYDXu8 .mbr-section-title {
  margin: 0;
}
.cid-std8dYDXu8 .mbr-text {
  color: #efefef;
}
.cid-std8dYDXu8 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-std8dYDXu8 .card-img {
  text-align: left;
}
.cid-std8dYDXu8 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-std8dYDXu8 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-std8dYDXu8 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-std8dYDXu8 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-std8dYDXu8 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-std8dYDXu8 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-std8dYDXu8 .mbr-section-subtitle,
.cid-std8dYDXu8 .mbr-section-btn {
  text-align: center;
}
.cid-std8dYDXu8 .title-cont,
.cid-std8dYDXu8 .mbr-section-title {
  text-align: center;
}
.cid-sz4nSNoHbN {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f2f6ff, #f2f6ff);
}
.cid-sz4nSNoHbN a {
  text-align: center;
}
.cid-sz4nSNoHbN p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sz4nSNoHbN span {
  font-size: 2rem;
}
.cid-sz4nSNoHbN .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sz4nSNoHbN .socicon-twitter {
  color: #4da7de;
}
.cid-sz4nSNoHbN .socicon-facebook {
  color: #3e5b98;
}
.cid-sz4nSNoHbN .socicon-googleplus {
  color: #dd4b39;
}
.cid-sz4nSNoHbN .socicon-instagram {
  color: #3f729b;
}
.cid-sz4nSNoHbN .social-list a:focus {
  text-decoration: none;
}
.cid-sz4nSNoHbN .text-copyright {
  width: 100%;
}
.cid-sz4nSNoHbN .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sz4nSNoHbN .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sz4nSNoHbN .logo-footer {
  line-height: normal;
}
.cid-sz4nSNoHbN .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz4nSNoHbN .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sz4nSNoHbN .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz4nSNoHbN .media-container-row a {
  margin: 0 1rem;
}
.cid-sz4nSNWEtU {
  display: flex;
  background-image: url("../../../assets/images/snoop-dogg-performing-at-hovefestivalen-2012-1600x991.jpg");
}
.cid-sz4nSNWEtU .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sz4nSNWEtU .mbr-section-title {
  margin: 0;
}
.cid-sz4nSNWEtU .mbr-text {
  color: #efefef;
}
.cid-sz4nSNWEtU .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sz4nSNWEtU .card-img {
  text-align: left;
}
.cid-sz4nSNWEtU .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sz4nSNWEtU .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sz4nSNWEtU .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz4nSNWEtU .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sz4nSNWEtU .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz4nSNWEtU .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sz4nSNWEtU .mbr-section-subtitle,
.cid-sz4nSNWEtU .mbr-section-btn {
  text-align: center;
}
.cid-sz4nSNWEtU .title-cont,
.cid-sz4nSNWEtU .mbr-section-title {
  text-align: center;
}
