@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Meddon";
  font-weight: 400;
  font-style: normal;
  src: url("../../fonts/Meddon-Regular.woff2");
}
:root {
  --color-black: #010409;
  --color-green: #29903B;
  --color-white: #FFFFFF;
  --color-h: #F0F6FC;
  --color-small-h: #E8EEF5;
  --color-grey: #494E55;
  --color-grey-t: #4b5563;
  --color-blue:#1A40E9;
  --color-purp: #372862;
  --color-back-white: #F9FAFB;
  --section-width: 1150px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
}

html {
  overflow-x: hidden;
}

.container {
  max-width: 1272px;
  margin-inline: auto;
}

.vector {
  pointer-events: none !important;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.meddon {
  font-family: Meddon, sans-serif;
}

a {
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0; /* те саме, що top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  /* коли активне */
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}
.overlay__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.overlay__list a {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}
@media (any-hover: hover) {
  .overlay__list a:hover {
    color: #29903B;
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .overlay__list a:active {
    color: #29903B;
    transform: scale(1.05);
  }
}

/*
!* бургер *!
.burger {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;

  span,
  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }

  &::before { top: 10px; }
  span       { top: 19px; }
  &::after  { top: 28px; }

  &.active {
    &::before {
      transform: translateX(-50%) rotate(45deg);
      top: 19px;
    }
    &::after {
      transform: translateX(-50%) rotate(-45deg);
      top: 19px;
    }
    span {
      opacity: 0;
    }
  }
}*/
.burger {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 48px;
  height: 48px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger::before {
  transform: translateY(-8px);
}
.burger::after {
  transform: translateY(8px);
}
.burger.active span {
  background: transparent;
}
.burger.active::before {
  transform: rotate(45deg);
}
.burger.active::after {
  transform: rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background-color: var(--color-black);
  height: 83px;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media (width <= 47.99875rem) {
  .header {
    height: 54px;
  }
}
.header.hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 150px 2px 150px;
  align-items: center;
}
@media (max-width: 1280px) {
  .header__inner {
    padding: 8px 75px 2px 75px;
  }
}
@media (width <= 47.99875rem) {
  .header__inner {
    padding: 7px 15px;
  }
}
.header__inner-list {
  align-items: center;
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .header__inner-list {
    display: none !important;
  }
}
.header__inner-list a {
  text-decoration: none;
  color: var(--color-h);
  font-size: 18px;
}
.header__inner-list .header__inner-list-btn {
  display: block;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 12px;
  padding: 15px;
  horiz-align: center;
  vertical-align: center;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
}
.header__inner-list .header__inner-list-btn:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.header__inner-home {
  vertical-align: center;
  horiz-align: center;
}
.header__inner-home span {
  font-size: 22px;
  padding-right: 5px;
}
.header__inner-home {
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.header .line {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header .line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .header .line:hover {
    color: var(--color-white);
  }
}
@media (any-hover: none) {
  .header .line:active {
    color: var(--color-white);
  }
}
.header .line:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.footer {
  background-color: #0F1115;
  border-top: 1px solid #1E2228;
  padding: 40px 20px;
  color: #777;
  font-size: 0.9rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.footer__links a {
  color: #B0B0B0;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.footer__links a:hover {
  color: #00ADB5;
  text-shadow: 0 0 6px #00ADB5;
}
@media (width > 576px) {
  .footer {
    padding: 40px 20px;
  }
  .footer__inner {
    max-width: 540px;
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media (width > 768px) {
  .footer {
    padding: 40px 20px;
  }
  .footer__inner {
    max-width: 720px;
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media (width > 992px) {
  .footer__inner {
    max-width: 960px;
    margin-inline: auto;
  }
}
@media (width > 1200px) {
  .footer__inner {
    max-width: 1140px;
    margin-inline: auto;
  }
}
@media (width > 1400px) {
  .footer__inner {
    max-width: 1320px;
    margin-inline: auto;
  }
}
@media (width <= 47.99875rem) {
  .footer__links a:first-child {
    margin-left: 0;
  }
}

.hire {
  padding-top: 140px;
  padding-bottom: 50px;
  background-color: var(--color-back-white);
}
.hire__inner {
  padding-inline: 20px;
  max-width: 900px;
  margin-inline: auto;
}
.hire__title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.hire__short-text {
  color: var(--color-grey);
  font-size: 22px;
  max-width: 640px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 60px;
  line-height: 1.5;
}
.hire__form {
  background-color: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.hire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hire__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hire__field--full {
  grid-column: 1/-1;
}
.hire__label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.hire__input, .hire__textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #E0E0E0;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hire__input:focus, .hire__textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}
.hire__textarea {
  resize: vertical;
}
.hire__submit {
  margin-top: 40px;
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .hire__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (any-hover: none) {
  .hire__submit:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}
.hire__conditional {
  display: none;
}
.hire__conditional.active {
  display: flex;
}
.hire__status {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--color-grey);
}
.hire__status.success {
  color: #1a7f37;
}
.hire__status.error {
  color: #c62828;
}
@media (width <= 47.99875rem) {
  .hire__grid {
    grid-template-columns: 1fr;
  }
  .hire__form {
    padding: 30px 20px;
  }
}
@media (width < 420px) {
  .hire .hire {
    padding-top: 100px;
  }
  .hire .hire__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .hire .hire__short-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .hire .hire__form {
    padding: 20px 14px;
    border-radius: 22px;
  }
  .hire .hire__grid {
    gap: 16px;
  }
  .hire .hire__input, .hire .hire__textarea {
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .hire .hire__submit {
    font-size: 16px;
    padding: 14px;
    border-radius: 14px;
    margin-top: 28px;
  }
}

/*# sourceMappingURL=style.css.map */
