@charset "UTF-8";
@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/Oswald-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/SourceSansPro-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* $bg-dark-dark: rgb(10, 10, 10); */
* {
  /*font-family: "sfpro", Helvetica, Arial, sans-serif !important;*/
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: rgb(29, 29, 31);
}

body {
  margin: 0;
  color: rgb(29, 29, 31);
  background-color: #ffffff;
}
body p {
  color: rgb(29, 29, 31);
  font-size: 18px;
}

a {
  color: rgb(29, 29, 31);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  background-color: transparent;
  border: 0;
}

h1 {
  font-size: 72px;
}

label {
  margin: 0;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 150px);
}

.main-con {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 5%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  color: rgb(29, 29, 31);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
header.transparent {
  background-color: transparent;
}
header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
header .header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}
header .header-container .left {
  display: flex;
  align-items: center;
}
header .header-container .left .logo {
  width: 218px;
}
header .header-container .left .logo a {
  display: flex;
  align-items: center;
  color: #000000;
}
header .header-container .left .logo a img {
  max-height: 30px;
  width: auto;
  margin-right: 12px;
}
header .header-container .left .logo a span {
  margin-top: 3px;
  font-weight: 600;
  font-size: 20px;
}
header .header-container .center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
header .header-container .center ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-container .center ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  padding: 0 40px;
  height: 78px;
  position: relative;
}
header .header-container .center ul li a:hover {
  color: #164eac;
}
header .header-container .center ul li:last-child {
  display: none;
}
header .header-container .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-container .right .right-btn {
  display: flex;
  align-items: center;
}
header .header-container .right .right-btn img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
header .header-container .right .right-btn a {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  border-radius: 16px;
  border: 1px solid #164eac;
  padding: 10px 36px;
  padding-left: 30px;
  color: #ffffff;
  overflow: hidden;
  background-color: #164eac;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  display: inline-block;
}
header .header-container .right .right-btn a svg path {
  fill: #ffffff;
}
header .header-container .right .right-btn a:hover {
  color: #ffffff;
  background: #164eac;
  box-shadow: 0 0 30px 5px rgba(22, 78, 172, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .header-container .right .right-btn a:hover svg path {
  fill: #ffffff;
}
header .header-container .right .right-btn a:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}
header .header-container .right .right-btn a::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
header .header-container .right .right-btn a:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
header .header-container .right .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
}
header .header-container .right .burger span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: rgb(29, 29, 31);
  border-radius: 2px;
  width: 28px;
  transition: all 0.3s ease;
}
header .header-container .right .burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .header-container .right .burger.active span:nth-child(2) {
  opacity: 0;
}
header .header-container .right .burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.btn-classic {
  display: flex;
  align-items: center;
}
.btn-classic img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
.btn-classic a {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  border-radius: 16px;
  border: 1px solid #164eac;
  padding: 10px 36px;
  padding-left: 30px;
  color: #ffffff;
  overflow: hidden;
  background-color: #164eac;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  display: inline-block;
}
.btn-classic a svg path {
  fill: #ffffff;
}
.btn-classic a:hover {
  color: #ffffff;
  background: #164eac;
  box-shadow: 0 0 30px 5px rgba(22, 78, 172, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.btn-classic a:hover svg path {
  fill: #ffffff;
}
.btn-classic a:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}
.btn-classic a::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.btn-classic a:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

footer {
  margin-top: 65px;
  border-top: rgb(229, 231, 235) 1px solid;
}
footer .main-con div {
  padding: 30px 0;
  text-align: center;
  font-weight: 600;
}
footer .main-con div a {
  color: #164eac;
  font-weight: 600;
}

.main-img-text {
  position: relative;
  width: 100%;
  height: 100vh;
}
.main-img-text .img-bg::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("/assets/img/business.webp");
  /*https://pl.123rf.com/photo_33618158_zarysy-dw%C3%B3ch-biznesmen%C3%B3w-pracuj%C4%85cych-p%C3%B3%C5%BAno-w-biurze.html*/
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}
.main-img-text .text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  padding-top: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-img-text .text .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-img-text .text .top h1 {
  font-family: "Oswald", sans-serif;
  /*background-color: #ffffff;
  opacity: 0.9;*/
  font-size: 72px;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
  padding: 16px;
}
.main-img-text .text .top h3 {
  font-family: "Oswald", sans-serif;
  /*background-color: #ffffff;
  opacity: 0.9;*/
  font-size: 24px;
  font-weight: 500;
  border-radius: 4px;
  width: fit-content;
  padding: 4px 16px;
}
.main-img-text .text .btn-main {
  margin-top: 80px;
}
.main-img-text .text .btn-main a {
  font-size: 24px;
  padding: 12px 45px;
}
.main-img-text .text .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  width: 100%;
  max-width: 975px;
  margin-top: 56px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.main-img-text .text .bottom .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 10px;
  text-decoration: none;
  color: white;
  border: 1px solid rgb(223, 223, 223);
}
.main-img-text .text .bottom .item:nth-child(1) {
  border-left: none;
  border-top: none;
  border-right: none;
}
.main-img-text .text .bottom .item:nth-child(2) {
  border-top: none;
  border-right: none;
}
.main-img-text .text .bottom .item:nth-child(3) {
  border-top: none;
  border-right: none;
}
.main-img-text .text .bottom .item:nth-child(4) {
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.main-img-text .text .bottom .item:nth-child(5) {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.main-img-text .text .bottom .item:nth-child(6) {
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.main-img-text .text .bottom .item svg {
  transition: transform 0.3s ease;
  font-size: 60px;
}
.main-img-text .text .bottom .item svg path {
  fill: #164eac !important;
}
.main-img-text .text .bottom .item span {
  transition: transform 0.3s ease;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-top: 32px;
}
.main-img-text .text .bottom .item:hover svg,
.main-img-text .text .bottom .item:hover span {
  transform: scale(1.15);
}

.gallery-con {
  margin-top: 100px;
}
.gallery-con .gallery {
  background: #EEE;
}
.gallery-con .gallery .gallery-cell {
  width: 66%;
  height: 400px;
  margin-right: 10px;
}
.gallery-con .gallery .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiles h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  /*background-color: #ffffff;
  opacity: 0.9;*/
  font-size: 72px;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
}
.tiles div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  width: 100%;
  margin-top: 56px;
  background-color: #ffffff;
}
.tiles div .tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 10px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  /* svg {
    transition: transform 0.3s ease;

    path {
      fill: $main-ft !important;
    }

    font-size: 60px;
  } */
}
.tiles div .tile img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.tiles div .tile span {
  transition: transform 0.3s ease;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-top: 32px;
  text-align: center;
}
.tiles div .tile:hover img {
  transform: scale(1.05);
}
.tiles div .tile:hover span {
  transform: scale(1.15);
}

.tiles-3 {
  margin-top: 65px;
}
.tiles-3 h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 50px;
}
.tiles-3 > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.tiles-3 > div .tile {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.tiles-3 > div .tile .top {
  background-color: #164eac;
  color: #ffffff;
  padding: 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 28px;
  font-weight: 600;
}
.tiles-3 > div .tile .wrap {
  display: flex;
  align-items: center;
  padding: 20px;
}
.tiles-3 > div .tile .wrap svg {
  font-size: 60px;
  margin: 15px;
}
.tiles-3 > div .tile .wrap svg path {
  fill: #164eac;
}
.tiles-3 > div .tile .wrap span {
  font-size: 18px;
}
.tiles-3 > div > :nth-child(3) {
  grid-column: span 2;
  margin-top: 20px;
}

.text-text {
  display: flex;
  gap: 40px;
  margin-top: 65px;
}
.text-text .left,
.text-text .right {
  flex: 1 1 50%;
}
.text-text .left h2,
.text-text .right h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
.text-text .left p {
  margin-top: 20px;
  text-align: justify;
}
.text-text .right ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background-color: rgb(243, 244, 246);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
  transition: transform 0.3s ease;
}
.text-text .right ul li svg {
  font-size: 60px;
}
.text-text .right ul li svg path {
  fill: #164eac;
}
.text-text .right ul li div {
  width: 100%;
}
.text-text .right ul li div h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
}
.text-text .right ul li div p {
  margin: 0;
}
.text-text .right ul li:hover {
  transform: scale(1.05);
}

.text-center {
  text-align: left !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #164eac;
  padding: 100px 15px;
}
.text-center > div {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  max-width: 675px;
  position: relative;
}
.text-center > div h3 {
  margin-bottom: 12px;
}
.text-center > div p {
  margin-bottom: 12px;
  color: rgb(55, 65, 81);
}
.text-center > div ul li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.text-center > div ul li span {
  color: rgb(55, 65, 81);
}
.text-center > div ul li span a {
  color: #164eac;
}
.text-center > div ul li svg {
  font-size: 16px;
  margin-right: 12px;
}
.text-center > div ul li svg path {
  fill: #164eac;
}
.text-center > div .smile {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.3;
}
.text-center > div .smile path {
  fill: #164eac;
}

.companies {
  margin-top: 65px;
}
.companies h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
.companies ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.companies ul li {
  margin: 16px;
  margin-top: 64px;
  transition: transform 0.3s ease;
}
.companies ul li img {
  max-width: 100%;
  height: 115px;
}
.companies ul li:hover {
  transform: scale(1.05);
}

.first {
  margin-top: 65px !important;
}

.img-text {
  display: flex;
  margin: 0;
}
.img-text .left,
.img-text .right {
  flex: 1 1 50%;
  padding: 0;
}
.img-text .left .img,
.img-text .right .img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}
.img-text .left .img > img,
.img-text .right .img > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
.img-text .left .img .overlay-text,
.img-text .right .img .overlay-text {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: white;
  padding: 50px;
  padding-left: 70px;
  padding-top: 80px;
  border-radius: 10px;
  font-size: 16px;
}
.img-text .left .img .overlay-text h3,
.img-text .right .img .overlay-text h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: bold;
}
.img-text .left .img .overlay-text p,
.img-text .right .img .overlay-text p {
  margin: 0;
  font-size: 16px;
}
.img-text .left .text,
.img-text .right .text {
  width: 100%;
  padding: 80px 50px;
}
.img-text .left .text h2,
.img-text .right .text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
}
.img-text .left .text ul,
.img-text .right .text ul {
  list-style-position: outside;
  padding-left: 20px;
}
.img-text .left .text ul li,
.img-text .right .text ul li {
  list-style: inside;
  text-indent: -20px;
  padding-left: 20px;
}
.img-text .left:first-child .text,
.img-text .right:first-child .text {
  padding-left: 15px;
  float: right;
}
.img-text .left:first-child .text p,
.img-text .right:first-child .text p {
  text-align: justify;
}
.img-text .left:last-child .text,
.img-text .right:last-child .text {
  padding-right: 15px;
}

.blog-list h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
}
.blog-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-list ul li a {
  display: flex;
  border-radius: 8px;
  margin: 0 auto;
  border: 1px solid rgb(229, 231, 235);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}
.blog-list ul li a img {
  max-width: 40%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.blog-list ul li a .text {
  padding: 24px;
}
.blog-list ul li a .text h3 {
  font-size: 24px;
  font-weight: 700;
}
.blog-list ul li a .text p {
  font-size: 16px;
}

.blog-article h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
}
.blog-article .blog-foreign {
  max-width: 672px;
  margin: 0 auto;
}
.blog-article .blog-foreign h4 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.blog-article .blog-foreign .font-semibold {
  font-weight: 600;
}

.tiles-buttons h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
}
.tiles-buttons h3 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.tiles-buttons ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  width: 100%;
  margin-top: 56px;
}
.tiles-buttons ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgb(229, 231, 235);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.tiles-buttons ul li h4 {
  margin-bottom: 30px;
  font-weight: 700;
}
.tiles-buttons ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #164eac;
  color: white;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
}
.tiles-buttons ul li a svg {
  margin-left: 10px;
}
.tiles-buttons ul li a svg path {
  fill: white;
}
.tiles-buttons ul li a:hover {
  background-color: rgb(16.2164948454, 57.4948453608, 126.7835051546);
}

.ofertaTop {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ofertaTop h1 {
  font-family: "Oswald", sans-serif;
  background-color: #ffffff;
  opacity: 1;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
  margin-top: 6vh;
}
.ofertaTop h3 {
  font-family: "Oswald", sans-serif;
  background-color: #ffffff;
  opacity: 1;
  font-size: 24px;
  font-weight: 500;
  border-radius: 4px;
  width: fit-content;
  margin: 30px 0;
}

.opis {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opis p {
  color: rgb(29, 29, 31);
  text-align: justify;
  padding-left: 12vw;
  padding-right: 12vw;
  margin-top: 10vh;
}

.offer-section {
  background-color: #164eac;
  padding: 4rem 2rem;
  margin-top: 10vh;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  height: 100%;
}
.offer-card:hover {
  transform: translateY(-6px);
}
.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.offer-card .offer-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-card .offer-content .icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.offer-card .offer-content .icon-title .icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #164eac;
}
.offer-card .offer-content .icon-title h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(29, 29, 31);
  margin: 0;
}
.offer-card .offer-content p {
  font-size: 0.95rem;
  color: rgb(29, 29, 31);
  margin-bottom: 1rem;
}
.offer-card .offer-content .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #164eac;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.offer-card .offer-content .btn:hover {
  background-color: rgb(16.2164948454, 57.4948453608, 126.7835051546);
}

.ofertaFirm {
  padding: 60px 20px;
  background-color: #f7f9fb;
}
.ofertaFirm .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaFirm h1 {
  font-size: 2.5rem;
  color: #1e2e3e;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaFirm .lead {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaFirm .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.ofertaFirm .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #243b53;
}
.ofertaFirm .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaFirm .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaFirm .oferta-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
}
.ofertaFirm .oferta-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0099cc;
  font-weight: bold;
}

.ofertaMienie {
  padding: 60px 20px;
  background-color: #f4f9f6;
}
.ofertaMienie .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaMienie h1 {
  font-size: 2.5rem;
  color: #1e3c32;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaMienie .lead {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaMienie .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.ofertaMienie .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #25443d;
}
.ofertaMienie .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaMienie .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaMienie .oferta-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #2d2d2d;
}
.ofertaMienie .oferta-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2a9d8f;
  font-weight: bold;
}

.ofertaFlota {
  padding: 60px 20px;
  background-color: #f6f8fb;
}
.ofertaFlota .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaFlota h1 {
  font-size: 2.5rem;
  color: #1d2a3a;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaFlota .lead {
  font-size: 1.2rem;
  color: #3f3f3f;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaFlota .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.ofertaFlota .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #203d5c;
}
.ofertaFlota .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaFlota .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaFlota .oferta-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
}
.ofertaFlota .oferta-content ul li::before {
  content: "🚗";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #0077cc;
}

.ofertaSprzet {
  padding: 60px 20px;
  background-color: #f3f9fb;
}
.ofertaSprzet .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaSprzet h1 {
  font-size: 2.5rem;
  color: #1c2d3e;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaSprzet .lead {
  font-size: 1.2rem;
  color: #3d3d3d;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaSprzet .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.ofertaSprzet .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #1f4462;
}
.ofertaSprzet .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaSprzet .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaSprzet .oferta-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #333;
}
.ofertaSprzet .oferta-content ul li::before {
  content: "💻";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #0099cc;
}

.ofertaSpec {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.ofertaSpec .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaSpec h1 {
  font-size: 2.5rem;
  color: #2e2e2e;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaSpec .lead {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaSpec .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.ofertaSpec .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}
.ofertaSpec .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaSpec .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaSpec .oferta-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
}
.ofertaSpec .oferta-content ul li::before {
  content: "⚙️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #777;
}

.ofertaPracownicze {
  padding: 60px 20px;
  background-color: #f4f7f4;
}
.ofertaPracownicze .container {
  max-width: 1140px;
  margin: 0 auto;
}
.ofertaPracownicze h1 {
  font-size: 2.5rem;
  color: #253c2e;
  margin-bottom: 20px;
  text-align: center;
}
.ofertaPracownicze .lead {
  font-size: 1.2rem;
  color: #3b3b3b;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}
.ofertaPracownicze .oferta-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.ofertaPracownicze .oferta-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2f523d;
}
.ofertaPracownicze .oferta-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ofertaPracownicze .oferta-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.ofertaPracownicze .oferta-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
}
.ofertaPracownicze .oferta-content ul li::before {
  content: "👥";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #379c73;
}

.kontakt h1 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px;
}
.kontakt > div {
  display: flex;
  flex: 1 1 50%;
}
.kontakt > div .left .company {
  display: flex;
  align-items: center;
}
.kontakt > div .left .company img {
  height: 72px;
  margin-right: 30px;
}
.kontakt > div .left .company h3 {
  font-weight: bold;
  color: #164eac;
}
.kontakt > div .left .company p {
  font-size: 14px;
}
.kontakt > div .left .company .stars {
  display: flex;
  align-items: center;
}
.kontakt > div .left .company .stars svg path {
  fill: rgb(250, 202, 21);
}
.kontakt > div .left .company .stars p {
  margin: 0;
  margin-left: 10px;
}

.kontakt2 .company {
  display: flex;
  align-items: center;
}
.kontakt2 .company img {
  height: 72px;
  margin-right: 30px;
}
.kontakt2 .company h3 {
  font-weight: bold;
  color: #164eac;
}
.kontakt2 .company p {
  font-size: 14px;
}
.kontakt2 .company .stars {
  display: flex;
  align-items: center;
}
.kontakt2 .company .stars svg path {
  fill: rgb(250, 202, 21);
}
.kontakt2 .company .stars p {
  margin: 0;
  margin-left: 10px;
}
.kontakt2 .kontakt-kontakt p {
  font-size: 20px !important;
  font-weight: 700;
}
.kontakt2 .kontakt-kontakt p svg {
  margin-right: 10px !important;
}
.kontakt2 .kontakt-kontakt p svg path {
  fill: #164eac;
}
.kontakt2 .hours svg.nieczynne path {
  fill: red;
}
.kontakt2 .hours svg.czynne path {
  fill: green;
}
.kontakt2 form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.kontakt2 form input[type=text],
.kontakt2 form input[type=email],
.kontakt2 form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #111827;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.kontakt2 form input[type=text]:focus,
.kontakt2 form input[type=email]:focus,
.kontakt2 form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  outline: none;
  background-color: #ffffff;
}
.kontakt2 form textarea {
  resize: vertical;
}
.kontakt2 form p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.kontakt2 form .btn-c {
  display: flex;
  justify-content: center;
  margin-top: 15px !important;
}
.kontakt2 form button {
  background-color: #164eac;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.kontakt2 form button svg {
  margin-right: 0.5rem;
}
.kontakt2 form button svg path {
  fill: #ffffff;
}
.kontakt2 form button:hover {
  background-color: rgb(16.2164948454, 57.4948453608, 126.7835051546);
}
.kontakt2 form button:active {
  background-color: #164eac;
}
.kontakt2 form button:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}
.kontakt2 form a {
  color: #164eac;
  text-decoration: none;
}
.kontakt2 form a:hover {
  text-decoration: underline;
}

.map {
  width: 100%;
  overflow: hidden;
}
.map h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  padding: 16px;
  text-align: center;
  margin: 80px 0;
}
.map iframe {
  width: 100%;
  height: 400px;
}

#emailSuccessModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  z-index: 1000;
  text-align: center;
}
#emailSuccessModal button {
  color: red;
}

@keyframes fadeIn {
  from {
    max-height: 0;
  }
  to {
    max-height: 100vh;
  }
}
@keyframes fadeOut {
  from {
    max-height: 100vh;
  }
  to {
    max-height: 0;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
  .main-con {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  header .header-container {
    padding: 0 15px;
  }
  header .header-container .center {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    z-index: 999;
    display: block;
    padding: 0 5%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
    /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*/
  }
  header .header-container .center.active {
    max-height: calc(100vh - 80px);
  }
  header .header-container .center.active ul {
    opacity: 1;
    transform: translateY(0);
  }
  header .header-container .center ul {
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    transform: translateY(-20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }
  header .header-container .center ul li a {
    height: auto;
    padding: 0;
    font-size: 24px;
    transition: color 0.2s ease;
  }
  header .header-container .center ul li:last-child {
    display: block;
  }
  header .header-container .right .right-btn {
    display: none;
  }
  header .header-container .right .burger {
    display: block !important;
  }
  header .header-container .right .burger span {
    display: block !important;
    height: 3px !important;
    margin: 6px 0 !important;
    width: 28px !important;
  }
  header .header-container .right .burger.active + .center {
    display: block !important;
  }
  .img-text {
    flex-direction: column-reverse;
  }
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    padding: 15px;
  }
  .img-text .left .text h2, .img-text .left .overlay-text h2, .img-text .right .text h2, .img-text .right .overlay-text h2 {
    font-size: 40px;
  }
  .img-text .left .overlay-text, .img-text .right .overlay-text {
    width: 100%;
    padding: 15px !important;
    padding-top: 50px !important;
  }
  .img-text .left .img, .img-text .right .img {
    height: 280px;
    flex: auto;
    display: block;
  }
  .img-text .left .img > img, .img-text .right .img > img {
    object-position: right;
  }
  .img-text .left:last-child, .img-text .right:last-child {
    flex: auto;
    display: block;
    width: 100%;
  }
  .first {
    flex-direction: column;
  }
  .kontakt2 {
    flex-direction: column;
  }
  .kontakt2 .left .img, .kontakt2 .right .img {
    height: 700px;
  }
  .kontakt2 .left .text, .kontakt2 .right .text {
    padding-top: 80px !important;
  }
  .kontakt2 .left .text h2, .kontakt2 .right .text h2 {
    text-align: center;
  }
  .main-img-text .text {
    padding: 25px 15px;
  }
  .main-img-text .text .top h1 {
    font-size: 44px;
  }
  .main-img-text .text .bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-img-text .text .bottom .item {
    border: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item svg {
    font-size: 30px;
  }
  .main-img-text .text .bottom .item span {
    font-size: 20px;
  }
  .main-img-text .text .bottom .item:nth-child(1) {
    border-left: none;
    border-top: none;
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(2) {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgb(223, 223, 223);
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgb(223, 223, 223);
    border-right: none;
    border-bottom: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item:nth-child(5) {
    border-left: none;
    border-top: none;
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(6) {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
  }
  .text-text {
    flex-direction: column;
  }
  .text-text .left h2, .text-text .right h2 {
    font-size: 36px;
  }
  .offer-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .companies h2 {
    font-size: 28px;
  }
  .companies ul li img {
    height: 60px;
  }
  .text-center > div .smile {
    top: unset;
    bottom: 20px;
  }
  .tiles h1 {
    font-size: 44px;
  }
  .tiles div {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiles div .tile span {
    font-size: 20px;
  }
  .tiles-3 h1 {
    font-size: 40px;
  }
  .tiles-3 > div {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tiles-3 > div > :nth-child(3) {
    grid-column: span 1;
  }
  .tiles-3 > div .tile {
    width: 100%;
  }
  .tiles-3 > div .tile .top {
    font-size: 23px;
  }
  .blog-list ul {
    display: flex;
    flex-direction: column;
  }
  .blog-list ul li a {
    flex-direction: column;
  }
  .blog-list ul li a img {
    width: 100%;
    max-width: 100%;
  }
  .tiles-buttons ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
  .main-con {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 15px;
  }
  header .header-container .center {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    z-index: 999;
    display: block;
    padding: 0 5%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
    /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*/
  }
  header .header-container .center.active {
    max-height: calc(100vh - 80px);
  }
  header .header-container .center.active ul {
    opacity: 1;
    transform: translateY(0);
  }
  header .header-container .center ul {
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    transform: translateY(-20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }
  header .header-container .center ul li a {
    height: auto;
    padding: 0;
    font-size: 24px;
    transition: color 0.2s ease;
  }
  header .header-container .center ul li:last-child {
    display: block;
  }
  header .header-container .right .right-btn {
    display: none;
  }
  header .header-container .right .burger {
    display: block;
  }
  .img-text {
    flex-direction: column-reverse;
  }
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    padding: 40px !important;
  }
  .img-text .left .overlay-text, .img-text .right .overlay-text {
    width: 100%;
  }
  .img-text .left .img, .img-text .right .img {
    height: 350px;
    flex: auto;
    display: block;
  }
  .img-text .left .img > img, .img-text .right .img > img {
    object-position: right;
  }
  .img-text .left:last-child, .img-text .right:last-child {
    flex: auto;
    display: block;
    width: 100%;
  }
  .first {
    flex-direction: column;
  }
  .kontakt2 {
    flex-direction: column;
  }
  .kontakt2 .left .img, .kontakt2 .right .img {
    height: 700px;
  }
  .kontakt2 .left .text, .kontakt2 .right .text {
    padding-top: 80px !important;
  }
  .kontakt2 .left .text h2, .kontakt2 .right .text h2 {
    text-align: center;
  }
  .main-img-text .text {
    padding: 25px 15px;
  }
  .main-img-text .text .top h1 {
    font-size: 60px;
  }
  .main-img-text .text .bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-img-text .text .bottom .item {
    border: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item svg {
    font-size: 36px;
  }
  .main-img-text .text .bottom .item span {
    font-size: 24px;
  }
  .main-img-text .text .bottom .item:nth-child(1) {
    border-left: none;
    border-top: none;
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(2) {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgb(223, 223, 223);
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgb(223, 223, 223);
    border-right: none;
    border-bottom: 1px solid rgb(223, 223, 223);
  }
  .main-img-text .text .bottom .item:nth-child(5) {
    border-left: none;
    border-top: none;
    border-right: 1px solid rgb(223, 223, 223);
    border-bottom: none;
  }
  .main-img-text .text .bottom .item:nth-child(6) {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
  }
  .text-text {
    flex-direction: column;
  }
  .text-text .left h2, .text-text .right h2 {
    font-size: 36px;
  }
  .companies h2 {
    font-size: 36px;
  }
  .companies ul li img {
    height: 80px;
  }
  .text-center > div {
    max-width: 525px;
  }
  .tiles h1 {
    font-size: 60px;
  }
  .tiles div {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiles div .tile span {
    font-size: 24px;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiles-3 h1 {
    font-size: 60px;
  }
  .tiles-3 > div {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tiles-3 > div > :nth-child(3) {
    grid-column: span 1;
  }
  .tiles-3 > div .tile {
    width: 100%;
  }
  .tiles-3 > div .tile .top {
    font-size: 23px;
  }
  .blog-list h1 {
    font-size: 60px;
  }
  .blog-list ul {
    display: flex;
    flex-direction: column;
  }
  .blog-list ul li a {
    flex-direction: column;
  }
  .blog-list ul li a img {
    width: 100%;
    max-width: 100%;
  }
  .tiles-buttons ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 60px;
  }
  .main-con {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 15px;
  }
  header .header-container .center {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    z-index: 999;
    display: block;
    padding: 0 5%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
    /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*/
  }
  header .header-container .center.active {
    max-height: calc(100vh - 80px);
  }
  header .header-container .center.active ul {
    opacity: 1;
    transform: translateY(0);
  }
  header .header-container .center ul {
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    transform: translateY(-20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }
  header .header-container .center ul li a {
    height: auto;
    padding: 0;
    font-size: 24px;
    transition: color 0.2s ease;
  }
  header .header-container .center ul li:last-child {
    display: block;
  }
  header .header-container .right .right-btn {
    display: none;
  }
  header .header-container .right .burger {
    display: block;
  }
  .img-text {
    flex-direction: column-reverse;
  }
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    padding: 50px !important;
  }
  .img-text .left .img, .img-text .right .img {
    height: 400px;
    flex: auto;
    display: block;
  }
  .img-text .left .img > img, .img-text .right .img > img {
    object-position: right;
  }
  .img-text .left:last-child, .img-text .right:last-child {
    flex: auto;
    display: block;
    width: 100%;
  }
  .first {
    flex-direction: column;
  }
  .kontakt2 {
    flex-direction: column;
  }
  .kontakt2 .left .img, .kontakt2 .right .img {
    height: 700px;
  }
  .kontakt2 .left .text, .kontakt2 .right .text {
    padding-top: 80px !important;
  }
  .kontakt2 .left .text h2, .kontakt2 .right .text h2 {
    text-align: center;
  }
  .main-img-text .text {
    padding: 35px 15px;
  }
  .main-img-text .text .bottom .item svg {
    font-size: 48px;
  }
  .main-img-text .text .bottom .item span {
    font-size: 36px;
  }
  .text-text {
    flex-direction: column;
  }
  .companies ul li img {
    height: 90px;
  }
  .tiles-3 > div .tile {
    width: 100%;
  }
  .tiles-3 > div .tile .top {
    font-size: 23px;
  }
  .blog-list ul {
    display: flex;
    flex-direction: column;
  }
  .tiles-buttons ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiles div .tile span {
    font-size: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-con {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 15px;
  }
  /*header .header-container {
    .center {
      position: fixed;
      top: $header-height;
      left: 0;
      width: 100%;
      height: calc(100vh - $header-height);
      background-color: $header-background-color;
      z-index: 999;
      display: block;
      padding: 0 5%;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.6s ease;
      !*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);*!

      &.active {
        max-height: calc(100vh - $header-height);

        ul {
          opacity: 1;
          transform: translateY(0);
        }
      }

      ul {
        flex-direction: column;
        gap: 1.5rem;
        display: flex;
        align-items: flex-start;
        padding-top: 50px;
        opacity: 0;
        transition: opacity 0.3s ease 0.1s;
        transform: translateY(-20px);
        transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;

        li {
          a {
            height: auto;
            padding: 0;
            font-size: 24px;
            transition: color 0.2s ease;
          }
        }
      }
    }

    .right {
      .right-btn {
        display: none;
      }

      .burger {
        display: block;
      }
    }
  }*/
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    width: 480px;
  }
  .main-img-text .text .bottom .item svg {
    font-size: 48px;
  }
  .main-img-text .text .bottom .item span {
    font-size: 36px;
  }
  .tiles-3 > div .tile .top {
    font-size: 26px;
  }
}
@media (min-width: 1200px) and (max-width: 1579px) {
  .main-con {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    width: 570px;
  }
  .main-img-text .text .bottom .item svg {
    font-size: 54px;
  }
  .main-img-text .text .bottom .item span {
    font-size: 40px;
  }
}
@media (min-width: 1580px) {
  .main-con {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 15px;
  }
  header .header-container {
    max-width: 1550px;
    padding: 0 15px;
  }
  .img-text .left .img > img, .img-text .right .img > img {
    object-position: right;
  }
  .img-text .left .text, .img-text .left .overlay-text, .img-text .right .text, .img-text .right .overlay-text {
    width: 775px;
  }
}

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