/*MCWebDesign classes v1.1 Crope*/

/* Global variables. */
:root,
::backdrop {
  /* Set sans-serif & mono fonts */
  /*
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
    Georgia, "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
    "Helvetica Neue", sans-serif;
    */
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 8px;

  /*Global width max-width etc.*/
  --content-width: 1540px;
  --inner-content-width: 860px;

  --left-bar-width: 180px;
  --menu-bar-height: 180px;
  --left-cr-content-padding: 200px;
  /*Global breaking points*/
  /*
  Breakpoint 	Class infix 	Dimensions
  X-Small 	None 	<576px
  Small 	sm 	≥576px
  Medium 	md 	≥768px

  Large 	lg 	≥992px
  Content of 50-50 proportions break at this point.

  Extra large 	xl 	≥1200px
  Extra extra large 	xxl 	≥1400px
  */
  --sm: 576px;
  --md: 786px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;

  /*Global gap*/
  --content-gap: 0.3rem;
  --standard-gap: 1rem;

  --icon-padding: 0.1rem;
  --minihero-size: 3.5rem;

  --icon-bg: #23252e;
  --text-icon-bg: #c4c4c4;
  --si-paragraph-size: 1.05rem;

  --list-gap: 1rem;

  /* Default (dark) theme */
  --bg: #080A12;
  --accent-bg: #f5f7ff;
  --title: #fff;
  --text: #A9AFC3;
  --text-light: #A9AFC3;
  /*
  --border: #2A2E3D;
  --accent: #0d47a1;
  --accent-hover: #1266e2;
*/
  --accent-text: #DD4242;
  --code: #d81b60;
  --preformatted: #444;

  --marked: #ffdd33;
  --disabled: #efefef;
  /*--header-menu-text: rgb(31 41 55);*/
  --gray-900: rgb(17 24 39);
  --brand-main-color: #6366F1;
  --brand-10-color: #f3f6ff;
  --hr-line: #2A2E3D;

}

/* Dark theme */
/*
@media (prefers-color-scheme: dark) {

  :root,
  ::backdrop {
    color-scheme: dark;
    --bg: #212121;
    --accent-bg: #2b2b2b;
    --text: #dcdcdc;
    --text-light: #ababab;
    --accent: #ffb300;
    --accent-hover: #ffe099;
    --accent-text: var(--bg);
    --code: #f06292;
    --preformatted: #ccc;
    --disabled: #111;
  }
*/
/* Add a bit of transparency so light media isn't so glaring in dark mode */
/* img,
  video {
    opacity: 1;
  }
}
*/
/* Reset box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  /*border: 1px solid red;*/
}

/* Reset default appearance */
textarea,
select,
input,
progress {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

html {
  /* Set the font globally */
  font-family: "Poppins", sans-serif;
  /*var(--sans-font);*/
  scroll-behavior: smooth;
}

/* Make the body a nice central block */
body {
  display: block;
  color: var(--text);
  background-color: var(--bg);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  height: 100%;
}

/*
* {
  border: 1px solid tan; 
}
*/
/* Make the header bg full width, but the content inline with body */
body>header {
  background-color: var(--accent-bg);
  padding: 0;

  /*grid-column: 1 / -1;*/
}

/*
body > header > *:only-child {
  margin-block-start: 2rem;
}
*/

hr {
  border: 0;
  border-top: 1px solid var(--hr-line);
}

img {
  display: block;
  /*max-width: 100%;*/
}

/* Format headers */
h1 {
  font-size: 3rem;
  margin-top: 3rem;
}

h2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}

h3 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 0.96rem;
}

p {
  font-size: var(--si-paragraph-size);
  margin: 1.5rem 0;
}

/* Prevent long strings from overflowing container */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

p+p,
li+li {
  margin-top: 1rem;
}

p {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* */
  color: var(--title);
}

/* Reduce header size on mobile */
@media only screen and (max-width: 786px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}


/* Consolidate box styling */
aside,
details,
pre,
progress {
  background-color: var(--accent-bg);
  /*border: 1px solid var(--border);*/
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

aside {
  font-size: 1rem;
  width: 30%;
  padding: 0 15px;
  margin-inline-start: 15px;
  float: right;
}

*[dir="rtl"] aside {
  float: left;
}

/* Make aside full-width on mobile */
@media only screen and (max-width: 720px) {
  aside {
    width: 100%;
    float: none;
    margin-inline-start: 0;
  }
}

article,
fieldset,
dialog {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

article h2:first-child,
section h2:first-child {
  margin-top: 1rem;
}

section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1rem;
  margin: 3rem 0;
}

/* Don't double separators when chaining sections */
section+section,
section:first-child {
  border-top: 0;
  padding-top: 0;
}

section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

details {
  padding: 0.7rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.7rem 1rem;
  margin: -0.7rem -1rem;
  word-break: break-all;
}

details[open]>summary+* {
  margin-top: 0;
}

details[open]>summary {
  margin-bottom: 0.5rem;
}

details[open]> :last-child {
  margin-bottom: 0;
}

/*koniec wstawki */

/* Remove the default triangle */

summary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;

}

/* Create a new custom triangle on the right side */
summary::after {
  height: 40px;
  width: 40px;
  font-size: 0.6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  content: '🮦';
  transition: 0.2s;
  background-color: rgb(238, 238, 238);
  color: gray;
  border-radius: 20px;
}

details[open]>summary::after {
  transform: rotate(180deg);
  background-color: #6366F1;
  color: white;
  -webkit-box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.08);
}


.nomargin {
  margin: 0;
}

.empty {
  display: hidden;
}

.mc-spacer-unresponsive {
  height: 3rem;
}

.mc-spacer {
  height: 3rem;
}

@media only screen and (max-width: 786px) {
  .mc-spacer {
    height: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .mc-spacer {
    height: 1rem;
  }
}

.mc-left-padding {
  padding-left: var(--standard-gap);
}

.mc-left-padding-3 {
  padding-left: calc(3*var(--standard-gap));
}

.mc-right-padding-3 {
  padding-right: calc(3*var(--standard-gap));
}

.mc-left-padding-5 {
  padding-left: calc(5*var(--standard-gap));
}

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

  .mc-left-padding,
  .mc-left-padding-3,
  .mc-left-padding-5,
  .mc-right-padding-3 {
    padding: 0px;
  }

  .cr-right-992-padding {
    padding-right: calc(5*var(--standard-gap));
  }
}

@media only screen and (max-width: 786px) {
  .cr-right-992-padding {
    padding-right: calc(2*var(--standard-gap));
  }
}

@media screen and (max-width: 576px) {
  .cr-right-992-padding {
    padding-right: 0px;
  }
}


.fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cover {
  object-fit: cover;
  object-position: center center;
}

.fit-content {
  min-width: fit-content;
}

.mc-z-1 {
  z-index: 1;
}

.mc-z-1000 {
  z-index: 1000;
}

.mc-round-top {
  border-radius: var(--standard-border-radius) var(--standard-border-radius) 0 0;
}

.mc-round-bottom {
  border-radius: 0 0 var(--standard-border-radius) var(--standard-border-radius);
}

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

  /* to jest do poprawy !*/
  .si-mobile-double-vgap {
    gap: calc(3.5*var(--standard-gap)) !important;
  }
}

.underline {
  border-bottom: 1px solid var(--border);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sq-80 {
  height: 80px;
  width: 80px;
}

.sq-100 {
  width: 100px;
  height: 100px;
}

.sq-130 {
  width: 130px;
  height: 130px;
}


.cr-bar-3-5 {
  width: 3.5rem;
  height: 1px;
  background: var(--text)
}


.mc-rotate-90 {
  transform: rotate(-90deg);
}

.mc-rotate-180 {
  transform: rotate(180deg);
}

.cr-first-section-upper-padding {
  padding-top: var(--menu-bar-height);
}

.cr-sidebar {
  width: var(--left-bar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: #080A12;
}

@media only screen and (max-width: 992px) {
  .cr-sidebar {
    display: none !important;
  }
}

.cr-p-22 {
  font-size: 1.375rem;
}


.cr-main-title {
  font-size: 8rem;
  line-height: 8rem;
}

@media only screen and (max-width: 1200px) {
  .cr-main-title {
    font-size: 7rem;
    line-height: 7rem;
  }
}

@media only screen and (max-width: 992px) {
  .cr-main-title {
    font-size: 5rem;
    line-height: 5rem;
  }

  .cr-p-22 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 786px) {
  .cr-main-title {
    font-size: 4rem;
    line-height: 4rem;
  }

  .cr-p-22 {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 576px) {
  .cr-main-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .cr-p-22 {
    font-size: 1rem;
  }
}

.cr-slide-nav,
.cr-slide-nav-active {
  /*width: 1rem;*/
  height: 0.4rem;
  border-radius: 0.2rem;

  cursor: pointer;
}

.cr-slide-nav:hover {
  background: var(--accent-text);
}

.cr-slide-nav {
  width: 1rem;
  background: var(--text);
}

.cr-slide-nav-active {
  width: 2rem;
  height: 0.4rem;
  background: var(--accent-bg);
}

.bg-falling-stars {
  /*tu trzeba zmienic url*/
  background-image: url('https://www.tapir.pl/s3/wp-content/uploads/2024/03/bg-object.svg');
}

.cr-icon-bg {
  background: var(--icon-bg);
}

.si-quote-bump {
  margin-top: calc(-3*var(--standard-gap));
}

.si-quote-box {
  /*for single icon inside box*/
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--icon-bg);
  /*padding: var(--icon-padding);*/
  /*not needed anymore*/
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
  background-color: var(--brand-main-color);
}

/*non standard colors, gradients, shadows*/

.cr-neon-in {
  color: var(--accent-text);
  border: var(--accent-text) 0.125em solid;
  /*text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em --bg;*/
  box-shadow: inset 0 0 0.5em 0 var(--bg), 0 0 0.5em 0 var(--bg);
}

.cr-number-box-grad-180 {
  background: linear-gradient(180deg, rgba(25, 28, 38, 0) 0%, #080A12 100%);

}

.cr-number-box-grad-0 {
  background: linear-gradient(0deg, rgba(25, 28, 38, 0) 0%, #080A12 100%);

}


.si-brand-bg {
  background-color: var(--brand-main-color);
}

.si-brand-10 {
  background-color: var(--brand-10-color);
}

.bg-accent {
  background: var(--accent-text);
}

.accent-shadow-h:hover {
  box-shadow: 0 0 10px var(--accent-text);
}

.accent-text-h:hover {
  color: var(--accent-text);
}

/*button section*/

.cursor-pointer:hover {
  cursor: pointer;
}

.cr-glow-accent-in {
  box-shadow: 0 0 10px #DD4242, 0 0 10px #DD4242 inset;
}

.cr-glow-accent-out {
  box-shadow: 0 0 15px #dd424280, 0 0 10px #dd424280 inset;
}


.button {
  background-color: var(--brand-main-color);
  color: white;
}



.button-tr {

  background-color: transparent;
  color: var(--title);
  border: 2px solid var(--accent-text);
  border-radius: calc(4*var(--standard-border-radius));
  font-size: 1.275rem;

}

.button-tr:hover {
  box-shadow: 0 0 10px var(--accent-text);
}

.button-und-l,
.button-und-r {
  background-color: transparent;
  color: var(--title);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--title);
}

.button-und-ar {
  background-color: transparent;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--text);
}

.button-und-l,
.button-und-r {
  width: 5rem;
}

.button-und-ar {
  width: 10rem;
}


.button-und-l,
.button-und-ar {
  text-align: left;
}

.button-und-r {
  text-align: right;
}

.button-w {
  background-color: white;
  color: var(--brand-main-color);
}


.button,
.button-tr,
.button-w {
  display: block;
  /*font-size: 1rem;*/
  padding: 0.7em 2rem 0.7em 2rem;
  /*align-self: start;*/
  height: fit-content;
}

.button-und-l:hover,
.button-und-r:hover,
.cr-button-und-accent {
  color: var(--accent-text);
  border-bottom: 1px solid var(--accent-text);
}

.cr-button-und-accent {
  width: fit-content;
}

.button-und-ar:hover {
  border-color: var(--accent-text);
}

.si-active>p {
  font-weight: 700;
  color: white;
}

.red {
  background-color: red;
}

.photo-placeholder {
  background-color: #2A2E3D;
}

.cr-accent {
  color: var(--accent-text);
}

.cr-text {
  color: var(--text);
}



/*end*/

.si-small {
  font-size: 0.9rem;
}

.si-bold {
  font-weight: 800;
}

.mc-font-1pxg {
  letter-spacing: 1px;
}

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

mc-flex-inline-row-no {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}




.cr-13-75 {
  width: 13.75rem;
}

.cr-4-item-grad-bg {
  background: linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
}

.cr-4-item-grad-bg-0 {
  background: linear-gradient(0deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
}


.cr-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-template-areas: "a b c d";
}

.div-4-a {
  grid-area: a;
}

.div-4-b {
  grid-area: b;
}

.div-4-c {
  grid-area: c;
}

.div-4-d {
  grid-area: d;
}

@media only screen and (max-width: 1200px) {
  .cr-4-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "a b"
      "d c";
  }

}

@media only screen and (max-width: 768px) {
  .cr-4-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a";
  }

  .div-4-b,
  .div-4-c,
  .div-4-d {
    display: none !important;
  }
}

.cr-port-container {
  opacity: 0.8;
}

.cr-port-hover {
  opacity: 0;
}

.cr-port {
  opacity: 1;
}

.cr-port-container:hover {
  transition-duration: 150ms;
  transform: translatey(-1rem);
  opacity: 1;
}

.cr-port-container:hover>.cr-port-hover {
  transition-duration: 150ms;

  opacity: 1;
}

.cr-port-container:hover>.cr-port {
  transition-duration: 150ms;

  opacity: 0;
}

.cr-380x490 {
  width: 380px !important;
  height: 490px !important;
}


/*si-images etc.*/

.mc-radius-10 {
  border-radius: 10px;
}

@media screen and (max-width: 576px) {
  .si-mobile-hide {
    display: none !important;
  }

  .si-mobile-nowrap {
    flex-wrap: nowrap;
  }

}

/*end*/

.mc-reverse {
  flex-wrap: wrap-reverse;
}


.cr-small-icon-top-gap {
  margin-top: 3px;
}

.si-hero {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--standard-gap);
}

.mc-1-padding {
  padding: var(--standard-gap);
}

.mc-2-padding {
  padding: calc(2*var(--standard-gap));
}

.mc-3-padding {
  padding: calc(3*var(--standard-gap));
}


.mc-2-bottom-padding {
  padding-bottom: calc(2*var(--standard-gap));
}

.mc-4-bottom-padding {
  padding-bottom: calc(4*var(--standard-gap));
}

.mc-4-top-padding {
  padding-top: calc(4*var(--standard-gap));
}

.mc-8-bottom-padding {
  padding-bottom: calc(8*var(--standard-gap));
}


.mc-bottom-1gap {
  margin-bottom: var(--standard-gap);
}

.mc-bottom-3gap {
  padding-bottom: calc(3*var(--standard-gap));
}

.mc-top-bottom-1gap {
  padding: var(--standard-gap) 0 var(--standard-gap) 0;
}



.mc-left-gap {
  padding-left: var(--standard-gap);
}

.mc-right-gap {
  padding-right: var(--standard-gap);
}

.mc-right-3gap {
  padding-right: calc(3*var(--standard-gap));
}

@media screen and (max-width: 992px) {
  .mc-right-3gap {
    padding-right: calc(2*var(--standard-gap));
  }

  .mc-bottom-3gap {
    padding-bottom: calc(2*var(--standard-gap));
  }
}


.mc-ubs {
  /*standardowa sekcja*/
  overflow: hidden;
  width: 100%;
  /*padding-left: 1rem;
  padding-right: 1rem;*/
}

.mc-ucr {
  max-width: 1920px;
  padding-left: 1rem;
  margin-left: 11.25rem;
  /*180px;*/
}

@media screen and (max-width: 992px) {
  .mc-ucr {
    margin-left: 0rem;
  }
}



.mc-ucc {
  /*contener ograniczajacy tresci i przyciągający do prawej*/
  max-width: var(--content-width);
}

/*
@media screen and (max-width: 992px) {
  .mc-ucr {
    padding-left: 180px;
  }
}
*/
.mc-icc {
  max-width: var(--inner-content-width);
  margin: auto;
}

/*MC flex*/

.gap0-1 {
  gap: calc(0.1*var(--standard-gap));
}

.gap0-5 {
  gap: calc(0.5*var(--standard-gap));
}

.gap {
  gap: var(--standard-gap);
}

.gap1-5 {
  gap: calc(1.5*var(--standard-gap));
}


.gap2 {
  gap: calc(2*var(--standard-gap));
}


.gap2-5 {
  gap: calc(2.5*var(--standard-gap));
}


.circ {
  border-radius: 50%;
}

.round {
  border-radius: var(--standard-border-radius);
}


.mc-grow-1 {
  flex-grow: 1;
}

.mc-flex-grow-12 {
  flex-grow: 1.2;
}

.mc-grow-2 {
  flex-grow: 2;
}

.mc-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}


.mc-flex-row-rev {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
}

.mc-flex-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.mc-flex-col-no {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

/*justify*/

.mc-justify-start {
  justify-content: flex-start;
}

.mc-justify-center {
  justify-content: center;
}

.mc-justify-end {
  justify-content: flex-end;
}

.mc-justify-around {
  justify-content: space-around;
}

.mc-justify-between {
  justify-content: space-between;
}

/*align*/

.mc-align-start {
  align-content: flex-start;
}

.mc-align-center {
  align-items: center;
}

.mc-align-end {
  align-items: flex-end;
}


.mc-align-stretch {
  align-items: stretch;
}


/*content*/

.mc-content-center {
  align-content: center;
}

.mc-content-end {
  align-content: flex-end;
}

/*self*/

.mc-self-start {
  justify-self: flex-start;
}

.mc-self-end {
  justify-self: flex-end;
}

.mc-self-center {
  justify-self: center;
}

/*end*/

.w-10 {
  width: 10%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-50 {
  width: 50%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

/*dynamic containers*/

.mc-mob-25-100 {
  width: 25%
}

.mc-992-30-100 {
  width: 30%
}

.mc-992-40-100 {
  width: 40%
}

.mc-992-50-100 {
  width: 50%
}

.mc-992-60-100 {
  width: 60%
}

.mc-992-70-100 {
  width: 70%
}

.mc-992-80-100 {
  width: 80%
}


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

  .mc-992-30-100,
  .mc-992-40-100,
  .mc-992-50-100,
  .mc-992-60-100,
  .mc-992-70-100,
  .mc-992-80-100 {
    width: 100%;
  }

  .si-992-hide {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .mc-mob-25-100 {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .mc-mob-25-100 {
    width: 100%;
  }
}

/*end*/
/*start LandingTwo*/


.mc-relative {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlaping {
  position: absolute;
}


.cr-photo-container-r {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
}

.cr-photo-container-t {
  content: '';
  position: absolute;
  top: 0;
}


.cr-slide-height-1 {
  /*wysokosc 1 kolekcji slajdów*/
  min-height: 942px;
}

.cr-slide-height-05 {
  /*wysokosc 1 kolekcji slajdów*/
  min-height: 700px;
}

.mc-round-50 {
  border-radius: 25px;
  width: 50px;
  height: 50px;
}

.mc-line-height-4 {
  line-height: 4rem;
}


/*si-projects-section*/

/*end si-projects-section*/


.si-blog-body {
  padding: var(--standard-gap) 0 var(--standard-gap) var(--standard-gap);
}

.si-blog-image-container {
  /*min-height: 264px;*/
  background-position: center center;
  background-size: cover;
}

.si-blog-image-container {
  width: 41%;
}


@media only screen and (max-width: 786px) {
  .si-blog-image-container {
    width: 100%;
  }

  /*
  .si-blog-body {
    width: 100%;
  }*/
}

@media only screen and (max-width: 576px) {
  .si-blog-image-container {
    width: 100%;
  }

  /*
  .si-blog-body {
    width: 100%;
  }*/
}

.cr-motto {
  font-size: 1.5rem;
  color: var(--text);
}

.cr-motto-quot {
  margin-top: -4rem;
}

.mc-scale08 {
  transform: scale(0.8);
}

.si-blog-title {
  color: var(--title);
  font-size: 1.4rem;
  font-weight: 500;
}

.si-blog-date {
  color: var(--text);
  font-size: 0.9rem;
}

.si-blog-author {
  font-size: 1.1rem;
  font-weight: 600;
}

.si-blog-author-position {
  font-size: 1.1rem;
  color: lightgray;
}

.si-blog-author-image {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}

.si-blog-category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;

  background-color: var(--accent-text);
  color: var(--title);
  font-size: 0.9rem;
  padding: 3px 15px 2px 15px;
}

.cr-blog-image-sq-170 {
  width: 170px !important;
  height: 170px !important;
}

.cr-blog-big-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.si-blog-excerpt {
  color: gray;
}

.overflow {
  overflow: visible;
}

.no-overflow {
  overflow: hidden;
}

.mc-white {
  color: white !important;
}

.si-15-rem {
  font-size: 1.5rem;
}