<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Slab", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

header {
  height: 6rem;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}
header .logo__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
header .logo__parent .logo {
  height: 3rem;
}
header .logo__parent .logo.dark {
  display: none;
}
header .logo__parent h2 {
  color: #fff;
  font-size: 1.25em;
  font-weight: 500;
}
header nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2.25rem;
}
header nav a {
  font-size: 1.1em;
  color: #000;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background: #2C65FF;
  transition: 0.2s ease;
}
header nav a:hover::after {
  width: 80%;
}
header nav a.active {
  font-weight: 600;
}
header nav a.active::after {
  width: 80%;
}
header nav .btn a::after {
  content: none;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column wrap;
  height: 2.5rem;
  width: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
header .ham div {
  height: 0.25rem;
  width: 100%;
  background: #2C65FF;
  margin: 0.2rem 0;
  border-radius: 1rem;
  transition: 0.5s ease-in-out;
}
header .ham div:nth-child(2) {
  width: 75%;
}
header .ham div:nth-child(3) {
  width: 50%;
}
header .ham .ham-active:nth-child(1) {
  transform: translate(0, 10px) rotate(45deg);
  background: #2C65FF;
}
header .ham .ham-active:nth-child(2) {
  opacity: 0;
}
header .ham .ham-active:nth-child(3) {
  width: 100%;
  transform: translate(0, -10px) rotate(-45deg);
  background: #2C65FF;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #fff;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #000;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 0.15rem solid #2C65FF;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .logo {
    height: 2.5rem;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 950px) {
  header .logo__parent .logo {
    display: none;
  }
  header .logo__parent .logo.dark {
    display: block;
  }
  header .logo__parent h2 {
    color: #000;
    font-size: 1.1em;
  }
  header nav {
    gap: 1.35rem;
  }
  header nav a {
    font-size: 0.8em;
  }
  header nav .btn a {
    font-size: 0.85em;
  }
}
@media only screen and (max-width: 700px) {
  header {
    height: 4rem;
    z-index: 50;
  }
  header .logo {
    height: 2rem;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  background: none;
  border: none;
  transition: 0.25s ease;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85em 1em 0.85em 1.5em;
  background: rgb(44, 101, 255);
  background: linear-gradient(180deg, rgb(44, 101, 255) 0%, rgb(98, 140, 255) 100%);
  border-radius: 30px 30px 30px 0;
  color: #fff;
  text-decoration: none;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
  stroke-width: 3;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  background: #181818;
  padding: 3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 5;
}
footer .footer__contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__contacts .logo {
  height: 60px;
}
footer .footer__contacts .link {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
footer .footer__contacts .link svg {
  height: 1.35em;
  width: 1.35em;
}
footer .footer__nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__nav h3 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
}
footer .footer__nav a {
  font-size: 1em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}
footer .footer__nav a svg {
  height: 1.35em;
  width: 1.35em;
  color: #2C65FF;
  stroke-width: 3;
}
footer .footer__nav a:hover {
  transform: scale(1.025);
}

@media only screen and (max-width: 700px) {
  footer {
    flex-flow: wrap;
    row-gap: 3rem;
  }
  footer .footer__contacts .logo {
    height: 70px;
    width: auto;
  }
  footer .footer__contacts .link {
    font-size: 0.8em;
  }
  footer .footer__nav h3 {
    font-size: 1.35em;
  }
  footer .footer__nav a {
    font-size: 0.8em;
  }
}
.notification {
  height: 5rem;
  max-width: 75vw;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  animation: 5s notification ease-in-out forwards;
  z-index: 100;
}
.notification.positive {
  background: #00a666;
}
.notification.negative {
  background: #B22222;
}
.notification span {
  font-family: "HelveticaNowLight", sans-serif;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
}

@keyframes notification {
  0% {
    transform: translate(-50%, -100%);
  }
  10% {
    transform: translate(-50%, 0%);
  }
  90% {
    transform: translate(-50%, 0%);
  }
  100% {
    transform: translate(-50%, -100%);
  }
}
.title {
  height: 1000px;
  width: 100%;
  padding: 0 5% 5rem;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.title .title__img {
  height: 1100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: end end;
     object-position: end end;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-10%);
}
.title .title__img__mobile {
  display: none;
}
.title .text {
  padding-left: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.title .text h1 {
  font-size: 4.5em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2em;
}
.title .text h1 .blue {
  color: #2C65FF;
}
.title .text p {
  line-height: 1.5em;
  font-size: 1.5em;
  color: rgba(0, 0, 0, 0.5);
  margin: 1.5rem 0 1rem;
  text-align: justify;
}
.title .text .buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4rem;
}
.title .text .buttons .btn {
  font-size: 1.25em;
}
.title .text .buttons .link {
  font-size: 1.25em;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: 0.25s ease;
}
.title .text .buttons .link svg {
  height: 1.35em;
  width: 1.35em;
  stroke-width: 2.75;
}
.title .text .buttons .link:hover {
  transform: scale(1.05);
  color: #000;
}

.about__me {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 5rem 10%;
  position: relative;
  background: #FCFCFC;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.about__me .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.about__me .text h2 {
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about__me .text h2 .blue {
  color: #2C65FF;
}
.about__me .text p {
  font-size: 0.95em;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5em;
  margin: 0.25rem 0;
  text-align: justify;
}
.about__me .text .btn {
  font-size: 1.2em;
  margin-top: 1.5rem;
}
.about__me .image {
  display: flex;
  justify-content: end;
  align-items: center;
}
.about__me .image .main__image {
  height: 40vw;
  width: 30vw;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.about__me .image .main__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__me .image #about__me__bubble {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.services .heading {
  padding: 5rem 0 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.services .heading h2 {
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.services .heading h2 .blue {
  color: #2C65FF;
}
.services .heading .subheading {
  width: 60vw;
  text-align: center;
}
.services .item {
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
  background: #fff;
}
.services .item:nth-child(odd) {
  grid-template-columns: 40% 60%;
}
.services .item:nth-child(odd) .text {
  padding: 5rem 10vw 5rem 5vw;
}
.services .item .text {
  padding: 5rem 5vw 5rem 10vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  position: relative;
}
.services .item .text h3 {
  font-size: 2.75em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.services .item .text p {
  font-size: 1em;
  line-height: 1.75em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
  text-align: justify;
}
.services .item .text .btn {
  margin-top: 1rem;
}
.services .item .text .btn a {
  font-size: 1.1em;
}
.services .item .image {
  width: 100%;
  height: 100%;
  position: relative;
}
.services .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing {
  padding: 5rem 10%;
  background: rgba(44, 101, 255, 0.6);
}
.pricing .pricing__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pricing .pricing__content .item {
  width: 100%;
  background: #fff;
  padding: 2rem 2rem 1rem;
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.pricing .pricing__content .item h3 {
  font-size: 1.25em;
  text-align: center;
  font-weight: 700;
  width: 100%;
  padding: 0 5%;
}
.pricing .pricing__content .item .price {
  display: flex;
  justify-items: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  margin: 0.75rem 0 0.5rem;
}
.pricing .pricing__content .item .price h4 {
  font-size: 4em;
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 0.25rem;
}
.pricing .pricing__content .item .price span {
  color: rgba(0, 0, 0, 0.5);
}
.pricing .pricing__content .item .btn {
  margin: 1.5rem auto 0;
  width: 100%;
}
.pricing .pricing__content .item .btn a {
  width: 100%;
  font-size: 1.1em;
  padding: 0.65em 1em;
}
.pricing .payment__info {
  text-align: center;
  margin-top: 2rem;
  color: #fff;
  font-weight: 700;
}

.contacts {
  padding: 2rem 10% 2rem;
  display: grid;
  grid-template-columns: 32.5% 62.5%;
  gap: 5%;
}
.contacts .contact__details {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 2rem;
  width: 100%;
}
.contacts .contact__details .item {
  padding: 2rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
}
.contacts .contact__details .item .row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
}
.contacts .contact__details .item .row .icon {
  height: 60px;
  width: 60px;
  background: #2C65FF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.contacts .contact__details .item .row .icon svg {
  height: 30px;
  width: 30px;
  color: #fff;
  stroke-width: 2;
}
.contacts .contact__details .item .row .details__text .details__name {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
}
.contacts .contact__details .item .row .details__text .details__content {
  font-size: 1em;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.contacts .contact__details .item .row .details__text .details__content:hover {
  text-decoration: underline;
}
.contacts .contact__details .item .map {
  margin-top: 1rem;
  width: 100%;
  height: 10rem;
}
.contacts .contact__details .item .map iframe {
  height: 100%;
  width: 100%;
}
.contacts .contacts__form {
  width: 100%;
  padding: 3rem;
  background: #fff;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.contacts .contacts__form h2 {
  font-size: 2.5em;
}
.contacts .contacts__form p {
  font-size: 0.8em;
  width: 80%;
  text-align: justify;
}
.contacts .contacts__form .inputs__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
}
.contacts .contacts__form .inputs__row.first {
  margin: 2rem 0 1rem;
}
.contacts .contacts__form .inputs__row input {
  width: 45%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.contacts .contacts__form textarea {
  width: 100%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  height: 10rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  resize: none;
}
.contacts .contacts__form .gdpr {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}
.contacts .contacts__form .gdpr #gdpr {
  cursor: pointer;
}
.contacts .contacts__form .gdpr label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contacts .contacts__form .gdpr label a {
  color: #2C65FF;
  font-weight: 500;
}
.contacts .contacts__form #contact__submit {
  color: #fff;
  border-radius: 10px;
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.contacts .contacts__form #contact__submit a {
  font-size: 1.2em;
}
.contacts .contacts__form #contact__submit svg {
  height: 1.25em;
  width: 1.25em;
}
.contacts .contacts__form #contact__submit:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 1500px) {
  .title {
    height: 850px;
  }
  .title .title__img {
    height: 950px;
  }
  .title .text h1 {
    font-size: 3.25em;
  }
  .title .text p {
    font-size: 1.1em;
  }
  .title .text .buttons .btn {
    font-size: 1em;
  }
  .title .text .buttons .link {
    font-size: 1em;
  }
  .about__me .text h2 {
    font-size: 3.25em;
    margin-bottom: 0;
  }
  .about__me .text p {
    font-size: 1em;
    margin: 0.25rem 0;
  }
  .about__me .text .btn {
    font-size: 1em;
  }
  .services .heading h2 {
    font-size: 3.25em;
  }
  .services .item .text h3 {
    font-size: 2.5em;
  }
  .services .item .text p {
    font-size: 1em;
  }
  .services .item .text .btn a {
    font-size: 1em;
  }
  .pricing .pricing__content .item .price h4 {
    font-size: 3.35em;
  }
  .pricing .pricing__content .item .price span {
    font-size: 0.9em;
  }
  .pricing .pricing__content .item .btn a {
    font-size: 1em;
  }
  .contacts .contact__details .item .row {
    grid-template-columns: 50px 1fr;
  }
  .contacts .contact__details .item .row .icon {
    height: 50px;
    width: 50px;
  }
  .contacts .contact__details .item .row .icon svg {
    height: 22px;
    width: 22px;
  }
  .contacts .contact__details .item .row .details__text .details__name {
    font-size: 1.35em;
    margin-bottom: 0.25rem;
  }
  .contacts .contact__details .item .row .details__text .details__content {
    font-size: 0.9em;
  }
  .contacts .contacts__form h2 {
    font-size: 2em;
  }
  .contacts .contacts__form #contact__submit a {
    padding: 0.75em 1.5em;
  }
}
@media only screen and (max-width: 1300px) {
  .title {
    height: 600px;
  }
  .title .title__img {
    height: 700px;
  }
  .title .text h1 {
    font-size: 2.5em;
  }
  .title .text p {
    font-size: 0.9em;
  }
  .title .text .buttons {
    margin-top: 1.5rem;
  }
  .title .text .buttons .btn {
    font-size: 0.9em;
  }
  .about__me .text h2 {
    font-size: 2.25em;
  }
  .about__me .text p {
    font-size: 0.8em;
  }
  .about__me .text .btn {
    font-size: 0.9em;
  }
  .services .heading h2 {
    font-size: 2.25em;
    margin-bottom: 0;
  }
  .services .heading .subheading {
    font-size: 0.7em;
    line-height: 1.5em;
  }
  .services .item:nth-child(odd) .text {
    padding: 2.5rem 10vw 2.5rem 5vw;
  }
  .services .item .text {
    padding: 2.5rem 10vw 2.5rem 5vw;
  }
  .services .item .text h3 {
    font-size: 1.8em;
  }
  .services .item .text p {
    font-size: 0.75em;
  }
  .services .item .image img {
    width: 100%;
  }
  .pricing .pricing__content {
    gap: 1.5rem;
  }
  .pricing .pricing__content .item {
    padding: 1.5rem 1rem 1rem;
  }
  .pricing .pricing__content .item h3 {
    font-size: 0.9em;
  }
  .pricing .pricing__content .item .price h4 {
    font-size: 2.5em;
  }
  .pricing .pricing__content .item .price span {
    font-size: 0.8em;
  }
  .pricing .pricing__content .item .btn {
    margin: 1rem auto 0;
  }
  .pricing .pricing__content .item .btn a {
    font-size: 0.8em;
  }
  .contacts {
    padding: 2rem 5% 2rem;
  }
  .contacts .contact__details .item {
    padding: 1.5rem;
  }
  .contacts .contact__details .item .row .details__text .details__name {
    font-size: 1.2em;
  }
  .contacts .contacts__form {
    padding: 2rem;
  }
  .contacts .contacts__form h2 {
    font-size: 1.75em;
  }
  .contacts .contacts__form .inputs__row input {
    font-size: 0.9em;
  }
  .contacts .contacts__form textarea {
    font-size: 0.9em;
  }
  .contacts .contacts__form .gdpr label {
    font-size: 0.9em;
  }
  .contacts .contacts__form #contact__submit a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 950px) {
  .title {
    height: auto;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column;
  }
  .title .title__img {
    display: none;
  }
  .title .title__img__mobile {
    display: block;
    width: 100%;
    height: 15rem;
    -o-object-fit: cover;
       object-fit: cover;
    order: 2;
  }
  .title .text {
    padding: 2rem 5% 3rem;
    align-items: center;
    order: 1;
  }
  .title .text h1 {
    text-align: center;
    font-size: 2em;
    text-align: center;
  }
  .title .text p {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    font-size: 0.8em;
  }
  .title .text .buttons {
    justify-content: center;
    width: 100%;
  }
  .title .text .buttons .btn {
    font-size: 0.8em;
  }
  .title .text .buttons .link {
    font-size: 0.8em;
  }
  .about__me .text h2 {
    font-size: 1.8em;
  }
  .about__me .text h3 {
    font-size: 1.35em;
  }
  .about__me .text p {
    font-size: 0.7em;
  }
  .about__me .text .btn {
    font-size: 0.75em;
    margin-top: 1rem;
  }
  .services .item .text h3 {
    font-size: 1.4em;
  }
  .services .item .text p {
    font-size: 0.7em;
  }
  .pricing .pricing__content {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 2rem;
  }
  .pricing .pricing__content .item {
    width: 450px;
  }
  .pricing .payment__info {
    font-size: 0.9em;
  }
  .contacts {
    grid-template-columns: 1fr;
    padding: 2rem 10%;
    height: auto;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  .notification {
    max-width: none;
    width: 95%;
    padding: 0 5px;
  }
  .notification span {
    font-size: 0.8em;
  }
  .title {
    margin-top: 1rem;
  }
  .title .title__img__mobile {
    height: 10rem;
  }
  .title .text {
    padding: 1rem 5% 2rem;
  }
  .title .text h1 {
    font-size: 1.6em;
    margin-bottom: 0.5rem;
  }
  .title .text p {
    width: 100%;
    font-size: 0.7em;
  }
  .title .text .buttons {
    flex-flow: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .title .text .buttons .link {
    font-size: 0.7em;
  }
  .about__me {
    grid-template-columns: 1fr;
    padding: 3rem 10%;
    gap: 2.5rem;
  }
  .about__me .text h2 {
    font-size: 1.6em;
  }
  .about__me .image {
    justify-content: start;
    align-items: start;
  }
  .about__me .image .main__image {
    width: 80vw;
    height: 80vw;
  }
  .about__me .image .main__image img {
    -o-object-position: top;
       object-position: top;
  }
  .services .heading {
    padding: 2.5rem 5% 0;
  }
  .services .heading h2 {
    font-size: 1.6em;
  }
  .services .heading .subheading {
    width: 90%;
    font-size: 0.6em;
  }
  .services .item {
    grid-template-columns: 1fr;
  }
  .services .item:nth-child(odd) {
    grid-template-columns: 1fr;
  }
  .services .item .text {
    order: 1;
    padding: 2rem 10%;
  }
  .services .item .text h3 {
    font-size: 1em;
  }
  .services .item .text p {
    font-size: 0.65em;
    margin-bottom: 1rem;
  }
  .services .item .text .btn a {
    font-size: 0.8em;
  }
  .services .item .image {
    order: 2;
  }
  .services .item .image img {
    position: initial;
    height: 15rem;
    transform: none;
  }
  .pricing .pricing__content .item {
    width: 300px;
  }
  .pricing .pricing__content .item .price h4 {
    font-size: 2em;
  }
  .contacts .contacts__form {
    padding: 1.5rem;
  }
  .contacts .contacts__form h2 {
    font-size: 1.8em;
  }
  .contacts .contacts__form .inputs__row {
    flex-flow: column;
    margin: 1rem 0;
    gap: 1rem;
  }
  .contacts .contacts__form .inputs__row.first {
    margin: 1rem 0;
  }
  .contacts .contacts__form .inputs__row input {
    width: 100%;
  }
  .contacts .contacts__form .gdpr {
    margin: 1rem 0 1rem;
  }
  .contacts .contacts__form .gdpr label {
    font-size: 0.75em;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>