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

body {
    font-family: Trebuchet MS, sans-serif;
    line-height: 1.6;
    color: #333;
	font-weight: bold;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #fff;
    color: white;
    
    text-align: center;
}
header img{
    padding: 1em 0 0;
}

header h1 {
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1em;
}

nav ul li {
    margin: 0 0.7em;
}


.hero {
    text-align: left;
    padding: 1em 0;
    background: #f4f4f4;
}

.hero h2 {
    margin-bottom: 0.5em;
}

.hero .btn {
    display: inline-block;
    padding: 0.5em 1em;
    color: white;
    background: #FFD700;
    text-decoration: none;
    border: 0 !important;
	border-radius: 0 !important;
}

.hero .btn:hover {
    background: #FFD7cc;
}

.about, .services, .contact {
    padding: 2em 0;
}

.services .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.services .service-item {
    flex: 1 1 calc(33.333% - 1em);
    background: #f4f4f4;
    padding: 1em;
    border-radius: 5px;
    position: relative;
}

.services .service-item li{
text-align: left;
}

.services .publishing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.services .publishing-item {
    flex: 2 2;
    background: #f4f4f4;
    padding: 1em;
    border-radius: 5px;
    position: relative;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact form input, .contact form textarea {
    font-family: Trebuchet MS, sans-serif;
    margin-bottom: 1em;
    padding: 0.5em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact form textarea {
    min-height: 200px;
    font-family: Trebuchet MS, sans-serif;
    line-height: 1.6;
    color: #333;
}

.contact .right {
	text-align: right;
}

button {
    padding: 0.5em;
    color: white;
    background: #09F;
    border: none;
    border-radius: 5px;
	width: 200px;
	cursor: pointer;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 1em 0;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.responsive-medium {
  max-width: 100%;
  height: auto;
  text-align: center;
}

img.offer {
   max-width: 100%;
}
ul {
    margin-left: 2em;
    margin-bottom: 3em;
}
.service-item p.button {
    right: 0;
    bottom: 0;
    position: absolute;
    padding: 1em;

}
.service-item p.text {
	bottom:0px;
    right:25%;
    left:50%;
    margin-left:-150px;
    position: absolute;
    padding: 1em;

}
.service-item button {
    cursor: pointer;
}

.service-item table {
    border: 0;
	position: absolute;
	bottom: 10px;
	width: 85%;
	margin: 0px 10px 0px;
}

.service-item table td {
    text-align: center;
}

.service-item table td p {
    margin-bottom: 0px;
}

.left {
    text-align: left;
    padding: 4em 0;
    background: #f4f4f4;
}

.left h2 {
    margin-bottom: 0.5em;
}

.menu a {
  text-decoration: none;
}
.menu li {
  list-style: none;
}
/* header */
header {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: sans-serif;
  background-color: #f4f4f4;
}
.brand {
  width: auto;
  height: 100%;
  float: left;
  margin: 0 0 0 5%;
  color: #fff;
}
/* Navigation */
.menu {
  width: 60%;
  height: 100%;
  float: left;
}
.menu ul {
  width: 100%;
  height: inherit;
  margin: 0;
  padding: 0;
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding-left: 12em;
}
.menu ul a {
  height: inherit;
  color: #000;
  display: inline-block;
  white-space: nowrap
}
.menu ul a:hover {
  background-color: #222;
  color: #fff;
}
#menuToggle {
  display: none;
}
.menu-icon {
  display: none;
}
.cookies{position:fixed;width:100%;height:75px;background:#ccc;color:#fff;text-align:center;bottom:0px;padding:5px 0px 10px 0px;font-size:14px;z-index:100000;}
.cookies a{color:#fff;text-decoration:underline}
.cookies a:hover{color:#fff;text-decoration:none;}
.cookies table td{padding:4px 20px 4px 20px;border-bottom:none !important;}
.cookies .button {background:none !important;}
.cookies .button a{padding:3px 10px;display:block; width: 90px;}
.cookies .blue a{color: #fff;background:#09F;}
.cookies .red a{color: #fff;background:#C00;}
.cookies .orange a{color: #fff;background:#F90;}
@media screen and (max-width: 880px) {
	.services .service-item {
		flex: 1 1 calc(50% - 1em);
	}
	.menu {
      width: 100%;
      height: auto;
  }
  .menu ul {
      display: block;
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.3s;
      -moz-transition: max-height 0.3s;
      -ms-transition: max-height 0.3s;
      -o-transition: max-height 0.3s;
      transition: max-height 0.3s;
	  padding-left: 0em;
  }
  .menu ul a {
      text-align: left;
      width: 100%;
      height: 50px;
      background-color: #f4f4f4;
      padding: 0px 0px 0px 10%;
      border-bottom:1px solid #ddd;
  }
  .menu-icon {
      width: 100px;
      height: inherit;
      display: block;
      position: absolute;
      top: 0px;
      left: -17px;
      line-height: 60px;
  }
  #menuToggle:checked ~ ul {
      max-height: 350px;
  }
  .menu-icon i {
      font-size: 1.7em;
      color:#000;
  }
}
/* navigation < 768px*/
@media screen and (max-width: 668px) {
  .menu {
      width: 100%;
      height: auto;
  }
  .menu ul {
      display: block;
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.3s;
      -moz-transition: max-height 0.3s;
      -ms-transition: max-height 0.3s;
      -o-transition: max-height 0.3s;
      transition: max-height 0.3s;
	  padding-left: 0em;
  }
  .menu ul a {
      text-align: left;
      width: 100%;
      height: 50px;
      background-color: #f4f4f4;
      padding: 0px 0px 0px 10%;
      border-bottom:1px solid #ddd;
  }
  .menu-icon {
      width: 100px;
      height: inherit;
      display: block;
      position: absolute;
      top: 0px;
      left: -17px;
      line-height: 60px;
  }
  #menuToggle:checked ~ ul {
      max-height: 350px;
  }
  .menu-icon i {
      font-size: 1.7em;
      color:#000;
  }
  .cookies{position:fixed;width:100%;height:100px;background:#2a6c97;color:#fff;text-align:center;bottom:0px;padding:5px 0px;font-size:14px;z-index:100000;}
    .services .service-item {
		flex: 1 1 calc(100% - 1em);
	}
}
#banner {
 text-align: center;
 margin-top: 1em;
}

.split {
	display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

footer .container {
	display: flex;
    flex-wrap: wrap;
    gap: 1em;
}	
.split h3 {
	font-size: 1.2em;
	
}
footer .container-item{
	flex: 1 1 calc(33.333% - 1em);
}

.split .container-item {
	text-align: center;
	min-width: 40%;
}

.progress-label-left {
	float: left;
}

.progress-label-right {
	float: right;
}

.progress {
	margin-top: 1.8em;
    width: 80%;
    margin-left: 3.5em;

}

.card-header {
	text-align: left;
}

.card-body {
	text-align: left;
}

.card-footer {
	font-size: 0.8em;
	padding: .5rem 1rem !important;
}

.modal-header .close {
    padding: 0 !important;
    margin: 0 !important;
    width: 1em;
}
#publishing_modal .modal-dialog {
	max-width: 800px;
}
#publishing_modal a,  #publishing_modal p{
	text-align:left;
}
h1 {
	font-weight: bold;
}
h2 {
	font-size: 1.6em !important;
	font-weight: bold;
}
h3 {
	font-size: 1.2em !important;
	padding: 4px 0px !important;
	font-weight: bold;
}
.center {
	text-align: center;
}
.pricelist {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.pricelist td {
	border-bottom: 1px solid #333;
}

.pricelist td.left {
	text-align: left;
    padding: 0.1em 0;
}

.sub-banner {
	text-align: center;
    padding: 1em 0 0;
}



.hide {
	display: none;
}

.show {
	display: block;
}
