html,
body {
  font-family: "Rubik", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: inherit;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

input,
button {
  border: none;
  outline: none;
  font-family: "Rubik", sans-serif;
  cursor: pointer;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile {
  display: none;
}
@media (max-width: 480px) {
  .mobile {
    display: flex;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.m50 {
  margin: 50px 0;
}
@media (max-width: 480px) {
  .m50 {
    margin: 30px 0;
  }
}

.p50 {
  padding: 50px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  z-index: 100;
}
header.fixed {
  height: 100px;
  background-color: #0f2443;
}
header.fixed .container .content .header .header-logo a img {
  max-width: 100px;
}
header.fixed .container .content .header .header-button button {
  background-color: white;
  color: #0f2443;
}
header .container .content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header .container .content .header .header-logo {
  display: flex;
}
@media (max-width: 480px) {
  header .container .content .header .header-logo {
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
}
header .container .content .header .header-logo a img {
  max-width: 140px;
}
header .container .content .header .header-logo .burger-menu {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(15, 36, 67, 0.7411764706);
  align-items: center;
  justify-content: center;
}
header .container .content .header .header-logo .burger-menu img {
  max-width: 100%;
}
@media (max-width: 480px) {
  header .container .content .header .header-menu {
    display: none;
  }
}
header .container .content .header .header-menu ul {
  display: flex;
  align-items: center;
  grid-gap: 30px;
}
header .container .content .header .header-menu ul li a {
  color: white;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  header .container .content .header .header-button {
    display: none;
  }
}
header .container .content .header .header-button button {
  padding: 10px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #0f2443;
}
header .header-mobile-menu {
  transform: translateX(100%);
  transition: transform 0.5s ease;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  height: 100vh;
  background-color: #0f2443;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
header .header-mobile-menu.show {
  transform: translateX(0%);
  transition: transform 0.5s ease;
}
header .header-mobile-menu .close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
}
header .header-mobile-menu .close-menu img {
  width: 25px;
}
header .header-mobile-menu .mb-logo img {
  width: 140px;
}
header .header-mobile-menu a, header .header-mobile-menu p, header .header-mobile-menu strong {
  color: white;
}
header .header-mobile-menu nav {
  margin-top: 30px;
}
header .header-mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .header-mobile-menu nav ul a {
  font-size: 20px;
}

section.welcome-block {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media (max-width: 480px) {
  section.welcome-block {
    height: 500px;
  }
}
section.welcome-block:after {
  content: "";
  width: 100%;
  height: 600px;
  background-color: rgba(0, 0, 0, 0.5254901961);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
@media (max-width: 480px) {
  section.welcome-block:after {
    height: 500px;
  }
}
section.welcome-block video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.welcome-block video source {
  width: 100%;
  height: 100%;
}
section.welcome-block .container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 20;
  color: white;
}
section.welcome-block .container .content {
  margin-top: 70px;
}
@media (max-width: 480px) {
  section.welcome-block .container .content {
    margin-top: 0;
  }
}
section.welcome-block .container .content .welcome-text {
  display: flex;
  flex-direction: column;
}
section.welcome-block .container .content h1 {
  font-size: 50px;
  font-weight: 500;
}
@media (max-width: 480px) {
  section.welcome-block .container .content h1 {
    font-size: 37px;
  }
}
section.welcome-block .container .content p {
  font-size: 30px;
  margin: 15px 0;
}
@media (max-width: 480px) {
  section.welcome-block .container .content p {
    font-size: 25px;
  }
}
section.welcome-block .container .content a {
  color: white;
}
section.welcome-block .container .content button {
  width: -moz-max-content;
  width: max-content;
  padding: 14px 30px;
  width: 200px;
  border-radius: 50px;
  margin-top: 20px;
  background-color: #0f2443;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 480px) {
  section.about-us {
    padding: 50px 0;
  }
}
section.about-us .container .content .grid-2 {
  grid-gap: 50px;
}
@media (max-width: 480px) {
  section.about-us .container .content .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}
section.about-us .container .content .grid-2 .block-title {
  align-items: center;
  justify-content: center;
  display: none;
}
section.about-us .container .content .grid-2 .block-title h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #0f2443;
  font-weight: 500;
}
section.about-us .container .content .grid-2 .left-column .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
section.about-us .container .content .grid-2 .left-column .item .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #0f2443;
}
section.about-us .container .content .grid-2 .left-column .item .text strong {
  font-size: 100px;
}
section.about-us .container .content .grid-2 .left-column .item .text p {
  font-size: 20px;
}
@media (max-width: 480px) {
  section.about-us .container .content .grid-2 .right-column {
    margin-top: 40px;
  }
}
section.about-us .container .content .grid-2 .right-column h2 {
  font-size: 37px;
  text-transform: uppercase;
  color: #0f2443;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  section.about-us .container .content .grid-2 .right-column h2 {
    display: none;
  }
}
section.about-us .container .content .grid-2 .right-column p {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  section.about-us .container .content .grid-2 .right-column p {
    margin-bottom: 24px;
  }
}

section.services {
  background-color: #0f2443;
  padding-bottom: 0;
}
section.services .container .content {
  max-width: 900px;
  margin: 0 auto;
}
section.services .container .content .block-title {
  color: white;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  section.services .container .content .block-title {
    flex-direction: column;
  }
}
section.services .container .content .block-title h2 {
  width: -moz-max-content;
  width: max-content;
  font-size: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  padding-right: 20%;
}
@media (max-width: 480px) {
  section.services .container .content .block-title h2 {
    padding-right: 0;
    width: 70%;
  }
}
section.services .container .content .block-title span:last-child {
  transform: translateX(80%);
}
@media (max-width: 480px) {
  section.services .container .content .block-title span:last-child {
    transform: translateX(0);
    justify-content: end;
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
section.services .container .content .block-title .icon-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.services .container .content .block-title .icon-text .icon {
  display: flex;
  align-items: center;
  justify-content: end;
}
section.services .container .content .block-title .icon-text .icon img {
  width: 70px;
}
section.services .container .content .block-title .icon-text .text p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 8px;
  padding: 0 30px;
}
section.services .container .content .block-title .line {
  display: block;
  height: 3px;
  background-color: white;
  width: 100%;
}
section.services .container .content .project-items {
  margin: 80px 0;
}
section.services .container .content .project-items .project-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 70px;
}
@media (max-width: 480px) {
  section.services .container .content .project-items .project-item.reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "third third" "first second";
  }
  section.services .container .content .project-items .project-item.reverse div:nth-child(1) {
    grid-area: first;
  }
  section.services .container .content .project-items .project-item.reverse div:nth-child(2) {
    grid-area: second;
  }
  section.services .container .content .project-items .project-item.reverse div:nth-child(3) {
    grid-area: third;
  }
}
@media (max-width: 480px) {
  section.services .container .content .project-items .project-item {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  section.services .container .content .project-items .project-item .text {
    grid-column: 1/-1;
  }
}
section.services .container .content .project-items .project-item .text p {
  font-size: 30px;
  color: white;
}
section.services .container .content .project-items .project-item .img {
  width: 100%;
  height: 250px;
}
@media (max-width: 480px) {
  section.services .container .content .project-items .project-item .img {
    height: 180px;
  }
}
section.services .container .content .project-items .project-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.services .marquie marquee {
  font-size: 40px;
  text-transform: uppercase;
  color: white;
}

section.our-projects .container .content .block-title {
  color: white;
  display: flex;
  align-items: center;
  grid-gap: 50px;
}
@media (max-width: 480px) {
  section.our-projects .container .content .block-title {
    flex-direction: column;
  }
}
section.our-projects .container .content .block-title h2 {
  width: -moz-max-content;
  width: max-content;
  font-size: 40px;
  color: #0f2443;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  padding-right: 20%;
  width: 36%;
}
@media (max-width: 480px) {
  section.our-projects .container .content .block-title h2 {
    padding-right: 0;
    width: 70%;
  }
}
section.our-projects .container .content .block-title span:last-child {
  transform: translateX(80%);
}
@media (max-width: 480px) {
  section.our-projects .container .content .block-title span:last-child {
    transform: translateX(0);
    justify-content: end;
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
section.our-projects .container .content .block-title .icon-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.our-projects .container .content .block-title .icon-text .icon {
  display: flex;
  align-items: center;
  justify-content: end;
}
section.our-projects .container .content .block-title .icon-text .icon img {
  width: 70px;
}
section.our-projects .container .content .block-title .icon-text .text p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 8px;
  padding: 0 30px;
}
section.our-projects .container .content .block-title .line {
  display: block;
  height: 3px;
  background-color: #0f2443;
  width: 100%;
}
section.our-projects .container .content .slider-items {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
section.our-projects .container .content .slider-items .slider {
  display: grid;
  grid-template-columns: 45% 55%;
}
@media (max-width: 480px) {
  section.our-projects .container .content .slider-items .slider {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  section.our-projects .container .content .slider-items .slider.reverse {
    grid-template-columns: 55% 45%;
  }
  section.our-projects .container .content .slider-items .slider.reverse .text {
    grid-column: 2;
    grid-row: 1;
    margin-left: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  section.our-projects .container .content .slider-items .slider.reverse .text h3 {
    text-align: right;
  }
  section.our-projects .container .content .slider-items .slider.reverse section {
    grid-column: 1;
    grid-row: 1;
  }
}
section.our-projects .container .content .slider-items .slider .text {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  section.our-projects .container .content .slider-items .slider .text {
    justify-content: start;
  }
}
section.our-projects .container .content .slider-items .slider .text h3 {
  font-size: 50px;
  color: #0f2443;
  font-weight: 500;
}
@media (max-width: 480px) {
  section.our-projects .container .content .slider-items .slider .text h3 {
    font-size: 30px;
  }
}
section.our-projects .container .content .slider-items .slider .splide .splide__slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  section.our-projects .container .content .slider-items .slider .splide .splide__slide img {
    height: 240px;
  }
}

section.attachments {
  background-color: #0f2443;
}
section.attachments .container .content .block-title {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  section.attachments .container .content .block-title {
    flex-direction: column;
  }
}
section.attachments .container .content .block-title h2 {
  width: -moz-max-content;
  width: max-content;
  font-size: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  padding-right: 20%;
}
@media (max-width: 480px) {
  section.attachments .container .content .block-title h2 {
    padding-right: 0;
    width: 100%;
    font-size: 30px;
  }
}
section.attachments .container .content .block-title span:last-child {
  transform: translateX(80%);
}
@media (max-width: 480px) {
  section.attachments .container .content .block-title span:last-child {
    transform: translateX(0);
    justify-content: end;
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
section.attachments .container .content .attachment-items {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media (max-width: 480px) {
  section.attachments .container .content .attachment-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.attachments .container .content .attachment-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.attachments .container .content .attachment-items .item img {
  width: 150px;
}
@media (max-width: 480px) {
  section.attachments .container .content .attachment-items .item img {
    width: 100px;
  }
}
section.attachments .container .content .attachment-items .item strong {
  display: block;
  text-align: center;
  color: white;
  font-weight: 400;
  font-size: 24px;
  width: 70%;
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 480px) {
  section.attachments .container .content .attachment-items .item strong {
    width: 90%;
    font-size: 20px;
  }
}

section.lisence {
  padding: 80px 0;
  background-image: url(assets/img/digitalisation_01.jpg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
section.lisence .container .content .block-title {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  section.lisence .container .content .block-title {
    flex-direction: column;
  }
}
section.lisence .container .content .block-title h2 {
  width: -moz-max-content;
  width: max-content;
  font-size: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  padding-right: 20%;
}
@media (max-width: 480px) {
  section.lisence .container .content .block-title h2 {
    padding-right: 0;
    width: 100%;
    font-size: 30px;
  }
}
section.lisence .container .content .block-title span:last-child {
  transform: translateX(80%);
}
@media (max-width: 480px) {
  section.lisence .container .content .block-title span:last-child {
    transform: translateX(0);
    justify-content: end;
    display: flex;
    align-items: center;
    justify-content: end;
  }
}
section.lisence .container .content .block {
  display: flex;
  align-items: center;
  justify-content: end;
}
section.lisence .container .content .text {
  padding: 50px;
  background-color: white;
  color: #0f2443;
  margin: 80px 0;
  width: 50%;
}
@media (max-width: 480px) {
  section.lisence .container .content .text {
    width: 100%;
  }
}
section.lisence .container .content .text p {
  color: #0f2443;
  font-size: 20px;
}
section.lisence .container .content .name-com {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
section.lisence .container .content .name-com strong {
  font-size: 26px;
  color: white;
  text-align: center;
}

.widgets {
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}
.widgets.active .content {
  display: block;
  transform: scale(1);
  transition: all 0.5s ease;
}
.widgets.active button {
  background-color: white;
}
.widgets.active button svg.widget-icon {
  display: none;
}
.widgets.active button svg.close-icon {
  display: flex;
  width: 23px;
  height: 23px;
}
.widgets .content {
  transform: scale(0);
  display: none;
  width: max-width;
  height: -moz-max-content;
  height: max-content;
  padding: 36px 22px;
  border-radius: 10px;
  background-color: white;
  right: 50px;
}
.widgets .content .links {
  margin-top: 25px;
  display: flex;
  align-content: center;
  gap: 30px;
}
.widgets .content .links a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.widgets .content .links a span {
  font-size: 10px;
}
.widgets button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 40px;
  background: #47d30a;
}
.widgets button svg.close-icon {
  display: none;
}

footer {
  padding: 30px 0;
  background-color: #0f2443;
}
footer .container .content .social-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}/*# sourceMappingURL=style.css.map */