/* main LESS  */
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWA.ttf) format('truetype');
}
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL8.ttf) format('truetype');
}
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL8.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7g.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPw.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkA.ttf) format('truetype');
}
/* general */
* {
  box-sizing: border-box;
}
body {
  background: #F8F7F2;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}
h1,
h2,
h4,
h4,
h5,
h6 {
  font-family: 'Bitter', serif;
  font-weight: 400;
  text-align: center;
}
:-webkit-any(article,aside,nav,section) h1 {
  font-size: 2rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
  margin: 3rem 0;
}
a,
a:hover,
a:focus,
a:target,
a:visited {
  color: #000;
  text-decoration: none;
}
hr {
  border: 8px solid #85B9D1;
}
main {
  max-width: 960px;
  background: #fff;
  padding: 71px 20px 20px;
  margin: 0 auto;
}
.position-relative {
  position: relative;
}
/* flexbox */
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-grow {
  flex-grow: 1;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-end {
  align-items: flex-end;
}
.col-12 {
  flex: 0 1 100%;
  padding: 0 5px;
}
.col-6 {
  flex: 0 1 50%;
  display: flex;
  padding: 0 5px;
}
[class^="col"]:first-child > div {
  margin-left: -5px;
}
[class^="col"]:last-child > div {
  margin-right: -5px;
}
.w-100 {
  width: 100%;
}
.w-50 {
  width: 50px;
}
.max-width-80 {
  max-width: 80%;
}
/* visibility */
.d-none {
  display: none;
}
/* paddings & margins */
.p-5 {
  padding: 5px;
}
.p-10 {
  padding: 10px;
}
.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}
.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mr--5 {
  margin-right: -5px;
}
.ml--5 {
  margin-left: -5px;
}
/* colors */
.bg-dark-blue {
  background-color: #0095D3;
}
.bg-mid-blue {
  background-color: #C0DBE8;
}
.bg-light-blue {
  background-color: #DEEDF4;
}
.white {
  color: #fff;
}
/* text */
.text-center {
  text-align: center;
}
.text-big {
  font-size: 1.5rem;
}
.text-small {
  font-size: 0.9rem;
  margin-top: 0;
}
strong {
  font-weight: 600;
}
ul {
  padding-left: 1rem;
}
ul li {
  list-style-type: none;
  word-break: break-word;
}
ul li:before {
  content: "›";
  margin-left: -1rem;
  padding-right: 5px;
}
/* navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #F8F7F2;
}
nav ul {
  display: flex;
  justify-content: center;
  font-family: 'Bitter', serif;
  list-style-type: none;
  padding: 0;
}
nav ul li {
  padding: 10px;
}
nav ul li:before {
  content: none;
}
nav ul li a {
  text-decoration: none;
  color: #000;
}
nav ul li a:hover,
nav ul li a:target,
nav ul li a:focus {
  color: #000;
}
/* content */
.proofreading {
  padding: 80px 5px;
}
.contact {
  max-width: 400px;
  margin: 0 auto;
}
/* images */
.logo {
  height: 100px;
  max-width: 100%;
}
.img-top-center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}
.img-new-row {
  position: absolute;
  height: 1.8rem;
  right: -6px;
  top: -4px;
}
.img-deletion-mark {
  position: absolute;
  height: 1.4rem;
  left: -4px;
  top: -1px;
}
.img-deletion-mark-2 {
  position: absolute;
  height: 1.4rem;
  right: 0px;
  bottom: -4px;
}
.img-date {
  position: absolute;
  height: 3.5rem;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
.img-s-sweep {
  position: absolute;
  height: 2.5rem;
  right: -25px;
  bottom: 0;
}
.img-done {
  position: absolute;
  height: 2.5rem;
  left: 70%;
  bottom: -8px;
  transform: translateX(-50%);
}
.img-four-eyes {
  position: absolute;
  height: 4.5rem;
  left: 70%;
  bottom: -15px;
  transform: translateX(-50%);
}
.img-register-marks {
  position: absolute;
  height: 120%;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
}
.img-readers-mark {
  position: absolute;
  height: 1.4rem;
  right: -4px;
  top: -1px;
}
.img-font-style {
  height: 1.2rem;
}
.img-fax {
  position: absolute;
  height: 2rem;
  left: -10px;
  top: -7px;
}
.img-line {
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -2px;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .col-sm-3 {
    flex: 0 1 25%;
    display: flex;
    padding: 0 5px;
  }
  .col-sm-6 {
    flex: 0 1 50%;
    padding: 0 5px;
  }
  .m-sm-0 {
    margin: 0;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mb-sm-100 {
    margin-bottom: 100px;
  }
  .flex-sm-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 1 25%;
    display: flex;
    padding: 0 5px;
  }
  .max-width-lg-80 {
    max-width: 80%;
  }
}
