.our-websites {
  display: flex;
  gap: 30px; }
  @media (min-width: 769px) {
    .our-websites {
      gap: 50px; } }
  @media (min-width: 1024px) {
    .our-websites {
      gap: 100px; } }
  @media (max-width: 1023px) {
    .our-websites {
      flex-direction: column;
      max-width: 500px;
      margin: 0 auto; }
      .our-websites .ow-left {
        order: 2; }
      .our-websites .ow-right {
        order: 1; } }
  .our-websites h1 {
    font-size: 48px;
    line-height: 100%;
    font-weight: 700; }
    @media (max-width: 768px) {
      .our-websites h1 {
        font-size: 36px; } }
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 27px 38px;
  margin-bottom: 38px;
  display: flex;
  flex: 0 0 500px;
  max-width: 500px; }
  @media (max-width: 768px) {
    .card {
      flex: 0 0 100%;
      max-width: 100%;
      justify-content: center;
      margin-bottom: 0; } }
  .card .card-content {
    padding-right: 30px; }
  .card .img {
    flex: 0 0 180px;
    max-width: 180px; }
    @media (max-width: 768px) {
      .card .img {
        flex: 0 0 120px;
        max-width: 120px; } }
  .card h2 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 16px; }
  .card p {
    margin: 0;
    font-size: 16px;
    line-height: 136%;
    margin-bottom: 47px; }
    @media (max-width: 768px) {
      .card p {
        margin-bottom: 30px;
        font-size: 14px; } }
.contact-title {
  max-width: 390px;
  width: 100%;
  margin-left: 42px;
  margin-bottom: 57px; }
  @media (max-width: 768px) {
    .contact-title {
      margin-left: 0;
      margin-top: 50px; } }
  .contact-title h3 {
    font-size: 48px;
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 20px; }
    @media (max-width: 768px) {
      .contact-title h3 {
        font-size: 36px; } }
  .contact-title p {
    font-size: 20px;
    line-height: 140%;
    margin: 0 0 22px; }

.contact {
  display: flex;
  gap: 95px;
  padding-left: 42px; }
  @media (max-width: 1023px) {
    .contact {
      justify-content: center; } }
  @media (max-width: 768px) {
    .contact {
      flex-direction: column;
      padding-left: 0;
      justify-content: center;
      align-items: center;
      gap: 50px; } }
  .contact .c-el {
    position: relative;
    max-width: 150px; }
    .contact .c-el h4 {
      font-size: 20px;
      line-height: 140%;
      font-weight: 700;
      margin: 0 0 8px; }
    .contact .c-el p {
      font-size: 15px;
      line-height: 140%;
      margin: 0; }
    .contact .c-el.office::after {
      position: absolute;
      z-index: -1;
      content: '';
      width: 90px;
      height: 90px;
      background: url("../media/office.svg") no-repeat center center;
      left: -50px;
      top: -35px; }
    .contact .c-el.email {
      margin-top: 55px; }
      @media (max-width: 768px) {
        .contact .c-el.email {
          margin-top: 20px; } }
      .contact .c-el.email::after {
        position: absolute;
        z-index: -1;
        content: '';
        width: 90px;
        height: 90px;
        background: url("../media/mail.svg") no-repeat center center;
        left: -50px;
        top: -35px; }
    .contact .c-el.phone {
      margin-top: 110px; }
      @media (max-width: 768px) {
        .contact .c-el.phone {
          margin-top: 20px; } }
      .contact .c-el.phone::after {
        position: absolute;
        z-index: -1;
        content: '';
        width: 90px;
        height: 90px;
        background: url("../media/phone.svg") no-repeat center center;
        left: -50px;
        top: -35px; }

:root {
  --container-padding: 16px;
  --content-width: calc(1150px + (2 * var(--container-padding)));
  --grid-row-gap: 16px;
  --grid-column-gap: 16px;
  --font-size: 18px;
  --line-height: 28px;
  --font-weight: 400;
  --font-family: 'Open Sans', sans-serif; }
  @media (min-width: 460px) {
    :root {
      --grid-row-gap: 16px;
      --grid-column-gap: 16px;
      --container-padding: 16px; } }
  @media (min-width: 769px) {
    :root {
      --grid-row-gap: 16px;
      --grid-column-gap: 16px;
      --container-padding: 16px; } }
  @media (min-width: 1024px) {
    :root {
      --grid-row-gap: 16px;
      --grid-column-gap: 16px;
      --container-padding: 16px; } }
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  margin: 0 auto; }
  .container:not(.container--fluid) {
    max-width: var(--content-width); }

*:focus,
*:focus-visible {
  outline: none; }

html {
  scroll-behavior: smooth; }

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  overflow-x: hidden;
  color: #000000;
  background: #F6F6F6 url("../media/bg.png") no-repeat center top; }

.relative {
  position: relative; }

a {
  text-decoration: none; }

img {
  max-width: 100%; }

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

p {
  margin-bottom: 30px; }

*,
*:before,
*:after {
  box-sizing: border-box; }

\:root {
  -moz-tab-size: 4;
  tab-size: 4; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

hr {
  height: 0;
  color: inherit; }

abbr[title] {
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

table {
  text-indent: 0;
  border-color: inherit; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
select {
  text-transform: none; }

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; }

::-moz-focus-inner {
  border-style: none;
  padding: 0; }

\:-moz-focusring {
  outline: none; }

\:-moz-ui-invalid {
  box-shadow: none; }

legend {
  padding: 0; }

progress {
  vertical-align: baseline; }

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

summary {
  display: list-item; }

header {
  padding: 54px 0 80px 0; }
  @media (max-width: 1023px) {
    header {
      padding: 30px 0 40px 0;
      text-align: center; } }
  header .logo {
    position: relative; }
    @media (min-width: 1024px) {
      header .logo {
        margin-left: -12px; } }
    @media (max-width: 1023px) {
      header .logo img {
        max-width: 220px; } }
footer {
  text-align: center;
  padding: 100px 0 30px 0; }
  @media (max-width: 768px) {
    footer {
      padding: 50px 0 20px 0; } }
  footer p {
    margin: 0;
    font-size: 16px;
    line-height: 140%;
    color: #626262; }
    @media (max-width: 768px) {
      footer p {
        font-size: 14px; } }
.btn {
  display: inline-block;
  padding: 12px 57px 12px 37px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_18_293)'%3E%3Cpath d='M7.5 3.75L13.75 10L7.5 16.25' stroke='%230094D5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_18_293'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-color: rgba(0, 148, 213, 0.2);
  border-radius: 30px;
  color: #0094D5;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap; }
  .btn:hover {
    background-color: rgba(0, 148, 213, 0.3); }
