* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a3b71;
  background: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1a3b71;
}

a {
  color: #e5007e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #cf0072;
}

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

#mainNav {
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s, box-shadow 0.3s;
  z-index: 1000;
}
#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
#mainNav.scrolled .navbar-brand img {
  height: 40px;
}
#mainNav .navbar-brand img {
  height: 50px;
  transition: height 0.3s;
}
#mainNav .nav-link {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #1a3b71;
  padding: 8px 12px !important;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
  color: #e5007e;
}

.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-icons a {
  display: flex;
  transition: opacity 0.2s;
}
.social-icons a:hover {
  opacity: 0.7;
}

.navbar-toggler {
  border: 2px solid #1a3b71;
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a3b71' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  #mainNav .navbar-nav {
    padding: 15px 0;
  }
  #mainNav .nav-link {
    padding: 10px 0 !important;
    font-size: 16px;
  }
}
.section-service {
  position: relative;
}
.section-service:first-of-type {
  margin-top: 80px;
}
.section-service:first-of-type .service-bg {
  padding-top: 30px;
}
.section-service:first-of-type .offer-box {
  margin-bottom: 25px;
}
.section-service h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a3b71;
  margin-bottom: 25px;
}

.service-bg {
  padding: 80px 0 0;
  overflow: hidden;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.section-description {
  font-size: 16px;
  line-height: 1.7;
  color: #1a3b71;
  margin-bottom: 25px;
}
.section-description p {
  margin-bottom: 15px;
}
.section-description strong {
  font-weight: 700;
}
.section-description .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.section-description .check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.section-description .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%23e5007e' stroke-width='1.5'/%3E%3Cpath d='M7 12l3.5 3.5L17 9' fill='none' stroke='%23e5007e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.offer-box {
  border: 1px solid rgba(229, 0, 126, 0.3);
  border-radius: 8px;
  padding: 25px 30px;
  margin-top: 15px;
  margin-bottom: 60px;
}
.offer-box p {
  font-size: 18px;
  line-height: 1.5;
  color: #e5007e;
  margin: 0;
}
.offer-box .offer-label {
  font-weight: 700;
  font-style: italic;
  color: #e5007e;
}

@media (min-width: 992px) {
  .offer-box p {
    font-size: 22px;
  }
}
.ref-gallery {
  position: relative;
}

.ref-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 6px;
}
.ref-gallery-track::-webkit-scrollbar {
  display: none;
}

.ref-gallery-item {
  flex: 0 0 33.3333333333%;
  scroll-snap-align: start;
  min-width: 0;
}

.reference-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.reference-image:hover img {
  transform: scale(1.03);
}

.ref-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ref-gallery-prev {
  left: 8px;
}

.ref-gallery-next {
  right: 8px;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #cf0072;
  border-radius: 4px;
  transition: background 0.2s;
}

.ref-gallery-btn:hover .carousel-arrow {
  background: #e5007e;
}

@media (max-width: 991.98px) {
  .ref-gallery-item {
    flex: 0 0 50%;
  }
}
@media (max-width: 575.98px) {
  .ref-gallery-item {
    flex: 0 0 100%;
  }
  .ref-gallery-track {
    gap: 0;
  }
  .carousel-arrow {
    width: 30px;
    height: 30px;
  }
}
.section-grafika {
  padding: 60px 0 70px;
  background: #ffffff;
}
.section-grafika h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a3b71;
  margin: 0;
}

.jfmark-button {
  display: inline-block;
  transition: opacity 0.2s;
}
.jfmark-button:hover {
  opacity: 0.9;
}
.jfmark-button img {
  height: 50px;
  width: auto;
}

@media (min-width: 768px) {
  .section-grafika h2 {
    font-size: 30px;
  }
  .jfmark-button img {
    height: 70px;
  }
}
.section-clients {
  padding: 60px 0;
  background: #f3f5f6;
}
.section-clients h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a3b71;
  margin-bottom: 40px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  flex: 0 0 auto;
  width: 100px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.3s, opacity 0.3s;
}
.client-logo:hover img {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .client-logo {
    width: 70px;
    height: 40px;
  }
  .clients-grid {
    gap: 15px 12px;
  }
}
.site-footer {
  background: #1a3b71;
  color: #ffffff;
  padding: 60px 0 40px;
}
.site-footer h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-info {
  margin-bottom: 25px;
}
.footer-info p {
  margin: 5px 0;
  font-size: 15px;
}
.footer-info .company-name {
  font-size: 17px;
  margin-bottom: 10px;
}
.footer-info .label {
  color: #e5007e;
  font-weight: 700;
}
.footer-info a {
  color: #ffffff;
}
.footer-info a:hover {
  color: #e5007e;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}
.footer-social a {
  display: flex;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 0.7;
}

.footer-cookies a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: underline;
}
.footer-cookies a:hover {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .service-bg {
    padding: 50px 0 30px;
    background-size: auto 100%;
  }
  .section-service:first-of-type .service-bg {
    padding-top: 90px;
  }
  .section-service h2 {
    font-size: 26px;
  }
  .section-content {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 10px;
    padding: 20px;
  }
  .offer-box {
    background: rgba(255, 255, 255, 0.95);
  }
  .offer-box p {
    font-size: 18px;
  }
  .section-service.layout-right .service-bg {
    background-position: right center;
  }
  .section-service.layout-left .service-bg {
    background-position: left center;
  }
}
@media (max-width: 767.98px) {
  .service-bg {
    padding: 40px 0 20px;
  }
  .section-service:first-of-type .service-bg {
    padding-top: 80px;
  }
  .section-service h2 {
    font-size: 24px;
  }
  .section-description {
    font-size: 15px;
  }
  .offer-box {
    padding: 18px 20px;
  }
  .offer-box p {
    font-size: 16px;
  }
  .reference-image {
    aspect-ratio: 3/2;
  }
  .site-footer {
    padding: 40px 0 30px;
  }
  .site-footer h2 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  .section-grafika h2 {
    font-size: 20px;
  }
  .jfmark-button {
    padding: 12px 25px;
  }
  .jfmark-button img {
    height: 45px;
  }
}

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