*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  /* 1rem = 10px */ }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #444444; }

.heading-container {
  text-align: center;
  margin-bottom: 5rem; }

.heading-primary {
  font-size: 4.6rem;
  font-weight: 700;
  color: #0478BE;
  margin-bottom: 1rem; }

.heading-secondary {
  font-size: 2.4rem;
  font-weight: 400;
  color: #666666; }

.margin-top-big {
  padding-top: 8rem !important; }

.max-width-normal {
  max-width: 130rem;
  margin: 0 auto; }

.button {
  text-decoration: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 7px;
  color: #ffffff !important;
  transition: all 0.2s ease;
  text-transform: capitalize; }
  .button:hover {
    transform: translateY(-2px); }
  .button:active {
    transform: scale(0.98); }
  .button--primary {
    background-color: #0478BE; }
    .button--primary:hover {
      background-color: #03629b; }
  .button--secondary {
    background-color: #ffffff;
    color: #444444 !important;
    border: 1px solid #b3b3b3; }
    .button--secondary:hover {
      border-color: #4d4d4d;
      background-color: #999999;
      color: #ffffff !important; }
  .button--round {
    background-color: #ffffff;
    color: #444444 !important;
    border-radius: 100rem;
    padding: 1.2rem 2.5rem; }

.card {
  perspective: 150rem;
  height: 53rem;
  position: relative; }
  .card__side {
    height: 53rem;
    transition: all 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 0.6rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    overflow: hidden; }
    .card__side--front {
      background-color: #ffffff; }
    .card__side--back {
      transform: rotateY(180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, #2666a0, #035baf); }
      .card__side--back-2 {
        background-image: linear-gradient(to right bottom, #1a466e, #023c73); }
      .card__side--back-3 {
        background-image: linear-gradient(to right bottom, #2666a0, #035baf); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__picture {
    background-size: cover;
    height: 27rem;
    background-position: center;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    .card__picture--1 {
      background-image: linear-gradient(to right bottom, #2666a0, #035baf), url("../assets/images/banners/printing_service.webp"); }
    .card__picture--2 {
      background-image: linear-gradient(to right bottom, #1a466e, #023c73), url("../assets/images/banners/modelling_service.webp"); }
    .card__picture--3 {
      background-image: linear-gradient(to right bottom, #2666a0, #035baf), url("../assets/images/banners/catalog_service.webp"); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    position: absolute;
    top: 12rem;
    right: 2rem;
    text-align: right;
    width: 75%;
    margin-top: 3.5rem; }
  .card__heading-span {
    padding: 1rem 1.5rem;
    box-decoration-break: clone; }
    .card__heading-span--1 {
      background-image: linear-gradient(to right bottom, rgba(38, 102, 160, 0.85), rgba(3, 91, 175, 0.85)); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, rgba(26, 70, 110, 0.85), rgba(2, 60, 115, 0.85)); }
    .card__heading-span--3 {
      background-image: linear-gradient(to right bottom, rgba(38, 102, 160, 0.85), rgba(3, 91, 175, 0.85)); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.5rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid rgba(179, 179, 179, 0.1); }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }

.row {
  width: 100%;
  margin: 0 auto;
  height: 100%; }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    height: 100%; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 8rem; }
  .row .col-1-of-2 {
    width: calc((100% - 8rem)/2);
    float: left; }
  .row .col-1-of-3 {
    width: calc((100% - 16rem)/3);
    float: left; }
  .row .col-2-of-3 {
    width: calc(2*(100% - 16rem)/3 + 8rem);
    float: left; }
  .row .col-1-of-4 {
    width: calc((100% - 24rem)/4);
    float: left; }
  .row .col-2-of-4 {
    width: calc(2*(100% - 24rem)/4 + 8rem);
    float: left; }
  .row .col-3-of-4 {
    width: calc(3*(100% - 24rem)/4 + 2*8rem);
    float: left; }

.header {
  height: 100vh; }
  .header__text {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: calc((100% - 8rem)/2 - 7rem);
    margin: 0 7rem; }
  .header__note {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(4, 120, 190, 0.75);
    background-color: rgba(4, 120, 190, 0.15);
    display: inline-block;
    padding: 0px 5px;
    border-radius: 7px;
    border: 1px solid rgba(4, 120, 190, 0.3);
    margin-bottom: 3rem; }
  .header__title {
    font-size: 6.5rem;
    font-weight: 700;
    color: #444444;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-bottom: 2rem; }
    .header__title--highlight {
      color: #0478BE; }
  .header__description {
    font-size: 2.2rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 4rem; }
  .header__button-container {
    margin-bottom: 4rem;
    display: flex;
    gap: 2rem; }
  .header__stats-text {
    display: inline-block;
    font-size: 2.0rem;
    color: #666666;
    text-align: center; }
    .header__stats-text span {
      font-weight: 700;
      color: #0478BE;
      font-size: 3.0rem; }
    .header__stats-text:not(:last-child) {
      margin-right: 4rem; }
  .header__image-box {
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    width: 75%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    transform: translate(-5%, -55%);
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(4, 120, 190, 0.2); }
  .header__image {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 1.5rem; }

.navigation {
  position: fixed;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  padding-top: 1rem;
  background-color: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000; }
  .navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    background-color: #b3b3b3;
    z-index: -1; }
  .navigation__list {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 1rem; }
  .navigation__link:link, .navigation__link:visited {
    color: #444444;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s; }
  .navigation__link:hover, .navigation__link:focus {
    color: #02427F; }
  .navigation__link:target, .navigation__link:active {
    color: #02427F;
    font-weight: 600; }
  .navigation__link:not(:first-child) {
    margin-left: 2.5rem; }
  .navigation__link:first-child {
    margin-left: 2rem; }
  .navigation__link:last-child {
    margin-right: 3rem; }
  .navigation__logo {
    width: 17rem; }

.arrow {
  margin-left: 0.75rem; }

.text-popup {
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #d9d9d9;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  position: absolute;
  bottom: -3.3rem;
  right: -3.3rem; }

.green-circle {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #0478BE;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem; }

.section-services {
  background-color: #f7f7f7;
  padding: 7rem 0; }
