/*
@media only screen and (max-width: 980px) {}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 580px) {}
@media only screen and (max-width: 480px) {}
*/

/* new style, old html fix */

.main > div:first-of-type {
  margin-top: 0 !important;
}

.section-wrapper {
  margin-top: 0 !important;
}

/* columns */

section * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

section .row:before,
section .row:after {
  display: table;
  content: '';
  clear: both;
}

section .col {
  float: left;
  padding: 0 15px;
}

section .col-2 {
  width: 50%;
}

section .col-3 {
  width: 33.333%;
}

section .col-4 {
  width: 25%;
}

section .col.active {
  position: relative;
}

section .col.active:after {
  position: absolute;
  content: '';
  bottom: -60px;
  left: 10%;
  width: 0;
  height: 0;
  border-bottom: 20px solid rgb(238, 238, 238);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

@media only screen and (max-width: 580px) {
  section .row {
    margin-right: 0;
    margin-left: 0;
  }

  section .col {
    width: 100%;
    float: none;
    padding: 0;
  }

  section .col + .col {
    margin-top: 40px;
  }

  section .col.active:after {
    display: none;
  }
}

/* buttons / colors / backgrounds */

.bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: rgb(255, 255, 255);
}

.btn, .readmore > a, .main .pi-form-actions button {
  padding: 10px 30px;
  font-size: 16px;
  display: inline-block;
  background: transparent;
  text-shadow: none;
  border-radius: 0;
  color: black;
  font-weight: bold;
  border: 2px solid #141619;
  text-decoration: none;
}

.btn:hover, .readmore > a:hover, .main .pi-form-actions button:hover {
  text-decoration: none;
  background-color: #141619;
  color: white;
}

.bgr-blue,
.btn-blue {
  background-color: rgb(77, 120, 163);
  color: rgb(255, 255, 255);
}

.bgr-green,
.btn-green {
  background-color: rgb(45, 183, 158);
  color: rgb(255, 255, 255);
}

.bgr-dark-blue,
.btn-dark-blue {
  background-color: rgb(13, 65, 112);
  color: rgb(255, 255, 255);
}

.bgr-white .btn,
.bgr-white .picto,
.bgr-orange,
.btn-orange {
  background-color: rgb(255, 143, 31);
  color: rgb(255, 255, 255);
}

.bgr-grey,
.btn-grey {
  background-color: rgb(238, 238, 238);
  color: rgb(34, 34, 34);
}

.btn-disabled {
  color: #CCC !important;
  border: 2px solid #CCC !important;
}

.btn-disabled:hover {
  background-color: #CCC !important;
  color: white !important;
  border: 2px solid #CCC !important;
  cursor: not-allowed;
  box-shadow: none;
}

.bgr-blue .btn {
  background-color: rgb(255, 255, 255);
  color: rgb(77, 120, 163);
}

.bgr-green .btn {
  background-color: rgb(255, 255, 255);
  color: rgb(45, 183, 158);
}

.bgr-orange .btn {
  background-color: rgb(255, 255, 255);
  color: rgb(255, 143, 31);
}

.bgr-dark-blue .picto,
.bgr-dark-blue .btn {
  background-color: rgb(255, 255, 255);
  color: rgb(13, 65, 112);
}

.bgr-dark-blue .picto .symbol {
  -webkit-filter: invert(80%);
  filter: invert(80%);
}

.bgr-dark-blue .btn.chevron:after {
  border-top-color: rgb(13, 65, 112);
  border-right-color: rgb(13, 65, 112);
}

.bgr-white-and-blue .picto,
.bgr-white-and-blue .btn,
.bgr-grey .picto,
.bgr-grey .btn {
  background-color: rgb(13, 65, 112);
  color: rgb(255, 255, 255);
}

.btn.chevron {
  position: relative;
  padding-left: 45px;
}

.btn.chevron:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  top: 50%;
  left: 20px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  transform: translateY(-50%) rotate(45deg);
}

.btn.active.chevron:after {
  transform: translateY(-50%) rotate(135deg);
  margin-top: -2px;
}

.picto {
  width: 100px;
  height: 100px;
  display: inline-block;
  border-radius: 10px;
  position: relative;
}

.picto .symbol {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.bullet .symbol {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.75);
  -moz-transform: translate(-50%, -50%) scale(0.75);
  -ms-transform: translate(-50%, -50%) scale(0.75);
  -o-transform: translate(-50%, -50%) scale(0.75);
  transform: translate(-50%, -50%) scale(0.75);
}

.symbol {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-image: url(../img/large-icons.png);
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol {
    background-image: url(../img/large-icons_2.png);
  	background-size: 500px 200px;
  }
}

.symbol-heartbeat {
  background-position: -100px 0px;
}

.symbol-diamond {
  background-position: -150px 0px;
}

.symbol-phone {
  background-position: -200px 0px;
}

.symbol-speechbubble {
  background-position: -50px -100px;
}

.symbol-link {
  background-position: -200px -50px;
}

.symbol-chat {
  background-position: -150px -50px;
}

.symbol-network {
  background-position: -250px -50px;
}

.symbol-hierarchy-center {
  background-position: -200px -100px;
}

.symbol-hierarchy {
  background-position: -100px -50px;
}

.symbol-window {
  background-position: 0px -100px;
}

.symbol-bulb {
  background-position: 0px -50px;
}

.symbol-chart {
  background-position: -50px -50px;
}

.symbol-cloud {
  background-position: -100px -100px;
}

.symbol-checklist {
  background-position: -150px -100px;
}

.symbol-calendar {
  background-position: -400px -50px;
}

.symbol-target {
  background-position: -300px -100px;
}

.symbol-map-marker {
  background-position: -250px -100px;
}

.symbol-contact {
  background-position: -250px 0px;
}

.symbol-user {
  background-position: -300px 0px;
}

.symbol-bubble-info {
  background-position: -350px -100px;
}

.symbol-display {
  background-position: -300px -50px;
}

.symbol-database-config {
  background-position: -350px -50px;
}

.symbol-database-locked {
  background-position: -350px 0px;
}

.symbol-boxes {
  background-position: -400px -100px;
}

.symbol-mails {
  background-position: -401px 0px;
}

.symbol-dialog {
  background-position: -50px 1px;
}

.symbol-envelope {
  background-position: 0px 0px;
}

/* Added Icons Dez 2016 as inline svg */

.symbol-addons {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 2%29' stroke-linejoin='round'%3E%3Cpath d='M15.6057 22.9166667C18.6435333 22.9166667 21.1057 25.3806667 21.1057 28.4166667 21.1057 31.4526667 18.6435333 33.9166667 15.6057 33.9166667 12.5678667 33.9166667 10.1057 31.4526667 10.1057 28.4166667 10.1057 25.3806667 12.5678667 22.9166667 15.6057 22.9166667zM34.8547833 6.41666667C36.3727833 6.41666667 37.6047833 7.64683333 37.6047833 9.16666667 37.6047833 10.6865 36.3727833 11.9166667 34.8547833 11.9166667 33.3367833 11.9166667 32.1047833 10.6865 32.1047833 9.16666667 32.1047833 7.64683333 33.3367833 6.41666667 34.8547833 6.41666667z'/%3E%3Cpath d='M27.52145 28.4166667C27.52145 27.5605 27.4242833 26.7281667 27.2537833 25.9251667L30.1357833 24.2586667 26.4691167 17.908 23.6402833 19.58C22.4082833 18.4671667 21.2331167 17.6036667 19.3997833 17.0848333L19.3997833 13.75 12.06645 13.75 12.06645 17.083C10.2331167 17.6018333 8.92595 18.469 7.69395 19.5781667L4.76611667 17.908 1.08478333 24.2586667 3.95945 25.9251667C3.78711667 26.7281667 3.69178333 27.5623333 3.69178333 28.4166667 3.69178333 29.271 3.78161667 30.1051667 3.95578333 30.9081667L1.07011667 32.5746667 4.73495 38.9253333 7.69761667 37.2533333C8.92778333 38.368 10.23495 39.2296667 12.0682833 39.754L12.0682833 43.0833333 19.4016167 43.0833333 19.4016167 39.754C21.23495 39.2296667 22.41195 38.368 23.64395 37.2533333L26.50395 38.9253333 30.1541167 32.5746667 27.2647833 30.9081667C27.43345 30.1051667 27.52145 29.2728333 27.52145 28.4166667zM41.27145 9.16666667C41.27145 8.65516667 41.2036167 8.16016667 41.0917833 7.68166667L42.9141167 6.62933333 41.0807833 3.45583333 39.3207833 4.50816667C38.6002833 3.82616667 37.7331167 3.31283333 36.81645 3.01766667L36.81645.916666667 33.1497833.916666667 33.1497833 3.02133333C32.2331167 3.311 31.2357833 3.82433333 30.5152833 4.50816667L28.65445 3.45583333 26.8046167 6.62933333 28.62145 7.68166667C28.50595 8.16016667 28.4381167 8.65333333 28.4381167 9.16666667 28.4381167 9.68 28.50045 10.1731667 28.6177833 10.6516667L26.7881167 11.7058333 28.62145 14.8793333 30.5116167 13.8251667C31.2321167 14.5071667 32.2312833 15.0241667 33.14795 15.3156667L33.14795 17.4166667 36.8146167 17.4166667 36.8146167 15.3156667C37.7312833 15.026 38.6002833 14.509 39.3207833 13.8251667L41.11195 14.8793333 42.9287833 11.7058333 41.0991167 10.6516667C41.21095 10.175 41.27145 9.67816667 41.27145 9.16666667z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-addons {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 2%29' stroke-linejoin='round'%3E%3Cpath d='M15.6057 22.9166667C18.6435333 22.9166667 21.1057 25.3806667 21.1057 28.4166667 21.1057 31.4526667 18.6435333 33.9166667 15.6057 33.9166667 12.5678667 33.9166667 10.1057 31.4526667 10.1057 28.4166667 10.1057 25.3806667 12.5678667 22.9166667 15.6057 22.9166667zM34.8547833 6.41666667C36.3727833 6.41666667 37.6047833 7.64683333 37.6047833 9.16666667 37.6047833 10.6865 36.3727833 11.9166667 34.8547833 11.9166667 33.3367833 11.9166667 32.1047833 10.6865 32.1047833 9.16666667 32.1047833 7.64683333 33.3367833 6.41666667 34.8547833 6.41666667z'/%3E%3Cpath d='M27.52145 28.4166667C27.52145 27.5605 27.4242833 26.7281667 27.2537833 25.9251667L30.1357833 24.2586667 26.4691167 17.908 23.6402833 19.58C22.4082833 18.4671667 21.2331167 17.6036667 19.3997833 17.0848333L19.3997833 13.75 12.06645 13.75 12.06645 17.083C10.2331167 17.6018333 8.92595 18.469 7.69395 19.5781667L4.76611667 17.908 1.08478333 24.2586667 3.95945 25.9251667C3.78711667 26.7281667 3.69178333 27.5623333 3.69178333 28.4166667 3.69178333 29.271 3.78161667 30.1051667 3.95578333 30.9081667L1.07011667 32.5746667 4.73495 38.9253333 7.69761667 37.2533333C8.92778333 38.368 10.23495 39.2296667 12.0682833 39.754L12.0682833 43.0833333 19.4016167 43.0833333 19.4016167 39.754C21.23495 39.2296667 22.41195 38.368 23.64395 37.2533333L26.50395 38.9253333 30.1541167 32.5746667 27.2647833 30.9081667C27.43345 30.1051667 27.52145 29.2728333 27.52145 28.4166667zM41.27145 9.16666667C41.27145 8.65516667 41.2036167 8.16016667 41.0917833 7.68166667L42.9141167 6.62933333 41.0807833 3.45583333 39.3207833 4.50816667C38.6002833 3.82616667 37.7331167 3.31283333 36.81645 3.01766667L36.81645.916666667 33.1497833.916666667 33.1497833 3.02133333C32.2331167 3.311 31.2357833 3.82433333 30.5152833 4.50816667L28.65445 3.45583333 26.8046167 6.62933333 28.62145 7.68166667C28.50595 8.16016667 28.4381167 8.65333333 28.4381167 9.16666667 28.4381167 9.68 28.50045 10.1731667 28.6177833 10.6516667L26.7881167 11.7058333 28.62145 14.8793333 30.5116167 13.8251667C31.2321167 14.5071667 32.2312833 15.0241667 33.14795 15.3156667L33.14795 17.4166667 36.8146167 17.4166667 36.8146167 15.3156667C37.7312833 15.026 38.6002833 14.509 39.3207833 13.8251667L41.11195 14.8793333 42.9287833 11.7058333 41.0991167 10.6516667C41.21095 10.175 41.27145 9.67816667 41.27145 9.16666667z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-customer-analytics {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='1.864' d='M10.4688026,43.8011743 C12.5477532,47.7196119 17.9460055,45.2064071 17.9460055,45.2064071 L13.4048239,36.9380846 C13.4048239,36.9380846 8.86918359,39.8538494 10.4688026,43.8011743 M18.4502734,23.9191808 L12.2808421,16.804491 C12.2808421,16.804491 8.10539322,21.0761004 11.0534209,24.3776519 C14.1907799,27.2356419 18.4502734,23.9191808 18.4502734,23.9191808 M27.9491658,24.188486 C22.2913909,28.4927102 21.7003077,31.4960691 15.8993798,35.1908622 L20.755498,44.036001 C26.24426,40.9944362 28.3462998,40.2228628 32.805284,38.1131499 C38.069619,35.6279007 40.1421046,28.9949784 38.1610522,25.3318684 C36.5207963,22.2958947 31.9011113,21.1841953 27.9491658,24.188486 M20.9226638,22.1430709 L14.3237736,14.5354315 C14.3237736,14.5354315 20.4534915,8.62189889 23.9316469,5.10602142 C28.0350575,0.95275721 34.9230244,1.2341765 37.6669436,4.35588059 C39.9407669,6.9436335 39.4097156,11.7053971 35.2684386,14.4366552 C29.3382114,18.3485697 27.4070316,16.804491 20.9226638,22.1430709' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-customer-analytics {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='1.864' d='M10.4688026,43.8011743 C12.5477532,47.7196119 17.9460055,45.2064071 17.9460055,45.2064071 L13.4048239,36.9380846 C13.4048239,36.9380846 8.86918359,39.8538494 10.4688026,43.8011743 M18.4502734,23.9191808 L12.2808421,16.804491 C12.2808421,16.804491 8.10539322,21.0761004 11.0534209,24.3776519 C14.1907799,27.2356419 18.4502734,23.9191808 18.4502734,23.9191808 M27.9491658,24.188486 C22.2913909,28.4927102 21.7003077,31.4960691 15.8993798,35.1908622 L20.755498,44.036001 C26.24426,40.9944362 28.3462998,40.2228628 32.805284,38.1131499 C38.069619,35.6279007 40.1421046,28.9949784 38.1610522,25.3318684 C36.5207963,22.2958947 31.9011113,21.1841953 27.9491658,24.188486 M20.9226638,22.1430709 L14.3237736,14.5354315 C14.3237736,14.5354315 20.4534915,8.62189889 23.9316469,5.10602142 C28.0350575,0.95275721 34.9230244,1.2341765 37.6669436,4.35588059 C39.9407669,6.9436335 39.4097156,11.7053971 35.2684386,14.4366552 C29.3382114,18.3485697 27.4070316,16.804491 20.9226638,22.1430709' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-dashboard {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='%23FFFFFF' fill-rule='evenodd' transform='translate%282 2%29'%3E%3Cpath d='M18.4085,11 C18.4085,12.0083333 17.5835,12.8333333 16.5751667,12.8333333 C15.5668333,12.8333333 14.7418333,12.0083333 14.7418333,11 C14.7418333,9.99166667 15.5668333,9.16666667 16.5751667,9.16666667 C17.5835,9.16666667 18.4085,9.99166667 18.4085,11 Z M11.0751667,12.8333333 C10.0668333,12.8333333 9.24183333,13.6583333 9.24183333,14.6666667 C9.24183333,15.675 10.0668333,16.5 11.0751667,16.5 C12.0835,16.5 12.9085,15.675 12.9085,14.6666667 C12.9085,13.6583333 12.0835,12.8333333 11.0751667,12.8333333 Z M22.0751667,11 C23.0835,11 23.9085,10.175 23.9085,9.16666667 C23.9085,8.15833333 23.0835,7.33333333 22.0751667,7.33333333 C21.0668333,7.33333333 20.2418333,8.15833333 20.2418333,9.16666667 C20.2418333,10.175 21.0668333,11 22.0751667,11 Z M27.0948333,15.0828333 C26.9078333,14.993 26.6383333,15.0901667 26.4971667,15.2973333 L21.4665,22.6453333 C19.8751667,22.913 18.6596667,24.2916667 18.6596667,25.9618333 C18.6596667,27.8245 20.1703333,29.3351667 22.0311667,29.3351667 C23.892,29.3351667 25.4026667,27.8245 25.4026667,25.9618333 C25.4026667,25.2285 25.1606667,24.552 24.761,23.9983333 L27.3001667,15.686 C27.3735,15.4421667 27.2818333,15.1708333 27.0948333,15.0828333 Z M9.24183333,18.3333333 C8.2335,18.3333333 7.4085,19.1583333 7.4085,20.1666667 C7.4085,21.175 8.2335,22 9.24183333,22 C10.2501667,22 11.0751667,21.175 11.0751667,20.1666667 C11.0751667,19.1583333 10.2501667,18.3333333 9.24183333,18.3333333 Z M43.67,21.9615 C43.67,33.8891667 33.9661667,43.593 22.0385,43.593 C10.1108333,43.593 0.405166667,33.8891667 0.405166667,21.9615 C0.405166667,10.0338333 10.109,0.33 22.0385,0.33 C33.9661667,0.331833333 43.67,10.0356667 43.67,21.9615 Z M41.1918333,21.9616197 C41.1918333,11.4004051 32.5977615,2.80840617 22.0386198,2.80840617 C11.4774051,2.80840617 2.88333333,11.402478 2.88333333,21.9616197 C2.88333333,32.5207615 11.4753323,41.1127605 22.0386198,41.1127605 C32.5977615,41.1148333 41.1918333,32.5228344 41.1918333,21.9616197 Z M34.9085,18.3333333 C33.9001667,18.3333333 33.0751667,19.1583333 33.0751667,20.1666667 C33.0751667,21.175 33.9001667,22 34.9085,22 C35.9168333,22 36.7418333,21.175 36.7418333,20.1666667 C36.7418333,19.1583333 35.9168333,18.3333333 34.9085,18.3333333 Z M34.9085,14.6666667 C34.9085,13.6583333 34.0835,12.8333333 33.0751667,12.8333333 C32.0668333,12.8333333 31.2418333,13.6583333 31.2418333,14.6666667 C31.2418333,15.675 32.0668333,16.5 33.0751667,16.5 C34.0835,16.5 34.9085,15.675 34.9085,14.6666667 Z M27.5751667,9.16666667 C26.5668333,9.16666667 25.7418333,9.99166667 25.7418333,11 C25.7418333,12.0083333 26.5668333,12.8333333 27.5751667,12.8333333 C28.5835,12.8333333 29.4085,12.0083333 29.4085,11 C29.4085,9.99166667 28.5835,9.16666667 27.5751667,9.16666667 Z'/%3E%3Cpath d='M27.0783333,31.1666667 C25.7711667,32.4353333 23.9928333,33.2255 22.0293333,33.2255 C20.0658333,33.2255 18.2875,32.4353333 16.9803333,31.1666667 L9.74783333,31.1666667 C12.5565,34.9048333 17.0115,37.3376667 22.0366667,37.3376667 C27.06,37.3376667 31.5168333,34.9048333 34.3236667,31.1666667 L27.0783333,31.1666667 Z' opacity='.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-dashboard {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='%23FFFFFF' fill-rule='evenodd' transform='translate%282 2%29'%3E%3Cpath d='M18.4085,11 C18.4085,12.0083333 17.5835,12.8333333 16.5751667,12.8333333 C15.5668333,12.8333333 14.7418333,12.0083333 14.7418333,11 C14.7418333,9.99166667 15.5668333,9.16666667 16.5751667,9.16666667 C17.5835,9.16666667 18.4085,9.99166667 18.4085,11 Z M11.0751667,12.8333333 C10.0668333,12.8333333 9.24183333,13.6583333 9.24183333,14.6666667 C9.24183333,15.675 10.0668333,16.5 11.0751667,16.5 C12.0835,16.5 12.9085,15.675 12.9085,14.6666667 C12.9085,13.6583333 12.0835,12.8333333 11.0751667,12.8333333 Z M22.0751667,11 C23.0835,11 23.9085,10.175 23.9085,9.16666667 C23.9085,8.15833333 23.0835,7.33333333 22.0751667,7.33333333 C21.0668333,7.33333333 20.2418333,8.15833333 20.2418333,9.16666667 C20.2418333,10.175 21.0668333,11 22.0751667,11 Z M27.0948333,15.0828333 C26.9078333,14.993 26.6383333,15.0901667 26.4971667,15.2973333 L21.4665,22.6453333 C19.8751667,22.913 18.6596667,24.2916667 18.6596667,25.9618333 C18.6596667,27.8245 20.1703333,29.3351667 22.0311667,29.3351667 C23.892,29.3351667 25.4026667,27.8245 25.4026667,25.9618333 C25.4026667,25.2285 25.1606667,24.552 24.761,23.9983333 L27.3001667,15.686 C27.3735,15.4421667 27.2818333,15.1708333 27.0948333,15.0828333 Z M9.24183333,18.3333333 C8.2335,18.3333333 7.4085,19.1583333 7.4085,20.1666667 C7.4085,21.175 8.2335,22 9.24183333,22 C10.2501667,22 11.0751667,21.175 11.0751667,20.1666667 C11.0751667,19.1583333 10.2501667,18.3333333 9.24183333,18.3333333 Z M43.67,21.9615 C43.67,33.8891667 33.9661667,43.593 22.0385,43.593 C10.1108333,43.593 0.405166667,33.8891667 0.405166667,21.9615 C0.405166667,10.0338333 10.109,0.33 22.0385,0.33 C33.9661667,0.331833333 43.67,10.0356667 43.67,21.9615 Z M41.1918333,21.9616197 C41.1918333,11.4004051 32.5977615,2.80840617 22.0386198,2.80840617 C11.4774051,2.80840617 2.88333333,11.402478 2.88333333,21.9616197 C2.88333333,32.5207615 11.4753323,41.1127605 22.0386198,41.1127605 C32.5977615,41.1148333 41.1918333,32.5228344 41.1918333,21.9616197 Z M34.9085,18.3333333 C33.9001667,18.3333333 33.0751667,19.1583333 33.0751667,20.1666667 C33.0751667,21.175 33.9001667,22 34.9085,22 C35.9168333,22 36.7418333,21.175 36.7418333,20.1666667 C36.7418333,19.1583333 35.9168333,18.3333333 34.9085,18.3333333 Z M34.9085,14.6666667 C34.9085,13.6583333 34.0835,12.8333333 33.0751667,12.8333333 C32.0668333,12.8333333 31.2418333,13.6583333 31.2418333,14.6666667 C31.2418333,15.675 32.0668333,16.5 33.0751667,16.5 C34.0835,16.5 34.9085,15.675 34.9085,14.6666667 Z M27.5751667,9.16666667 C26.5668333,9.16666667 25.7418333,9.99166667 25.7418333,11 C25.7418333,12.0083333 26.5668333,12.8333333 27.5751667,12.8333333 C28.5835,12.8333333 29.4085,12.0083333 29.4085,11 C29.4085,9.99166667 28.5835,9.16666667 27.5751667,9.16666667 Z'/%3E%3Cpath d='M27.0783333,31.1666667 C25.7711667,32.4353333 23.9928333,33.2255 22.0293333,33.2255 C20.0658333,33.2255 18.2875,32.4353333 16.9803333,31.1666667 L9.74783333,31.1666667 C12.5565,34.9048333 17.0115,37.3376667 22.0366667,37.3376667 C27.06,37.3376667 31.5168333,34.9048333 34.3236667,31.1666667 L27.0783333,31.1666667 Z' opacity='.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-eintragsuebersicht {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 9%29' stroke-linejoin='round'%3E%3Cpath d='M0.916666667,0.911764706 L0.916666667,30.0882353 L8.25,30.0882353 L8.25,28.7205882 C8.25,26.9663529 9.69283333,25.5294118 11.4583333,25.5294118 C13.222,25.5294118 14.6666667,26.9663529 14.6666667,28.7205882 L14.6666667,30.0882353 L29.3333333,30.0882353 L29.3333333,28.7205882 C29.3333333,26.9663529 30.7761667,25.5294118 32.5416667,25.5294118 C34.3053333,25.5294118 35.75,26.9663529 35.75,28.7205882 L35.75,30.0882353 L43.0833333,30.0882353 L43.0833333,0.911764706 L0.916666667,0.911764706 Z'/%3E%3Cpath d='M12.8333333 6.38235294C14.8573333 6.38235294 16.5 8.01623529 16.5 10.0294118 16.5 12.0425882 14.8573333 13.6764706 12.8333333 13.6764706 10.8093333 13.6764706 9.16666667 12.0425882 9.16666667 10.0294118 9.16666667 8.01623529 10.8093333 6.38235294 12.8333333 6.38235294zM12.8333333 13.6764706C8.25 13.6764706 6.41666667 16.4117647 6.41666667 19.1470588L19.25 19.1470588C19.25 16.4117647 17.4166667 13.6764706 12.8333333 13.6764706zM23.8333333 19L38.5 19M23.8333333 15L38.5 15M23.8333333 11L38.5 11M23.8333333 7L31.1666667 7'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-eintragsuebersicht {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 9%29' stroke-linejoin='round'%3E%3Cpath d='M0.916666667,0.911764706 L0.916666667,30.0882353 L8.25,30.0882353 L8.25,28.7205882 C8.25,26.9663529 9.69283333,25.5294118 11.4583333,25.5294118 C13.222,25.5294118 14.6666667,26.9663529 14.6666667,28.7205882 L14.6666667,30.0882353 L29.3333333,30.0882353 L29.3333333,28.7205882 C29.3333333,26.9663529 30.7761667,25.5294118 32.5416667,25.5294118 C34.3053333,25.5294118 35.75,26.9663529 35.75,28.7205882 L35.75,30.0882353 L43.0833333,30.0882353 L43.0833333,0.911764706 L0.916666667,0.911764706 Z'/%3E%3Cpath d='M12.8333333 6.38235294C14.8573333 6.38235294 16.5 8.01623529 16.5 10.0294118 16.5 12.0425882 14.8573333 13.6764706 12.8333333 13.6764706 10.8093333 13.6764706 9.16666667 12.0425882 9.16666667 10.0294118 9.16666667 8.01623529 10.8093333 6.38235294 12.8333333 6.38235294zM12.8333333 13.6764706C8.25 13.6764706 6.41666667 16.4117647 6.41666667 19.1470588L19.25 19.1470588C19.25 16.4117647 17.4166667 13.6764706 12.8333333 13.6764706zM23.8333333 19L38.5 19M23.8333333 15L38.5 15M23.8333333 11L38.5 11M23.8333333 7L31.1666667 7'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-geo-ip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%289 2%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28.09375,14.6666667 C28.09375,22.264 14.5,43.0833333 14.5,43.0833333 C14.5,43.0833333 0.90625,22.264 0.90625,14.6666667 C0.90625,7.073 6.9908125,0.916666667 14.5,0.916666667 C22.0091875,0.916666667 28.09375,7.073 28.09375,14.6666667 Z'/%3E%3Cpath d='M14.5,9.16666667 C17.5015,9.16666667 19.9375,11.6288333 19.9375,14.6666667 C19.9375,17.7045 17.5015,20.1666667 14.5,20.1666667 C11.4966875,20.1666667 9.0625,17.7045 9.0625,14.6666667 C9.0625,11.6288333 11.4966875,9.16666667 14.5,9.16666667 Z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-geo-ip {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%289 2%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28.09375,14.6666667 C28.09375,22.264 14.5,43.0833333 14.5,43.0833333 C14.5,43.0833333 0.90625,22.264 0.90625,14.6666667 C0.90625,7.073 6.9908125,0.916666667 14.5,0.916666667 C22.0091875,0.916666667 28.09375,7.073 28.09375,14.6666667 Z'/%3E%3Cpath d='M14.5,9.16666667 C17.5015,9.16666667 19.9375,11.6288333 19.9375,14.6666667 C19.9375,17.7045 17.5015,20.1666667 14.5,20.1666667 C11.4966875,20.1666667 9.0625,17.7045 9.0625,14.6666667 C9.0625,11.6288333 11.4966875,9.16666667 14.5,9.16666667 Z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-kontaktformular {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%285 3%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='37.345 21.353 21.621 21.353 16.379 26.529 16.379 21.353 7.207 21.353 7.207 .647 37.345 .647'/%3E%3Cg transform='translate%280 31.059%29'%3E%3Cpath d='M.655172414 0L12.4482759 0M.655172414 5.17647059L26.862069 5.17647059M.655172414 10.3529412L26.862069 10.3529412'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-kontaktformular {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%285 3%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='37.345 21.353 21.621 21.353 16.379 26.529 16.379 21.353 7.207 21.353 7.207 .647 37.345 .647'/%3E%3Cg transform='translate%280 31.059%29'%3E%3Cpath d='M.655172414 0L12.4482759 0M.655172414 5.17647059L26.862069 5.17647059M.655172414 10.3529412L26.862069 10.3529412'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-mailingstrecken {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='a' points='0 44 44 44 44 0 0 0'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate%282 1%29'%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' d='M43.0833333,40.3333333 C43.0833333,41.8513333 41.8531667,43.0833333 40.3333333,43.0833333 L3.66666667,43.0833333 C2.14683333,43.0833333 0.916666667,41.8513333 0.916666667,40.3333333 L0.916666667,18.3333333 C0.916666667,16.8153333 2.14683333,15.5833333 3.66666667,15.5833333 L40.3333333,15.5833333 C41.8531667,15.5833333 43.0833333,16.8153333 43.0833333,18.3333333 L43.0833333,40.3333333 Z' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cmask id='b' fill='white'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpolygon stroke='%23FFFFFF' stroke-width='2' points='30.25 28.417 37.583 28.417 37.583 21.083 30.25 21.083' stroke-linecap='round' stroke-linejoin='round' mask='url%28%23b%29'/%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' d='M8.25 22L11.9166667 22M8.25 33L24.75 33M8.25 37L30.25 37M4.58333333 11L39.4166667 11M8.25 7L35.75 7M11.9166667 3L32.0833333 3' stroke-linecap='round' stroke-linejoin='round' mask='url%28%23b%29'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-mailingstrecken {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='a' points='0 44 44 44 44 0 0 0'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate%282 1%29'%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' d='M43.0833333,40.3333333 C43.0833333,41.8513333 41.8531667,43.0833333 40.3333333,43.0833333 L3.66666667,43.0833333 C2.14683333,43.0833333 0.916666667,41.8513333 0.916666667,40.3333333 L0.916666667,18.3333333 C0.916666667,16.8153333 2.14683333,15.5833333 3.66666667,15.5833333 L40.3333333,15.5833333 C41.8531667,15.5833333 43.0833333,16.8153333 43.0833333,18.3333333 L43.0833333,40.3333333 Z' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cmask id='b' fill='white'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpolygon stroke='%23FFFFFF' stroke-width='2' points='30.25 28.417 37.583 28.417 37.583 21.083 30.25 21.083' stroke-linecap='round' stroke-linejoin='round' mask='url%28%23b%29'/%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' d='M8.25 22L11.9166667 22M8.25 33L24.75 33M8.25 37L30.25 37M4.58333333 11L39.4166667 11M8.25 7L35.75 7M11.9166667 3L32.0833333 3' stroke-linecap='round' stroke-linejoin='round' mask='url%28%23b%29'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-mailschedule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 4%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='0 14.014 6 23.014 13 15.014'/%3E%3Cpath d='M6.0118,23.0136 C4.4998,10.8456 13.8138,1.4116 24.3018,1.0256 C34.7858,0.6416 43.5998,8.8276 43.9858,19.3156 C44.3758,29.8016 36.1858,38.6176 25.6998,39.0016'/%3E%3Cpolyline points='25 10 25 21 35 21'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-mailschedule {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 4%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='0 14.014 6 23.014 13 15.014'/%3E%3Cpath d='M6.0118,23.0136 C4.4998,10.8456 13.8138,1.4116 24.3018,1.0256 C34.7858,0.6416 43.5998,8.8276 43.9858,19.3156 C44.3758,29.8016 36.1858,38.6176 25.6998,39.0016'/%3E%3Cpolyline points='25 10 25 21 35 21'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-newsletter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 9%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M43.0833333,25.375 C43.0833333,26.87575 41.8513333,28.09375 40.3333333,28.09375 L3.66666667,28.09375 C2.14866667,28.09375 0.916666667,26.87575 0.916666667,25.375 L0.916666667,3.625 C0.916666667,2.12425 2.14866667,0.90625 3.66666667,0.90625 L40.3333333,0.90625 C41.8513333,0.90625 43.0833333,2.12425 43.0833333,3.625 L43.0833333,25.375 Z'/%3E%3Cpolyline points='37.583 8.156 22 18.125 6.417 8.156'/%3E%3Cpath d='M6.41666667 21.75L12.8333333 18.125M37.5833333 21.75L31.1666667 18.125'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-newsletter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 9%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M43.0833333,25.375 C43.0833333,26.87575 41.8513333,28.09375 40.3333333,28.09375 L3.66666667,28.09375 C2.14866667,28.09375 0.916666667,26.87575 0.916666667,25.375 L0.916666667,3.625 C0.916666667,2.12425 2.14866667,0.90625 3.66666667,0.90625 L40.3333333,0.90625 C41.8513333,0.90625 43.0833333,2.12425 43.0833333,3.625 L43.0833333,25.375 Z'/%3E%3Cpolyline points='37.583 8.156 22 18.125 6.417 8.156'/%3E%3Cpath d='M6.41666667 21.75L12.8333333 18.125M37.5833333 21.75L31.1666667 18.125'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-plus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='1.818' d='M36.8125,16.6666667 L23.3333333,16.6666667 L23.3333333,3.1875 C23.3333333,1.42708333 21.84375,0 20,0 C18.15625,0 16.6666667,1.42708333 16.6666667,3.1875 L16.6666667,16.6666667 L3.1875,16.6666667 C1.42708333,16.6666667 0,18.15625 0,20 C0,21.84375 1.42708333,23.3333333 3.1875,23.3333333 L16.6666667,23.3333333 L16.6666667,36.8125 C16.6666667,38.5729167 18.15625,40 20,40 C21.84375,40 23.3333333,38.5729167 23.3333333,36.8125 L23.3333333,23.3333333 L36.8125,23.3333333 C38.5729167,23.3333333 40,21.84375 40,20 C40,18.15625 38.5729167,16.6666667 36.8125,16.6666667 Z' transform='translate%284 4%29'/%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-plus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='1.818' d='M36.8125,16.6666667 L23.3333333,16.6666667 L23.3333333,3.1875 C23.3333333,1.42708333 21.84375,0 20,0 C18.15625,0 16.6666667,1.42708333 16.6666667,3.1875 L16.6666667,16.6666667 L3.1875,16.6666667 C1.42708333,16.6666667 0,18.15625 0,20 C0,21.84375 1.42708333,23.3333333 3.1875,23.3333333 L16.6666667,23.3333333 L16.6666667,36.8125 C16.6666667,38.5729167 18.15625,40 20,40 C21.84375,40 23.3333333,38.5729167 23.3333333,36.8125 L23.3333333,23.3333333 L36.8125,23.3333333 C38.5729167,23.3333333 40,21.84375 40,20 C40,18.15625 38.5729167,16.6666667 36.8125,16.6666667 Z' transform='translate%284 4%29'/%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-sendgrid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M40.7587713,0.166486486 C40.6051622,0.166486486 40.4736851,0.187297297 40.342208,0.208108108 C40.3641209,0.270540541 40.3641209,0.332972973 40.3641209,0.374386486 L40.3641209,0.561891892 C40.3641209,0.728378378 40.3641209,0.978108108 40.3205143,1.24864865 C40.2764695,1.51898108 40.2326438,1.87297297 40.1449924,2.26837838 L40.0135153,2.26837838 L39.8601254,2.26837838 C39.2465657,2.26837838 38.6987445,2.37243243 38.2166619,2.60135135 C37.7564921,2.80945946 37.340148,3.10081081 37.0335873,3.47540541 C36.7046755,3.85 36.4636342,4.26621622 36.3100251,4.74486486 C36.1570735,5.22351351 36.0692029,5.70216216 36.0692029,6.22243243 C36.0692029,6.68027027 36.1787672,7.05507297 36.4198085,7.34621622 C36.6608498,7.63777568 37.0114553,7.78345135 37.493538,7.78345135 C37.7126664,7.78345135 37.9098821,7.76243243 38.1070977,7.7 C38.3043133,7.63777568 38.4796161,7.55432432 38.6549188,7.45027027 C38.8302216,7.34621622 38.9836115,7.24216216 39.1153078,7.09648649 C39.2465657,6.97162162 39.3561299,6.82594595 39.4656942,6.65945946 C39.4656942,6.7427027 39.4437813,6.82594595 39.4437813,6.9093973 L39.4437813,7.1172973 C39.4437813,7.26318108 39.4437813,7.36702703 39.4656942,7.45027027 C39.487607,7.51249459 39.487607,7.57513514 39.5095199,7.63777568 C39.7505612,7.67918919 39.9696896,7.7 40.1671244,7.7 C40.4079466,7.7 40.627075,7.67918919 40.8681164,7.63777568 L40.8681164,7.47108108 L40.8681164,7.28378378 C40.8681164,7.09648649 40.8681164,6.84696486 40.911942,6.51378378 C40.9557677,6.18081081 40.9995934,5.80621622 41.087464,5.36918919 L41.7884559,1.68567568 C41.8761073,1.24864865 41.9201521,0.894864865 41.8980201,0.603513514 C41.8980201,0.437027027 41.8980201,0.312162162 41.8541945,0.208108108 C41.6131531,0.166486486 41.372331,0.145883784 41.1748962,0.145883784 C41.0434191,0.145883784 40.911942,0.166486486 40.7587713,0.166486486 Z M39.925864,3.45459459 L39.7726932,4.32844054 C39.6409969,5.05681892 39.4218685,5.61891892 39.1370015,6.01432432 C38.8302216,6.43054054 38.5234418,6.61783784 38.1728362,6.61783784 C37.8224498,6.61783784 37.6469279,6.36810811 37.6469279,5.86864865 C37.6469279,5.63952162 37.6907536,5.39020811 37.7564921,5.09864865 C37.8441435,4.8072973 37.9537078,4.55756757 38.1070977,4.30783784 C38.2604876,4.07891892 38.4577032,3.87081081 38.6987445,3.70432432 C38.9397859,3.53783784 39.2246529,3.45459459 39.5752584,3.45459459 L39.7505612,3.45459459 L39.925864,3.45459459 Z M21.650769,0.166486486 C21.4971599,0.166486486 21.365902,0.187297297 21.2342058,0.208108108 C21.2563377,0.270540541 21.2563377,0.332972973 21.2563377,0.374386486 L21.2563377,0.561891892 C21.2563377,0.728378378 21.2342058,0.978108108 21.2125121,1.24864865 C21.1684672,1.51898108 21.1246415,1.87297297 21.0372093,2.26837838 L20.9055131,2.26837838 L20.7521231,2.26837838 C20.1385634,2.26837838 19.5907423,2.37243243 19.1086596,2.60135135 C18.6484899,2.80945946 18.2321458,3.10081081 17.9253659,3.47540541 C17.5966732,3.85 17.3554128,4.26621622 17.202242,4.74486486 C17.0488521,5.22351351 16.9612007,5.70216216 16.9612007,6.22243243 C16.9612007,6.68027027 17.0707649,7.05507297 17.3120254,7.34621622 C17.5309347,7.63777568 17.8815402,7.78345135 18.3636229,7.78345135 C18.5827513,7.78345135 18.7799669,7.76243243 18.9771826,7.7 C19.1743982,7.63777568 19.349701,7.55432432 19.5250037,7.45027027 C19.7003065,7.34621622 19.8536964,7.24216216 19.9851735,7.09648649 C20.1166506,6.97162162 20.226434,6.82594595 20.3357791,6.65945946 C20.3357791,6.7427027 20.3136471,6.82594595 20.3136471,6.9093973 L20.3136471,7.1172973 C20.3136471,7.26318108 20.3136471,7.36702703 20.3357791,7.45027027 C20.3576919,7.51249459 20.3576919,7.57513514 20.3798239,7.63777568 C20.6206461,7.67918919 20.8397745,7.7 21.0372093,7.7 C21.2782506,7.7 21.4971599,7.67918919 21.7382012,7.63777568 L21.7382012,7.47108108 L21.7382012,7.28378378 C21.7382012,7.09648649 21.7382012,6.84696486 21.7820269,6.51378378 C21.8258526,6.18081081 21.8696783,5.80621622 21.9573297,5.36918919 L22.6585408,1.68567568 C22.7461922,1.24864865 22.768105,0.894864865 22.790237,0.603513514 C22.790237,0.437027027 22.790237,0.312162162 22.7461922,0.208108108 C22.5049317,0.166486486 22.2858033,0.145883784 22.0668939,0.145883784 C21.9354169,0.145883784 21.8041589,0.166486486 21.650769,0.166486486 Z M20.7959488,3.45459459 L20.6425589,4.32844054 C20.5110818,5.05681892 20.2921725,5.61891892 20.0070864,6.01432432 C19.7003065,6.43054054 19.3937458,6.61783784 19.0429211,6.61783784 C18.6925347,6.61783784 18.5170128,6.36810811 18.5170128,5.86864865 C18.5170128,5.63952162 18.5606194,5.39020811 18.6267962,5.09864865 C18.7142284,4.8072973 18.8237926,4.55756757 18.9771826,4.30783784 C19.1305725,4.07891892 19.327569,3.87081081 19.5688294,3.70432432 C19.8098707,3.53783784 20.0947377,3.45459459 20.4455624,3.45459459 L20.6206461,3.45459459 L20.7959488,3.45459459 Z M25.5072109,0.582494595 C24.9815217,0.832432432 24.5211328,1.16540541 24.1486144,1.60243243 C23.7763151,2.03945946 23.4693161,2.53891892 23.2718814,3.12162162 C23.0748849,3.70432432 22.9653207,4.30783784 22.9653207,4.97399189 C22.9653207,5.39020811 23.0312783,5.74378378 23.1625363,6.09756757 C23.2940134,6.45135135 23.4910098,6.7427027 23.7541831,6.99222432 C24.0173564,7.24216216 24.34583,7.42945946 24.7402612,7.57513514 C25.1346925,7.7206027 25.5950814,7.78345135 26.1207706,7.78345135 C26.4713761,7.78345135 26.8438945,7.76243243 27.2383257,7.7206027 C27.6108441,7.65837838 27.9833625,7.59594595 28.2901424,7.49189189 L28.9694406,3.87081081 C28.8379636,3.82918919 28.7067056,3.80837838 28.5750094,3.80837838 C28.4435323,3.78756757 28.3341872,3.78756757 28.2022719,3.78756757 C28.0929268,3.78756757 27.9616688,3.80837838 27.8299726,3.80837838 C27.6984955,3.82918919 27.5672376,3.85 27.4136285,3.87081081 L26.9315459,6.43054054 C26.8658074,6.45135135 26.778156,6.47216216 26.6466789,6.47216216 C26.5371147,6.49297297 26.4275504,6.49297297 26.3179862,6.49297297 C25.8139907,6.49297297 25.4195595,6.36810811 25.1127796,6.11858649 C24.8059998,5.86864865 24.6526098,5.43162162 24.6526098,4.84891892 C24.6526098,4.45372162 24.6964355,4.03750541 24.8059998,3.64189189 C24.915564,3.22567568 25.0689539,2.87189189 25.2880824,2.55972973 C25.5072109,2.24735946 25.770165,1.97702703 26.1207706,1.78972973 C26.4492441,1.60243243 26.8658074,1.49837838 27.3481091,1.49837838 C27.5231928,1.49837838 27.7206275,1.51898108 27.8957111,1.54 C28.0929268,1.56081081 28.2901424,1.62324324 28.5092709,1.70648649 C28.6407479,1.47756757 28.7283993,1.29047838 28.7941379,1.10297297 C28.8598764,0.915675676 28.9258341,0.707567568 28.9694406,0.499459459 C28.6845736,0.395405405 28.4214003,0.312162162 28.1588844,0.270540541 C27.8957111,0.228918919 27.5889313,0.208108108 27.2602386,0.208108108 C26.624766,0.208108108 26.0331192,0.332972973 25.5072109,0.582494595 Z M2.80550175,0.395405405 C2.45489621,0.499459459 2.14811636,0.665945946 1.90729417,0.853243243 C1.66603373,1.04054054 1.46881811,1.29047838 1.33756016,1.58162162 C1.20586395,1.87297297 1.14034454,2.18513514 1.14034454,2.55972973 C1.14034454,2.93432432 1.27160249,3.2672973 1.53455665,3.53783784 C1.81942366,3.80837838 2.1700292,4.07891892 2.63019898,4.32844054 C2.78358891,4.41189189 2.91528512,4.49513514 3.04654307,4.55756757 C3.17802015,4.62 3.28758438,4.70303514 3.39714861,4.78648649 C3.4848,4.86972973 3.57245139,4.95297297 3.63818993,5.05681892 C3.68223475,5.16108108 3.72606044,5.26492703 3.72606044,5.41081081 C3.72606044,5.59810811 3.70392847,5.74378378 3.61627708,5.88945946 C3.52884482,6.03513514 3.41906146,6.13918919 3.28758438,6.24324324 C3.1561073,6.32669459 3.00271737,6.40972973 2.80550175,6.45135135 C2.63019898,6.49297297 2.41107051,6.51378378 2.19194205,6.51378378 C1.92920702,6.51378378 1.66603373,6.47216216 1.38116672,6.40972973 C1.09629972,6.3472973 0.811432711,6.26405405 0.548478551,6.16 C0.438914318,6.38891892 0.329350085,6.59702703 0.263611545,6.80513514 C0.197873005,7.01324324 0.132134465,7.22135135 0.110221619,7.42945946 C0.767826146,7.65837838 1.42499242,7.78345135 2.10429066,7.78345135 C2.69615665,7.78345135 3.19993299,7.7206027 3.61627708,7.57513514 C4.05453401,7.45027027 4.38322671,7.24216216 4.66831285,7.01324324 C4.95296072,6.78411622 5.15017634,6.49297297 5.28187255,6.18081081 C5.4131305,5.86864865 5.47886904,5.53567568 5.47886904,5.1821 C5.47886904,4.93216216 5.43526248,4.72405405 5.34739196,4.53675676 C5.25974058,4.34945946 5.1282635,4.18276486 4.97487357,4.03750541 C4.82148364,3.89182973 4.62426802,3.74594595 4.42705241,3.62108108 C4.20792394,3.47540541 3.98879547,3.35054054 3.74775416,3.22567568 C3.46310628,3.05918919 3.24375869,2.91351351 3.06845591,2.76783784 C2.89337227,2.62216216 2.80550175,2.43486486 2.80550175,2.20594595 C2.80550175,2.03945946 2.8274146,1.91459459 2.91528512,1.81054054 C2.98080453,1.70648649 3.09036876,1.62324324 3.19993299,1.56081081 C3.30971636,1.49837838 3.44097431,1.45675676 3.59436423,1.43594595 C3.74775416,1.41513514 3.87945037,1.41513514 4.01070832,1.41513514 C4.36131387,1.41513514 4.64618087,1.43594595 4.86552847,1.49837838 C5.08465693,1.56081081 5.3037854,1.62324324 5.50100102,1.7272973 C5.63225897,1.51898108 5.7418232,1.33189189 5.80756174,1.12378378 C5.87351941,0.915675676 5.91712598,0.728378378 5.93903882,0.561891892 C5.63225897,0.457837838 5.32547912,0.374386486 5.04061211,0.312162162 C4.7557451,0.24972973 4.40513956,0.228918919 4.01070832,0.228918919 C3.55053854,0.228918919 3.1561073,0.291351351 2.80550175,0.395405405 Z M7.95502071,2.4972973 C7.56058947,2.70540541 7.23189677,2.95534324 6.94702977,3.2672973 C6.68429474,3.57945946 6.46494714,3.95405405 6.31155722,4.34945946 C6.15816729,4.76567568 6.09242875,5.16108108 6.09242875,5.5772973 C6.09242875,5.91047838 6.15816729,6.20141351 6.24581868,6.47216216 C6.35538291,6.7427027 6.50877284,6.97162162 6.70598846,7.15891892 C6.90320407,7.34621622 7.16615823,7.49189189 7.47315722,7.59594595 C7.77971794,7.7 8.15223633,7.74162162 8.59049327,7.74162162 C8.72197035,7.74162162 8.87536027,7.74162162 9.05066304,7.7206027 C9.22618495,7.7206027 9.40126859,7.67918919 9.57657136,7.65837838 C9.75187414,7.63777568 9.92717691,7.59594595 10.0805668,7.55432432 C10.2339568,7.51249459 10.365653,7.47108108 10.4969109,7.40864865 C10.4969109,7.17972973 10.4749981,6.97162162 10.4313915,6.78411622 C10.3873467,6.57600811 10.2996953,6.43054054 10.1901311,6.28486486 C9.94908976,6.38891892 9.70804844,6.45135135 9.48891998,6.51378378 C9.26979151,6.57600811 9.00683735,6.59702703 8.72197035,6.59702703 C8.3713648,6.59702703 8.10841064,6.53459459 7.91119502,6.36810811 C7.7139794,6.20141351 7.60441517,5.97291081 7.56058947,5.63952162 L8.28371341,5.53567568 C8.61262524,5.47324324 8.94109881,5.41081081 9.26979151,5.30675676 C9.59870334,5.22351351 9.88335122,5.07783784 10.1243925,4.93216216 C10.365653,4.78648649 10.5626495,4.59918919 10.7160394,4.37027027 C10.8694293,4.14135135 10.9570807,3.89182973 10.9570807,3.51702703 C10.9570807,3.30891892 10.913255,3.12162162 10.8256036,2.95534324 C10.7379522,2.78864865 10.628388,2.64297297 10.4749981,2.53891892 C10.3216081,2.43486486 10.1463054,2.35162162 9.94908976,2.28918919 C9.75187414,2.22696486 9.53274567,2.20594595 9.29170436,2.20594595 C8.78770889,2.20594595 8.34945195,2.31 7.95502071,2.4972973 Z M7.82376276,4.20378378 C7.88928217,4.03750541 7.99884641,3.89182973 8.10841064,3.76654865 C8.21797487,3.64189189 8.34945195,3.53783784 8.50284188,3.45459459 C8.65623181,3.37135135 8.83175371,3.32972973 9.00683735,3.32972973 C9.13831443,3.32972973 9.26979151,3.37135135 9.3574429,3.45459459 C9.44531341,3.53783784 9.48891998,3.64189189 9.48891998,3.74594595 C9.48891998,3.82918919 9.48891998,3.91243243 9.44531341,3.99567568 C9.42318144,4.07891892 9.3574429,4.16216216 9.24787866,4.24561351 C9.13831443,4.30783784 9.00683735,4.39108108 8.83175371,4.45372162 C8.67814465,4.53675676 8.43710334,4.57837838 8.17414918,4.62 L7.62654714,4.70303514 C7.67037284,4.53675676 7.73589225,4.37027027 7.82376276,4.20378378 Z M14.7482223,2.35162162 C14.5727004,2.41405405 14.3971785,2.47648649 14.2220949,2.58054054 C14.0687049,2.66378378 13.9155341,2.78864865 13.7838379,2.91351351 C13.6523608,3.05918919 13.5430157,3.18384595 13.4551452,3.32972973 C13.4551452,3.22567568 13.4772772,3.16345135 13.4772772,3.10081081 L13.4772772,2.91351351 C13.4772772,2.76783784 13.4772772,2.66378378 13.4551452,2.58054054 C13.4332324,2.51810811 13.4332324,2.45546757 13.4111004,2.39324324 C13.2798424,2.37243243 13.1704973,2.37243243 13.060714,2.35162162 C12.9511497,2.33081081 12.8415855,2.33081081 12.7320213,2.33081081 C12.5128928,2.33081081 12.2718515,2.35162162 12.0308102,2.39324324 L12.0308102,2.55972973 L12.0308102,2.74702703 C12.0308102,2.93432432 12.0088973,3.18384595 11.9650716,3.51702703 C11.921246,3.85 11.8774203,4.22459459 11.789988,4.66162162 L11.1983411,7.65837838 C11.4391633,7.7 11.7021175,7.7206027 11.9431588,7.7206027 C12.1844192,7.7206027 12.4471543,7.7 12.7320213,7.65837838 L13.1264525,5.61891892 C13.2141039,5.16108108 13.3017553,4.78648649 13.4332324,4.51594595 C13.5430157,4.24561351 13.6742737,4.01648649 13.8057508,3.87081081 C13.9372278,3.70432432 14.0467921,3.60027027 14.1782692,3.55864865 C14.2878334,3.51702703 14.3971785,3.49621622 14.5069619,3.49621622 C14.6824838,3.49621622 14.8137417,3.53783784 14.9016122,3.62108108 C14.9890445,3.70432432 15.0328702,3.85 15.0328702,4.05810811 C15.0328702,4.18276486 15.0109573,4.30783784 14.9890445,4.45372162 L14.3971785,7.67918919 C14.6384389,7.7206027 14.9016122,7.74162162 15.1426535,7.74162162 C15.4053886,7.74162162 15.6685619,7.7206027 15.9312969,7.67918919 L16.5448566,4.32844054 C16.5667694,4.18276486 16.5667694,4.07891892 16.5884632,3.95405405 C16.5884632,3.82918919 16.6105951,3.72513514 16.6763337,3.62108108 C16.6763337,3.14243243 16.5667694,2.78864865 16.3259473,2.58054054 C16.0846868,2.37243243 15.7559941,2.26837838 15.3177372,2.26837838 C15.1207407,2.26837838 14.9452188,2.28918919 14.7482223,2.35162162 Z M29.8897802,2.37243243 C29.9119122,2.43486486 29.9119122,2.4972973 29.9119122,2.53891892 L29.9119122,2.72621622 C29.9119122,2.91351351 29.8897802,3.16345135 29.8459545,3.49621622 C29.8021288,3.82918919 29.7363903,4.20378378 29.6706517,4.64081081 L29.0790049,7.63777568 C29.3202653,7.67918919 29.5830003,7.7 29.8240417,7.7 C30.065083,7.7 30.3280371,7.67918919 30.6129041,7.63777568 L31.0073354,5.59810811 C31.073293,5.30675676 31.1390316,5.03642432 31.204551,4.78648649 C31.2702895,4.53675676 31.3579409,4.32844054 31.489418,4.16216216 C31.5989822,3.99567568 31.7523722,3.87081081 31.9495878,3.76654865 C32.1465843,3.6627027 32.3878447,3.62108108 32.6727117,3.62108108 C32.7603631,3.62108108 32.8261016,3.64189189 32.8701465,3.64189189 C32.913753,3.64189189 32.9575787,3.6627027 33.0014044,3.6627027 C33.0892749,3.51702703 33.1547943,3.35054054 33.1988392,3.14243243 C33.2424457,2.93432432 33.2645777,2.74702703 33.3081843,2.53891892 L33.3081843,2.45546757 C33.3081843,2.43486486 33.2862714,2.39324324 33.2862714,2.37243243 C33.1767072,2.35162162 33.0454492,2.33081081 32.8920593,2.33081081 C32.6946246,2.33081081 32.5193218,2.35162162 32.3657127,2.41405405 C32.2127611,2.47648649 32.0593711,2.53891892 31.9276749,2.64297297 C31.7961978,2.72621622 31.6866336,2.83027027 31.5770694,2.95534324 C31.4675051,3.05918919 31.3796346,3.18384595 31.3141152,3.30891892 C31.3141152,3.20486486 31.3360281,3.14243243 31.3360281,3.08 L31.3360281,2.8927027 C31.3360281,2.74702703 31.3360281,2.64297297 31.3141152,2.55972973 C31.2924215,2.4972973 31.2924215,2.43486486 31.2702895,2.37243243 C31.1390316,2.35162162 31.0292482,2.35162162 30.9199031,2.33081081 C30.8101198,2.31 30.7005555,2.31 30.5909913,2.31 C30.3718628,2.31 30.1310406,2.33081081 29.8897802,2.37243243 Z M33.8340926,2.39324324 C33.768354,2.55972973 33.7245284,2.72621622 33.6807027,2.87189189 C33.6587898,3.03837838 33.6370961,3.20486486 33.6370961,3.37135135 L33.6370961,3.43378378 L33.6370961,3.49621622 L34.3161752,3.49621622 L33.5492256,7.65837838 C33.8121797,7.7 34.0532211,7.7206027 34.2723495,7.7206027 C34.5133908,7.7206027 34.776345,7.7 35.0392992,7.65837838 L36.0036835,2.39324324 L33.8340926,2.39324324 Z'/%3E%3Cpath id='c' d='M0.833564686,0.0416216216 C0.680174759,0.0624324324 0.548478551,0.0832432432 0.417001471,0.104054054 C0.329350085,0.353991892 0.263611545,0.582494595 0.22000498,0.790810811 C0.175960158,1.01972973 0.175960158,1.24864865 0.175960158,1.47756757 C0.307437238,1.49837838 0.417001471,1.51898108 0.570391398,1.51898108 C0.701649349,1.54 0.833564686,1.54 0.942909791,1.54 C1.05269315,1.54 1.1839511,1.51898108 1.31542818,1.51898108 C1.44712439,1.51898108 1.57838234,1.49837838 1.70985942,1.47756757 C1.79751081,1.24864865 1.86324935,1.01972973 1.90685591,0.811621622 C1.95090074,0.582494595 1.97303271,0.353991892 1.99472643,0.104054054 C1.86324935,0.0624324324 1.73177227,0.0416216216 1.60051432,0.0416216216 C1.46881811,0.0208108108 1.33734103,0.0208108108 1.2277768,0.0208108108 C1.09629972,0.0208108108 0.986954612,0.0208108108 0.833564686,0.0416216216 Z'/%3E%3Cpath id='e' d='M0.197873005,0.478648649 C0.197873005,0.749189189 0.417001471,0.936486486 0.680174759,0.936486486 C1.00864833,0.936486486 1.20608308,0.749189189 1.1839511,0.457837838 C1.1839511,0.208108108 0.986954612,0.0208108108 0.723781324,0.0208108108 C0.395088625,0.0208108108 0.197873005,0.187297297 0.197873005,0.478648649 Z M0.351262932,0.478648649 C0.351262932,0.24972973 0.526565705,0.124864865 0.723781324,0.124864865 C0.920777816,0.124864865 1.07438687,0.24972973 1.07438687,0.478648649 C1.07438687,0.686756757 0.920777816,0.832432432 0.723781324,0.832432432 C0.504652858,0.832432432 0.351262932,0.707567568 0.351262932,0.478648649 Z M0.526565705,0.228918919 L0.526565705,0.312162162 L0.526565705,0.686756757 L0.680174759,0.686756757 L0.680174759,0.624324324 L0.680174759,0.52027027 L0.811432711,0.707567568 L0.811432711,0.728378378 L0.964822637,0.728378378 L0.789519864,0.541081081 C0.855258404,0.499459459 0.899084097,0.437027027 0.899084097,0.395405405 C0.899084097,0.291351351 0.811432711,0.228918919 0.701868478,0.228918919 L0.526565705,0.228918919 Z M0.680174759,0.291351351 C0.723781324,0.291351351 0.767607018,0.312162162 0.767607018,0.374386486 C0.767607018,0.437027027 0.723781324,0.457837838 0.680174759,0.457837838 L0.680174759,0.291351351 Z'/%3E%3Cpath id='g' d='M5.95317031,0.839189189 C3.72526208,2.08243243 1.53060621,5.00405405 0.533035358,6.49594595 L0.599540081,6.43378378 L0.167259379,7.08648649 C1.92963455,7.02401351 5.95317031,6.9 8.11457382,5.53243243 C10.6085009,3.76081081 10.1765528,1.92733784 9.94345371,1.33648649 C9.87728151,1.15 9.81044426,1.02567568 9.74393954,0.869959459 C9.61093009,0.714864865 9.47792065,0.590540541 9.31165884,0.528689189 C9.24548664,0.497297297 9.17864939,0.466216216 9.11214467,0.435135135 C9.07889231,0.404054054 9.01238758,0.404054054 8.97946775,0.372972973 C8.68019649,0.27972973 8.38092524,0.248648649 8.11457382,0.248648649 C7.41660675,0.248648649 6.65146991,0.466216216 5.95317031,0.839189189 Z'/%3E%3Cpath id='i' d='M2.02939163,1.64698649 C0.666044804,2.45540541 -0.430950607,4.32027027 0.167259379,5.81216216 C0.167259379,5.81216216 0.167259379,5.84293243 0.200511741,5.84293243 C0.267016464,5.99864865 0.333521188,6.12297297 0.400358435,6.27837838 C0.832306613,6.80706757 1.49735385,6.90031081 2.02939163,6.90031081 C2.72769123,6.93077027 3.52574791,6.7132027 4.19079514,6.30945946 C6.65146991,4.94189189 9.17864939,1.39864865 10.010291,0.0621621622 C7.74879784,0.124324324 4.09103806,0.404054054 2.02939163,1.64698649 Z'/%3E%3Cpath id='k' d='M10.1097155,3.10810811 C10.0764632,3.17027027 10.0099584,3.23243243 9.97670607,3.29459459 C9.94345371,3.32598649 9.94345371,3.35644595 9.91053387,3.38783784 C9.91053387,3.38783784 9.87694899,3.41891892 9.84369663,3.48108108 C9.61093009,3.88513514 8.61335924,5.40810811 7.28326478,6.96216216 C7.31651714,7.02432432 9.47792065,10.3810811 11.1741236,13.0232838 C11.2070435,13.0851351 11.2402958,13.1469865 11.3068005,13.2094595 C11.3400529,13.2716216 11.3733053,13.3340946 11.43981,13.3959459 C12.2608108,14.6652973 12.9318435,15.7099324 13.1396707,16.0515135 C14.0880281,14.9353919 14.8495072,13.7822838 15.2970839,13.0851351 L15.2970839,13.0540541 C15.3639212,12.9608108 15.396841,12.8986486 15.4300934,12.8364865 C15.4633457,12.8057162 15.4633457,12.7743243 15.4633457,12.7743243 C15.4633457,12.7432432 15.4965981,12.7121622 15.5298505,12.65 C15.5963552,12.5256757 15.7293646,12.3081081 15.9621312,11.9662162 C16.2614024,11.5307703 16.7269355,10.8162162 17.325478,10.0702703 C17.6580016,9.8527027 17.8907682,9.54189189 18.1235347,9.26185135 C16.2614024,8.67162162 14.2662607,8.11216216 12.5707228,7.55239189 C12.5371379,6.30945946 12.5038856,4.75509459 12.4706332,3.35644595 L12.4706332,3.17027027 L12.4706332,2.98378378 C12.4373808,1.77162162 12.4041285,0.714864865 12.3379563,0.0932432432 C11.43981,1.11891892 10.6417533,2.23783784 10.1097155,3.10810811 Z M3.72526208,10.1321216 C2.99371012,10.5054054 2.12914872,10.722973 1.3643444,10.722973 C0.898811336,10.722973 0.466530634,10.6297297 0.134007018,10.4743243 C0.100754656,10.4743243 0.0342499325,10.4429324 0.00099757085,10.4121622 C1.16483023,12.7743243 2.9272054,15.6030135 4.52331876,17.622973 C4.68958057,17.8094595 4.82259001,17.9959459 4.98885182,18.1824324 C5.62064669,18.8972973 6.55171282,19.2702703 7.64904076,19.2702703 C8.34734035,19.2702703 9.07889231,19.1148649 9.84369663,18.8040541 C11.0328011,18.2638649 12.1647115,17.1943649 13.1127363,16.0832162 L7.3497695,14.3594595 L7.01724588,14.2662162 L6.71797463,14.172973 L6.45195574,14.1108108 C6.68505479,12.0283784 7.11700297,7.64594595 7.28326478,6.99324324 C6.25244157,8.20540541 5.02210418,9.41756757 3.72526208,10.1321216 Z M13.1127363,16.0832162 L13.1689328,16.1 C13.1606197,16.0860135 13.150644,16.0698514 13.1396707,16.0515135 C13.1306926,16.0620811 13.1217144,16.0726486 13.1127363,16.0832162 Z'/%3E%3Cpath id='m' d='M3.32623374,0.714864865 C2.19565344,1.24324324 1.06507314,2.26891892 0.100754656,3.38783784 C0.300268826,3.72972973 0.998568421,4.81756757 1.82987746,6.15405405 C1.86346235,6.27837838 1.89638219,6.34054054 1.96288691,6.4027027 C1.99613927,6.46486486 2.02939163,6.52702703 2.06264399,6.58918919 C3.49249555,8.88918919 5.25487072,11.7175676 5.85341323,12.6807703 C6.85098408,11.5310811 8.11457382,10.2567568 9.41141592,9.51081081 C10.1429679,9.10675676 11.0407816,8.85810811 11.7723336,8.85810811 C12.0054327,8.85810811 12.2046143,8.88918919 12.4041285,8.92027027 C10.6750057,7.92567568 8.34734035,6.62027027 7.08375061,5.87432432 C7.11700297,5.59459459 7.18350769,5.28378378 7.21709258,4.97297297 C7.21709258,4.87972973 7.25001242,4.78648649 7.25001242,4.69324324 C7.25001242,4.6 7.28326478,4.50675676 7.28326478,4.41351351 C7.41627422,3.38783784 7.54961619,2.42432432 7.64904076,1.6472973 C7.91505965,1.95810811 8.18107854,2.3 8.44709744,2.67297297 C8.51360216,2.73513514 8.54685452,2.82837838 8.61335924,2.89022973 C8.67986397,2.9527027 8.71344885,3.04594595 8.77962105,3.10810811 C8.81287341,3.13918919 8.81287341,3.17027027 8.84612578,3.20135135 C10.0432108,4.84864865 12.4373808,8.92027027 12.4373808,8.92027027 L12.7033997,8.98243243 C12.8031568,9.01351351 12.9361663,9.07567568 13.0359233,9.10675676 C12.5707228,8.17401351 12.0054327,7.14864865 11.4068901,6.15405405 C10.6417533,4.87972973 9.7771919,3.57432432 8.9126305,2.42432432 C8.84612578,2.33108108 8.74636869,2.20675676 8.67986397,2.11351351 C8.4803498,1.86486486 8.31408799,1.6472973 8.11457382,1.39864865 C8.01481673,1.27432432 7.88180729,1.11891892 7.7820502,0.994594595 L7.74913036,0.963513514 C7.18350769,0.528378378 6.35253117,0.27972973 5.42146505,0.27972973 C4.65632821,0.27972973 3.89185641,0.435135135 3.32623374,0.714864865 Z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate%282 7%29'%3E%3Cg transform='translate%280 24.2%29'%3E%3Cg transform='translate%28.613 1.383%29'%3E%3Cmask id='b' fill='white'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.985 8.824 42.999 8.824 42.999 -.895 -.985 -.895' mask='url%28%23b%29'/%3E%3C/g%3E%3Cg transform='translate%2835.016 1.383%29'%3E%3Cmask id='d' fill='white'%3E%3Cuse xlink:href='%23c'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.92 2.581 3.09 2.581 3.09 -1.02 -.92 -1.02' mask='url%28%23d%29'/%3E%3C/g%3E%3Cg transform='translate%2842.685 1.591%29'%3E%3Cmask id='f' fill='white'%3E%3Cuse xlink:href='%23e'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.898 1.977 2.281 1.977 2.281 -1.02 -.898 -1.02' mask='url%28%23f%29'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate%288%29'%3E%3Cg transform='translate%2816.626 9.045%29'%3E%3Cmask id='h' fill='white'%3E%3Cuse xlink:href='%23g'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.495 8.641 11.79 8.641 11.79 -1.305 -1.495 -1.305' mask='url%28%23h%29'/%3E%3C/g%3E%3Cg transform='translate%280 6.869%29'%3E%3Cmask id='j' fill='white'%3E%3Cuse xlink:href='%23i'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.663 8.457 11.673 8.457 11.673 -1.492 -1.663 -1.492' mask='url%28%23j%29'/%3E%3C/g%3E%3Cg transform='translate%28.665 3.45%29'%3E%3Cmask id='l' fill='white'%3E%3Cuse xlink:href='%23k'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.662 20.824 19.786 20.824 19.786 -1.461 -1.662 -1.461' mask='url%28%23l%29'/%3E%3C/g%3E%3Cg transform='translate%2812.968 .031%29'%3E%3Cmask id='n' fill='white'%3E%3Cuse xlink:href='%23m'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.562 14.235 14.699 14.235 14.699 -1.274 -1.562 -1.274' mask='url%28%23n%29'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-sendgrid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M40.7587713,0.166486486 C40.6051622,0.166486486 40.4736851,0.187297297 40.342208,0.208108108 C40.3641209,0.270540541 40.3641209,0.332972973 40.3641209,0.374386486 L40.3641209,0.561891892 C40.3641209,0.728378378 40.3641209,0.978108108 40.3205143,1.24864865 C40.2764695,1.51898108 40.2326438,1.87297297 40.1449924,2.26837838 L40.0135153,2.26837838 L39.8601254,2.26837838 C39.2465657,2.26837838 38.6987445,2.37243243 38.2166619,2.60135135 C37.7564921,2.80945946 37.340148,3.10081081 37.0335873,3.47540541 C36.7046755,3.85 36.4636342,4.26621622 36.3100251,4.74486486 C36.1570735,5.22351351 36.0692029,5.70216216 36.0692029,6.22243243 C36.0692029,6.68027027 36.1787672,7.05507297 36.4198085,7.34621622 C36.6608498,7.63777568 37.0114553,7.78345135 37.493538,7.78345135 C37.7126664,7.78345135 37.9098821,7.76243243 38.1070977,7.7 C38.3043133,7.63777568 38.4796161,7.55432432 38.6549188,7.45027027 C38.8302216,7.34621622 38.9836115,7.24216216 39.1153078,7.09648649 C39.2465657,6.97162162 39.3561299,6.82594595 39.4656942,6.65945946 C39.4656942,6.7427027 39.4437813,6.82594595 39.4437813,6.9093973 L39.4437813,7.1172973 C39.4437813,7.26318108 39.4437813,7.36702703 39.4656942,7.45027027 C39.487607,7.51249459 39.487607,7.57513514 39.5095199,7.63777568 C39.7505612,7.67918919 39.9696896,7.7 40.1671244,7.7 C40.4079466,7.7 40.627075,7.67918919 40.8681164,7.63777568 L40.8681164,7.47108108 L40.8681164,7.28378378 C40.8681164,7.09648649 40.8681164,6.84696486 40.911942,6.51378378 C40.9557677,6.18081081 40.9995934,5.80621622 41.087464,5.36918919 L41.7884559,1.68567568 C41.8761073,1.24864865 41.9201521,0.894864865 41.8980201,0.603513514 C41.8980201,0.437027027 41.8980201,0.312162162 41.8541945,0.208108108 C41.6131531,0.166486486 41.372331,0.145883784 41.1748962,0.145883784 C41.0434191,0.145883784 40.911942,0.166486486 40.7587713,0.166486486 Z M39.925864,3.45459459 L39.7726932,4.32844054 C39.6409969,5.05681892 39.4218685,5.61891892 39.1370015,6.01432432 C38.8302216,6.43054054 38.5234418,6.61783784 38.1728362,6.61783784 C37.8224498,6.61783784 37.6469279,6.36810811 37.6469279,5.86864865 C37.6469279,5.63952162 37.6907536,5.39020811 37.7564921,5.09864865 C37.8441435,4.8072973 37.9537078,4.55756757 38.1070977,4.30783784 C38.2604876,4.07891892 38.4577032,3.87081081 38.6987445,3.70432432 C38.9397859,3.53783784 39.2246529,3.45459459 39.5752584,3.45459459 L39.7505612,3.45459459 L39.925864,3.45459459 Z M21.650769,0.166486486 C21.4971599,0.166486486 21.365902,0.187297297 21.2342058,0.208108108 C21.2563377,0.270540541 21.2563377,0.332972973 21.2563377,0.374386486 L21.2563377,0.561891892 C21.2563377,0.728378378 21.2342058,0.978108108 21.2125121,1.24864865 C21.1684672,1.51898108 21.1246415,1.87297297 21.0372093,2.26837838 L20.9055131,2.26837838 L20.7521231,2.26837838 C20.1385634,2.26837838 19.5907423,2.37243243 19.1086596,2.60135135 C18.6484899,2.80945946 18.2321458,3.10081081 17.9253659,3.47540541 C17.5966732,3.85 17.3554128,4.26621622 17.202242,4.74486486 C17.0488521,5.22351351 16.9612007,5.70216216 16.9612007,6.22243243 C16.9612007,6.68027027 17.0707649,7.05507297 17.3120254,7.34621622 C17.5309347,7.63777568 17.8815402,7.78345135 18.3636229,7.78345135 C18.5827513,7.78345135 18.7799669,7.76243243 18.9771826,7.7 C19.1743982,7.63777568 19.349701,7.55432432 19.5250037,7.45027027 C19.7003065,7.34621622 19.8536964,7.24216216 19.9851735,7.09648649 C20.1166506,6.97162162 20.226434,6.82594595 20.3357791,6.65945946 C20.3357791,6.7427027 20.3136471,6.82594595 20.3136471,6.9093973 L20.3136471,7.1172973 C20.3136471,7.26318108 20.3136471,7.36702703 20.3357791,7.45027027 C20.3576919,7.51249459 20.3576919,7.57513514 20.3798239,7.63777568 C20.6206461,7.67918919 20.8397745,7.7 21.0372093,7.7 C21.2782506,7.7 21.4971599,7.67918919 21.7382012,7.63777568 L21.7382012,7.47108108 L21.7382012,7.28378378 C21.7382012,7.09648649 21.7382012,6.84696486 21.7820269,6.51378378 C21.8258526,6.18081081 21.8696783,5.80621622 21.9573297,5.36918919 L22.6585408,1.68567568 C22.7461922,1.24864865 22.768105,0.894864865 22.790237,0.603513514 C22.790237,0.437027027 22.790237,0.312162162 22.7461922,0.208108108 C22.5049317,0.166486486 22.2858033,0.145883784 22.0668939,0.145883784 C21.9354169,0.145883784 21.8041589,0.166486486 21.650769,0.166486486 Z M20.7959488,3.45459459 L20.6425589,4.32844054 C20.5110818,5.05681892 20.2921725,5.61891892 20.0070864,6.01432432 C19.7003065,6.43054054 19.3937458,6.61783784 19.0429211,6.61783784 C18.6925347,6.61783784 18.5170128,6.36810811 18.5170128,5.86864865 C18.5170128,5.63952162 18.5606194,5.39020811 18.6267962,5.09864865 C18.7142284,4.8072973 18.8237926,4.55756757 18.9771826,4.30783784 C19.1305725,4.07891892 19.327569,3.87081081 19.5688294,3.70432432 C19.8098707,3.53783784 20.0947377,3.45459459 20.4455624,3.45459459 L20.6206461,3.45459459 L20.7959488,3.45459459 Z M25.5072109,0.582494595 C24.9815217,0.832432432 24.5211328,1.16540541 24.1486144,1.60243243 C23.7763151,2.03945946 23.4693161,2.53891892 23.2718814,3.12162162 C23.0748849,3.70432432 22.9653207,4.30783784 22.9653207,4.97399189 C22.9653207,5.39020811 23.0312783,5.74378378 23.1625363,6.09756757 C23.2940134,6.45135135 23.4910098,6.7427027 23.7541831,6.99222432 C24.0173564,7.24216216 24.34583,7.42945946 24.7402612,7.57513514 C25.1346925,7.7206027 25.5950814,7.78345135 26.1207706,7.78345135 C26.4713761,7.78345135 26.8438945,7.76243243 27.2383257,7.7206027 C27.6108441,7.65837838 27.9833625,7.59594595 28.2901424,7.49189189 L28.9694406,3.87081081 C28.8379636,3.82918919 28.7067056,3.80837838 28.5750094,3.80837838 C28.4435323,3.78756757 28.3341872,3.78756757 28.2022719,3.78756757 C28.0929268,3.78756757 27.9616688,3.80837838 27.8299726,3.80837838 C27.6984955,3.82918919 27.5672376,3.85 27.4136285,3.87081081 L26.9315459,6.43054054 C26.8658074,6.45135135 26.778156,6.47216216 26.6466789,6.47216216 C26.5371147,6.49297297 26.4275504,6.49297297 26.3179862,6.49297297 C25.8139907,6.49297297 25.4195595,6.36810811 25.1127796,6.11858649 C24.8059998,5.86864865 24.6526098,5.43162162 24.6526098,4.84891892 C24.6526098,4.45372162 24.6964355,4.03750541 24.8059998,3.64189189 C24.915564,3.22567568 25.0689539,2.87189189 25.2880824,2.55972973 C25.5072109,2.24735946 25.770165,1.97702703 26.1207706,1.78972973 C26.4492441,1.60243243 26.8658074,1.49837838 27.3481091,1.49837838 C27.5231928,1.49837838 27.7206275,1.51898108 27.8957111,1.54 C28.0929268,1.56081081 28.2901424,1.62324324 28.5092709,1.70648649 C28.6407479,1.47756757 28.7283993,1.29047838 28.7941379,1.10297297 C28.8598764,0.915675676 28.9258341,0.707567568 28.9694406,0.499459459 C28.6845736,0.395405405 28.4214003,0.312162162 28.1588844,0.270540541 C27.8957111,0.228918919 27.5889313,0.208108108 27.2602386,0.208108108 C26.624766,0.208108108 26.0331192,0.332972973 25.5072109,0.582494595 Z M2.80550175,0.395405405 C2.45489621,0.499459459 2.14811636,0.665945946 1.90729417,0.853243243 C1.66603373,1.04054054 1.46881811,1.29047838 1.33756016,1.58162162 C1.20586395,1.87297297 1.14034454,2.18513514 1.14034454,2.55972973 C1.14034454,2.93432432 1.27160249,3.2672973 1.53455665,3.53783784 C1.81942366,3.80837838 2.1700292,4.07891892 2.63019898,4.32844054 C2.78358891,4.41189189 2.91528512,4.49513514 3.04654307,4.55756757 C3.17802015,4.62 3.28758438,4.70303514 3.39714861,4.78648649 C3.4848,4.86972973 3.57245139,4.95297297 3.63818993,5.05681892 C3.68223475,5.16108108 3.72606044,5.26492703 3.72606044,5.41081081 C3.72606044,5.59810811 3.70392847,5.74378378 3.61627708,5.88945946 C3.52884482,6.03513514 3.41906146,6.13918919 3.28758438,6.24324324 C3.1561073,6.32669459 3.00271737,6.40972973 2.80550175,6.45135135 C2.63019898,6.49297297 2.41107051,6.51378378 2.19194205,6.51378378 C1.92920702,6.51378378 1.66603373,6.47216216 1.38116672,6.40972973 C1.09629972,6.3472973 0.811432711,6.26405405 0.548478551,6.16 C0.438914318,6.38891892 0.329350085,6.59702703 0.263611545,6.80513514 C0.197873005,7.01324324 0.132134465,7.22135135 0.110221619,7.42945946 C0.767826146,7.65837838 1.42499242,7.78345135 2.10429066,7.78345135 C2.69615665,7.78345135 3.19993299,7.7206027 3.61627708,7.57513514 C4.05453401,7.45027027 4.38322671,7.24216216 4.66831285,7.01324324 C4.95296072,6.78411622 5.15017634,6.49297297 5.28187255,6.18081081 C5.4131305,5.86864865 5.47886904,5.53567568 5.47886904,5.1821 C5.47886904,4.93216216 5.43526248,4.72405405 5.34739196,4.53675676 C5.25974058,4.34945946 5.1282635,4.18276486 4.97487357,4.03750541 C4.82148364,3.89182973 4.62426802,3.74594595 4.42705241,3.62108108 C4.20792394,3.47540541 3.98879547,3.35054054 3.74775416,3.22567568 C3.46310628,3.05918919 3.24375869,2.91351351 3.06845591,2.76783784 C2.89337227,2.62216216 2.80550175,2.43486486 2.80550175,2.20594595 C2.80550175,2.03945946 2.8274146,1.91459459 2.91528512,1.81054054 C2.98080453,1.70648649 3.09036876,1.62324324 3.19993299,1.56081081 C3.30971636,1.49837838 3.44097431,1.45675676 3.59436423,1.43594595 C3.74775416,1.41513514 3.87945037,1.41513514 4.01070832,1.41513514 C4.36131387,1.41513514 4.64618087,1.43594595 4.86552847,1.49837838 C5.08465693,1.56081081 5.3037854,1.62324324 5.50100102,1.7272973 C5.63225897,1.51898108 5.7418232,1.33189189 5.80756174,1.12378378 C5.87351941,0.915675676 5.91712598,0.728378378 5.93903882,0.561891892 C5.63225897,0.457837838 5.32547912,0.374386486 5.04061211,0.312162162 C4.7557451,0.24972973 4.40513956,0.228918919 4.01070832,0.228918919 C3.55053854,0.228918919 3.1561073,0.291351351 2.80550175,0.395405405 Z M7.95502071,2.4972973 C7.56058947,2.70540541 7.23189677,2.95534324 6.94702977,3.2672973 C6.68429474,3.57945946 6.46494714,3.95405405 6.31155722,4.34945946 C6.15816729,4.76567568 6.09242875,5.16108108 6.09242875,5.5772973 C6.09242875,5.91047838 6.15816729,6.20141351 6.24581868,6.47216216 C6.35538291,6.7427027 6.50877284,6.97162162 6.70598846,7.15891892 C6.90320407,7.34621622 7.16615823,7.49189189 7.47315722,7.59594595 C7.77971794,7.7 8.15223633,7.74162162 8.59049327,7.74162162 C8.72197035,7.74162162 8.87536027,7.74162162 9.05066304,7.7206027 C9.22618495,7.7206027 9.40126859,7.67918919 9.57657136,7.65837838 C9.75187414,7.63777568 9.92717691,7.59594595 10.0805668,7.55432432 C10.2339568,7.51249459 10.365653,7.47108108 10.4969109,7.40864865 C10.4969109,7.17972973 10.4749981,6.97162162 10.4313915,6.78411622 C10.3873467,6.57600811 10.2996953,6.43054054 10.1901311,6.28486486 C9.94908976,6.38891892 9.70804844,6.45135135 9.48891998,6.51378378 C9.26979151,6.57600811 9.00683735,6.59702703 8.72197035,6.59702703 C8.3713648,6.59702703 8.10841064,6.53459459 7.91119502,6.36810811 C7.7139794,6.20141351 7.60441517,5.97291081 7.56058947,5.63952162 L8.28371341,5.53567568 C8.61262524,5.47324324 8.94109881,5.41081081 9.26979151,5.30675676 C9.59870334,5.22351351 9.88335122,5.07783784 10.1243925,4.93216216 C10.365653,4.78648649 10.5626495,4.59918919 10.7160394,4.37027027 C10.8694293,4.14135135 10.9570807,3.89182973 10.9570807,3.51702703 C10.9570807,3.30891892 10.913255,3.12162162 10.8256036,2.95534324 C10.7379522,2.78864865 10.628388,2.64297297 10.4749981,2.53891892 C10.3216081,2.43486486 10.1463054,2.35162162 9.94908976,2.28918919 C9.75187414,2.22696486 9.53274567,2.20594595 9.29170436,2.20594595 C8.78770889,2.20594595 8.34945195,2.31 7.95502071,2.4972973 Z M7.82376276,4.20378378 C7.88928217,4.03750541 7.99884641,3.89182973 8.10841064,3.76654865 C8.21797487,3.64189189 8.34945195,3.53783784 8.50284188,3.45459459 C8.65623181,3.37135135 8.83175371,3.32972973 9.00683735,3.32972973 C9.13831443,3.32972973 9.26979151,3.37135135 9.3574429,3.45459459 C9.44531341,3.53783784 9.48891998,3.64189189 9.48891998,3.74594595 C9.48891998,3.82918919 9.48891998,3.91243243 9.44531341,3.99567568 C9.42318144,4.07891892 9.3574429,4.16216216 9.24787866,4.24561351 C9.13831443,4.30783784 9.00683735,4.39108108 8.83175371,4.45372162 C8.67814465,4.53675676 8.43710334,4.57837838 8.17414918,4.62 L7.62654714,4.70303514 C7.67037284,4.53675676 7.73589225,4.37027027 7.82376276,4.20378378 Z M14.7482223,2.35162162 C14.5727004,2.41405405 14.3971785,2.47648649 14.2220949,2.58054054 C14.0687049,2.66378378 13.9155341,2.78864865 13.7838379,2.91351351 C13.6523608,3.05918919 13.5430157,3.18384595 13.4551452,3.32972973 C13.4551452,3.22567568 13.4772772,3.16345135 13.4772772,3.10081081 L13.4772772,2.91351351 C13.4772772,2.76783784 13.4772772,2.66378378 13.4551452,2.58054054 C13.4332324,2.51810811 13.4332324,2.45546757 13.4111004,2.39324324 C13.2798424,2.37243243 13.1704973,2.37243243 13.060714,2.35162162 C12.9511497,2.33081081 12.8415855,2.33081081 12.7320213,2.33081081 C12.5128928,2.33081081 12.2718515,2.35162162 12.0308102,2.39324324 L12.0308102,2.55972973 L12.0308102,2.74702703 C12.0308102,2.93432432 12.0088973,3.18384595 11.9650716,3.51702703 C11.921246,3.85 11.8774203,4.22459459 11.789988,4.66162162 L11.1983411,7.65837838 C11.4391633,7.7 11.7021175,7.7206027 11.9431588,7.7206027 C12.1844192,7.7206027 12.4471543,7.7 12.7320213,7.65837838 L13.1264525,5.61891892 C13.2141039,5.16108108 13.3017553,4.78648649 13.4332324,4.51594595 C13.5430157,4.24561351 13.6742737,4.01648649 13.8057508,3.87081081 C13.9372278,3.70432432 14.0467921,3.60027027 14.1782692,3.55864865 C14.2878334,3.51702703 14.3971785,3.49621622 14.5069619,3.49621622 C14.6824838,3.49621622 14.8137417,3.53783784 14.9016122,3.62108108 C14.9890445,3.70432432 15.0328702,3.85 15.0328702,4.05810811 C15.0328702,4.18276486 15.0109573,4.30783784 14.9890445,4.45372162 L14.3971785,7.67918919 C14.6384389,7.7206027 14.9016122,7.74162162 15.1426535,7.74162162 C15.4053886,7.74162162 15.6685619,7.7206027 15.9312969,7.67918919 L16.5448566,4.32844054 C16.5667694,4.18276486 16.5667694,4.07891892 16.5884632,3.95405405 C16.5884632,3.82918919 16.6105951,3.72513514 16.6763337,3.62108108 C16.6763337,3.14243243 16.5667694,2.78864865 16.3259473,2.58054054 C16.0846868,2.37243243 15.7559941,2.26837838 15.3177372,2.26837838 C15.1207407,2.26837838 14.9452188,2.28918919 14.7482223,2.35162162 Z M29.8897802,2.37243243 C29.9119122,2.43486486 29.9119122,2.4972973 29.9119122,2.53891892 L29.9119122,2.72621622 C29.9119122,2.91351351 29.8897802,3.16345135 29.8459545,3.49621622 C29.8021288,3.82918919 29.7363903,4.20378378 29.6706517,4.64081081 L29.0790049,7.63777568 C29.3202653,7.67918919 29.5830003,7.7 29.8240417,7.7 C30.065083,7.7 30.3280371,7.67918919 30.6129041,7.63777568 L31.0073354,5.59810811 C31.073293,5.30675676 31.1390316,5.03642432 31.204551,4.78648649 C31.2702895,4.53675676 31.3579409,4.32844054 31.489418,4.16216216 C31.5989822,3.99567568 31.7523722,3.87081081 31.9495878,3.76654865 C32.1465843,3.6627027 32.3878447,3.62108108 32.6727117,3.62108108 C32.7603631,3.62108108 32.8261016,3.64189189 32.8701465,3.64189189 C32.913753,3.64189189 32.9575787,3.6627027 33.0014044,3.6627027 C33.0892749,3.51702703 33.1547943,3.35054054 33.1988392,3.14243243 C33.2424457,2.93432432 33.2645777,2.74702703 33.3081843,2.53891892 L33.3081843,2.45546757 C33.3081843,2.43486486 33.2862714,2.39324324 33.2862714,2.37243243 C33.1767072,2.35162162 33.0454492,2.33081081 32.8920593,2.33081081 C32.6946246,2.33081081 32.5193218,2.35162162 32.3657127,2.41405405 C32.2127611,2.47648649 32.0593711,2.53891892 31.9276749,2.64297297 C31.7961978,2.72621622 31.6866336,2.83027027 31.5770694,2.95534324 C31.4675051,3.05918919 31.3796346,3.18384595 31.3141152,3.30891892 C31.3141152,3.20486486 31.3360281,3.14243243 31.3360281,3.08 L31.3360281,2.8927027 C31.3360281,2.74702703 31.3360281,2.64297297 31.3141152,2.55972973 C31.2924215,2.4972973 31.2924215,2.43486486 31.2702895,2.37243243 C31.1390316,2.35162162 31.0292482,2.35162162 30.9199031,2.33081081 C30.8101198,2.31 30.7005555,2.31 30.5909913,2.31 C30.3718628,2.31 30.1310406,2.33081081 29.8897802,2.37243243 Z M33.8340926,2.39324324 C33.768354,2.55972973 33.7245284,2.72621622 33.6807027,2.87189189 C33.6587898,3.03837838 33.6370961,3.20486486 33.6370961,3.37135135 L33.6370961,3.43378378 L33.6370961,3.49621622 L34.3161752,3.49621622 L33.5492256,7.65837838 C33.8121797,7.7 34.0532211,7.7206027 34.2723495,7.7206027 C34.5133908,7.7206027 34.776345,7.7 35.0392992,7.65837838 L36.0036835,2.39324324 L33.8340926,2.39324324 Z'/%3E%3Cpath id='c' d='M0.833564686,0.0416216216 C0.680174759,0.0624324324 0.548478551,0.0832432432 0.417001471,0.104054054 C0.329350085,0.353991892 0.263611545,0.582494595 0.22000498,0.790810811 C0.175960158,1.01972973 0.175960158,1.24864865 0.175960158,1.47756757 C0.307437238,1.49837838 0.417001471,1.51898108 0.570391398,1.51898108 C0.701649349,1.54 0.833564686,1.54 0.942909791,1.54 C1.05269315,1.54 1.1839511,1.51898108 1.31542818,1.51898108 C1.44712439,1.51898108 1.57838234,1.49837838 1.70985942,1.47756757 C1.79751081,1.24864865 1.86324935,1.01972973 1.90685591,0.811621622 C1.95090074,0.582494595 1.97303271,0.353991892 1.99472643,0.104054054 C1.86324935,0.0624324324 1.73177227,0.0416216216 1.60051432,0.0416216216 C1.46881811,0.0208108108 1.33734103,0.0208108108 1.2277768,0.0208108108 C1.09629972,0.0208108108 0.986954612,0.0208108108 0.833564686,0.0416216216 Z'/%3E%3Cpath id='e' d='M0.197873005,0.478648649 C0.197873005,0.749189189 0.417001471,0.936486486 0.680174759,0.936486486 C1.00864833,0.936486486 1.20608308,0.749189189 1.1839511,0.457837838 C1.1839511,0.208108108 0.986954612,0.0208108108 0.723781324,0.0208108108 C0.395088625,0.0208108108 0.197873005,0.187297297 0.197873005,0.478648649 Z M0.351262932,0.478648649 C0.351262932,0.24972973 0.526565705,0.124864865 0.723781324,0.124864865 C0.920777816,0.124864865 1.07438687,0.24972973 1.07438687,0.478648649 C1.07438687,0.686756757 0.920777816,0.832432432 0.723781324,0.832432432 C0.504652858,0.832432432 0.351262932,0.707567568 0.351262932,0.478648649 Z M0.526565705,0.228918919 L0.526565705,0.312162162 L0.526565705,0.686756757 L0.680174759,0.686756757 L0.680174759,0.624324324 L0.680174759,0.52027027 L0.811432711,0.707567568 L0.811432711,0.728378378 L0.964822637,0.728378378 L0.789519864,0.541081081 C0.855258404,0.499459459 0.899084097,0.437027027 0.899084097,0.395405405 C0.899084097,0.291351351 0.811432711,0.228918919 0.701868478,0.228918919 L0.526565705,0.228918919 Z M0.680174759,0.291351351 C0.723781324,0.291351351 0.767607018,0.312162162 0.767607018,0.374386486 C0.767607018,0.437027027 0.723781324,0.457837838 0.680174759,0.457837838 L0.680174759,0.291351351 Z'/%3E%3Cpath id='g' d='M5.95317031,0.839189189 C3.72526208,2.08243243 1.53060621,5.00405405 0.533035358,6.49594595 L0.599540081,6.43378378 L0.167259379,7.08648649 C1.92963455,7.02401351 5.95317031,6.9 8.11457382,5.53243243 C10.6085009,3.76081081 10.1765528,1.92733784 9.94345371,1.33648649 C9.87728151,1.15 9.81044426,1.02567568 9.74393954,0.869959459 C9.61093009,0.714864865 9.47792065,0.590540541 9.31165884,0.528689189 C9.24548664,0.497297297 9.17864939,0.466216216 9.11214467,0.435135135 C9.07889231,0.404054054 9.01238758,0.404054054 8.97946775,0.372972973 C8.68019649,0.27972973 8.38092524,0.248648649 8.11457382,0.248648649 C7.41660675,0.248648649 6.65146991,0.466216216 5.95317031,0.839189189 Z'/%3E%3Cpath id='i' d='M2.02939163,1.64698649 C0.666044804,2.45540541 -0.430950607,4.32027027 0.167259379,5.81216216 C0.167259379,5.81216216 0.167259379,5.84293243 0.200511741,5.84293243 C0.267016464,5.99864865 0.333521188,6.12297297 0.400358435,6.27837838 C0.832306613,6.80706757 1.49735385,6.90031081 2.02939163,6.90031081 C2.72769123,6.93077027 3.52574791,6.7132027 4.19079514,6.30945946 C6.65146991,4.94189189 9.17864939,1.39864865 10.010291,0.0621621622 C7.74879784,0.124324324 4.09103806,0.404054054 2.02939163,1.64698649 Z'/%3E%3Cpath id='k' d='M10.1097155,3.10810811 C10.0764632,3.17027027 10.0099584,3.23243243 9.97670607,3.29459459 C9.94345371,3.32598649 9.94345371,3.35644595 9.91053387,3.38783784 C9.91053387,3.38783784 9.87694899,3.41891892 9.84369663,3.48108108 C9.61093009,3.88513514 8.61335924,5.40810811 7.28326478,6.96216216 C7.31651714,7.02432432 9.47792065,10.3810811 11.1741236,13.0232838 C11.2070435,13.0851351 11.2402958,13.1469865 11.3068005,13.2094595 C11.3400529,13.2716216 11.3733053,13.3340946 11.43981,13.3959459 C12.2608108,14.6652973 12.9318435,15.7099324 13.1396707,16.0515135 C14.0880281,14.9353919 14.8495072,13.7822838 15.2970839,13.0851351 L15.2970839,13.0540541 C15.3639212,12.9608108 15.396841,12.8986486 15.4300934,12.8364865 C15.4633457,12.8057162 15.4633457,12.7743243 15.4633457,12.7743243 C15.4633457,12.7432432 15.4965981,12.7121622 15.5298505,12.65 C15.5963552,12.5256757 15.7293646,12.3081081 15.9621312,11.9662162 C16.2614024,11.5307703 16.7269355,10.8162162 17.325478,10.0702703 C17.6580016,9.8527027 17.8907682,9.54189189 18.1235347,9.26185135 C16.2614024,8.67162162 14.2662607,8.11216216 12.5707228,7.55239189 C12.5371379,6.30945946 12.5038856,4.75509459 12.4706332,3.35644595 L12.4706332,3.17027027 L12.4706332,2.98378378 C12.4373808,1.77162162 12.4041285,0.714864865 12.3379563,0.0932432432 C11.43981,1.11891892 10.6417533,2.23783784 10.1097155,3.10810811 Z M3.72526208,10.1321216 C2.99371012,10.5054054 2.12914872,10.722973 1.3643444,10.722973 C0.898811336,10.722973 0.466530634,10.6297297 0.134007018,10.4743243 C0.100754656,10.4743243 0.0342499325,10.4429324 0.00099757085,10.4121622 C1.16483023,12.7743243 2.9272054,15.6030135 4.52331876,17.622973 C4.68958057,17.8094595 4.82259001,17.9959459 4.98885182,18.1824324 C5.62064669,18.8972973 6.55171282,19.2702703 7.64904076,19.2702703 C8.34734035,19.2702703 9.07889231,19.1148649 9.84369663,18.8040541 C11.0328011,18.2638649 12.1647115,17.1943649 13.1127363,16.0832162 L7.3497695,14.3594595 L7.01724588,14.2662162 L6.71797463,14.172973 L6.45195574,14.1108108 C6.68505479,12.0283784 7.11700297,7.64594595 7.28326478,6.99324324 C6.25244157,8.20540541 5.02210418,9.41756757 3.72526208,10.1321216 Z M13.1127363,16.0832162 L13.1689328,16.1 C13.1606197,16.0860135 13.150644,16.0698514 13.1396707,16.0515135 C13.1306926,16.0620811 13.1217144,16.0726486 13.1127363,16.0832162 Z'/%3E%3Cpath id='m' d='M3.32623374,0.714864865 C2.19565344,1.24324324 1.06507314,2.26891892 0.100754656,3.38783784 C0.300268826,3.72972973 0.998568421,4.81756757 1.82987746,6.15405405 C1.86346235,6.27837838 1.89638219,6.34054054 1.96288691,6.4027027 C1.99613927,6.46486486 2.02939163,6.52702703 2.06264399,6.58918919 C3.49249555,8.88918919 5.25487072,11.7175676 5.85341323,12.6807703 C6.85098408,11.5310811 8.11457382,10.2567568 9.41141592,9.51081081 C10.1429679,9.10675676 11.0407816,8.85810811 11.7723336,8.85810811 C12.0054327,8.85810811 12.2046143,8.88918919 12.4041285,8.92027027 C10.6750057,7.92567568 8.34734035,6.62027027 7.08375061,5.87432432 C7.11700297,5.59459459 7.18350769,5.28378378 7.21709258,4.97297297 C7.21709258,4.87972973 7.25001242,4.78648649 7.25001242,4.69324324 C7.25001242,4.6 7.28326478,4.50675676 7.28326478,4.41351351 C7.41627422,3.38783784 7.54961619,2.42432432 7.64904076,1.6472973 C7.91505965,1.95810811 8.18107854,2.3 8.44709744,2.67297297 C8.51360216,2.73513514 8.54685452,2.82837838 8.61335924,2.89022973 C8.67986397,2.9527027 8.71344885,3.04594595 8.77962105,3.10810811 C8.81287341,3.13918919 8.81287341,3.17027027 8.84612578,3.20135135 C10.0432108,4.84864865 12.4373808,8.92027027 12.4373808,8.92027027 L12.7033997,8.98243243 C12.8031568,9.01351351 12.9361663,9.07567568 13.0359233,9.10675676 C12.5707228,8.17401351 12.0054327,7.14864865 11.4068901,6.15405405 C10.6417533,4.87972973 9.7771919,3.57432432 8.9126305,2.42432432 C8.84612578,2.33108108 8.74636869,2.20675676 8.67986397,2.11351351 C8.4803498,1.86486486 8.31408799,1.6472973 8.11457382,1.39864865 C8.01481673,1.27432432 7.88180729,1.11891892 7.7820502,0.994594595 L7.74913036,0.963513514 C7.18350769,0.528378378 6.35253117,0.27972973 5.42146505,0.27972973 C4.65632821,0.27972973 3.89185641,0.435135135 3.32623374,0.714864865 Z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' transform='translate%282 7%29'%3E%3Cg transform='translate%280 24.2%29'%3E%3Cg transform='translate%28.613 1.383%29'%3E%3Cmask id='b' fill='white'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.985 8.824 42.999 8.824 42.999 -.895 -.985 -.895' mask='url%28%23b%29'/%3E%3C/g%3E%3Cg transform='translate%2835.016 1.383%29'%3E%3Cmask id='d' fill='white'%3E%3Cuse xlink:href='%23c'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.92 2.581 3.09 2.581 3.09 -1.02 -.92 -1.02' mask='url%28%23d%29'/%3E%3C/g%3E%3Cg transform='translate%2842.685 1.591%29'%3E%3Cmask id='f' fill='white'%3E%3Cuse xlink:href='%23e'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-.898 1.977 2.281 1.977 2.281 -1.02 -.898 -1.02' mask='url%28%23f%29'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate%288%29'%3E%3Cg transform='translate%2816.626 9.045%29'%3E%3Cmask id='h' fill='white'%3E%3Cuse xlink:href='%23g'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.495 8.641 11.79 8.641 11.79 -1.305 -1.495 -1.305' mask='url%28%23h%29'/%3E%3C/g%3E%3Cg transform='translate%280 6.869%29'%3E%3Cmask id='j' fill='white'%3E%3Cuse xlink:href='%23i'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.663 8.457 11.673 8.457 11.673 -1.492 -1.663 -1.492' mask='url%28%23j%29'/%3E%3C/g%3E%3Cg transform='translate%28.665 3.45%29'%3E%3Cmask id='l' fill='white'%3E%3Cuse xlink:href='%23k'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.662 20.824 19.786 20.824 19.786 -1.461 -1.662 -1.461' mask='url%28%23l%29'/%3E%3C/g%3E%3Cg transform='translate%2812.968 .031%29'%3E%3Cmask id='n' fill='white'%3E%3Cuse xlink:href='%23m'/%3E%3C/mask%3E%3Cpolygon fill='%23FFFFFF' points='-1.562 14.235 14.699 14.235 14.699 -1.274 -1.562 -1.274' mask='url%28%23n%29'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}

.symbol-triggermail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 3%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 6.39130435C31.6176667 6.39130435 39.4166667 14.1576522 39.4166667 23.7391304 39.4166667 33.3187826 31.6176667 41.0869565 22 41.0869565 12.3805 41.0869565 4.58333333 33.3187826 4.58333333 23.7391304 4.58333333 14.1576522 12.3805 6.39130435 22 6.39130435zM12.1968 38.069713L9.1663 41.0864087M31.80045 38.0660609L34.8327833 41.0864087'/%3E%3Cpolyline points='15.583 24.652 22.917 24.652 22.917 13.696'/%3E%3Cpath d='M3.66666667 13.6956522C.803 10.8433043.803 6.50634783 3.66666667 3.65217391 6.53033333.798 10.8863333.798 13.75 3.65217391M40.3333333 13.6956522C43.197 10.8414783 43.197 6.50452174 40.3333333 3.65217391 37.4696667.799826087 33.1136667.798 30.25 3.65217391'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: 48px;
  background-position: center center;
}

@media only screen and (min-device-pixel-ratio: 2) {
  .symbol-triggermail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2' transform='translate%282 3%29' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 6.39130435C31.6176667 6.39130435 39.4166667 14.1576522 39.4166667 23.7391304 39.4166667 33.3187826 31.6176667 41.0869565 22 41.0869565 12.3805 41.0869565 4.58333333 33.3187826 4.58333333 23.7391304 4.58333333 14.1576522 12.3805 6.39130435 22 6.39130435zM12.1968 38.069713L9.1663 41.0864087M31.80045 38.0660609L34.8327833 41.0864087'/%3E%3Cpolyline points='15.583 24.652 22.917 24.652 22.917 13.696'/%3E%3Cpath d='M3.66666667 13.6956522C.803 10.8433043.803 6.50634783 3.66666667 3.65217391 6.53033333.798 10.8863333.798 13.75 3.65217391M40.3333333 13.6956522C43.197 10.8414783 43.197 6.50452174 40.3333333 3.65217391 37.4696667.799826087 33.1136667.798 30.25 3.65217391'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: 48px;
    background-position: center center;
  }
}


.radius {
  border-radius: 100%;
}

.link {
  color: rgb(255, 143, 31);
  font-weight: bold;
}

.section-teaser.bgr-dark-blue .link {
  color: rgb(255, 255, 255);
}

.link-chevron {
  position: relative;
  padding-left: 20px;
}

.link-chevron:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  top: 50%;
  left: 0;
  border-top: 2px solid rgb(255, 128, 0);
  border-right: 2px solid rgb(255, 128, 0);
  transform: translateY(-50%) rotate(45deg);
}

.section-teaser.bgr-dark-blue .link-chevron:after {
  border-top-color: rgb(255,255,255);
  border-right-color: rgb(255,255,255);
}

.section-teaser.bgr-white-and-blue .link,
.section-teaser.bgr-grey .link {
  color: rgb(13, 65, 112);
}

.section-teaser.bgr-white-and-blue .link-chevron:after,
.section-teaser.bgr-grey .link-chevron:after {
  border-top-color: rgb(13, 65, 112);
  border-right-color: rgb(13, 65, 112);
}


/* sections mark */

.section-mark {
  text-align: center;
  padding: 110px 0 130px;
}

.section-mark.has-nav {
  padding: 0 0 90px;
}

.section-mark h1,
.section-mark h2 {
  font-size: 44px;
  font-weight: normal;
}

.section-mark hr {
  width: 35%;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 30px auto;
}

.section-mark p {
  font-size: 24px;
}

@media only screen and (max-width: 768px) {
  .section-mark {
    padding: 40px 0;
  }

  .section-mark.has-nav {
    padding: 0 0 40px;
  }

  .section-mark h1,
  .section-mark h2 {
    font-size: 28px;
  }

  .section-mark hr {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    margin: 15px auto;
  }

  .section-mark p {
    font-size: 18px;
  }
}

/* section content */

.section-content {
  padding: 50px 0;
}

.section-content figure {
  width: 40%;
  float: left;
}

.section-content .offset-top {
  margin-top: -90px;
}

.section-content figure img {
  width: 100%;
}

.section-content h3 {
  font-size: 24px;
  font-weight: bold;
  padding-left: 45%;
}

.section-content p {
  line-height: 1.7;
  font-size: 16px;
  padding-left: 45%;
}

.section-content h3 + p {
  margin-top: 24px;
}

.section-content p + p {
  margin-top: 16px;
}

@media only screen and (max-width: 980px) {
  .section-content .offset-top {
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .section-content {
    padding: 30px 0;
  }

  .section-content figure {
    width: 20%;
    margin-bottom: 24px;
  }

  .section-content h3,
  .section-content p {
    padding-left: 25%;
  }
}

@media only screen and (max-width: 480px) {
  .section-content figure {
    width: 100%;
    text-align: center;
    float: none;
  }

  .section-content figure img {
    width: 50%;
  }

  .section-content h3,
  .section-content p {
    padding-left: 0;
    text-align: center;
  }
}

/* section bubble slider */

.section-bubble-slider {
  padding: 40px 0 80px;
}

.slider-bubble .slick-list {
  margin: 0 -10px;
}

.slider-bubble .slick-slide {
  padding: 30px;
  background-color: rgb(238, 238, 238);
  position: relative;
  border-radius: 10px;
  margin: 0 10px 15px;
}

.slider-bubble .slick-slide:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgb(238, 238, 238);
}

.slider-bubble h4 {
  font-size: 18px;
  margin: 0 0 5px;
}

.slider-bubble p {
  margin: 0;
}

.slider-bubble .bubble-meta {
  margin-top: 10px;
  color: rgb(255, 128, 0);
}

/* section call to action */

.section-cta {
  text-align: center;
  padding: 40px 0;
}

.section-cta h3 {
  font-size: 24px;
  font-weight: bold;
  padding: 0 10%;
}

.section-cta h3 + p {
  margin-top: 30px;
}

/* section teaser slider */

.section-teaser-slider {
  padding: 60px 0 80px;
}

.section-teaser-slider .slider-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.section-teaser-slider .slider-subtitle {
  font-size: 18px;
  text-align: center;
}

.slider-teaser {
  margin-top: 30px;
}

.slider-teaser figure {
  width: 60%;
  float: left;
}

.slider-teaser figure + h4 {
  margin-top: 70px;
}

.slider-teaser img {
  width: 100%;
}

.slider-teaser h4 {
  font-size: 16px;
  line-height: 1.7;
  font-weight: bold;
  padding-left: 65%;
}

.slider-teaser p {
  line-height: 1.7;
  font-size: 16px;
  padding-left: 65%;
}

.slider-teaser h4 + p,
.slider-teaser p + p {
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .slider-teaser figure {
    width: 30%;
  }

  .slider-teaser figure + h4 {
    margin-top: 0;
  }

  .slider-teaser h4,
  .slider-teaser p {
    padding-left: 35%;
  }
}

@media only screen and (max-width: 480px) {
  .slider-teaser figure {
    width: 100%;
    float: none;
    margin-bottom: 24px;
    text-align: center;
  }

  .slider-teaser figure img {
    width: 50%;
    display: inline-block;
  }

  .slider-teaser h4,
  .slider-teaser p {
    padding-left: 0;
    text-align: center;
  }
}

/* section testimonial */

.section-testimonial {
  padding: 40px 0 20px;
  text-align: center;
}

.section-testimonial h3 {
  font-size: 24px;
  font-weight: bold;
  color: rgb(13, 65, 112);
}

.section-testimonial p {
  font-size: 18px;
  color: rgb(34, 34, 34);
  margin-top: 10px;
}

.section-testimonial ul {
  margin: 20px 0 0;
  padding: 0;
  list-style-type: none;
}

.section-testimonial li {
  display: inline-block;
  margin: 20px 15px;
}

/* section teaser */

.section-teaser {
  padding: 70px 0;
}

.section-teaser .picto {
  float: left;
}

.section-teaser figure {
  width: 25%;
  float: right;
}

.section-teaser img {
  width: 100%;
}

.section-teaser h3 {
  font-size: 24px;
  font-weight: bold;
  padding-left: 160px;
  margin-bottom: 30px;
}

.section-teaser p,
.section-teaser ul {
  line-height: 1.7;
  font-size: 16px;
  padding-left: 160px;
}

.section-teaser figure ~ p,
.section-teaser figure ~ ul {
  padding-right: 30%;
}

.section-teaser p + p,
.section-teaser p + ul,
.section-teaser ul + p {
  margin-top: 20px;
}

.section-teaser li {
  font-weight: bold;
  padding-left: 35px;
  position: relative;
}

.section-teaser li:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 8px;
  display: inline-block;
  top: 6px;
  left: 4px;
  border-top: 3px solid rgb(255, 143, 31);
  border-right: 3px solid rgb(255, 143, 31);
  transform: rotate(130deg);
}

.section-teaser.bgr-dark-blue li:before {
  border-top-color: rgb(255,255,255);
  border-right-color: rgb(255,255,255);
}

.section-teaser.bgr-white-and-blue li:before,
.section-teaser.bgr-grey li:before {
  border-top-color: rgb(13, 65, 112);
  border-right-color: rgb(13, 65, 112);
}

.section-teaser li + li {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .section-teaser {
    text-align: center;
    padding: 40px 0;
  }

  .section-teaser .picto {
    float: none;
    margin-bottom: 30px;
  }

  .section-teaser h3,
  .section-teaser p,
  .section-teaser ul {
    padding-left: 0;
    padding-right: 0;
  }

  .section-teaser figure ~ p,
  .section-teaser figure ~ ul {
    padding-right: 0;
  }

  .section-teaser figure {
    display: none;
  }
}

/* section check-list */

.section-check-list {
  padding: 60px 0;
}

.section-check-list h3 {
  font-size: 24px;
  font-weight: bold;
}

.section-check-list ul {
  list-style-type: none;
  margin: 30px 0;
  padding: 0;
}

.section-check-list li {
  font-size: 18px;
  font-weight: bold;
  padding-left: 35px;
  position: relative;
}

.section-check-list li:before {
  position: absolute;
  content: '';
  width: 18px;
  height: 9px;
  display: inline-block;
  top: 4px;
  left: 4px;
  border-top: 3px solid rgb(13, 65, 112);
  border-right: 3px solid rgb(13, 65, 112);
  transform: rotate(130deg);
}

.section-check-list li + li {
  margin-top: 30px;
}

@media only screen and (max-width: 580px) {
  .section-check-list {
    padding: 40px 0;
  }

  .section-check-list ul {
    margin: 20px 0 30px;
  }

  .section-check-list li + li {
    margin-top: 20px;
  }
}

/* section form */

.section-form {
  padding: 40px 0;
  display: none;
}

.section-form .pi-widget {
  margin: 0;
}

.section-form .pi-form {
  margin: 0 -10px;
}

.section-form .pi-form:before,
.section-form .pi-form:after {
  display: table;
  content: '';
  clear: both;
}

.section-form .pi-form-control {
  margin-bottom: 15px;
  width: 50%;
  float: left;
  padding: 0 10px;
}

.section-form .pi-heading p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-form .pi-form-status,
.section-form .pi-form-label {
  display: none;
}

.section-form .pi-form-control[data-pi-type="radio"],
.section-form .pi-form-control[data-pi-type="checkbox"],
.section-form .pi-form-control[data-pi-type="permissionString"] {
  width: 100%;
}

.section-form .pi-form-control input[type="text"] {
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  background-color: rgb(255,255,255);
  border: 1px solid rgb(255,255,255);
  padding: 10px;
  height: auto;
}

.section-form .pi-form-control__has-error input[type="text"] {
  border-color: rgb(255, 0, 0);
}

.section-form .pi-form-button button {
  padding: 10px 30px;
  font-size: 16px;
  display: inline-block;
  border-radius: 2px;
  font-weight: bold;
  background: rgb(45, 183, 158);
  color: rgb(255, 255, 255);
  height: auto;
  border: 0;
  text-shadow: none;
}

@media only screen and (max-width: 580px) {
  .section-form .pi-form-control {
    width: 100%;
  }
}

/* section picto teaser */

.section-picto-teaser {
  padding: 50px 0 0;
  text-align: center;
}

.section-picto-teaser h3 {
  font-size: 24px;
  font-weight: bold;
}

.section-picto-teaser h3 + p {
  font-size: 18px;
  margin-top: 6px;
}

.section-picto-teaser hr {
  margin: 0;
  border-top: 3px solid rgb(255, 255, 255);
}

.pan {
  width: 200px;
  margin: 40px 10px;
  display: inline-block;
  height: 180px;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.pan-shift {
  transform: translateY(0);
  transition: transform 0.3s linear;
  min-height: 300px;
}

.pan-shift:hover {
  transform: translateY(-120px);
}

.pan-shift .picto {
  opacity: 1;
  transition: opacity 0.4s linear;
}

.pan-shift:hover .picto {
  opacity: 0;
}

.pan-shift h4 {
  color: rgb(77, 120, 163);
  font-size: 16px;
  font-weight: bold;
}

.pan-shift p {
  opacity: 0;
  transition: opacity 0.4s linear;
  font-size: 16px;
}

.pan-shift .picto + h4,
.pan-shift h4 + p {
  margin-top: 10px;
}

.pan-shift:hover p {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .section-picto-teaser {
    padding: 40px 0;
  }

  .pan {
    width: 200px;
    margin: 20px 10px;
  }

  .section-picto-teaser hr {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .pan {
    width: 200px;
    margin: 10px;
  }
}

/* section stat */

.section-stat {
  padding: 60px 0;
}

.section-stat figure {
  width: 26%;
  float: left;
}

.section-stat figure img {
  width: 100%;
}

.section-stat h2 {
  font-size: 44px;
  font-weight: normal;
  color: rgb(13, 65, 112);
  padding-left: 32%;
  padding-top: 50px;
}

.section-stat p {
  font-style: italic;
  color: rgb(169, 169, 169);
  padding-left: 32%;
  padding-top: 20px;
}

@media only screen and (max-width: 768px) {
  .section-stat {
    padding: 40px 0;
  }

  .section-stat h2 {
    font-size: 24px;
    padding-left: 32%;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .section-stat h2 {
    padding-top: 0;
  }
}

/* sections tabs */

.section-tabs {
  padding: 60px 0;
}

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

.tab-menu .btn {
  background-color: rgb(238, 238, 238);
  color: rgb(34, 34, 34);
  margin: 0 5px;
}

.tab-menu .btn.active {
  background-color: rgb(255, 143, 31);
  color: rgb(255, 255, 255);
  position: relative;
}

.tab-menu .btn.active:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgb(255, 143, 31);
}

.tab-content {
  position: relative;
  margin-top: 40px;
}

.tab-item {
  text-align: center;
  padding: 0 15%;
  visibility: hidden;
  position: absolute;
  top: 0;
}

.tab-item.active {
  visibility: visible;
  position: relative;
}

.tab-item h3 {
  font-size: 24px;
  font-weight: bold;
}

.tab-item p {
  font-size: 16px;
}

.tab-item h3 + p,
.tab-item p + p {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .tab-item {
    padding: 0 5%;
  }
  .tab-menu .btn {
    margin: 0 5px 10px;
  }
  .tab-menu .btn.active:after {
    display: none;
  }
}

/* section newsletter */

.section-newsletter {
  padding: 40px 0;
  text-align: center;
}

.section-newsletter .pi-widget {
  margin: 0 20%;
}

.section-newsletter .pi-widget form {
  position: relative;
}

.section-newsletter .pi-widget div[data-pi-id="email"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 57%;
  z-index: 3;
}

.section-newsletter .pi-widget div[data-pi-id="permission"] {
  margin: 0;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

.section-newsletter .pi-widget .pi-form-actions {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  z-index: 2;
}

.section-newsletter .pi-heading p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-newsletter .pi-form-label,
.section-newsletter .pi-form-status {
  display: none;
}

.section-newsletter .pi-form-control {
  padding: 0;
  margin-bottom: 15px;
}

.section-newsletter .pi-form-control input[type="text"] {
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  background-color: rgb(255,255,255);
  border: 1px solid rgb(255,255,255);
  padding: 10px;
  height: auto;
}

.section-newsletter .pi-form-control__has-error input[type="text"] {
  border-color: rgb(255, 0, 0);
}

.section-newsletter .pi-form-control[data-pi-id="permission"] .pi-checkbox-control input[type=checkbox] {
  float: none;
  vertical-align: middle;
  margin-top: 2px;
}

.section-newsletter .pi-form-control[data-pi-id="permission"] .pi-checkbox-control label {
  display: inline;
  padding-left: 0;
  vertical-align: middle;
}

.section-newsletter .pi-form-button button {
  padding: 10px 30px;
  font-size: 16px;
  display: inline-block;
  border-radius: 2px;
  font-weight: bold;
  background: rgb(13, 65, 112);
  color: rgb(255, 255, 255);
  height: auto;
  border: 0;
  text-shadow: none;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .section-newsletter .pi-widget {
    margin: 0 10%;
  }
}

@media only screen and (max-width: 580px) {
  .section-newsletter .pi-widget {
    margin: 0;
  }

  .section-newsletter .pi-widget div[data-pi-id="email"] {
    width: 100%;
  }

  .section-newsletter .pi-widget div[data-pi-id="permission"] {
    padding-top: 100px;
  }

  .section-newsletter .pi-widget .pi-form-actions {
    width: 100%;
    top: 50px;
  }
}

/* jump labels */

#vertical-nav {
  display: block;
  position: fixed;
  right: 30px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 200;
}

#vertical-nav li {
  display: block;
}

#vertical-nav li + li {
  margin-top: 12px;
}

#vertical-nav a {
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: rgb(204, 204, 204);
  border: 2px solid rgb(204, 204, 204);
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  overflow: hidden;
  text-indent: -99999px;
}

#vertical-nav a:hover,
#vertical-nav a:focus {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

#vertical-nav .active a {
  background-color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
  #vertical-nav {
    right: 6px;
  }
}

@media only screen and (max-width: 480px) {
  #vertical-nav {
    display: none;
  }
}

#horizontal-nav {
  margin-top: 30px;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}

#horizontal-nav li {
  display: inline-block;
  margin: 0 20px;
}

#horizontal-nav a {
  color: rgb(255, 255, 255);
  display: inline-block;
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
}

#horizontal-nav a:hover {
  text-decoration: none;
  border-bottom-color: rgb(255, 128, 0);
}

@media only screen and (max-width: 480px) {
  #horizontal-nav {
    margin-bottom: 20px;
  }

  #horizontal-nav li {
    display: block;
    margin: 0;
  }

  #horizontal-nav a {
    padding: 4px;
  }
}

/* collapse */

.collapsible {
  display: none;
}

/* popup */

.image-zoom:before {
  content: '';
  background-color: rgb(255, 255, 255);
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: 1px solid rgb(204, 204, 204);
  z-index: 1;
}

.image-zoom:after {
  content: '';
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAzSURBVHjaYvz//z8DLqCsrAyWvHv3LiMuNUwMFIJRA6hgAKOSktL/gXXBaEIaDgYABBgAFJEPfcofALoAAAAASUVORK5CYII=');
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 16px;
  height: 16px;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .image-zoom:before {
    display: none;
  }
}


/* On Page Navigation List */

.on-page-nav {
  margin: 2em 0;
}

.on-page-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.on-page-nav ul li + li {
  margin-top: 2em;
}

.on-page-nav .nav-item {
  display: flex;
  align-items: stretch;
}

.on-page-nav .nav-item:hover,
.on-page-nav .nav-item:focus {
  text-decoration: none;
}

.on-page-nav .nav-item:hover .nav-item__title,
.on-page-nav .nav-item:focus .nav-item__title {
  text-decoration: underline;
}

.on-page-nav .nav-item:hover .nav-item__arrow,
.on-page-nav .nav-item:focus .nav-item__arrow {
  transform: scale(1.25);
}

.on-page-nav .nav-item__figure {
  flex: 0 0 160px;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  border: 2px solid #f4f4f4;
  border-radius: 10px;
  margin: 0;
  margin-right: 2em;
}

.on-page-nav .nav-item__figure--small {
  display: flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
}

.on-page-nav .nav-item__figure--small img {
  width: 64px;
  height: auto;
}

.on-page-nav .nav-item__text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  border-bottom: 2px solid #f4f4f4;
  padding: 1em 2em 1em 0;
}

.on-page-nav .nav-item__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='23' viewBox='0 0 13 23'%3E%3Cpath fill='%23FA7D00' d='M12.9492194,11.5327387 C12.9492194,11.7261907 12.8766742,11.8973213 12.7315851,12.0461307 L2.5898444,22.4479173 C2.444754,22.5967267 2.2779016,22.6711307 2.0892859,22.6711307 C1.9006702,22.6711307 1.7338165,22.5967267 1.5887274,22.4479173 L0.5005585,21.3318453 C0.3554694,21.183036 0.2829242,21.0119053 0.2829242,20.818452 C0.2829242,20.625 0.3554694,20.4538693 0.5005585,20.30506 L9.0535718,11.5327387 L0.5005585,2.760416 C0.3554694,2.61160667 0.2829242,2.440476 0.2829242,2.247024 C0.2829242,2.053572 0.3554694,1.88244 0.5005585,1.73363067 L1.5887274,0.61756 C1.7338165,0.468749333 1.9006702,0.394345333 2.0892859,0.394345333 C2.2779016,0.394345333 2.444754,0.468749333 2.5898444,0.61756 L12.7315851,11.0193453 C12.8766742,11.1681547 12.9492194,11.3392853 12.9492194,11.5327387 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center center;
  width: 14px;
  height: 24px;
  display: inline-block;
  align-self: center;
  margin-left: -14px;
  transition: transform 0.3s ease-in-out 0s;
}

.on-page-nav .nav-item__title {
  font-size: 23px;
}

.on-page-nav .nav-item__subtitle {
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {

  .on-page-nav ul li + li {
    margin-top: 1em;
  }

  .on-page-nav .nav-item__title {
    font-size: 18px;
  }

  .on-page-nav .nav-item__figure {
    flex: 0 0 60px;
    height: 60px;
    align-self: center;
    margin-right: 1em;
  }

  .on-page-nav .nav-item__figure--small img {
    width: 20px;
    height: auto;
  }

}

.icon-warning {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 49 %2851002%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Eicon-warning%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='icon-warning' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Info' fill='%23FDD835' fill-rule='nonzero'%3E%3Cpath d='M13.2227241,8.43675914 L13.2227241,6.09615813 L10.9365523,6.09615813 L10.9365523,8.43675914 L13.2227241,8.43675914 Z M13.2227241,17.7447062 L13.2227241,10.7773323 L10.9365523,10.7773323 L10.9365523,17.7447062 L13.2227241,17.7447062 Z M12.0796382,0.326271415 C15.2730179,0.326271415 18.0037175,1.46028119 20.2717464,3.72831004 C22.5397752,5.99633889 23.673785,8.72703852 23.673785,11.9204182 C23.673785,15.1137979 22.5397752,17.8444976 20.2717464,20.1125264 C18.0037175,22.3805553 15.2730179,23.514565 12.0796382,23.514565 C8.88625849,23.514565 6.15555886,22.3805553 3.88753001,20.1125264 C1.61950117,17.8444976 0.48549139,15.1137979 0.48549139,11.9204182 C0.48549139,8.72703852 1.61950117,5.99633889 3.88753001,3.72831004 C6.15555886,1.46028119 8.88625849,0.326271415 12.0796382,0.326271415 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px;
  vertical-align: -4px;
}

.icon-danger {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 49 %2851002%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Eicon-danger%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='icon-danger' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%280.000000, 1.000000%29' fill='%23F44336' fill-rule='nonzero' id='Shape'%3E%3Cpath d='M12.7571157,13.8580912 L12.7571157,9.54583423 L10.6973395,9.54583423 L10.6973395,13.8580912 L12.7571157,13.8580912 Z M12.7571157,18.1202089 L12.7571157,15.9640804 L10.6973395,15.9640804 L10.6973395,18.1202089 L12.7571157,18.1202089 Z M0.202301908,21.329332 L11.7272025,1.02157325 L23.252103,21.329332 L0.202301908,21.329332 Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px;
  vertical-align: -4px;
}


/* Static Google Map */

.map-static {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .map-static {
    padding-bottom: 75%;
  }
}

.map-static iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
