html {
  font-size: 62.5%;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50%;
  }
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.8rem 2.4rem;
  white-space: nowrap;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%);
}
.btn-dark img {
  height: 2.7rem;
  width: auto;
}

.site-header {
  background-color: #00a5da;
}
.site-header.site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
}
.site-header.site-header--home .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.95);
  color: #fff;
}
.site-header.site-header--home .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.35);
}

.site-nav-toggler {
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-nav-toggler:active {
  transform: scale(0.94);
}
.site-nav-toggler .site-nav-toggler__bars {
  width: 2.4rem;
  height: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.site-nav-toggler .site-nav-toggler__bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}
.site-nav-toggler[aria-expanded=true] .site-nav-toggler__bar:nth-child(1) {
  transform: translateY(calc(0.8rem - 1px)) rotate(45deg);
}
.site-nav-toggler[aria-expanded=true] .site-nav-toggler__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-nav-toggler[aria-expanded=true] .site-nav-toggler__bar:nth-child(3) {
  transform: translateY(calc(-0.8rem + 1px)) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .site-header.site-header--home {
    background-color: #00a5da;
  }
  .site-header .navbar {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .site-header .navbar-brand img {
    height: 32px;
    width: auto;
  }
  .site-header .navbar-toggler.site-nav-toggler {
    padding: 1.2rem 1.4rem;
  }
  .site-header .navbar > .container-xxl {
    position: relative;
    z-index: 110;
  }
  .site-header .navbar-brand,
  .site-header .navbar-toggler {
    position: relative;
    z-index: 115;
  }
  .site-header .navbar-collapse {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-header-h, 10rem);
    bottom: 0;
    z-index: 105;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 3.2rem 2rem 4rem;
    background-color: #00a5da;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .site-header .navbar-collapse.show {
    display: flex !important;
    min-height: calc(100dvh - var(--site-header-h, 10rem));
  }
  .site-header .navbar-collapse.collapsing {
    display: flex !important;
    height: auto !important;
    min-height: calc(100dvh - var(--site-header-h, 10rem)) !important;
    overflow: visible !important;
    transition: none !important;
  }
  .site-header .navbar-nav {
    flex-direction: column !important;
    align-items: center;
    width: 100%;
    max-width: 48rem;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 0.8rem !important;
  }
  .site-header .navbar-nav .nav-link {
    padding: 1.2rem 1.6rem;
    font-size: 2rem;
  }
  .site-header .navbar-collapse .btn-dark {
    margin-top: 2.4rem;
    align-self: center;
    width: 100%;
    max-width: 48rem;
  }
}
body.is-site-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 992px) {
  .site-header .navbar {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.site-header .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding: 0 2rem;
  line-height: 1;
}
.site-header .nav-link.active {
  font-weight: 800;
  color: #fff;
}
.site-header .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 992px) {
  .site-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 2rem;
  }
}
.hero {
  position: relative;
  min-height: 95.7rem;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 0;
  align-items: flex-start;
}

.hero__headline {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 9rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: auto 0;
  max-width: 100%;
}
.hero__headline span {
  margin-left: 24rem;
}

.hero__bottom {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
}

.hero__contact {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  background-color: #000;
  padding: 6rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero__contact-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  text-decoration: none;
}
.hero__contact-row:hover .hero__contact-text {
  opacity: 0.9;
}

.hero__contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.hero__contact-icon svg {
  display: block;
}

.hero__contact-row--tel {
  color: #fff;
}
.hero__contact-row--tel .hero__contact-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero__contact-row--mail {
  color: #00a5da;
}
.hero__contact-row--mail .hero__contact-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24rem;
  transform: translateX(-50%);
  color: #fff;
  opacity: 1;
  pointer-events: none;
}
.hero__scroll svg,
.hero__scroll img {
  display: block;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero__inner {
    padding-top: clamp(17rem, 20vw, 11rem);
    padding-bottom: 0;
  }
  .hero__headline {
    margin: 0 0 2rem;
    font-size: clamp(3.4rem, 10.5vw, 5.6rem);
    line-height: 1.08;
    flex-shrink: 0;
    text-align: center;
    align-self: center;
    width: 100%;
  }
  .hero__headline span {
    margin-left: 0;
    display: inline;
  }
  .hero__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .hero__contact {
    padding: 2.4rem 2rem;
    gap: 1.6rem;
  }
  .hero__contact-row {
    gap: 1.2rem;
    align-items: flex-start;
  }
  .hero__contact-row--tel .hero__contact-text {
    font-size: clamp(1.8rem, 4.2vw, 2.4rem);
  }
  .hero__contact-row--mail .hero__contact-text {
    font-size: clamp(1.6rem, 3.6vw, 2rem);
    overflow-wrap: anywhere;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 72rem;
  display: flex;
  flex-direction: column;
}

.page-hero--about .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero--about .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
  display: block;
}
.page-hero--about .page-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20rem;
  padding-bottom: 8rem;
  min-height: 72rem;
  box-sizing: border-box;
  max-width: 72rem;
}
.page-hero--about .page-hero__title {
  margin: 0 0 2rem;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4.8rem, 8vw, 8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-hero--about p {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 600;
}
.page-hero--about .page-hero__lead {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.35);
  margin-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .page-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .page-hero--about::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 30, 55, 0.45) 0%, rgba(0, 25, 45, 0.58) 50%, rgba(0, 20, 38, 0.65) 100%);
  }
  .page-hero--about .container-xxl {
    position: relative;
    z-index: 2;
  }
  .page-hero--about .page-hero__inner {
    min-height: 0;
    flex: 1;
    padding-top: clamp(16rem, 22vw, 20rem);
    padding-bottom: 6rem;
    justify-content: flex-start;
  }
  .page-hero--about .page-hero__media img {
    object-position: 70% center;
  }
}
.page-about-main {
  background: #EDF0F3;
}

.about-vyhody {
  padding: 0 0 8rem;
  background: #EDF0F3;
}

.about-vyhody__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.about-vyhody__tile {
  position: relative;
  min-height: 0;
  aspect-ratio: 480/350;
}

.about-vyhody__tile--photo {
  overflow: hidden;
  background: #dfe6ea;
}
.about-vyhody__tile--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-vyhody__tile--card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  background: #EDF0F3;
  box-sizing: border-box;
  overflow: visible;
}

.about-vyhody__tile--card-pointer-down {
  justify-content: flex-end;
}

.about-vyhody__tile--card .about-vyhody__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 80px);
  box-sizing: border-box;
  padding: 2.4rem 1.6rem;
  background: #fff;
  text-align: center;
}

.about-vyhody__value {
  margin: 0 0 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3.6rem, 5vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #00a5da;
}

.about-vyhody__caption {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.78;
  color: #5d7085;
}

.about-vyhody__tile--card-pointer-down .about-vyhody__card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.4rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-top: 1.4rem solid #fff;
  pointer-events: none;
  z-index: 1;
}

.about-vyhody__tile--card-pointer-up .about-vyhody__card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.4rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-bottom: 1.4rem solid #fff;
  pointer-events: none;
  z-index: 1;
}

.about-vyhody__footer {
  margin-top: 6.4rem;
  text-align: center;
  max-width: 144rem;
  margin-left: auto;
  margin-right: auto;
}

.about-vyhody__title {
  margin: 0 0 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.about-vyhody__lead {
  margin: 0 auto;
  max-width: 90rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  line-height: 1.45;
  color: #5d7085;
}

@media (max-width: 991.98px) {
  .about-vyhody__grid {
    grid-template-columns: 1fr;
  }
  .about-vyhody__tile {
    aspect-ratio: 16/11;
  }
  .about-vyhody__tile--card {
    aspect-ratio: auto;
    min-height: 22rem;
  }
  .about-vyhody__tile--card-pointer-down {
    justify-content: flex-start;
  }
  .about-vyhody__tile--card .about-vyhody__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .about-vyhody__tile--card-pointer-down .about-vyhody__card::after,
  .about-vyhody__tile--card-pointer-up .about-vyhody__card::after {
    display: none;
  }
  .about-vyhody__footer {
    margin-top: 4.8rem;
  }
}
.accordion {
  --accordion-arrow-closed: url("../images/accordion-arrow-closed.png");
  --accordion-arrow-open: url("../images/accordion-arrow-open.png");
}

.accordion-item {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  margin-bottom: 2.4rem;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 8.8rem;
  padding: 1.6rem 2.4rem 1.6rem 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 2.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  background-color: #ffffff;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #00a5da;
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--accordion-arrow-open);
  transform: none;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 3.7rem;
  height: 3.2rem;
  margin-left: auto;
  background-image: var(--accordion-arrow-closed);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: none;
  transition: background-image 0.2s ease;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  z-index: 1;
}
.accordion-button:hover {
  z-index: 2;
}

.accordion-heading {
  flex: 1 1 auto;
  text-align: left;
  margin: 0;
  min-width: 0;
}

.accordion-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 14.2rem;
  min-height: 7.2rem;
  background: transparent;
  box-sizing: border-box;
}
.accordion-icon img {
  display: block;
  max-width: 9.6rem;
  max-height: 7.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.2s ease;
  filter: brightness(0) saturate(100%) invert(48%) sepia(98%) saturate(1752%) hue-rotate(163deg) brightness(95%) contrast(101%);
}

.accordion-button:not(.collapsed) .accordion-icon img {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 2.4rem 2.4rem 3.2rem 13.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  color: #5d7085;
}
.accordion-body p {
  margin: 0 0 2.4rem;
}
.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-collapse.show, .accordion-collapse.collapsing {
  background-color: #00a5da;
  color: #ffffff;
}
.accordion-collapse.show .accordion-body, .accordion-collapse.collapsing .accordion-body {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .accordion-body {
    padding: 2rem 2rem 2.4rem 2rem;
  }
  .accordion-icon {
    width: 8rem;
  }
  .accordion-icon img {
    max-width: 6rem;
    max-height: 4.5rem;
  }
}
.page-services-main {
  background: transparent;
}

.container-content {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 1200px) {
  .container-content {
    max-width: 1200px;
  }
}
.page-services-hero {
  position: relative;
}

.page-services-hero__head {
  position: relative;
  background: #ffffff;
  padding: 8rem 0 5.6rem;
}

@media (min-width: 992px) {
  .page-services-hero__head {
    padding: 10rem 0 6.4rem;
  }
}
.page-services-hero__head-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: min(32rem, 42vw);
  max-height: 100%;
  pointer-events: none;
  opacity: 0.45;
}
.page-services-hero__head-bg img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 36rem;
  object-fit: contain;
  object-position: left bottom;
}

.page-services-hero__head-photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.page-services-hero__head-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-services-hero__head-inner {
  position: relative;
  z-index: 2;
}

.page-services-hero__kicker {
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #00a5da;
}

.page-services-hero__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 5vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000;
}

@media (max-width: 991.98px) {
  .page-services-hero__head {
    min-height: 0;
    padding: 4rem 0 2.4rem;
  }
  .page-services-hero__head-inner {
    max-width: 100%;
  }
  .page-services-hero__head-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 3.2rem;
  }
  .page-services-hero__head-photo img {
    height: auto;
    min-height: 0;
  }
}
.page-services-hero__sub {
  background: #EDF0F3;
  padding: 4rem 0 5.6rem;
}

.page-services-hero__sub-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem 4rem;
}

.page-services-hero__lead {
  flex: 1 1 28rem;
  margin: 0;
  max-width: 58rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  color: #5d7085;
}

.page-services-hero__sub-photo {
  flex: 0 1 auto;
  width: min(36.3rem, 100%);
  max-width: 42%;
  margin: 0;
  padding: 2rem;
  background-color: #EDF0F3;
  border: none;
  z-index: 2;
  position: relative;
  margin-right: -10rem;
}
.page-services-hero__sub-photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1399px) {
  .page-services-hero__sub-photo {
    margin-right: -1rem;
  }
}
@media (max-width: 991.98px) {
  .page-services-hero__sub {
    padding: 3.2rem 0 4.8rem;
  }
  .page-services-hero__sub-photo {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.page-services-accordion-wrap {
  padding: 0 0 6.4rem;
  background: transparent;
}

.page-services-cta {
  margin-top: 5.6rem;
  text-align: center;
}

.page-services-cta__text {
  margin: 0 0 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
}

.page-services-cta .btn-dark .page-services-cta__bell,
.page-services-cta .btn-dark svg {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  stroke: #fff;
  fill: none;
}

.page-price-main {
  background: transparent;
}

.container-content {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 1200px) {
  .container-content {
    max-width: 1200px;
  }
}
.page-price-hero {
  min-height: 95.7rem;
}

.page-price-hero.hero .hero__inner {
  justify-content: flex-start;
  padding-top: 17rem;
  padding-bottom: 7rem;
}

.page-price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: clamp(3.2rem, 4.5vw, 6.4rem) clamp(2rem, 4vw, 5.2rem) 3.2rem;
}

.page-price-card__title {
  margin: 0 0 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(4.2rem, 5.4vw, 6.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000;
}

.page-price-list {
  display: flex;
  flex-direction: column;
}

.page-price-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 1.4rem 0;
}

.page-price-list__service {
  flex: 1 1 auto;
  min-width: 0;
}

.page-price-list__service-chip {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  padding: 0.7rem 0.8rem 0.5rem 0.8rem;
}

.page-price-list__note {
  display: block;
  margin-top: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #5D7085;
}

.page-price-list__price {
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #000;
  text-align: right;
  white-space: nowrap;
}

.page-price-card__vat {
  margin: 2.4rem 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #000;
}

@media (max-width: 991.98px) {
  .page-price-hero.hero .hero__inner {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
  .page-price-card {
    padding: 2.4rem 1.6rem;
  }
  .page-price-card::before {
    width: 100%;
    right: -12%;
  }
  .page-price-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .page-price-list__price {
    text-align: left;
  }
}
.page-contact-main {
  background: transparent;
}

.page-contact-stage {
  position: relative;
  overflow: visible;
}

.page-contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 72rem;
  padding: 20rem 0 10rem;
  background: #0a3a55 url("../images/contact-bg.jpg") center/cover no-repeat;
}

.page-contact-hero__inner {
  position: relative;
  z-index: 1;
}

.page-contact-hero-text {
  max-width: 90rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

.page-contact-hero .page-contact-info__cards {
  margin-top: 4.8rem;
}

.page-contact-hero .page-contact-info__card--plain {
  color: #fff;
}

.page-contact-hero .page-contact-info__card--plain .page-contact-info__card-title {
  color: #fff;
}

.page-contact-map-stage {
  position: relative;
  overflow: visible;
}

.page-contact-map {
  position: relative;
  z-index: 0;
  min-height: 56rem;
  padding: 0 0 8rem;
  background: #f2f4f7 url("../images/contact-map.png") center/cover no-repeat;
}

.page-contact-form-outer {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(-52rem, -32vw, -36rem);
  z-index: 3;
  pointer-events: none;
}

.page-contact-form-wrap {
  pointer-events: auto;
  margin-left: auto;
  width: min(72.2rem, 46%);
}

.page-contact-info__title {
  margin: 0 0 4rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(5.6rem, 7vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-contact-info__channels {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.page-contact-info__row {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
}
.page-contact-info__row:hover {
  color: #fff;
  opacity: 0.92;
}

.page-contact-info__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  min-height: 3.5rem;
}
.page-contact-info__icon img {
  display: block;
  width: 3.6rem;
  height: auto;
  max-height: 3.5rem;
}

.page-contact-info__row--mail .page-contact-info__icon {
  width: 4.4rem;
  min-height: 2.8rem;
}
.page-contact-info__row--mail .page-contact-info__icon img {
  width: 4rem;
  max-height: 2.8rem;
}

.page-contact-info__row-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-contact-info__row--mail .page-contact-info__row-text {
  font-size: 2rem;
  line-height: 1.15;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.page-contact-info__cards {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.page-contact-info__card {
  padding: 2.4rem;
}

.page-contact-info__card--white {
  background: #fff;
  min-width: 36rem;
  padding: 3.2rem 2.4rem;
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.08);
}

.page-contact-info__card-title {
  margin: 0 0 1.2rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-contact-info__card-title--dark {
  color: #000;
}

.page-contact-info__card-text,
.page-contact-info__hours {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.page-contact-info__card-text--ico {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.3;
}
.page-contact-info__card-text--ico strong {
  font-weight: 700;
}

.page-contact-info__hours {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2.4rem;
  color: #000;
}
.page-contact-info__hours strong {
  font-weight: 700;
}

.page-contact-form {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 4rem;
}

.page-contact-form__title {
  margin: 0 0 4.8rem;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.page-contact-form__label {
  margin-bottom: 0.6rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.page-contact-form .form-control {
  min-height: 5.5rem;
  border-radius: 0;
  border: none;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.page-contact-form textarea.form-control {
  min-height: 15.4rem;
  resize: vertical;
}

.page-contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.page-contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 2.2rem;
}

.page-contact-form .form-check-input {
  margin: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0;
}

.page-contact-form__gdpr {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.page-contact-form__submit.btn-primary {
  min-width: 25rem;
  min-height: 6.4rem;
  border: none;
  border-radius: 0;
  background: #00a5da;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.4rem), calc(100% - 1.4rem) 100%, 0 100%);
}

@media (max-width: 991.98px) {
  .page-contact-hero {
    min-height: 0;
    padding: 12rem 0 6.4rem;
  }
  .page-contact-info__row-text {
    font-size: 2.6rem;
  }
  .page-contact-info__row--mail .page-contact-info__row-text {
    font-size: 1.8rem;
  }
  .page-contact-map {
    padding-bottom: 5.6rem;
  }
  .page-contact-form-outer {
    position: static;
    pointer-events: auto;
    padding-top: 2.4rem;
  }
  .page-contact-form-wrap {
    width: 100%;
    margin-left: 0;
  }
  .page-contact-info__cards {
    flex-direction: column;
  }
  .page-contact-info__card--white {
    min-width: 0;
  }
  .page-contact-form {
    padding: 2.4rem 1.6rem;
  }
  .page-contact-form__title {
    font-size: 3.8rem;
  }
  .page-contact-form__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-contact-form__submit.btn-primary {
    width: 100%;
    min-width: 0;
  }
}
.spec-tabs {
  position: relative;
  padding: 0 0 10rem;
  background: #fff;
}

.spec-tabs__title {
  margin: 0 0 5.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 4.5vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.spec-tabs__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .spec-tabs__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.8rem;
  }
}
.spec-tabs__nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 992px) {
  .spec-tabs__nav {
    width: min(100%, 52rem);
  }
}
.spec-tabs .spec-tabs__nav .nav-link {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 3.2rem 2.4rem 3.2rem 2.8rem;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 0.5rem solid #00a5da;
  border-radius: 0.2rem;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow 0.2s ease;
}
.spec-tabs .spec-tabs__nav .nav-link:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
}
.spec-tabs .spec-tabs__nav .nav-link.active, .spec-tabs .spec-tabs__nav .nav-link.show {
  z-index: 1;
  color: #000;
  background: #fff;
  box-shadow: 0 0.8rem 2.8rem rgba(0, 0, 0, 0.12);
}

.spec-tabs__content {
  flex: 1 1 auto;
  min-width: 0;
}

.spec-tabs__panel {
  background: #fff;
  padding: 0rem 3.2rem 4.8rem;
  position: relative;
}

@media (min-width: 992px) {
  .spec-tabs__panel {
    padding: 0rem 5.6rem 6.4rem;
    min-height: 48rem;
  }
}
.spec-tabs__panel-body {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  color: #5d7085;
  max-width: 72rem;
}
.spec-tabs__panel-body p {
  margin: 0 0 2.4rem;
}
.spec-tabs__panel-body p:last-child {
  margin-bottom: 0;
}

.spec-tabs__panel .btn-dark {
  margin-top: 4rem;
}

.spec-tabs__panel .btn-dark .spec-tabs__bell,
.spec-tabs__panel .btn-dark svg {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  stroke: #fff;
  fill: none;
}

.about {
  position: relative;
  overflow: hidden;
}

.about__row {
  align-items: flex-start;
}

.about__col--media {
  display: flex;
  align-items: flex-end;
  min-height: 42rem;
}

.about__media-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.about__col--text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 4rem 2rem 6rem 3rem;
  text-align: left;
  background: #fff;
  margin-top: 14rem;
}

.about__kicker {
  padding: 4rem 4.8rem 4rem 36rem;
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 4.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  position: absolute;
  bottom: 100%;
  left: -18rem;
  z-index: -1;
  margin-bottom: 0;
}

.about__title {
  align-self: stretch;
  margin: 0 0 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 4vw, 5.5rem);
  line-height: 1.27;
  letter-spacing: -0.02em;
  color: #000;
}

.about__text {
  align-self: stretch;
  margin: 0 0 3.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  color: #5d7085;
  max-width: 64.3rem;
}

.about__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  color: #00a5da;
}
.about__link:hover {
  opacity: 0.9;
}
.about__link img {
  flex-shrink: 0;
  display: block;
}

@media (min-width: 992px) {
  .about {
    padding: 6rem 0 8rem;
  }
  .about__col--media {
    min-height: 56rem;
    padding-top: 6rem;
  }
  .about__col--text {
    padding: 6rem 4rem 8rem 6rem;
    padding-top: 8rem;
  }
}
@media (max-width: 991px) {
  .about__col--media {
    display: none;
  }
}
.services {
  position: relative;
  padding: 18rem 0 10rem;
}

.services__bg {
  position: relative;
  overflow: hidden;
}

.services__chimney {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  height: 110rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.services__chimney-img {
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left bottom;
}

.services__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.6rem 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .services__inner {
    grid-template-columns: 64rem minmax(0, 1fr);
  }
}
.services__intro {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .services__intro {
    width: 64rem;
    flex-shrink: 0;
  }
}

.services__title {
  margin: 0 0 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 5vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #000;
}

.services .btn-dark img {
  filter: brightness(0) invert(1);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  min-width: 0;
}

@media (min-width: 576px) {
  .services__grid {
    gap: 2.4rem;
  }
}
.services-card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4.8rem;
  min-height: 30.6rem;
  padding: 6.3rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.06);
  border-radius: 0.2rem;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.services-card:hover {
  background: #00a5da;
  color: #fff;
  box-shadow: 0 1.2rem 4rem rgba(0, 165, 218, 0.35);
}

.services-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 7.2rem;
}

.services-card__icon img {
  max-width: 9.6rem;
  max-height: 7.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.25s ease, opacity 0.25s ease;
  filter: brightness(0) saturate(100%) invert(48%) sepia(98%) saturate(1752%) hue-rotate(163deg) brightness(95%) contrast(101%);
}

.services-card:hover .services-card__icon img {
  filter: brightness(0) invert(1);
}

.services-card__label {
  margin: 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 2.4vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 991px) {
  .services {
    padding: 5rem 0 8rem;
  }
  .services-card {
    padding: 4rem;
  }
  .services-card__label {
    font-size: 1.8rem;
  }
  .services-card__icon img {
    max-height: 5.5rem;
  }
}
.client-zone {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 36rem;
  display: flex;
  align-items: center;
}

.client-zone__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.client-zone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.client-zone__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem 2.4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.client-zone__title {
  margin: 0;
  max-width: 95rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.8rem, 4.2vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.45), 0 0.2rem 1.2rem rgba(0, 0, 0, 0.25);
}

@media (max-width: 767.98px) {
  .client-zone {
    min-height: 32rem;
  }
  .client-zone__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
  .client-zone .btn-dark {
    width: 100%;
    max-width: 36rem;
  }
}
.blog {
  position: relative;
  padding: 8rem 0 10rem;
  background: #fff;
  overflow-x: visible;
  overflow-y: visible;
}

.blog__header {
  text-align: center;
  margin-bottom: 5.6rem;
}

.blog__title {
  margin: 0 0 0.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 5.2vw, 6.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.blog__subtitle {
  margin: 0;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1.2;
  color: #00a5da;
}

.blog__slider-outer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 992px) and (max-width: 1499.98px) {
  .blog__slider-outer {
    gap: 2.4rem;
  }
}
.blog__slider-frame {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.blog__nav {
  position: static;
  z-index: 10;
  flex: 0 0 auto;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.blog__nav:hover:not(.swiper-button-disabled) {
  color: #00a5da;
}
.blog__nav.swiper-button-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.blog__nav::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: currentColor;
}
.blog__nav--prev::after {
  transform: rotate(45deg);
  margin-left: 0.3rem;
}
.blog__nav--next::after {
  transform: rotate(-135deg);
  margin-right: 0.3rem;
}

@media (min-width: 1500px) {
  .blog__slider-outer {
    display: block;
  }
  .blog__slider-frame {
    flex: none;
    width: 100%;
  }
  .blog__nav {
    position: absolute;
    top: 50%;
  }
  .blog__nav--prev {
    left: 0;
    transform: translate(calc(-100% - 1.2rem), -50%);
  }
  .blog__nav--next {
    right: 0;
    transform: translate(calc(100% + 1.2rem), -50%);
  }
}
.blog-swiper.swiper {
  overflow: hidden;
  width: 100%;
  padding: 3.2rem 0 6rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .blog-swiper.swiper {
    padding: 3.2rem 0 6.8rem;
  }
}
@media (min-width: 1200px) {
  .blog-swiper.swiper {
    padding: 3.4rem 0 7.2rem;
  }
}
.blog-swiper.swiper .swiper-wrapper {
  align-items: stretch;
}

.blog-swiper.swiper .swiper-slide {
  height: auto;
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.blog-card.swiper-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.blog-card.swiper-slide:hover {
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.12);
}

.blog-card__media {
  display: block;
  aspect-ratio: 456/300;
  overflow: hidden;
  background: #EDF0F3;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card__media:hover img {
  transform: scale(1.04);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 3.2rem 2.4rem 3.2rem;
  gap: 2.8rem;
  text-align: left;
}

@media (min-width: 576px) {
  .blog-card__body {
    padding: 4.7rem;
  }
}
.blog-card__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9vw, 2.6rem);
  line-height: 1.27;
  letter-spacing: -0.044rem;
  color: #000;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: #00a5da;
}

.blog-card__excerpt {
  flex: 1 1 auto;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.5;
  color: #5d7085;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.25vw, 1.5rem);
  line-height: 2.8rem;
  letter-spacing: 0.224rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  color: #00a5da;
  align-self: flex-start;
}
.blog-card__read img {
  display: block;
  width: 1.8rem;
  height: 1.5rem;
  object-fit: contain;
}
.blog-card__read:hover {
  color: #0088b8;
}
.blog-card__read:hover img {
  opacity: 0.9;
}

.blog__footer {
  margin-top: 5.6rem;
  text-align: center;
}

.blog .btn-dark img {
  filter: brightness(0) invert(1);
}

@media (max-width: 575.98px) {
  .blog__nav {
    width: 3.6rem;
    height: 3.6rem;
  }
  .blog__slider-outer {
    gap: 0.8rem;
  }
}
.site-footer {
  position: relative;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/footer-bg.png") left center/cover no-repeat;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.site-footer__row {
  --bs-gutter-x: 4rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: block;
  margin-bottom: 0;
}
.site-footer__logo img {
  display: block;
  width: 100%;
  max-width: 34.9rem;
  height: auto;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 6.3rem;
  padding: 0 2rem 0 1.6rem;
  margin-bottom: 4.8rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.2rem), calc(100% - 1.6rem) 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease;
}
.site-footer__cta:hover {
  background: #f2f2f2;
  color: #000;
}
.site-footer__cta img {
  flex-shrink: 0;
  width: 2.1rem;
  height: auto;
  display: block;
}

.site-footer__cta-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-footer__nav li {
  margin: 0;
}

.site-footer__nav-link {
  display: block;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 5rem;
  color: #989898;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__nav-link:hover, .site-footer__nav-link:focus-visible {
  color: #fff;
}
.site-footer__nav-link.is-active {
  color: #fff;
  pointer-events: none;
}

.site-footer__social {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  min-height: 6.3rem;
  flex: 0 0 auto;
  background: #1C1D1D;
  transition: background 0.2s ease, transform 0.15s ease;
}
.site-footer__social-link:hover {
  background: #525252;
  transform: translateY(-1px);
}
.site-footer__social-link img {
  display: block;
  max-width: 2.7rem;
  max-height: 2.4rem;
  width: auto;
  height: auto;
}

.site-footer__contact-block {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.site-footer__address {
  margin: 0 0 0;
  font-size: 1.8rem;
  line-height: 5rem;
  color: #fff;
}

.site-footer__mail {
  display: block;
  margin: 0;
  font-size: 3rem;
  line-height: 6rem;
  color: #00a5da;
  text-decoration: none;
}
.site-footer__mail:hover {
  color: #33c4f0;
}

.site-footer__phone {
  display: block;
  margin: 0;
  font-size: 3rem;
  line-height: 6rem;
  color: #fff;
  text-decoration: none;
}
.site-footer__phone:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__copyright {
  margin: 4rem 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 5rem;
  max-width: 100%;
}

.site-footer__copyright-muted {
  color: #989898;
}

.site-footer__copyright-name {
  color: #fff;
}

@media (min-width: 992px) {
  .site-footer__copyright {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 4rem;
  }
}
@media (max-width: 991.98px) {
  .site-footer__inner {
    padding-top: 6.4rem;
    padding-bottom: 5.6rem;
  }
  .site-footer__col {
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
  }
  .site-footer__col:last-child {
    margin-bottom: 0;
  }
  .site-footer__logo img {
    margin: 0 auto;
  }
  .site-footer__cta {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__contact-block {
    text-align: center;
  }
  .site-footer__copyright {
    margin-top: 2.4rem;
    text-align: center;
  }
}
body {
  background: #EDF0F3;
}
/*# sourceMappingURL=style.css.map */
