/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #3b3345;
}

a {
  color: #2529a2;
  text-decoration: none;
}

a:hover {
  color: #58609a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #435a7c;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #06072f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid rgb(27, 38, 49);
  border-top-color: #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  transition: all 0.5s;
  height: 70px;
  background-color: rgba(0,0,0,0.0);
  font-weight: 600;
}

header.scrolled {
  background: #fff;
  font-weight: 600;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

#header .logo {
  margin: 0;
  padding: 10px 0;
  align-items: left;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0px;
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: right;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 5px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: right;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 17px;
  font-weight: 600;
  color: rgb(27, 38, 49);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #435a7c;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar li:hover>a {
  color: #435a7c;
  transition: all 0.15s;
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #435a7c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #009FE3;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(27, 38, 49);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #435a7c;
  background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.hero .col {
  display: flex;
  justify-content: center;
}

.hero .container {
  margin-bottom: 80px;
}

.hero h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
}

.hero img {
  padding: 60px 0 0 0;
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 15px;
  text-align: justify;
}

.hero .first-info {
  width: 100%;
  margin: auto;
  padding-top: 40px;
}

.hero .first-info h2 {
  color: rgb(27, 38, 49);
  font-weight: 800;
  font-size: 30px;
}

.hero .first-info p {
  text-align: justify;
  font-size: 18px;
}

.hero .logo {
  display: flex;
  margin: auto;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 25px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .large-screen {
  width: 100%;
  max-width: 984px;
  height: 412px;
  display: inline-block;
  margin: auto;
}

.hero .big-screen {
  width: 100%;
  max-width: 806px;
  height: 412px;
  display: none;
  margin: auto;
}

.hero .average-screen {
  display: none;
  width: 100%;
  max-width: 696px;
  height: 350px;
  margin: auto;
}

.hero .small-screen {
  display: none;
  max-width: 390px;
  width: 100%;
  height: 550px;
  margin: auto;
}

_::-webkit-full-page-media, _:future, :root  .hero .small-screen {

padding-top: 0;

}

@media (orientation: landscape){
_::-webkit-full-page-media, _:future, :root .hero .small-screen {
  padding-top: 50px;
  height: 800px;
}
}

@media (max-width: 1300px) or (max-height: 800px) {
  .hero .large-screen {
    display: none;
  }
  .hero .big-screen {
    display: block;
  }
}

@media (max-width: 994px) or (max-height: 534px)  {
  .hero .large-screen {
    display: none;
  }
  .hero .big-screen {
    display: none;
  }
  .hero .average-screen {
    display: block;
  }
}


@media (max-width: 767px) {
  .hero .large-screen {
    display: none;
  }
  .hero .big-screen {
    display: none;
  }
  .hero .average-screen {
    display: none;
  }
  .hero .small-screen {
    display: block;
  }
}


/*--------------------------------------------------------------
# Hero-pages Section
--------------------------------------------------------------*/
.hero-pages {
  width: 100%;
  padding-top: 20rem;
  height: calc(100vh - 410px);
  background: url("../img/background.PNG");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  margin-top: -20px;
}

.hero-pages .col {
  display: flex;
  justify-content: center;
}

.hero-pages .container {
  margin-bottom: 250px;
}

.hero-pages h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
}

.hero-pages img {
  padding: 60px 0 0 0;
}

.hero-pages h2 span {
  color: var(--color-primary);
}

.hero-pages p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 15px;
  text-align: justify;
}

@media (max-width: 640px) {
  .hero-pages h2 {
    font-size: 25px;
  }

  .hero-pages .btn-get-started,
  .hero-pages .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  height: 100%;
}

.about .content h3 {
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  padding-bottom: 30px;
  color: #435a7c;
}

.about .container {
  display: flex;
}


.about .contents {
  margin: auto;
  width: 100%;
  display: flex;
  padding-bottom: 50px;
}

.about .content {
  width: 600px;
  margin: auto;
}

.about .logos {
  width: 400px;
  margin: auto;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  list-style: none;
  position: relative;
  padding: 0 0 25px 30px;
  font-size: 18px;
}

.about .content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 13px;
  width: 13px;
  border: 1px solid #435a7c;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .row {
  padding-top: 15px;
  padding-right: 0 !important;
  margin-right: 0 !important;
  justify-content: center;
}

.about .box {
  padding: 10px 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  width: 90px;
  height: 90px;
  margin-right: 15px;
}

.about .box-last {
  padding: 10px 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  width: 90px;
  height: 90px;
}

.about img {
  max-width: 100%;
  min-width: 100%;
}

.about .box:hover span,
.about .box:hover h4,
.about .box:hover p {
  color: #fff;
}

.about .box-last:hover span,
.about .box-last:hover h4,
.about .box-last:hover p {
  color: #fff;
}

@media only screen and (max-width: 1042px) {
  .about .logos {
    margin: auto;
  }
  
  .about .contents {
    display: inline;
    width: 100%;
  }

  .about .content {
    width: 100%;
    margin: auto;
  }
  .about .box {
    width: 80px;
    height: 80px;
  }
  .about .box-last {
    width: 80px;
    height: 80px;
  }

  .about .row {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .about .logos {
    margin: auto;
  }
  
  .about .contents {
    display: inline;
    width: 100%;
  }

  .about .content {
    width: 100%;
    margin: auto;
  }
  .about .box {
    width: 80px;
    height: 80px;
  }
  .about .box-last {
    width: 80px;
    height: 80px;
  }
  .about .row {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
    justify-content: center;
  }
}

@media only screen and (max-width: 415px) {
  .about .box {
    width: 60px;
    height: 60px;
  }
  .about .box-last {
    width: 60px;
    height: 60px;
  }
  .about .row {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
  }
  .about .logos {
    width: 285px;
}
}

@media only screen and (max-width: 294px) {
  .about .box {
    width: 50px;
    height: 50px;
  }
  .about .box-last {
    width: 50px;
    height: 50px;
  }
  .about .logos {
    width: 245px;
}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .product-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 385px;
}

#services {
  background: #c5d1deff;
  transition: all 0.5s ease
}

.services .section-title h2{
  color: #435a7c;
  padding-bottom: 0;
  font-weight: 1000;
}

.services .product-box .product {
  margin: 0 auto;
  width: 267px;
  height: 170px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  transform-style: preserve-3d;
}

.services .product-box img {
  width: 267px;
  height: 170px;
}

.services .product-box .product::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .product-box h4 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 24px;
  color: #435a7c;
}


.services .product-box h4 a {
  color: #435a7c;
}

.services .product-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  color:rgb(10, 9, 9);
}

.services .product-box:hover {
  background-color: #435a7c;
  border-color: #0b1d57;
  padding: 15px 20px 10px 20px;
}

.services .product-box:hover .product {
  background: none;
}

.services .product-box:hover {
  cursor: pointer;
}

.services .product-box:hover h4,
.services .product-box:hover p {
  color: #fff;
}

.services .row {
  justify-content: center;
} 

@media only screen and (max-width: 1399px) {
  .services .product-box img {
    width: 227px;
    height: 130px;
  }

  .services .product-box .product {
    width: 227px;
    height: 130px;
  }
}

@media only screen and (max-width: 1200px) {
  .services .product-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .services .product-box p {
    overflow: hidden;
  }

  .services .product-box {
    overflow: hidden;
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .services .product-box img {
    width: 267px;
    height: 170px;
  }

  .services .product-box .product {
    width: 267px;
    height: 170px;
  }
}

/*--------------------------------------------------------------
# Why us
--------------------------------------------------------------*/
.why-us {
  height: 100% ;
  margin: 0 auto;
}

.why-us .container {
  margin: auto;
  padding-top: 120px;
  padding-bottom: 150px;
}

.why-us .section-title h2{
  color: #435a7c;
  padding-bottom: 10px;
  font-weight: 900;
}

.why-us .text-box p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 5px;
  text-align: justify;
}

.why-us .text-box-decoration {
  padding: 10px 0px ;
  margin: auto;
  align-items: center;
}

.why-us .text-box-decoration p {
  padding: 30px;
  text-align: center;
  border: 5px solid #435a7c;
  font-size: 20px;
}

@media only screen and (max-width: 1400px) {
  .why-us .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .why-us .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .why-us .text-box p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
#clients {
  background-color: #c5d1deff;
  height: 100%;
  padding: 70px 0 70px 0;
}


.clients .section-title h2 {
font-weight: 1200;
color: #435a7c;
}

.clients img {
  padding: 30px;
  min-height: 80px;
  min-width: 100%;
  max-height: 240px;
}

@media only screen and (max-width: 991px) {
  #clients {
    padding: 50px 0 50px 0;
  }

  .clients .section-title {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .clients img {
    max-height: 200px;
  }
}
/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
#location {
  height: auto;
}

.location .section-title h2{
  color: #435a7c;
  font-weight: 900;
}

#location .container {
  display: flex;
  align-content: center;
  height: auto;
}

.location .contact-us h3 {
  font-weight: 800;
  padding-left: 150px;
  font-size: 26px;
}

.location .contact-us li {
  list-style: none;
}

.location .location-item {
  background: #c5d1deff;
  padding: 30px;
  border-bottom: 10px solid #fff;
  height: 150px;
  width: 600px;
}

.location .location-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: #06072f;
  border-radius: 50%;
  margin-right: 15px;
}

.location .location-item h3 {
  font-size: 20px;
  color: #435a7c;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.location .location-item a {
  color: #000000;
  transition: 0.3s;
}

.location .location-item a:hover{
  color: #fff;
} 

.location .location-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 15px;
}

@media only screen and (max-width: 1400px) {
  .location .location-item {
    padding: 30px;
    height: 150px;
    width: 500px;
  }
}

@media only screen and (max-width: 1250px) {
    .location iframe {
      width: 500px;
    }
}

@media only screen and (max-width: 1200px) {
  .location .location-item {
    padding: 30px;
    height: 150px;
    width: 400px;
  }
  .location iframe {
    width: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .location .location-item {
    padding: 30px;
    height: 150px;
    width: 600px;
    margin: auto;
  }

  .location .map {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
  }

  #location .container {
    display: inline-block;
    width: 100% !important;
    max-width: 1000px !important;
  }

  .location .information {
    display: inline;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
  }

  .location iframe {
    width: 660px;
    margin: auto;
    padding: 30px;
  }
}

@media only screen and (max-width: 683px) {
  .location .location-item {
    width: auto;
  }

  .location iframe {
    width: 600px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #c5d1deff;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

#footer .container {
  display: flex;
  justify-content: space-between;
}

#footer .contact-info h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
#footer .contact-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top {
  padding: 50px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #435a7c;
  padding-right: 10px;
  border-right: 1px solid #435a7c;
  width: 432px;
  height: 236px;
}

#footer .footer-top .footer-info {
  font-size: 15px;
}

#footer .footer-top .contact-info {
  margin-bottom: 15px;
  color: #435a7c;
  padding-right: 10px;
  border-right: 1px solid #435a7c;
  width: 216px;
  height: 236px;
}

#footer .footer-top .contact-info a {
  color: #435a7c;
  transition: 0.3s;
}

#footer .footer-top .contact-info a:hover {
  color: #fff;
}

#footer .footer-top .footer-links {
  margin-bottom: 15px;
  color: #555252;
  padding-right: 10px;
  border-right: 1px solid #435a7c;
  width: 216px;
  height: 236px;
}

#footer .footer-top .footer-info h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #435a7c;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top .social-links {
  display: flex;
  justify-content: center;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #435a7c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #435a7c;
  color: #6c757d;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #435a7c;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #435a7c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #435a7c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-pages {
  margin-bottom: 30px;
  width: 216px;
  height: 236px;
}

#footer .footer-top .footer-pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-pages ul i {
  padding-right: 2px;
  color: #435a7c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-pages ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}

#footer .footer-top .footer-pages ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-pages ul a {
  color: #435a7c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-pages ul a:hover {
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

@media (max-width: 1200px) {
  #footer .footer-top .footer-info {
    border-right: none;
    height: 200px;
  }
  #footer .footer-top .contact-info {
    border-right: none;
  }
  #footer .footer-top .footer-links {
    border-right: none;
  }
}

@media (max-width: 768px) {
  #footer .footer-top .footer-info {
    height: auto;
    border-bottom: 1px solid #435a7c;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  #footer .footer-top .contact-info {
    height: auto;
    border-bottom: 1px solid #435a7c;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  #footer .footer-top .footer-links {
    height: auto;
    border-bottom: 1px solid #435a7c;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  #footer .footer-top .footer-pages {
    height: auto;
    width: 100%;
    text-align: center;
  }

  #footer .footer-top .footer-links li {
    display: inline;
    justify-content: center;
  }

  #footer .footer-top .footer-pages li {
    display: inline;
    justify-content: center;
  }

  #footer .container {
    display: inline-block;
    margin: auto;
    width: 100% !important;
    max-width: 768px !important;
  }
}
/*--------------------------------------------------------------
# Services-page
--------------------------------------------------------------*/
.services-page .product-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 385px;
}
.services-page {
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.services-page .section-title h2{
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-top: 40px;
}

.services-page .section-title span{
  color:#0b1d57;
}

.services-page .product-box .product {
  margin: 0 auto;
  width: 267px;
  height: 170px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  padding-top: 0;
  justify-content: center;
  margin-bottom: 10px;
  transform-style: preserve-3d;
}

.services-page .product-box img{
  width: 267px;
  height: 170px;
}

.services-page .product-box:hover {
  cursor: pointer;
}

.services-page .product-box .product::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services-page .product-box h4 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 24px;
  color: #435a7c;
}

.services-page .product-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  color:rgb(12, 0, 0);
}

.services-page .product-box:hover {
  background-color: #435a7c;
  color: #435a7c;
  padding: 15px 20px 10px 20px;
}

.services-page .product-box:hover .product {
  background: none;
}


.services-page .product-box:hover h4,
.services-page .product-box:hover p {
  color: #fff;
}

.services-page .row {
  justify-content: center;
} 

@media only screen and (max-width: 1399px) {
  .services-page .product-box img {
    width: 227px;
    height: 130px;
  }

  .services-page .product-box .product {
    width: 227px;
    height: 130px;
  }

}

@media only screen and (max-width: 1200px) {
  .services-page .product-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .services-page .product-box p {
    overflow: hidden;
  }

  .services-page .product-box {
    overflow: hidden;
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .services-page .product-box img {
    width: 267px;
    height: 170px;
  }

  .services-page .product-box .product {
    width: 267px;
    height: 170px;
  }
}

/*--------------------------------------------------------------
# Downloads
--------------------------------------------------------------*/
.downloads {
  margin: 45px 0 75px 0;
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  margin-top: -20px;
}

.downloads h3 {
  font-size: 25px;
  font-weight: 600;
  color: rgb(27, 38, 49);
  position: relative;
  padding-bottom: 12px;
  text-align: center;
}

.downloads .section-title h2{
  font-size: 30px;
  font-weight: 600;
  padding-top: 100px;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
}

.downloads .pdf-box {
  text-align: center;
  padding: 100px 20px;
  margin:auto;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
  height: 300px;
  width: 400px;
}

.downloads .pdf img {
  height: 50px;
}

.downloads .pdf-box:hover {
  cursor: pointer;
}

.downloads .pdf-box .pdf {
  margin: 0 auto;
  transition: all 0.3s ease-out 0s;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.downloads .pdf-box .pdf::before {
  position: absolute;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.downloads .pdf-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #435a7c;
}

.downloads .pdf-box h4 a {
  color: #435a7c;
  font-size: 23px;
}

.downloads .pdf-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #435a7c;
}

.downloads .pdf-box:hover {
  background-color: #435a7c;
  color: #435a7c;
  border-color: #0b1d57;
  padding: 70px 20px 90px 20px;
}

.downloads .pdf-box:hover .pdf::before {
  background: #cfcedb;
}

.downloads .pdf-box:hover h4 a,
.downloads .pdf-box:hover p {
  color: #fff;
}

.downloads .row {
  justify-content: center;
} 

@media only screen and (max-width: 1200px) {
  .downloads .pdf-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .downloads .pdf-box p {
    overflow: hidden;
  }

  .downloads .pdf-box {
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# hero-prinflow
--------------------------------------------------------------*/
.hero-printflow {
  width: 100%;
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  margin-top: -20px;
  padding-bottom: 0 !important;
}


.hero-printflow .section-title h2{
  font-size: 30px;
  font-weight: 700;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-top: 100px;
}

.hero-printflow .section-title p{
  text-align: center;
}

.hero-printflow .first-child p {
  font-size: 23px;
  color: #435a7c;
  padding-top: 30px;
}

.hero-printflow .second-child p {
  font-size: 23px;
  color: #435a7c;
  padding-top: 60px;
}

.hero-printflow .third-child {
  padding-top: 60px;
}

.hero-printflow .third-child p{
  font-size: 18px;
}

.hero-printflow .box-info {
  font-size: 30px;
  font-weight: 700;
  color: #435a7c;
  font-family: var(--font-primary);
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.hero-printflow  .info-func {
  padding: 40px 0 30px 0;
  text-align: center;
}

.hero-printflow  .info-func p {
  color: #868485;
  font-weight: 700;
  font-size: 18px;
}

.hero-printflow .box-info p{
  padding: 20px;
}

@media (max-width: 991px) {
  .hero-printflow .first-child p {
    padding-top: 30px;
  }
  .hero-printflow .second-child p {
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------
# Printflow - page sections
--------------------------------------------------------------*/
.first-section {
  background-image: linear-gradient(#ffffff, #ecf1f6ff);
  width: 100vw;
  padding-bottom: 0 !important;
}

.first-section  .scheme {
  margin: auto;
  display: flex;
}

.first-section  .scheme img {
  margin: auto;
  padding-bottom: 30px;
}


.first-section  .question p{
  font-size: 28px;
  font-weight: 700;
  color: #435a7c;
  font-family: var(--font-primary);
  text-align: center;
}

@media (max-width: 700px) {
  .first-section  .scheme img {
    width: 95%;
  }
}

@media (max-width: 991px) {
  .first-section .box-info {
    text-align: justify;
  }
  .first-section .info-func {
    text-align: justify;
  }
}

@media (max-width: 767px) {
  .first-section .question p {
    text-align: justify;
    font-size: 19px;
  }
  .first-section .box-info p{
    font-size: 19px;
  }
}

/* end of first -------------------------------------------*/

.second-section {
  background-image: linear-gradient(#ecf1f6ff, #ffff);
  padding-top: 0 !important;
}

.second-section .info-func {
  padding: 40px 0 20px 0;
  text-align: center;
}

.second-section .info-func p {
  font-weight: 600;
  font-size: 20px;
}

.second-section  .second-box-info {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  font-family: var(--font-primary);
  text-align: center;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 30px;
}

.second-section  .second-box-info p{
  padding: 20px;
  border: 4px solid #fdfefe;
}

.second-section  .row {
  justify-content: center;
} 

.second-section .func-list {
  padding-top: 30px;
  padding-bottom: 30px;
}

.second-section .func-list h4 {
  color: #435a7c;
  font-size: 23px;
  font-weight: 700;
  padding-top: 40px;
}

.second-section .func-list ul {
  list-style: none;
  margin-right: 0;
  padding-top: 40px;
}

.second-section .func-list ul li {
  list-style: none;
  position: relative;
  padding: 0 0 40px 30px;
  font-size: 18px;
}

.second-section .func-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 13px;
  width: 13px;
  border: 1px solid #435a7c;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .second-section .func-list ul li {
    text-align: justify;
  }

}


  
/*carousel*/
.second-section .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 10px;
}

.second-section .mySlides {
  display: none;
}

.second-section .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.second-section .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.full-img img {
  max-height: 500px;
  max-width: 100vw;
}

.full-img span{
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.second-section .slideshow-container:hover .next {
  background-color: rgba(0,0,0,0.8);
}

.second-section .slideshow-container:hover .prev {
  background-color: rgba(0,0,0,0.8);
}


.second-section .text {
  transition: 0.6s ease;
  user-select: none;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.second-section .slideshow-container:hover .text {
  color: #ffffff;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.6;
}

.slideshow-container img:hover {
  cursor: pointer;
}

.second-section .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.second-section .active, .dot:hover {
  background-color: #717171;
}


.second-section .fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .9}
  to {opacity: 1}
}
/* end of second -------------------------------------------*/

.third-section {
  background-image: linear-gradient(#ffff, #ecf1f6ff);
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.third-section .block-item {
  display: flex;
  padding: 10px;
  position: relative;
  border: 3px solid #e2e4e6;
  height: 92px;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 30px;
  border-bottom: 5px solid #435a7c;
  background-color: #fff;
}
.third-section .block-item p {
  font-size: 17px;
}

.third-section .block-item-without p {
  font-size: 17px;
}


.third-section .block-item .block-text {
  width: 90%;
}

.third-section .block-item:after {
  content:'';
  position: absolute;
  left: 0;
  right: 0;
  top: 85px;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 25px solid #435a7c;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

.third-section .block-item-without {
  display: flex;
  padding: 10px;
  border: 3px solid #e2e4e6;
  height: 92px;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 30px;
  border-bottom: 5px solid #435a7c;
  background-color: #fff;
}

.third-section .block-item-without .block-text {
  width: 90%;
}

.third-section .blocks-scheme {
  display: flex;
  margin: auto;
}

.third-section .second-scheme h5 {
  color: #435a7c;
  font-size: 23px;
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .third-section .block-item-without {
    height: 150px;
  }
  .third-section .block-item {
    height: 150px;
  }
  .third-section .block-item:after {
    top: 145px;
  }
}

@media (max-width: 465px) {
  .third-section .block-item-without {
    height: 190px;
  }
  .third-section .block-item {
    height: 190px;
  }
  .third-section .block-item:after {
    top: 185px;
  }
}


@media (max-width: 390px) {
  .third-section .block-item-without {
    height: 220px;
  }
  .third-section .block-item {
    height: 220px;
  }
  .third-section .block-item:after {
    top: 215px;
  }
}

@media (max-width: 356px) {
  .third-section .block-item-without {
    height: 250px;
  }
  .third-section .block-item {
    height: 250px;
  }
  .third-section .block-item:after {
    top: 245px;
  }
}

@media (max-width: 348px) {
  .third-section .block-item-without {
    height: 270px;
  }
  .third-section .block-item {
    height: 270px;
  }
  .third-section .block-item:after {
    top: 265px;
  }
}

@media (max-width: 314px) {
  .third-section .block-item-without {
    height: 290px;
  }
  .third-section .block-item {
    height: 290px;
  }
  .third-section .block-item:after {
    top: 285px;
  }
  .third-section .block-item p {
    font-size: 16px;
  }
  .third-section .block-item-without p {
    font-size: 16px;
  }  
}

@media (max-width: 298px) {
  .third-section .block-item-without {
    height: 330px;
  }
  .third-section .block-item {
    height: 330px;
  }
  .third-section .block-item:after {
    top: 325px;
  }
  .third-section .block-item p {
    font-size: 15px;
  }
  .third-section .block-item-without p {
    font-size: 15px;
  }
  
}

@media (max-width: 289px) {
  .third-section .block-item-without {
    height: 370px;
  }
  .third-section .block-item {
    height: 370px;
  }
  .third-section .block-item:after {
    top: 365px;
  }
}

@media (max-width: 245px) {
  .third-section .block-item-without {
    height: 390px;
  }
  .third-section .block-item {
    height: 390px;
  }
  .third-section .block-item:after {
    top: 385px;
  }
}

@media (max-width: 233px) {
  .third-section .block-item p {
    font-size: 13px;
  }
  .third-section .block-item-without p {
    font-size: 13px;
  }
}

/*end of third-------------------------*/

.fourth-section {
  background-image: linear-gradient(#ecf1f6ff, #ffff);
}

.fourth-section .invite p {
  color: #435a7c;
  font-size: 23px;
  font-weight: 700;
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
}

.fourth-section .improvements h4{
  font-size: 30px;
  font-weight: 700;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 40px;
  padding-top: 50px;
  text-align: center;
}

.fourth-section .improvements p {
  text-align: left;
  font-size: 18px;
}

.fourth-section .improvements ul {
  list-style: none;
}

.fourth-section .improvements ul li {
  list-style: none;
  position: relative;
  padding: 0 0 15px 30px;
  font-size: 18px;
}

.fourth-section .improvements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 13px;
  width: 13px;
  border: 1px solid #435a7c;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.fourth-section .improvements h5 {
  font-size: 23px;
  font-weight: 600;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 20px;
}
/*end of fourth-------------------------*/

@media (max-width: 991px) {
  .hero-printflow .third-child {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero-printflow {
    margin-top: 0;
    padding-bottom: 0 !important;
    height: auto;
  }

  .first-section {
    padding: 0 !important;
  }

  .second-section {
    padding: 0 !important;
  }

  .second-section .func-list {
    padding: 0 !important;
  }

  .third-section {
    padding: 0 !important;
  }

  .fourth-section {
    padding: 0 !important;
  }

}

@media (max-height: 804px) {
  .hero-printflow .third-child {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .hero-printflow {
    margin-top: 0;
    padding-bottom: 0 !important;
    height: auto;
  }
  .second-section {
    padding: 0 !important;
  }

  .second-section .func-list {
    padding: 0 !important;
  }

  .fourth-section {
    padding: 0 !important;
  }
}

/*--------------------------------------------------------------
# support-modules
--------------------------------------------------------------*/
.support-modules {
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  margin-top: -20px;
}

.support-modules .section-title h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 20px;
  padding-top: 50px;
}

.support-modules .section-title p {
  text-align: justify;
  padding-bottom: 10px;
  font-size: 18px;
}

.support-modules .section-title {
  padding-bottom: 10px;
}

.support-modules .info-func {
  padding-top: 100px;
  padding-bottom: 50px;
}

.support-modules .info-func ul {
  list-style: none;
}

.support-modules .info-func ul li {
  list-style: none;
  position: relative;
  padding: 0 0 15px 30px;
  font-size: 18px;
}

.support-modules .info-func li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 10px;
  width: 13px;
  border: 1px solid #435a7c;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.support-modules .info-func h4 {
  font-size: 23px;
  font-weight: 500;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 20px;
}

.support-modules .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 10px;
}

.support-modules .mySlides {
  display: none;
}

.support-modules .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.support-modules .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.support-modules .slideshow-container:hover .next {
  background-color: rgba(0,0,0,0.8);
}

.support-modules .slideshow-container:hover .prev {
  background-color: rgba(0,0,0,0.8);
}

.support-modules .text {
  transition: 0.6s ease;
  user-select: none;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.support-modules .slideshow-container:hover .text {
  color: #ffffff;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.6;
}

.support-modules .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.support-modules .active, .dot:hover {
  background-color: #717171;
}

.support-modules .fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .9}
  to {opacity: 1}
}

/*--------------------------------------------------------------
# digital-signage
--------------------------------------------------------------*/
.digital-signage {
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.digital-signage .section-title h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 10px;
  padding-top: 40px;
}

.digital-signage .section-title p {
  text-align: justify;
  padding-bottom: 40px;
  font-size: 18px;
}

.digital-signage .section-title-second {
  padding-bottom: 50px;
}

.digital-signage .section-title-second p {
  font-size: 18px;
}

.digital-signage .info-func ul {
  list-style: none;
}

.digital-signage .info-func i {
  padding-right: 20px;
}

.digital-signage .info-func li {
  padding-bottom: 15px;
  font-size: 18px;
}

.digital-signage .info-func h4 {
  font-size: 23px;
  font-weight: 500;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 20px;
}

.digital-signage .slideshow-container {
  max-width: 650px;
  position: relative;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 5px;
}

.digital-signage .dots {
  padding-bottom: 20px;
}


.digital-signage .mySlides {
  display: none;
}

.digital-signage .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.digital-signage .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.digital-signage .slideshow-container:hover .next {
  background-color: rgba(0,0,0,0.8);
}

.digital-signage .slideshow-container:hover .prev {
  background-color: rgba(0,0,0,0.8);
}

.digital-signage .text {
  transition: 0.6s ease;
  user-select: none;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.digital-signage .slideshow-container:hover .text {
  color: #ffffff;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.6;
}

.digital-signage .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.digital-signage .active, .dot:hover {
  background-color: #717171;
}

.digital-signage .fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .9}
  to {opacity: 1}
}
/*--------------------------------------------------------------
# moduły www
--------------------------------------------------------------*/
.www_modules {
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.www_modules .section-title h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 10px;
  padding-top: 40px;
}

.www_modules .section-title p {
  text-align: left;
  padding-bottom: 15px;
  font-size: 18px;
}

.www_modules .info-func ul {
  list-style: none;
  margin-right: 0;
  padding-top: 40px;
}

.www_modules .info-func ul li {
  list-style: none;
  position: relative;
  padding: 0 0 40px 30px;
  font-size: 18px;
}

.www_modules .info-func li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 13px;
  width: 13px;
  border: 1px solid #435a7c;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .www_modules .info-func ul li {
    text-align: justify;
  }
}

.www_modules .info-func h5 {
  font-size: 23px;
  font-weight: 500;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-top: 20px;
}

.www_modules .section-title h4 {
  color: #435a7c;
  padding-top: 30px;
}

.www_modules .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 5px;
}

.www_modules .dots {
  padding-bottom: 20px;
}

.www_modules .mySlides {
  display: none;
}

.www_modules .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.www_modules .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.www_modules .slideshow-container:hover .next {
  background-color: rgba(0,0,0,0.8);
}

.www_modules .slideshow-container:hover .prev {
  background-color: rgba(0,0,0,0.8);
}

.www_modules .text {
  transition: 0.6s ease;
  user-select: none;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.www_modules .slideshow-container:hover .text {
  color: #ffffff;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.6;
}

.www_modules .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.www_modules .active, .dot:hover {
  background-color: #717171;
}

.www_modules .fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .9}
  to {opacity: 1}
}
/*--------------------------------------------------------------
# 3d configurators
--------------------------------------------------------------*/
.configurators {
  background: url("../img/printflow/background1-printflow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.configurators .section-title h2{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 10px;
  padding-top: 40px;
}

.configurators .section-title p {
  text-align: left;
  padding-bottom: 15px;
  font-size: 18px;
  text-align: justify;
}

.configurators .info-func ul {
  list-style: none;
}

.configurators .info-func i {
  padding-right: 20px;
}

.configurators .info-func li {
  padding-bottom: 15px;
  font-size: 18px;
}

.configurators .info-func h4 {
  font-size: 23px;
  font-weight: 500;
  color: #435a7c;
  font-family: var(--font-primary);
  padding-bottom: 20px;
}

.configurators .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 5px;
}

.configurators .dots {
  padding-bottom: 20px;
}

.configurators .mySlides {
  display: none;
}

.configurators .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.configurators .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.configurators .slideshow-container:hover .next {
  background-color: rgba(0,0,0,0.8);
}

.configurators .slideshow-container:hover .prev {
  background-color: rgba(0,0,0,0.8);
}

.configurators .text {
  transition: 0.6s ease;
  user-select: none;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.configurators .slideshow-container:hover .text {
  color: #ffffff;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.6;
}

.configurators .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.configurators .active, .dot:hover {
  background-color: #717171;
}

.configurators .fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .9}
  to {opacity: 1}
}