header, main {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  color: #5A5A5A;
  z-index: 2;
  position: relative;
}

h1, h2, h3, label, strong {
  color: #000;
}

h1, h2, h3 {
  font-family: "Signika", sans-serif;
  font-weight: 600;
}
h1 span:after, h2 span:after, h3 span:after {
  content: " ";
  display: inline;
  height: 10px;
  background: #63beb8;
}

h1, h2 {
  font-size: 5rem;
  margin: 35px 0;
}

h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
}

h3 {
  font-size: 2rem;
}

p {
  font-size: 1.125rem;
  line-height: 160%;
  margin-bottom: 20px;
}

a {
  color: #63beb8;
  font-weight: 600;
}
a:hover {
  background: #63beb8;
  color: #fff;
}

.top {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 10px;
  /* menu icon */
  /* menu btn */
}
.top .navigation {
  transition: max-height 0.2s ease-out;
}
.top .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.top .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.top .menu-icon .navicon:before,
.top .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.top .menu-icon .navicon:before {
  top: 5px;
}
.top .menu-icon .navicon:after {
  top: -5px;
}
.top .menu-btn,
.top .menu-icon {
  display: none;
}
.top .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.top .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.top .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.top .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.top .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.background {
  background: url("../assets/images/bg.svg") top no-repeat;
  background-size: contain;
  overflow-x: hidden;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 100%;
  z-index: 1;
}

.logo {
  background: url(../assets/images/logo.svg) no-repeat;
  background-size: contain;
  width: 135px;
  height: 85px;
  text-indent: -100000px;
  z-index: 40;
  cursor: pointer;
}

.bg {
  background-color: #fff;
}

.navigation {
  margin-top: -15px;
}
.navigation li {
  display: inline-block;
  margin-left: 20px;
  font-size: 1rem;
  text-transform: uppercase;
}
.navigation li a {
  color: #000;
  text-decoration: none;
}

.brief strong {
  font-size: 1.27rem;
  display: block;
  font-weight: 700;
}
.brief strong:after {
  content: " ";
  display: block;
  width: 50px;
  background: #63beb8;
  margin: 15px 0;
  height: 2px;
}
.brief p {
  font-size: 1.125rem;
  line-height: 150%;
}

section > figure {
  margin-bottom: 20px;
}
section > p {
  text-align: justify;
}

small {
  display: block;
  opacity: 0.8;
  margin-top: 20px;
  line-height: 1.1rem;
  font-size: 0.8rem;
}

.offer h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}
.offer__item {
  margin: 15px 5px;
  background: #FFFFFF;
  box-shadow: 0 32px 64px 0 rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 15px;
  overflow: hidden;
  position: relative;
}
.offer__item > * {
  position: relative;
  z-index: 2;
}
.offer__item:after {
  display: block;
  content: " ";
  background: url(../assets/images/gfx_website.svg) no-repeat;
  background-size: contain;
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
}
.offer__item--audit:after {
  background-image: url(../assets/images/gfx_audits.svg);
}
.offer__item--software:after {
  background-image: url(../assets/images/gfx_soft.svg);
}
.offer__item--ithelp:after {
  background-image: url(../assets/images/gfx_process.svg);
}

.project__item {
  box-shadow: 0 12px 34px 0 rgba(0, 0, 0, 0.09);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.project__item figure {
  z-index: 1;
  position: absolute;
  top: 0;
}
.project__item figure img {
  max-width: 100%;
}
.project__content {
  background: #fff;
  z-index: 2;
  padding: 15px;
  position: relative;
}

form li {
  margin-bottom: 25px;
}
form label {
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}
form input, form textarea, form select {
  width: 100%;
  border: 1px solid #5A5A5A;
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
}
form textarea {
  min-height: 250px;
}
form button {
  border-radius: 8px;
  background: #63beb8;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 10px 20px;
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
}
form button:hover {
  cursor: pointer;
}
form .thankyou_message {
  padding: 15px;
  background: #63beb8;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 45px;
  border-radius: 5px;
}
form .thankyou_message strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.company {
  padding: 70px 30px;
  max-width: 1440px;
  margin: 0 auto;
}
.company h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #000;
  margin-bottom: 50px;
  font-weight: 500;
  opacity: 0.8;
}
.company__list {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.company__list img {
  width: 80%;
}

.work {
  margin-bottom: 5rem;
}
.work h2 {
  text-align: center;
}
.work ul {
  display: flex;
  align-items: flex-end;
  margin: 1rem;
  justify-content: center;
}
.work ul:last-child {
  align-items: flex-start;
}
.work ul li {
  margin: 0.2rem;
}

footer {
  background: #5A5A5A;
  color: #fff;
  padding: 50px 30px;
}
footer .content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .content span {
  margin: 0 30px;
}

/*=========================================================*/
/*===================== 920px =============================*/
/*=========================================================*/
@media (max-width: 930px) {
  h1 {
    font-size: 2.7rem;
    text-align: center;
  }
  h2 {
    font-size: 2.3rem;
  }
  .logo {
    width: 100px;
    height: 60px;
  }
  .navigation {
    display: none;
  }
  .top {
    position: relative;
    z-index: 15;
  }
  .top .menu-icon {
    margin-top: -8px;
    display: none;
    z-index: 30;
  }
  .top .menu-btn:checked ~ .navigation {
    z-index: 20;
    background: #fff;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
  }
  .top .menu-btn:checked ~ .navigation li {
    display: block;
    text-align: center;
    margin: 50px 0;
    font-size: 2rem;
  }
  main {
    position: relative;
    z-index: 10;
  }
  .brief {
    margin: 50px 0;
  }
  .brief__item {
    margin: 25px 0;
    overflow: auto;
  }
  .brief figure {
    width: 75px;
    float: left;
    margin: 0 20px 20px 0;
    margin-top: 15px;
  }
  .brief strong {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
  }
  .brief strong:after {
    display: none;
  }
  .offer h3 {
    margin-top: 140px;
  }
  .offer p {
    font-size: 1rem;
  }
  .offer__item:after {
    width: 130px;
    height: 130px;
    top: 10px;
    left: calc(50% - 65px);
  }
  .project__content {
    margin-top: 120px;
    padding-top: 20px;
  }
  .project__content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .project__content p {
    font-size: 0.95rem;
    line-height: 1.25rem;
  }
  .contact {
    margin-top: 60px;
    position: relative;
  }
  .contact .left {
    overflow: auto;
  }
  .contact p {
    width: 50%;
  }
  .contact figure {
    position: absolute;
    right: 0;
    top: 80px;
    width: 43%;
  }
  .contact form {
    width: 70%;
    margin: 90px auto;
  }
  footer .content {
    display: block;
  }
  footer .content span {
    display: block;
    margin: 0;
    margin-bottom: 1rem;
    line-height: 1.3rem;
  }
}
/*=========================================================*/
/*===================== > 931 =============================*/
/*=========================================================*/
@media (min-width: 931px) {
  main, header {
    max-width: 1440px;
    margin: 0 auto;
  }
  .lead {
    position: relative;
  }
  .lead header {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .lead header h1 {
    font-size: 4rem;
    margin-right: 30px;
    width: 70%;
  }
  .lead header figure {
    margin-right: 30px;
  }
  .lead .brief {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    justify-content: space-between;
  }
  .lead .brief__item {
    overflow: auto;
    margin: 20px;
  }
  .lead .brief__item figure {
    width: 90px;
    margin: 0 20px 20px 0;
    margin-top: 15px;
  }
  .about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
  }
  .about h2 {
    margin-bottom: 25px;
    margin-top: 0;
  }
  .about figure {
    max-width: 40%;
    margin-bottom: 0;
  }
  .about .content {
    width: 50%;
  }
  .offer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
  }
  .offer h2 {
    width: 100%;
    text-align: center;
  }
  .offer__item {
    flex: 0 0 100%;
    padding-left: 200px;
  }
  .offer__item:after {
    left: 15px;
    width: 150px;
    height: 150px;
    top: 12%;
    bottom: auto;
  }
  .contact {
    width: 70%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact h2 {
    width: 100%;
  }
  .contact .left {
    width: 45%;
    margin-right: 30px;
  }
  .contact figure {
    width: 95%;
    margin-top: 90px;
    margin-left: -20%;
  }
  .contact form {
    width: 45%;
  }
} /* end desktop */
/*=========================================================*/
/*===================== 1201px < ==========================*/
/*=========================================================*/
@media (min-width: 1200px) {
  main, header {
    max-width: 1600px;
  }
  .top {
    padding-top: 30px;
  }
  .logo {
    width: 160px;
    height: 90px;
  }
  .navigation li {
    margin-left: 40px;
  }
  .lead {
    position: relative;
  }
  .lead header h1 {
    font-size: 5rem;
    width: 60%;
    margin-top: 50px;
  }
  .lead header figure {
    position: absolute;
    right: -110px;
    top: 30px;
    transform: scale(0.9);
  }
  .lead .brief {
    width: 63%;
    flex-wrap: wrap;
  }
  .lead .brief__item {
    flex: 0 0 45%;
    position: relative;
    padding-left: 110px;
  }
  .lead .brief__item figure {
    position: absolute;
    left: 0;
  }
  .offer {
    margin: 100px auto;
  }
  .offer__item {
    flex: 0 0 47%;
    padding: 15px 200px 15px 25px;
  }
  .offer__item:after {
    position: absolute;
    right: -50px;
    bottom: -50px;
    left: auto;
    top: auto;
    width: 250px;
    height: 250px;
  }
} /* end desktop */
@media (min-width: 641px) and (max-width: 920px) {
  h1 {
    font-size: 3.2rem;
    text-align: center;
  }
  h1 + figure {
    max-width: 400px;
    margin: 0 auto;
  }
  .navigation {
    display: none;
  }
  .brief figure {
    width: 120px;
    margin: -8px 40px 30px 0;
  }
  .about figure {
    margin: 30px 0;
  }
  .offer {
    margin-top: 80px;
  }
  .offer h3 {
    margin-top: 15px;
  }
  .offer p {
    padding-right: 150px;
  }
  .offer__item:after {
    position: absolute;
    right: -100px;
    bottom: -40px;
    top: auto;
    left: auto;
    width: 250px;
    height: 250px;
    opacity: 0.3;
  }
} /* end rq 768px */
@media (min-width: 1200px) and (max-width: 1478px) {
  .lead {
    position: relative;
  }
  .lead header {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .lead header h1 {
    font-size: 4rem;
    margin-right: 30px;
    width: 70%;
  }
  .lead header figure {
    margin-right: 30px;
    position: relative;
  }
  .lead .brief {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    justify-content: space-between;
    width: 100%;
  }
  .lead .brief__item {
    overflow: auto;
    margin: 20px;
    padding-left: 0;
    flex: 0 0 20%;
  }
  .lead .brief__item figure {
    width: 90px;
    margin: 0 20px 20px 0;
    margin-top: 15px;
    position: relative;
    flex: auto;
  }
}
@media (min-width: 930px) and (max-width: 1300px) {
  .contact {
    width: 80%;
  }
  .contact figure {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .left p {
    width: 100%;
    padding-left: 40%;
  }
  .left figure {
    left: 0;
    top: 130px;
    width: 30%;
  }
  .contact form {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .left p {
    padding-left: 0;
  }
  .left figure {
    display: none;
  }
}
@media (min-height: 300px) {
  .top {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-bottom: 20px;
  }
}
html {
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
/*# sourceMappingURL=maps/main.css.map */
