@font-face {
  font-family: 'scrum';
  src: url('../font/scrum.eot?28329862');
  src: url('../font/scrum.eot?28329862#iefix') format('embedded-opentype'),
       url('../font/scrum.woff2?28329862') format('woff2'),
       url('../font/scrum.woff?28329862') format('woff'),
       url('../font/scrum.ttf?28329862') format('truetype'),
       url('../font/scrum.svg?28329862#scrum') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'scrum';
    src: url('../font/scrum.svg?28329862#scrum') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "scrum";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-check:before { content: '\e800'; } /* '' */
.icon-facebook:before { content: '\e801'; } /* '' */
.icon-linkedin:before { content: '\e802'; } /* '' */
.icon-star:before { content: '\e803'; } /* '' */
.icon-twitter:before { content: '\e804'; } /* '' */
.icon-youtube:before { content: '\e805'; } /* '' */
.icon-logout:before { content: '\e806'; } /* '' */
.icon-plus:before { content: '\e807'; } /* '' */
.icon-management:before { content: '\e808'; } /* '' */
.icon-cert-pro:before { content: '\e809'; } /* '' */
.icon-badges:before { content: '\e80a'; } /* '' */
.icon-rating:before { content: '\e80b'; } /* '' */
.icon-quality:before { content: '\e80c'; } /* '' */
.icon-certs:before { content: '\e80d'; } /* '' */
.icon-public:before { content: '\e80e'; } /* '' */
.icon-user:before { content: '\e80f'; } /* '' */
.icon-world:before { content: '\e810'; } /* '' */
.icon-center:before { content: '\e811'; } /* '' */
.icon-instagram:before { content: '\f31e'; } /* '' */

/* Social Share Icons */
.share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.share-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    background: #8e44ad;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media print {
    .share-section { display: none; }
}

/* Header Logo Adjustments */
header .navbar-brand .logotype {
    max-height: 50px;
    width: auto;
}

header .navbar-brand .logo {
    max-height: 40px;
    width: auto;
}

