@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --_colors---dark: black;
  --_colors---light: white;
  --_colors---bg-gradient-left: #1e1e1ee6;
  --_colors---span-gradient-red: #e01a53;
  --_colors---span-gradient-blue: #1b88da;
  --_colors---primary: #457fd8;
  --_colors---bg-gradient-right: #1c1c1cf2;
  --_colors---text-light: #d4d4d4;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--_colors---dark);
  color: var(--_colors---light);
  font-family: Work Sans, sans-serif;
  font-size: 18px;
  line-height: 163.2%;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Chillax, Verdana, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 59px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Chillax, Verdana, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 55px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Chillax, Verdana, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 173%;
}

p {
  color: #d4d4d4;
  margin-bottom: 10px;
}

a {
  color: var(--_colors---light);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 25px;
}

li {
  padding-left: 5px;
}

img {
  max-width: 100%;
  display: inline-block;
}

.navbar {
  background-color: #0000;
  margin-top: 15px;
  margin-bottom: 15px;
}

.nav-link {
  color: var(--_colors---light);
  font-size: 16px;
  line-height: 175.7%;
  transition: color .2s;
}

.nav-link:hover {
  color: #b9b9b9;
}

.nav-link.btn {
  border: 2px solid var(--_colors---light);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  max-height: 42px;
  margin-left: 30px;
  padding: 10px 20px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: inline-flex;
}

.nav-link.btn:hover {
  background-color: var(--_colors---light);
  color: var(--_colors---dark);
}

.nav-icon {
  max-width: 12px;
  margin-left: 10px;
  padding-top: 4px;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-baseline {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container {
  z-index: 1;
  max-width: 1160px;
  position: relative;
}

.dropdown-toggle {
  color: var(--_colors---light);
  margin-right: 20px;
  padding: 0 20px 0 0;
}

.dropdown-toggle:hover {
  color: #b9b9b9;
}

.dropdown-container {
  background-color: #0a0a0a;
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-container.w--open {
  border-radius: 20px;
}

.dropdown-link {
  color: var(--_colors---light);
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}

.dropdown-link:hover {
  background-color: var(--_colors---bg-gradient-left);
}

.dropdown-link.w--current {
  background-image: linear-gradient(95deg, var(--_colors---span-gradient-red), var(--_colors---span-gradient-blue) 72%);
  color: var(--_colors---light);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.line {
  background-color: var(--_colors---light);
  background-image: linear-gradient(91deg, var(--_colors---span-gradient-red), var(--_colors---span-gradient-blue));
  width: 90%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  height: 100vh;
  position: relative;
}

.icon {
  margin-right: 0;
}

.hero-content {
  margin-top: 125px;
}

.hero-header {
  max-width: 697px;
  font-size: 56px;
}

.hero-p {
  color: #fafafa;
  max-width: 561px;
  padding-top: 35px;
  padding-bottom: 60px;
}

.highlight {
  background-image: linear-gradient(90deg, var(--_colors---span-gradient-red) 27%, var(--_colors---span-gradient-blue) 70%);
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.button {
  background-color: var(--_colors---primary);
  color: var(--_colors---light);
  border-radius: 50px;
  padding: 10px 70px 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 175.7%;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.button:hover {
  background-color: #3969b2;
}

.button.ghost {
  border: 2px solid var(--_colors---light);
  background-color: #0000;
  padding: 9px 37px 5px 40px;
  transition: color .2s, background-color .2s;
}

.button.ghost:hover {
  background-color: var(--_colors---light);
  color: var(--_colors---dark);
}

.button.ghost.realization {
  margin-top: 40px;
}

.button.form {
  padding-left: 36px;
  padding-right: 36px;
}

.link-icon {
  max-width: 12px;
  margin-top: 2px;
  margin-left: 10px;
}

.flex-gap45px {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-center {
  text-align: center;
}

.services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 120px;
  display: flex;
}

.service-card {
  background-image: linear-gradient(106deg, var(--_colors---bg-gradient-left), var(--_colors---bg-gradient-right) 74%);
  color: var(--_colors---light);
  -webkit-text-fill-color: inherit;
  will-change: transform;
  background-clip: border-box;
  border-radius: 15px;
  max-width: 565px;
  max-height: 216px;
  padding: 20px;
  text-decoration: none;
  transition-property: background-color, color;
  transition-duration: .3s, .2s;
  transition-timing-function: ease-in, ease;
  display: flex;
  position: relative;
}

.service-card:hover {
  background-image: linear-gradient(142deg, #3f3f3f, var(--_colors---bg-gradient-right) 75%);
}

.service-headline {
  margin-top: 0;
  font-family: Work Sans, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 28px;
}

.service-icon-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.service-content {
  flex-flow: column;
  justify-content: space-between;
  align-self: flex-start;
  width: 335px;
  height: 100%;
  padding-left: 15px;
  display: flex;
}

.service-content:hover {
  color: var(--_colors---light);
}

.service-info {
  min-width: 335px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
}

.service-link-icon {
  background-image: linear-gradient(43deg, var(--_colors---bg-gradient-left) 29%, #1c1c1c 74%, var(--_colors---bg-gradient-right));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-self: flex-end;
  width: 16px;
  height: 17px;
  position: absolute;
  inset: auto 3% 7% auto;
}

.line-v {
  background-color: var(--_colors---light);
  width: 2px;
  height: 50%;
  margin-top: 0;
  display: block;
  position: absolute;
  inset: 30% auto 0% 0%;
}

.left-header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 50px;
  padding-top: 0;
  padding-left: 20px;
  position: relative;
}

.portfolio {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 120px;
  display: flex;
}

.work {
  color: var(--_colors---light);
  background-image: url('../images/artur-wilinski-mock.jpg');
  background-position: 55% 58%;
  background-repeat: no-repeat;
  background-size: 292px;
  border-radius: 20px;
  max-width: 292px;
  min-height: 400px;
  text-decoration: none;
  transition: background-color .2s ease-in;
  position: relative;
}

.work:hover {
  background-image: url('../images/artur-wilinski-mock.jpg');
  background-position: 55% 58%;
  background-repeat: no-repeat;
  background-size: 292px;
}

.tags-container {
  z-index: 0;
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 10px 7px 11px;
  font-size: 14px;
  line-height: 150.6%;
  display: flex;
  position: relative;
}

.tag {
  z-index: 2;
  border: 1px solid var(--_colors---light);
  background-color: #0e0e0e73;
  border-radius: 20px;
  padding: 5px 9px;
  position: relative;
}

.tags-blur {
  filter: blur(35px);
  background-color: #000;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.work-link {
  z-index: 2;
  width: 50px;
  position: absolute;
  inset: auto 5% 3% auto;
}

.bg-overlay {
  z-index: 1;
  opacity: 0;
  background-color: #00000080;
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.testimonials-cards {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 68px;
  margin-bottom: 200px;
  display: flex;
}

.testimonial {
  background-image: linear-gradient(120deg, var(--_colors---bg-gradient-left), var(--_colors---bg-gradient-right) 74%);
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px 45px;
}

.testimonial-caption {
  margin-top: 48px;
  font-size: 15px;
}

.avatar {
  float: left;
  margin-right: 16px;
}

.firm {
  color: #a0a0a0;
  font-size: 14px;
}

.stars {
  margin-bottom: 46px;
}

.about-me {
  background-image: linear-gradient(109deg, var(--_colors---bg-gradient-left), var(--_colors---bg-gradient-right) 74%);
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  margin: 91px auto 150px;
  padding: 15px 20px 15px 45px;
  display: flex;
}

.about-me-text {
  max-width: 545px;
  margin-right: 40px;
}

.image {
  width: 300px;
  max-width: none;
  height: 415px;
}

.about-me-bg {
  z-index: 0;
  transform-style: preserve-3d;
  position: absolute;
  inset: 9% 0% 0%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.flip-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.about-me-container {
  z-index: 1;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-info {
  max-width: 820px;
  margin-bottom: 57px;
}

.form-content {
  margin-top: 33px;
  margin-bottom: 40px;
  margin-left: 24px;
  padding-bottom: 5px;
}

.contact-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  margin-left: 75px;
  display: flex;
}

.contact {
  justify-content: space-between;
  display: flex;
}

.form-field {
  border: 1px solid var(--_colors---light);
  background-color: var(--_colors---dark);
  border-radius: 4px;
  min-height: 56px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 175.7%;
}

.form-field::placeholder {
  color: #2b2b2b;
}

.form-field.name {
  -webkit-text-fill-color: inherit;
  background-clip: padding-box;
}

.form-field.text-area {
  max-width: 800px;
  min-height: 136px;
  max-height: 300px;
  margin-top: 40px;
}

.flex-50px {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.flex-space-between {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.flex-space-between.mtop-32 {
  margin-top: 32px;
}

.rodo-txt {
  color: #a9a9a9;
  max-width: 301px;
  margin-left: 15px;
  font-size: 12px;
  font-weight: 300;
}

.checkbox {
  background-color: var(--_colors---dark);
  border-radius: 3px;
  width: 16px;
  height: 16px;
  margin-top: 8px;
}

.checkbox.w--redirected-checked {
  background-color: var(--_colors---span-gradient-blue);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.warning {
  color: var(--_colors---span-gradient-red);
}

.contact-email {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-icon {
  border: 1px solid var(--_colors---light);
  border-radius: 10px;
  padding: 12px;
}

.contact-icon.footer {
  padding: 8px;
}

.contact-link {
  color: var(--_colors---light);
  margin-left: 15px;
  font-size: 16px;
  font-weight: 300;
  line-height: 175.7%;
  text-decoration: none;
  transition: color .2s;
}

.contact-link:hover {
  color: #b9b9b9;
}

.contact-link.footer {
  font-size: 14px;
}

.logo-caption {
  cursor: default;
  max-width: 250px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
}

.footer-header {
  letter-spacing: 1.6px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
}

.footer-header.highlight {
  display: inline;
}

.footer-link {
  font-size: 14px;
  font-weight: 300;
  line-height: 175.7%;
  transition: color .2s;
}

.footer-link:hover {
  color: #b9b9b9;
}

.link-item {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 0;
}

.contact-footer {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.footer-col {
  padding-left: 0;
  padding-right: 0;
}

.footer-col.logo {
  padding-top: 0;
}

.line-h {
  background-color: var(--_colors---light);
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
}

.footer-caption {
  justify-content: space-around;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 300;
  line-height: 175.7%;
  display: flex;
}

.footer-container {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 70px;
  display: flex;
}

.hero-img-wrapper {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 43px;
  bottom: 0%;
  left: 0%;
}

.hero-img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 0 60px;
}

.section.relative {
  position: relative;
}

.section.service {
  margin-top: 200px;
  position: relative;
}

.section.article-form {
  padding-left: 0;
  padding-right: 0;
}

.section.article-form.seo {
  margin-top: 120px;
}

.section.works {
  margin-bottom: 59px;
}

.section.cant-wait {
  text-align: center;
  margin-top: 110px;
  margin-bottom: 150px;
  padding: 100px 0;
  position: relative;
}

.contact-form {
  min-width: 534px;
  min-height: 621px;
}

.success-msg {
  background-color: var(--_colors---primary);
}

.error-message {
  background-color: var(--_colors---span-gradient-red);
  text-align: center;
  margin-top: 20px;
}

.service-bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.servive-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.article-content {
  max-width: 900px;
  margin-top: 35px;
  margin-left: 25px;
  line-height: 173%;
}

.article-content.pros {
  max-width: none;
  margin-top: 140px;
  margin-bottom: 142px;
}

.article-content.process {
  background-image: linear-gradient(-103deg, #1e1e1e4d, #1c1c1c99 84%);
  border-radius: 20px;
  max-width: none;
  margin-bottom: 80px;
  padding: 25px 30px 45px;
  display: flex;
}

.article {
  padding: 0 60px;
}

.pros-cards {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.pros-card {
  background-image: linear-gradient(-131deg, #1e1e1e4d, #1c1c1c99 84%);
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
  max-width: 270px;
  min-height: 330px;
  max-height: 323px;
  padding: 20px;
  display: flex;
}

.pros-card-headline {
  text-align: center;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
}

.pros-card-content {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 160%;
}

.pros-img {
  justify-content: center;
  height: 85px;
  display: flex;
}

.list {
  margin-right: 15px;
}

.home-h2 {
  font-size: 42px;
}

.unorder-list {
  padding-left: 40px;
  list-style-type: disc;
}

.article-list {
  margin-top: 30px;
}

.realization-img {
  background-image: url('../images/artur-wilinski-mock.jpg');
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 460px;
  height: 414px;
  margin-top: 0;
  padding-top: 0;
}

.realization-content {
  max-width: 567px;
  margin-bottom: 30px;
  margin-right: 20px;
}

.realization-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-top: 120px;
  display: flex;
}

.ready-for-site-wrapper {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: -25% 0% 0%;
}

.cant-wait-content {
  z-index: 1;
  position: relative;
}

.cant-wait-header {
  font-size: 52px;
  font-weight: 500;
}

.cant-wait-p {
  margin-top: 16px;
  margin-bottom: 35px;
}

.can-wait-img {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-link.btn {
    margin-left: 5px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .dropdown-toggle {
    margin-right: 0;
  }

  .brand {
    margin-right: 9px;
  }

  .hero-content {
    margin-top: 132px;
  }

  .hero-header {
    font-size: 44px;
  }

  .button {
    padding-left: 45px;
    padding-right: 45px;
  }

  .button.ghost {
    padding-left: 35px;
    padding-right: 35px;
  }

  .testimonials-cards {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .about-me {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-me-text {
    font-size: 16px;
  }

  .flip-bg {
    top: 1%;
  }

  .contact-info {
    flex-flow: column;
    margin-left: 0;
  }

  .contact {
    flex-flow: column;
  }

  .logo-caption {
    max-width: 131px;
    font-size: 12px;
  }

  .footer-header.highlight {
    font-size: 16px;
  }

  .link-item {
    font-size: 14px;
  }

  .hero-img-wrapper {
    opacity: .4;
  }

  .hero-img {
    position: relative;
  }

  .section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.service {
    margin-top: -25px;
  }

  .contact-form {
    min-height: 480px;
  }

  .service-bg {
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .servive-img {
    top: 1%;
  }

  .article {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pros-cards {
    flex-flow: wrap;
  }

  .realization-img {
    background-position: 50% 30%;
    width: 75%;
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .realization-content {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .realization-wrapper {
    flex-flow: column;
  }

  .ready-for-site-wrapper {
    top: 20%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    line-height: 35px;
  }

  h3, p {
    font-size: 16px;
  }

  .nav-link {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .nav-link.btn {
    flex-flow: row;
    margin-top: 15px;
    display: flex;
  }

  .nav-menu {
    grid-column-gap: 41px;
    grid-row-gap: 41px;
    background-color: #0a0a0a;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }

  .dropdown-toggle {
    margin-left: 0;
  }

  .dropdown-container {
    position: relative;
  }

  .dropdown-link {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hero-header {
    font-size: 38px;
  }

  .hero-p {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .service-card {
    max-height: 300px;
  }

  .service-headline {
    font-size: 18px;
  }

  .service-icon-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 30%;
  }

  .service-content {
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    padding-left: 10px;
  }

  .service-info {
    min-width: auto;
    font-size: 13px;
  }

  .left-header {
    margin-top: 15px;
  }

  .portfolio {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .testimonials-cards {
    margin-bottom: 100px;
  }

  .about-me {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    width: 100%;
  }

  .about-me-bg {
    width: 150%;
    top: 9%;
  }

  .flex-50px {
    flex-flow: column;
  }

  .flex-space-between.mtop-32 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 40px;
  }

  .rodo-txt {
    font-size: 12px;
  }

  .footer-container {
    grid-column-gap: 65px;
    grid-row-gap: 65px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-img-wrapper {
    width: 150%;
    left: -39%;
  }

  .section.hero {
    padding-top: 20px;
  }

  .section.service {
    margin-top: -10px;
  }

  .contact-form {
    min-width: 320px;
  }

  .menu-button {
    margin-top: -37px;
    padding: 10px;
    font-size: 32px;
  }

  .menu-button.w--open {
    background-color: #0a0a0a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .service-bg {
    width: 140%;
    height: 100%;
  }

  .article-content.process {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .home-h2.text-center {
    line-height: 45px;
  }

  .realization-content {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .realization-wrapper {
    margin-top: 30px;
  }

  .ready-for-site-wrapper {
    width: 200%;
    inset: auto -4% 0% -53%;
  }

  .cant-wait-header {
    line-height: 60px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .nav-link {
    width: 100%;
  }

  .dropdown-container {
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .dropdown-container.w--open {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
    overflow: visible;
  }

  .dropdown-link {
    white-space: pre-wrap;
    max-width: 100%;
    position: static;
  }

  .line {
    width: 100%;
  }

  .hero-header {
    font-size: 36px;
  }

  .button {
    justify-content: center;
    align-items: center;
  }

  .flex-gap45px {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .services {
    margin-top: 40px;
  }

  .service-card {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-height: 400px;
  }

  .service-icon-wrapper {
    width: 50%;
    margin-bottom: 10px;
  }

  .service-content {
    width: 100%;
  }

  .service-link-icon {
    bottom: 3%;
    right: 5%;
  }

  .tag {
    font-size: 12px;
  }

  .testimonial-caption {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    display: flex;
  }

  .about-me {
    margin-top: 40px;
    margin-bottom: 49px;
  }

  .about-me-bg {
    width: 280%;
    overflow: hidden;
  }

  .flip-bg {
    left: -21%;
  }

  .form-field.text-area {
    max-width: 100%;
    max-height: 450px;
  }

  .contact-link {
    font-size: 14px;
  }

  .logo-caption {
    max-width: none;
  }

  .footer-caption {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section.cant-wait {
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .contact-form {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 230px;
  }

  .service-bg {
    width: 300%;
    overflow: hidden;
  }

  .servive-img {
    left: -21%;
  }

  .realization-img {
    margin-bottom: 0;
  }
}


@font-face {
  font-family: 'Chillax';
  src: url('../fonts/Chillax-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Chillax';
  src: url('../fonts/Chillax-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}