:root {
  --bg-color: #F1F1F1;
  --bg-alt-color: #3C3C3C;
  --bg-alt-2-color: #1f1f1f;
  --fg-color: #373B4D;
  --fg-alt-color: #fff;
}

body.theme-dark {
  --bg-color: #3C3C3C;
  --bg-alt-color: #585858;
  --fg-color: #fff;
}

.grid {
  display: flex;
  width: 100%;
  justify-content: stretch;
}
.grid-item {
  padding-inline: 1.2rem;
  box-sizing: border-box;
}
.grid-item.tile-image img {
  max-width: 100%;
}
.grid-item.tile-text {
  padding-inline: 2rem;
}
.grid-item.tile-text .description {
  align-self: flex-start;
}
.grid:not(.column) {
  flex-wrap: wrap;
  flex-direction: row;
}
.grid:not(.column) .grid-item {
  flex: 1 1 50%;
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  .grid:not(.column) .grid-item, .grid:not(.column).cols-3 .grid-item {
    flex-basis: 100% !important;
  }
}
@media screen and (min-width: 1280px) {
  .grid:not(.column).cols-3 .grid-item {
    flex-basis: 30%;
  }
}
.grid.column {
  flex-direction: column;
}
.grid.column-item {
  width: 100%;
}

:root {
  --bg-color: #F1F1F1;
  --bg-alt-color: #3C3C3C;
  --bg-alt-2-color: #1f1f1f;
  --fg-color: #373B4D;
  --fg-alt-color: #fff;
}

body.theme-dark {
  --bg-color: #3C3C3C;
  --bg-alt-color: #585858;
  --fg-color: #fff;
}

header.site-header {
  display: flex;
  align-items: center;
}
header.site-header .logo {
  flex: 0 0 auto;
  margin-inline-end: 60px;
  padding-inline: 20px;
  align-self: stretch;
  background-color: #F1F1F1;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
header.site-header .logo img {
  width: 156px;
}
@media screen and (max-width: 959px) {
  header.site-header .logo {
    padding-inline: 20px;
  }
}
header.site-header .title {
  flex: 1 1 100%;
  padding-block: 40px;
}
@media screen and (max-width: 959px) {
  header.site-header .title {
    padding-block: 10px;
    order: 4;
    text-align: center;
  }
}
header.site-header .net-links {
  flex: 0 0 auto;
  padding-inline: 30px;
}
header.site-header .net-links a {
  border-radius: 50%;
  background-color: #F1F1F1;
  text-align: center;
  display: inline-flex;
  padding: 4px;
}
header.site-header .net-links a img {
  width: 24px;
}
header.site-header .actions {
  flex: 0 0 auto;
  padding-inline: 30px;
}
@media screen and (max-width: 959px) {
  header.site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block-start: 1rem;
  }
}

.theme-switcher {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--fg-color);
  outline: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
}
.theme-switcher:before, .theme-switcher:after {
  content: "";
  flex: 0 0 50%;
  height: 100%;
}
.theme-switcher:before {
  background-color: var(--bg-color);
}
.theme-switcher:after {
  background-color: var(--fg-color);
}

.novelty {
  background-image: linear-gradient(to bottom, rgba(51, 50, 51, 0.5), rgba(66, 127, 167, 0.5)), url("/assets/images/shots/desktop.jpg");
  background-size: cover;
  background-position: center;
  padding-block: 5rem;
  padding-inline: 5%;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 600px;
}
@media screen and (max-width: 959px) {
  .novelty {
    min-height: 400px;
  }
}

:root {
  --bg-color: #F1F1F1;
  --bg-alt-color: #3C3C3C;
  --bg-alt-2-color: #1f1f1f;
  --fg-color: #373B4D;
  --fg-alt-color: #fff;
}

body.theme-dark {
  --bg-color: #3C3C3C;
  --bg-alt-color: #585858;
  --fg-color: #fff;
}

.screen-demo {
  position: relative;
  min-height: 8rem;
}
.screen-demo img {
  width: 100%;
}
.screen-demo .product-name {
  position: absolute;
  top: 3rem;
  left: 3rem;
  margin: 0;
  font-weight: bold;
  font-size: 4rem;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 959px) {
  .screen-demo .product-name {
    font-size: 2rem;
    top: unset;
    bottom: 1rem;
    left: 1rem;
  }
}

.mission .grid-item.description {
  flex-basis: 40%;
  text-align: center;
  margin-block-end: 1.2rem;
}
.mission .grid-item.image {
  flex-basis: 60%;
  background-image: url("/assets/images/shots/presentation-process.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 959px) {
  .mission .grid-item.image {
    min-height: 50vh;
  }
}

.advantages {
  padding-block: 2rem;
}
.advantages .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantages .grid-item .description {
  align-self: flex-start;
}

footer {
  background: var(--bg-alt-2-color);
  padding-block: 2rem;
}
footer .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .grid-item .title {
  color: var(--fg-alt-color);
}
footer .grid-item .description {
  align-self: flex-start;
  color: var(--fg-alt-color);
}

.features {
  padding-block: 2rem;
}
.features .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 2rem;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .features .grid-item {
    order: 1;
  }
  .features .grid-item:nth-child(3) {
    order: 2;
  }
  .features .grid-item:nth-child(n+5) {
    order: 3;
  }
}

.horizon.grid {
  justify-content: space-around;
  margin-block: 2rem;
}
.horizon.grid .grid-item {
/*  max-width: 500px;
  text-align: center;*/
}
.horizon.grid .grid-item img {
  max-width: 100%;
}

.b-prepared,
.disastropedia,
.weld-galaxy,
.pharma-ledger {
  padding-block: 2rem;
}

.disastropedia
.pharma-ledger .grid-item.tile-image img {
  max-height: 100%;
}

.services {
  background: var(--bg-alt-color);
  color: var(--fg-alt-color);
  padding-block: 0.1rem 1.5rem;
  padding-inline: 5%;
  text-align: center;
  font-size: 1.3rem;
}

.development .grid-item.tile-image {
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .development .grid-item.tile-image {
    min-height: 30vh;
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .development .grid-item {
    order: 1;
  }
  .development .grid-item:nth-child(3) {
    order: 2;
  }
  .development .grid-item:nth-child(n+5) {
    order: 3;
  }
}
.development .keyboard {
  background-image: url("/assets/images/shots/HandsOnKeyboard.png");
}
.development .office {
  background-image: url("/assets/images/shots/TeamOnKeyboard.png");
}
.development .papers {
  background-image: url("/assets/images/shots/ViewDKMbrowshore.png");
}

:root {
  --bg-color: #F1F1F1;
  --bg-alt-color: #3C3C3C;
  --bg-alt-2-color: #1f1f1f;
  --fg-color: #373B4D;
  --fg-alt-color: #fff;
}

body.theme-dark {
  --bg-color: #3C3C3C;
  --bg-alt-color: #585858;
  --fg-color: #fff;
}

.team {
  background-image: url("/assets/images/shots/team.jpg");
  background-position: center;
  background-size: cover;
}
.team .grid-item {
  padding-block: 3rem;
  padding-inline: 5%;
}
.team .grid-item:nth-child(1) {
  background-color: rgba(4, 81, 132, 0.85);
  color: #3588CC;
  line-height: 1;
  text-align: right;
}
.team .grid-item:nth-child(1) .title {
  font-size: 4rem;
}
.team .grid-item:nth-child(2) {
  background-color: rgba(226, 28, 33, 0.65);
  color: #fff;
}

:root {
  --bg-color: #F1F1F1;
  --bg-alt-color: #3C3C3C;
  --bg-alt-2-color: #1f1f1f;
  --fg-color: #373B4D;
  --fg-alt-color: #fff;
}

body.theme-dark {
  --bg-color: #3C3C3C;
  --bg-alt-color: #585858;
  --fg-color: #fff;
}

.contacts {
  background: #3C3C3C;
  color: #fff;
  padding-block: 0.1rem 1.5rem;
  text-align: right;
  font-size: 1.3rem;
}
.contacts .grid-item.title {
  flex: 0 0 100%;
}

html, body {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-family: raleway, sans-serif;
  color: var(--fg-color);
  background: var(--bg-color);
  font-size: 20px;
  line-height: 2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: raleway, sans-serif;
  font-weight: normal;
  margin-block: 0.5em;
}

h1 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.9rem;
}
@media screen and (max-width: 959px) {
  h2 {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-block: 1rem;
  padding-inline: 2rem;
}

/*# sourceMappingURL=style.css.map */
