* {
  box-sizing: border-box; /* zawiera całość oprócz marginesów */
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFFFF;
  color: black;

}

html {
  scroll-behavior: smooth;
}

.nav-menu-list {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  display: inline;
  float: right;
  padding: 10px 0;
}

.nav-menu-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 30px;
  line-height: 200%;
}

.nav-menu-list li {
  display: inline-block;
  margin: 0 5px;
  /* odlegość pomiędzy wyrazami */
}

.nav-menu-list a {
  padding: 0.4em 0.6em;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  text-decoration: none;
  font-size: 17px;
}

.nav-menu-list a:before,
.nav-menu-list a:after {
  height: 10px;
  width: 10px;
  position: absolute;
  content: '';
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  opacity: 0;
}

.nav-menu-list a:before {
  right: 0;
  top: 0;
  border-right: 1px solid red;
  border-top: 1px solid red;
  transform: translate(-100%, 50%);
  -webkit-transform: translate(-100%, 50%);
  -moz-transform: translate(-100%, 50%);
  -o-transform: translate(-100%, 50%);
  -ms-transform: translate(-100%, 50%);
}

.nav-menu-list a:after {
  left: 0;
  bottom: 0;
  border-left: 1px solid red;
  border-bottom: 1px solid red;
  transform: translate(100%, -50%);
  -webkit-transform: translate(100%, -50%);
  -moz-transform: translate(100%, -50%);
  -o-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
}

.nav-menu-list a:hover {
  color: red;
}

.nav-menu-list a:hover:before,
.nav-menu-list a:hover:after {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  opacity: 1;
}

#nav:checked+.nav-menu-btn {
  transform: rotate(45deg);
}

#nav:checked+.nav-menu-btn i {
  background: #000;
  transition: transform 0.2s ease;
}

#nav:checked+.nav-menu-btn i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}

#nav:checked+.nav-menu-btn i:nth-child(2) {
  opacity: 0;
}

#nav:checked+.nav-menu-btn i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}

#nav:checked~.nav-menu-list {
  z-index: 9990;
  opacity: 1;
}

#nav:checked~.nav-menu-list ul li a {
  opacity: 1;
  transform: translateX(0);
}

.hidden {
  display: none;
}

@media screen and (max-width: 900px) {
  .logo {
    padding: 0;
  }

  .nav-menu-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: all 0.2s ease;
  }

  .nav-menu-list ul {
    position: relative;
    top: 25%;
    /* transform: translateY(-50%); */
    width: 100%;
  }

  .nav-menu-list ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    margin-bottom: 20px;
  }

  .nav-menu-list ul li:nth-child(1) a {
    transition-delay: 0.2s;
  }

  .nav-menu-list ul li:nth-child(2) a {
    transition-delay: 0.25s;
  }

  .nav-menu-list ul li:nth-child(3) a {
    transition-delay: 0.3s;
  }

  .nav-menu-list ul li:nth-child(4) a {
    transition-delay: 0.35s;
  }

  .nav-menu-list ul li:nth-child(5) a {
    transition-delay: 0.4s;
  }

  .nav-menu-list ul li:nth-child(6) a {
    transition-delay: 0.45s;
  }

  .nav-menu-list ul li:not(:first-child) {
    margin-left: 0;
  }

  .nav-menu-list ul li a {
    padding: 10px 24px;
    opacity: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transform: translateX(-20px);
    transition: all 0.2s ease;
  }

  .nav-menu-btn {
    position: fixed;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }

  .nav-menu-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin-left: 14px;
  }

  .nav-menu-btn i:nth-child(1) {
    margin-top: 16px;
  }

  .nav-menu-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }

  .nav-menu-btn i:nth-child(3) {
    margin-top: 4px;
  }

  #bottom-header-image {
    margin: 0;
    padding-top: 20px;
    height: 100%;
  }

  #bottom-header-info {
    margin-bottom: -10px;
    position: relative;
    animation: bottom-header-move 0.4s ease 1;
  }

  #bottom-header-page-titile {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 200;
    padding: 5px 0 2px 0;
  }

  #bottom-header-page-desc {
    font-size: 16px;
    color: grey;
    font-weight: 400;
    padding: 10px 0;
  }

  #break-header-image {
    display: none;
  }

  .footer-page-list a, .footer-socials a {
    line-height: 60px;
    font-size: 22px;
  }
}

.content-box {
  background: #21313D;
  max-width: 566px;
  /* height: 350px; */
  margin: 20px auto 80px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 25px 5px rgba(0, 0, 0, .6);
}

.content-spec-box {
  background: #21313D;
  /* border: 5px solid yellow; */
  max-width: 1000px;
  /* height: 350px; */
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 25px 5px rgba(0, 0, 0, .6);
}

.content-box-title, .content-spec-box-title {
  /* border: 2px solid pink; */
  font-family: 'Titillium Web', sans-serif;
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 0 auto;
  width: 90%;
  letter-spacing: 5px;
  line-height: 40px;
}

.content-box-subtitle, .content-spec-box-subtitle {
  /* border: 2px solid red; */
  color: #FFF;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  /* letter-spacing: 5px; */
  margin: 10px auto 40px auto;
  padding: 0;
  width: 90%;
}

.content-box-message {
  background: #7F0000;
  color: #FFCCD0;
  border: 2px solid #A50000;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 0 auto;
  width: 90%;
  padding: 5px;
}

.content-box-button, .content-spec-box-button {
  text-align: center;
  margin: 40px auto 0 auto;
  width: auto;
}

.content-box-button-link, .content-spec-box-button-link {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  min-width: 150px;
  border: 2px solid #02639a;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
  padding: 2px 10px;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0px 1px 0px #854629;
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1) 45ms;
  -moz-box-shadow: inset 0px 1px 0px 0px #cf866c;
  -webkit-box-shadow: inset 0px 1px 0px 0px #cf866c;
  box-shadow: inset 0px 1px 0px 0px #cf866c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d0451b), color-stop(1, #801a08));
  background: -moz-linear-gradient(top, #d0451b 5%, #801a08 100%);
  background: -webkit-linear-gradient(top, #d0451b 5%, #801a08 100%);
  background: -o-linear-gradient(top, #d0451b 5%, #801a08 100%);
  background: -ms-linear-gradient(top, #d0451b 5%, #801a08 100%);
  background: linear-gradient(to bottom, #d0451b 5%, #801a08 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0451b', endColorstr='#801a08', GradientType=0);
  background-color: #d0451b;
}

.content-box-button-link:hover, .content-spec-box-button-link:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #611d10), color-stop(1, #d0451b));
  background: -moz-linear-gradient(top, #611d10 5%, #d0451b 100%);
  background: -webkit-linear-gradient(top, #611d10 5%, #d0451b 100%);
  background: -o-linear-gradient(top, #611d10 5%, #d0451b 100%);
  background: -ms-linear-gradient(top, #611d10 5%, #d0451b 100%);
  background: linear-gradient(to bottom, #611d10 5%, #d0451b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#611d10', endColorstr='#d0451b', GradientType=0);
  background-color: #611d10;
}

.content-box-button-link:active, .content-spec-box-button-link:active {
  position: relative;
  top: 1px;
}

.content-box label, .content-spec-box label {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  /* font-weight: 400; */
  /* text-transform:uppercase; */
  color: red;
  width: 60%;
  margin: 5px 0 0 0;
  display: block;
}

.content-box input, .content-box select, .content-spec-box input, .content-spec-box select {
  padding: 3px;
  border-radius: 5px;
  border: 2px solid #02639a;
  width: 60%;
  margin: 3px auto 0 auto;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  /* color:#02639a;
    background: blue; */
  /* display: block; */
}

.content-box input[type=submit], .content-spec-box input[type=submit] {
  border: 0;
}

.content-box-star {
  margin-top: -28px;
  float: right;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  color: red;
  /* border: 1px solid green; */
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.box .inputBox {
  position: relative;
}

.box .inputBox input {
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  color: #ddd;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 10px;
  outline: none;
  background: black;
}

.box .inputBox label {
  position: absolute;
  top: -35px;
  left: 0;
  padding: 10px 5px;
  font-size: 16px;
  color: #03a9f5;
  pointer-events: none;
  /* transition: .5s; */
}

/* .box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label {
  top: -18px;
  left: 0;
  color: #03a9f5;
  font-size: 12px;
} */
.box input[type="submit"] {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  background: #03a9f5;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

#top-header {
  width: 100%;
  background-color: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  height: 50px;
}

#portal-title {
  width: 200px;
  padding: 10px 0;
  line-height: 150%;
  display: inline;
  float: left;
  height: 30px;
}

#portal-title a {
  color: red;
  text-decoration: none;
}

#portal-title a:hover {
  color: gray;
}

.link-normal {
  text-decoration: none;
  font-size: 17px;
  color: red;
}

. .miniBoxGroup {
  display: flex;
  justify-content: center;
  /* height: 60px; */
  flex-wrap: wrap;
  margin: 0 20px;
}

.miniBox {
  box-sizing: border-box;
  /* box-shadow:inset 0px 1px 0px 0px #000; */
  box-shadow: 0px 0px 35px -10px rgba(0, 0, 0, 0.9);
  background: linear-gradient(to bottom, #e9e9e9 5%, #b9b9b9 100%);
  /* background-color:#f9f9f9; */
  border-radius: 6px;
  border: 2px solid #777;
  display: inline-block;
  cursor: pointer;
  color: #333;
  font-family: 'Raleway;', sans-serif;
  /* font-size:15px; */
  /* font-weight:bold; */
  margin: 0 5px;
  padding: 10px 15px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
  min-height: 100px;
  min-height: 100px;
  /* min-width: 120px; */
  flex-basis: 240px;
}

.miniBox:hover {
  background: linear-gradient(to bottom, #b9b9b9 5%, #e9e9e9 100%);
  /* background-color:#e9e9e9; */
}

.miniBox:active {
  position: relative;
  top: 2px;
}

.miniBox h2 {
  font-family: 'Raleway;', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
}

.miniBox p {
  margin: 0;
  padding: 10px;
  text-align: left;
}

@media(hover: hover) {
  miniBox:hover {
    background: yellow;
  }
}

.serwis {
  font-family: 'Raleway', sans-serif;
  background: #f1f1f1;
  text-align: center;
  padding: 20px 0;
}

.serwis-ramka {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}

.serwis-tytul {
  text-transform: uppercase;
  border-bottom: 4px solid #3498db;
  font-size: 20px;
  padding-bottom: 10px;
  margin-top: 40px;
}

.serwis-kontener {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.serwis-pudelko {
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.serwis-pudelko i {
  color: #3498db;
  font-size: 55px;
  padding-bottom: 10px;
}

.serwis-pudelko-na {
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  cursor: not-allowed;
  transition: 0.3s;
}

.serwis-pudelko-na i {
  color: #cccccc;
  font-size: 55px;
  padding-bottom: 10px;
}

.serwis-pudelko:hover {
  background: #ddd;
}

.serwis-nag {
  font-size: 18px;
  font-weight: 500;
  /* margin: 0; */
}

.serwis-opis {
  color: rgb(142, 42, 42);
  font-size: 15px;
  font-weight: 500;
  width: 300px;
}

.serwis-nag-na {
  color: #cccccc;
  font-size: 18px;
  font-weight: 500;
  /* margin: 0; */
}

.serwis-opis-na {
  color: #cccccc;
  font-size: 15px;
  font-weight: 500;
  width: 300px;
}

@media screen and (max-width:960px) {
  .serwis-pudelko, .serwis-pudelko-na {
    max-width: 45%;
  }
}

/* @media screen and (max-width:800px) {
  .serwis-pudelko {
    max-width: 50%;
  }
} */
@media screen and (max-width:680px) {
  .serwis-pudelko, .serwis-pudelko-na {
    max-width: 100%;
  }
}

.order-table-title {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 20px auto;
  max-width: 1200px;
  width: 90%;
}

.order-table {
  max-width: 1400px;
  width: 90%;
  margin: 20px auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.order-table td, th {
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  border-top: 1px solid #ddd;
  padding: 5px 12px;
  text-align: left;
  vertical-align: top;
}

.order-table th {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.order-table td:first-child, th:first-child, td:nth-child(2), th:nth-child(2) {
  text-align: left;
}

.order-table tbody tr:nth-child(even) td {
  background-color: #f3f3f3;
}

.order-table-button {
  font-weight: 700;
  text-decoration: none;
  color: #611d10;
  padding: 0 5px;
  box-sizing: content-box;
}

.order-table-button:hover {
  color: #d0451b;
  background: rgba(251, 244, 231, 0.5);
  padding: 0 5px;
  box-sizing: content-box;
}

/* .formButton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	background-color:#f9f9f9;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.formButton:hover {
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	background-color:#e9e9e9;
}
.formButton:active {
	position:relative;
	top:1px;
} */
.form-title {             /* tylko tytuł */
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 20px auto;
  width: 90%;            /* zajmije 90% okna nie więcej niż poniżej*/
  max-width: 1000px;     /* maksymalny rozmiar na szerokość */
  /* border: 2px solid blue; */
}

.form-contener {         /* kontener dla formularza */
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 10px auto;
  max-width: 1000px;
  width: 90%;
  padding: 5px;
  /* border: 2px solid red; */
}

.form-box, .form-box4 {    /* kontener dla linii formularza */
  padding: 5px 0;
  display: flex;           /* flex - dzieci stają się elastycznymi elementami */
  flex-direction: column;  /* jak wyżej ustawia w kolumnie */  /*  */
  /* border: 2px solid green; */
}


.form-box>label, .form-box4>label {
  display: none;
}

.form-box input, .form-box select, .form-box textarea,
.form-box4 input, .form-box4 select, .form-box4 textarea {
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1.5px solid #02639a;
  margin: 3px auto 0 auto;
}

.form-box button, .form-box4 button {
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1.5px solid #02639a;
  display: inline-block;
  cursor: pointer;
  color: #666666;
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
  width: 100%;
  margin: 0 auto;
}

.form-box button:hover, .form-box4 button:hover {
  background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  background-color: #e9e9e9;
}

.form-box button:active, .form-box4 button:active {
  position: relative;
  top: 1px;
}

.form-box-check {
  margin: 0;
  padding: 0;
  /* border: 1px solid green; */
  width: 100%;
  /* display: flex;
  flex-direction: row; */
}

.form-box-check input[type="checkbox"] {
  display: none;
}

.form-box-check input[type="radio"] {
  display: none;
}

.form-box-check label {
  display: flex;
  cursor: pointer;
  position: relative;
  margin-left: 35px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.form-box-check label::before {
  content: '';
  background-color: #fff;
  border: 1.5px solid #02639a;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  left: -38px;
  width: 25px;
  height: 25px;
}

.form-box-check label::after {
  color: #2ecc71;
  content: '\2714';
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  left: -32px;
  /* top: -5px; */
  transform: scale(0);
  transition: transform 0.2s linear;
}

.form-box-check input[type="checkbox"]:checked+label::after {
  transform: scale(1);
}

.form-box-check input[type="radio"]:checked+label::after {
  transform: scale(1);
}

/* .form-box-check input[type="checkbox"] {
  apperance: none;
  -webkit-apperance: none;
  height: 20px;
  width: 20px;
  background-color: red;

  border-radius: 10px;
  cursor: pointer;


} */
@media all and (min-width: 500px) {
  .form-box {}

  .form-box label, .form-box4 label {
    display: block;
  }

  .form-box input, .form-box select, .form-box textarea {
    width: 100%;
  }

  .form-box4 input, .form-box4 select, .form-box4 textarea {
    width: 100%;
  }

  .form-box button, .form-box4 button {
    width: 100%;
  }
}

@media all and (min-width: 700px) {
  .form-box, .form-box4 {
    flex-direction: row;
    /* border: 2px solid blue; */
  }

  .form-box label {
    flex-basis: 180px;
  }

  .form-box input, .form-box select, .form-box textarea {}

  .form-box button, .form-box4 button {
    width: 220px;
    margin-top: 20px;
    margin-left: 145px;
  }

  .form-box4 label {
    vertical-align: middle;
    padding: 0 20px;
    flex-basis: 200px;
    flex-shrink: 1;
  }

  .form-box4 input, .form-box4 select, .form-box4 textarea {
    flex-basis: 220px;
    flex-shrink: 1;
  }
}
