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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease;
}
a:hover {
  color: #1B383C;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rawline", "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
}

h1 {
  font-size: 48px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1211px;
  margin: 0 auto;
  padding: 0 0;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .container {
    padding: 20px;
    max-width: 100%;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
  color: #333333;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 48px;
  }
}

::selection {
  background-color: #1B383C;
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid #1B383C;
  outline-offset: 2px;
}

::placeholder {
  color: #999999;
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-md {
  font-size: 18px;
}

.text-lg {
  font-size: 20px;
}

.text-xl {
  font-size: 24px;
}

.text-2xl {
  font-size: 32px;
}

.text-3xl {
  font-size: 40px;
}

.text-4xl {
  font-size: 48px;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-primary {
  color: #1B383C;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #999999;
}

.text-light {
  color: #666666;
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.2;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 300ms ease;
}
.btn:focus {
  outline: none;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--primary {
  background: linear-gradient(135deg, #000000 0%, #1B383C 100%);
  color: #ffffff;
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #1B383C 0%, #000000 100%);
  border-color: transparent;
  color: #ffffff;
}
.btn--primary:active {
  transform: translateY(1px);
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #1B383C;
}
.btn--outline-dark {
  background-color: #ffffff;
  color: #333333;
  border-color: #333333;
}
.btn--outline-dark:hover {
  background-color: #1B383C;
  border-color: #1B383C;
  color: #ffffff;
}
.btn--rounded {
  border-radius: 50px;
  padding: 16px 48px;
}
.btn--secondary {
  background-color: #f5f5f5;
  color: #333333;
  border-color: #f5f5f5;
}
.btn--secondary:hover {
  background-color: rgb(232.25, 232.25, 232.25);
  border-color: rgb(232.25, 232.25, 232.25);
}
.btn--white {
  background-color: #ffffff;
  color: #1B383C;
  border-color: #ffffff;
}
.btn--white:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #1B383C;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}
.btn--lg {
  padding: 24px 48px;
  font-size: 18px;
}
.btn--full {
  width: 100%;
}
.btn--icon {
  padding: 16px;
}
.btn--icon svg {
  width: 20px;
  height: 20px;
}
.btn svg {
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 16px 24px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 300ms ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #1B383C;
}
.form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
  color: #999999;
}
.form-input:disabled, .form-select:disabled, .form-textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.form-input--lg {
  padding: 24px 32px;
  font-size: 18px;
}
.form-input--sm {
  padding: 8px 16px;
  font-size: 14px;
}
.form-input--transparent {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.form-input--transparent::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-input--transparent:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1B383C;
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox span {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-radio input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1B383C;
  cursor: pointer;
}

.form-group {
  margin-bottom: 24px;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.form-label--required::after {
  content: "*";
  color: #e53e3e;
  margin-left: 4px;
}

.form-error {
  margin-top: 4px;
  font-size: 14px;
  color: #e53e3e;
}

.form-success {
  margin-top: 4px;
  font-size: 14px;
  color: #38a169;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  height: 142px;
  padding: 29px 0;
  background-color: #1B383C;
  border-radius: 0 0 24px 24px;
  transition: all 300ms ease;
}
@media (max-width: 575px) {
  .header-wrapper {
    height: 76px;
    padding: 10px 0;
  }
}
.header-wrapper.scrolled {
  height: auto;
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .header-wrapper.scrolled {
    padding: 12px 0;
  }
}

@media (max-width: 575px) {
  .header-wrapper .container {
    padding: 0;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  height: 84px;
}
@media (max-width: 575px) {
  .header {
    height: auto;
  }
}
.header__center {
  width: 1201px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0 6px 0 24px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .header__center {
    width: calc(100% - 40px);
    max-width: 1201px;
  }
}
@media (max-width: 575px) {
  .header__center {
    width: calc(100% - 32px);
    height: 56px;
    margin: 0 16px;
    padding: 0 8px 0 16px;
    border-radius: 19px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  padding: 0 24px 0 0;
}
.header__logo-img {
  width: 74px;
  height: 58px;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
.header__menu a {
  color: #000000;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.header__menu a:hover {
  color: #1B383C;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
@media (max-width: 575px) {
  .header__right {
    gap: 12px;
  }
}
.header__messengers {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
}
@media (max-width: 575px) {
  .header__messengers {
    gap: 8px;
    order: 2;
  }
}
.header__messenger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  background-color: transparent;
  border-radius: 50%;
  color: #666;
  transition: all 300ms ease;
}
.header__messenger:hover {
  color: #333;
}
.header__messenger svg,
.header__messenger img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .header__messenger {
    width: 28px;
    height: 28px;
  }
  .header__messenger svg, .header__messenger img {
    width: 28px;
    height: 28px;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  height: 47px;
  background: linear-gradient(135deg, #1B383C 0%, #2a4a48 100%);
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 100px;
  white-space: nowrap;
}
.header__phone:hover {
  background: linear-gradient(135deg, #2a4a48 0%, #1B383C 100%);
  color: #ffffff;
}
@media (max-width: 575px) {
  .header__phone {
    width: auto;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    order: 1;
  }
}
.header__burger {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  display: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 16px;
}
.header__burger:focus {
  outline: none;
}
@media (max-width: 1199px) {
  .header__burger {
    display: flex;
  }
}
@media (max-width: 575px) {
  .header__burger {
    display: flex;
    order: 3;
    margin-right: 0;
  }
}
.header__burger svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 575px) {
  .header__logo {
    padding: 0;
  }
  .header__logo-img {
    width: 50px;
    height: 40px;
  }
}

.mobile-menu {
  position: fixed;
  top: 142px;
  left: 0;
  width: 100%;
  height: calc(100vh - 142px);
  background-color: #1B383C;
  padding: 32px;
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 299;
  border-radius: 0 0 16px 16px;
  overflow-y: auto;
}
@media (max-width: 575px) {
  .mobile-menu {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 80px 24px 24px 24px;
    z-index: 301;
  }
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu__menu {
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}
.mobile-menu__menu li {
  margin-bottom: 16px;
}
.mobile-menu__menu a {
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-menu__menu a:hover {
  opacity: 0.8;
}
.mobile-menu__contacts {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
}
.mobile-menu__phone {
  display: block;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.mobile-menu__messengers {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.mobile-menu__messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.mobile-menu__messengers a img {
  width: 36px;
  height: 36px;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
}
.mobile-menu__close:focus {
  outline: none;
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.hero-about {
  padding-top: 170px;
  padding-bottom: 64px;
  background-color: #EFEFEF;
}
@media (max-width: 575px) {
  .hero-about {
    padding-top: 100px;
    padding-bottom: 0;
    background-color: #ffffff;
    overflow-x: hidden;
  }
}
.hero-about__container {
  width: 1211px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 0;
}
@media (max-width: 1199px) {
  .hero-about__container {
    width: 100%;
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .hero-about__container {
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}
.hero-about__divider {
  width: 100%;
  height: 1px;
  background-color: #A0A0A0;
  margin: 48px 0;
}
@media (max-width: 575px) {
  .hero-about__divider {
    margin: 24px auto;
    width: 100%;
  }
}

.hero__inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
@media (max-width: 1199px) {
  .hero__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.hero__image {
  flex: 0 0 626px;
  width: 626px;
  height: 387px;
  border-radius: 20px;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1199px) {
  .hero__image {
    flex: none;
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 575px) {
  .hero__image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 0;
    margin: 0;
  }
}
.hero__content {
  flex: 0 0 562px;
  height: 388px;
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .hero__content {
    flex: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .hero__content {
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    padding: 30px 24px 40px;
    text-align: left;
    position: relative;
    z-index: 1;
  }
}
.hero__title {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: #1B383C;
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .hero__title {
    font-size: 35px;
  }
}
.hero__features {
  margin-bottom: 32px;
}
.hero__features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 300ms ease;
}
.hero__features li:hover {
  color: #1B383C;
}
.hero__features li:first-child {
  border-top: 1px solid #e0e0e0;
}
.hero__features li svg {
  flex-shrink: 0;
  color: #333333;
}
@media (max-width: 1199px) {
  .hero__features li {
    justify-content: center;
    gap: 16px;
  }
}
.hero__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 1199px) {
  .hero__buttons {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero__features li {
    justify-content: space-between;
    font-family: "Rawline", "Raleway", sans-serif;
    font-weight: bold;
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .about {
    padding: 0 16px;
    background-color: #ffffff;
  }
}
.about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 64px;
  padding: 0;
}
@media (max-width: 1199px) {
  .about__inner {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .about__inner {
    gap: 24px;
    padding: 0 16px;
  }
}
.about__text {
  flex: 1;
  max-width: 626px;
}
@media (max-width: 575px) {
  .about__text {
    max-width: 100%;
  }
}
.about__title {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 24px;
  font-style: normal;
  color: #1B383C;
}
@media (max-width: 575px) {
  .about__title {
    font-size: 45px;
    margin-bottom: 16px;
  }
}
.about__description {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
}
@media (max-width: 575px) {
  .about__description {
    font-size: 19px;
    line-height: 1.6;
  }
}
.about__stats {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
@media (max-width: 767px) {
  .about__stats {
    width: 100%;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  .about__stats {
    gap: 24px 32px;
    margin-top: 32px;
    padding-bottom: 40px;
  }
}

.stat {
  text-align: left;
}
.stat__number {
  font-family: "Gilroy", sans-serif;
  font-size: 50px;
  font-weight: 700;
  display: block;
  color: #1B383C;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .stat__number {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .stat__number {
    font-size: 43px;
  }
}
.stat__label {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #666666;
}

.services {
  padding: 30px 0 100px;
  background-color: #f5f5f5;
}
@media (max-width: 575px) {
  .services {
    padding: 30px 0 0;
    background-color: #f5f5f5;
  }
}
.services__title {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #1B383C;
  margin-bottom: 44px;
  text-align: left;
}
@media (max-width: 575px) {
  .services__title {
    font-size: 45px;
    margin-bottom: 24px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1211px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .services__grid {
    display: none;
  }
}
.services__slider {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .services__slider {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .services__slider {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .services__slider {
    display: block !important;
    padding-top: 0;
    padding-bottom: 20px;
    position: relative;
  }
}
.services__slider .swiper-slide {
  height: auto;
}
.services__slider .swiper-slide .service-card {
  height: 100%;
  position: relative;
}
.services__slider .services__pagination-wrap {
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.services__slider .swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
  transform: none;
}
.services__slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #1B383C;
  opacity: 0.3;
}
.services__slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 575px) {
  .services__slider .swiper-horizontal > .swiper-pagination-bullets,
  .services__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
  .services__slider .swiper-pagination-custom,
  .services__slider .swiper-pagination-fraction {
    margin-top: 25px;
  }
}
.services__slider .swiper-button-next::after,
.services__slider .swiper-button-prev::after {
  opacity: 0.2;
}
.services__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(27, 56, 60, 0.5);
  border-radius: 50%;
  z-index: 10;
}
.services__arrow::after {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 575px) {
  .services__arrow {
    width: 32px;
    height: 32px;
    background: none;
    margin-right: -10px;
  }
  .services__arrow::after {
    font-size: 14px;
    color: #1B383C;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.service-card__image {
  overflow: hidden;
  margin: 20px 20px 0 20px;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .service-card__image {
    margin-top: 0;
  }
}
.service-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 300ms ease;
  border-radius: 16px;
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1B383C;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .service-card__title {
    font-family: "Gilroy", sans-serif;
    font-size: 22px;
  }
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
}
.service-card__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}
.service-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1B383C;
}
@media (max-width: 575px) {
  .service-card__list li {
    font-family: "Rawline", "Raleway", sans-serif;
    font-size: 17px;
  }
}
.service-card__btn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 575px) {
  .service-card__btn {
    align-self: center;
  }
}
.service-card__text {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}

.consultation-steps-wrapper {
  background-color: #EFEFEF;
}

.consultation {
  padding: 40px 0;
  background-color: transparent;
}
.consultation__box {
  max-width: 1149px;
  margin: 0 auto;
  padding: 50px 60px;
  background-color: #1B383C;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .consultation__box {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .consultation__box {
    margin: 0 16px;
    padding: 40px 24px;
    border-radius: 20px;
  }
}
.consultation__title {
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .consultation__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.consultation__form {
  width: 100%;
}
.consultation__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: auto auto;
  gap: 20px 40px;
  align-items: end;
}
@media (max-width: 767px) {
  .consultation__form-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .consultation__form-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    justify-items: center;
  }
}
.consultation__btn {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  white-space: nowrap;
  width: 283px;
  border-radius: 25px;
  font-family: "Gilroy", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #090154;
}
.consultation__btn:hover {
  color: #090154;
}
@media (max-width: 767px) {
  .consultation__btn {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .consultation__btn {
    width: 100%;
    max-width: 280px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 575px) {
  .form-group {
    width: 100%;
  }
}

.form-label {
  font-family: "Rawline", "Raleway", sans-serif;
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 575px) {
  .form-input {
    width: 100%;
  }
}

.steps {
  padding: 60px 0;
  background-color: transparent;
}
@media (max-width: 575px) {
  .steps {
    padding: 40px 16px;
  }
}
.steps__mobile-image {
  display: none;
}
@media (max-width: 575px) {
  .steps__mobile-image {
    display: block;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
  }
  .steps__mobile-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.steps__title {
  font-family: "Gilroy", sans-serif;
  font-size: 55px;
  font-weight: 600;
  color: #1B383C;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .steps__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .steps__title {
    font-size: 31px;
    margin-bottom: 24px;
  }
}
.steps__title-mobile {
  display: none;
}
@media (max-width: 575px) {
  .steps__title-mobile {
    display: inline;
  }
}
.steps__inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .steps__inner {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .steps__inner {
    display: block;
  }
}
.steps__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 662px;
}
@media (max-width: 575px) {
  .steps__list {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .steps__right {
    display: none;
  }
}
.steps__slider {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .steps__slider {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .steps__slider {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .steps__slider {
    display: none !important;
  }
}
.steps__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(27, 56, 60, 0.5);
  border-radius: 50%;
  z-index: 10;
}
.steps__arrow::after {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 575px) {
  .steps__arrow {
    background: transparent;
  }
  .steps__arrow::after {
    color: #1B383C;
  }
}
.steps__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .steps__right {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .steps__right {
    display: none;
  }
}
.steps__image {
  width: 453px;
  height: 691px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}
.steps__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .steps__image {
    width: 100%;
    max-width: 453px;
    height: auto;
    aspect-ratio: 453/691;
  }
}
@media (max-width: 575px) {
  .steps__image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1.2;
  }
}
.steps__cta {
  width: 453px;
  margin-top: 20px;
  box-sizing: border-box;
}
.steps__cta svg {
  width: 29px;
  height: 29px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .steps__cta {
    width: 100%;
    max-width: 453px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .steps__cta {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}
.steps__mobile-bottom {
  display: none;
}
@media (max-width: 575px) {
  .steps__mobile-bottom {
    display: block;
    margin-top: 30px;
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .step {
    padding: 16px 20px;
    gap: 16px;
  }
}
.step__number {
  font-family: "Gilroy", sans-serif;
  font-size: 65px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1B383C;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .step__number {
    font-size: 65px;
  }
}
.step__content {
  flex: 1;
}
.step__title {
  font-family: "Gilroy", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1B383C;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .step__title {
    font-size: 28px;
  }
}
.step__text {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .step__text {
    font-size: 14px;
  }
}
.step--animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step--animate.step--visible {
  opacity: 1;
  transform: translateY(0);
}

.advantages {
  padding: 60px 0 80px;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .advantages {
    padding: 40px 16px;
  }
}
.advantages__title {
  font-family: "Gilroy", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #1B383C;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .advantages__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .advantages__title {
    font-size: 30px;
  }
}
.advantages__wrapper {
  position: relative;
  overflow: visible;
}
@media (max-width: 575px) {
  .advantages__wrapper {
    overflow: hidden;
  }
}
.advantages__box {
  background-color: #EFEFEF;
  border-radius: 24px;
  padding: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .advantages__box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .advantages__box {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .advantages__box {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
  }
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.advantages__grid .advantage:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.advantages__grid .advantage:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.advantages__grid .advantage:nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}
.advantages__grid .advantage:nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__grid .advantage:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 767px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .advantages__grid .advantage:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
.advantages__image {
  position: relative;
  margin-right: -100px;
  margin-bottom: -80px;
  margin-top: -450px;
  margin-left: auto;
  width: 538px;
  height: 549px;
  z-index: 10;
}
.advantages__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .advantages__image {
    position: static;
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .advantages__image {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .advantages__image {
    display: none;
  }
}

.advantage {
  background: transparent;
  border: 1px solid #1B383C;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.advantage__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.advantage__number {
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  line-height: 1;
}
.advantage__arrow {
  width: 20px;
  height: 20px;
  color: #1B383C;
  flex-shrink: 0;
}
.advantage__title {
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}
.advantage__text {
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
}

.benefits {
  padding: 16px 0 80px;
  background-color: #FFFFFF;
}
@media (max-width: 575px) {
  .benefits {
    padding: 0 16px 30px;
  }
}
.benefits__mobile-image {
  display: none;
}
@media (max-width: 575px) {
  .benefits__mobile-image {
    display: block;
    width: calc(100% + 32px);
    margin: -130px -16px 0;
  }
  .benefits__mobile-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.benefits__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
  gap: 40px;
}
@media (max-width: 767px) {
  .benefits__header {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .benefits__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }
}
.benefits__title {
  font-family: "Gilroy", sans-serif;
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  color: #1B383C;
  line-height: 1.2;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .benefits__title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .benefits__title {
    font-size: 28px;
  }
}
.benefits__description {
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  max-width: 400px;
  line-height: 1.5;
  align-self: center;
}
@media (max-width: 575px) {
  .benefits__description {
    max-width: 100%;
    align-self: flex-start;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
}
@media (max-width: 767px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.benefit-card {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #1B383C;
  min-height: 100px;
}
.benefit-card::before {
  content: "";
  width: 4px;
  height: 40px;
  background: #1B383C;
  border-radius: 2px;
  margin-right: 20px;
  flex-shrink: 0;
}
.benefit-card__text {
  font-family: "Gilroy", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #1B383C;
  line-height: 1.4;
}
.benefit-card--dark {
  background: #1B383C;
  border-color: #1B383C;
}
.benefit-card--dark::before {
  background: #FFFFFF;
}
.benefit-card--dark .benefit-card__text {
  color: #FFFFFF;
}

.cta-form {
  padding: 60px 0 0;
  background-color: #EFEFEF;
}
@media (max-width: 575px) {
  .cta-form {
    padding: 30px 0 0;
  }
}
.cta-form__image {
  width: 1158px;
  max-width: 100%;
  height: 205px;
  margin: 0 auto 43px;
  border-radius: 20px;
  overflow: hidden;
}
.cta-form__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-form__box {
  width: 1159px;
  max-width: 100%;
  min-height: 297px;
  margin: -20px auto 0;
  background-color: #1B383C;
  border-radius: 20px;
  padding: 50px 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-form__box {
    padding: 30px 20px;
  }
}
.cta-form__title {
  font-family: "Gilroy", sans-serif;
  font-size: 29px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cta-form__title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.cta-form__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  justify-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cta-form__form {
    grid-template-columns: 1fr;
  }
}
.cta-form__input {
  width: 292px;
  height: 56px;
  padding: 0 24px;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
}
.cta-form__input::placeholder {
  color: #999;
}
@media (max-width: 767px) {
  .cta-form__input {
    width: 100%;
  }
}
.cta-form__btn {
  height: 56px;
  padding: 0 40px;
  background: #FFFFFF;
  border: 1px solid #1B383C;
  border-radius: 20px;
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1B383C;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cta-form__btn {
    width: 100%;
  }
}

.offices {
  padding: 60px 0;
  padding-bottom: 0;
  background-color: #EFEFEF;
}
@media (max-width: 575px) {
  .offices {
    padding: 30px 0;
    padding-bottom: 0;
    background-color: #EFEFEF;
  }
}
.offices__title {
  font-family: "Gilroy", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #1B383C;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 575px) {
  .offices__title {
    font-size: 45px;
  }
}
.offices__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .offices__info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.offices__col {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}
.offices__email {
  color: #1B383C;
  text-decoration: underline;
}
.offices__email:hover {
  text-decoration: none;
}
.offices__map {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.offices__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.footer {
  background-color: #EFEFEF;
  padding: 40px 0;
}
@media (max-width: 575px) {
  .footer {
    padding-top: 0;
  }
}
.footer__inner {
  border-top: 1px solid #CCCCCC;
  padding-top: 30px;
}
.footer__text {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 4px;
}
.footer__text:last-child {
  margin-bottom: 0;
}

.service-page {
  padding-top: 170px;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .service-page {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
.service-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}
.service-page__back:hover {
  opacity: 0.7;
}
.service-page__back svg {
  width: 16px;
  height: 16px;
}
.service-page__hero {
  background-color: #1B383C;
  border-radius: 20px;
  padding: 22px 30px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .service-page__hero {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
}
.service-page__title {
  font-family: "Gilroy", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
@media (max-width: 575px) {
  .service-page__title {
    font-size: 20px;
  }
}
.service-page__image {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .service-page__image {
    margin-bottom: 20px;
  }
}
.service-page__image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 20px;
  display: block;
}
@media (max-width: 575px) {
  .service-page__image img {
    width: 100%;
    max-width: none;
    border-radius: 16px;
  }
}
.service-page__form-title {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 20px;
}
@media (max-width: 575px) {
  .service-page__form-title {
    font-size: 16px;
    margin: 30px 0 16px;
  }
}

.accordions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion {
  border-radius: 25px;
  overflow: hidden;
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 575px) {
  .accordion__header {
    padding: 14px 18px;
  }
}
.accordion__title {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .accordion__title {
    font-size: 16px;
  }
}
.accordion__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion__toggle svg {
  width: 24px;
  height: 24px;
}
.accordion__content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__body {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 575px) {
  .accordion__body {
    padding: 20px 16px;
  }
}
.accordion__decor {
  width: 60px;
  height: 3px;
  background-color: #1B383C;
  border-radius: 2px;
  margin-bottom: 10px;
}
.accordion__list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.accordion__list li {
  font-family: "Gilroy", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .accordion__list li {
    font-size: 15px;
  }
}
.accordion__btn {
  align-self: flex-end;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .accordion__btn {
    align-self: stretch;
    text-align: center;
  }
}
.accordion--open .accordion__header {
  background-color: #1B383C;
  border-radius: 25px 25px 0 0;
}
.accordion--open .accordion__title {
  color: #ffffff;
}
.accordion--open .accordion__toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #ffffff;
}
.accordion--open .accordion__content {
  max-height: 1000px;
}
.accordion--closed {
  border: 1px solid #E0E0E0;
  background-color: #ffffff;
}
.accordion--closed .accordion__header {
  border-radius: 25px;
}
.accordion--closed .accordion__title {
  color: #333333;
}
.accordion--closed .accordion__toggle {
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
}
.accordion--closed .accordion__toggle img {
  width: 40px;
  height: 40px;
  display: block;
}
.accordion--closed .accordion__content {
  max-height: 0;
}

@media (max-width: 575px) {
  .service-page .consultation {
    padding-top: 0;
  }
}

/* Admin bar: shift header and content down when admin bar is visible */
body.admin-bar .header-wrapper {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .header-wrapper {
    top: 46px;
  }
}
/* When admin bar is hidden (e.g. on scroll mobile): no header offset */
@media (max-width: 782px) {
  body.svtb-ved-admin-bar-hidden .header-wrapper {
    top: 0;
  }
}
body.admin-bar .hero-about {
  padding-top: 202px;
}
@media (max-width: 575px) {
  body.admin-bar .hero-about {
    padding-top: 106px;
  }
}
body.admin-bar .service-page {
  padding-top: 202px;
}
@media (max-width: 575px) {
  body.admin-bar .service-page {
    padding-top: 146px;
  }
}
/* When admin bar hidden on mobile: use normal content padding */
@media (max-width: 575px) {
  body.svtb-ved-admin-bar-hidden .hero-about {
    padding-top: 100px;
  }
  body.svtb-ved-admin-bar-hidden .service-page {
    padding-top: 100px;
  }
}
