@font-face {
  font-family: "Arial CE MT Black";
  src: url("/hbd93d96a-f/hbd93d96a-arial_ce_mt_black_regular.woff2");
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("/hbd93d96a-f/hbd93d96a-arial_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Arial";
  src: url("/hbd93d96a-f/hbd93d96a-arial_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Arial";
  src: url("/hbd93d96a-f/hbd93d96a-arial_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Arial";
  src: url("/hbd93d96a-f/hbd93d96a-arial_italic.woff2");
  font-display: swap;
  font-style: italic;
}



@font-face {
  font-family: "Inter";
  src: url("/hbd93d96a-f/hbd93d96a-inter_black.woff2");
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url("/hbd93d96a-f/hbd93d96a-inter_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("/hbd93d96a-f/hbd93d96a-inter_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("/hbd93d96a-f/hbd93d96a-inter_regular.woff2");
  font-display: swap;
  font-weight: 400;
}

/* ===== Переменные ===== */
:root {
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Arial", sans-serif;
  --second-family: "Arial CE MT Black", sans-serif;
  --third-family: "Inter", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #fafafc;
}

.hbd93d96a-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .hbd93d96a-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .hbd93d96a-container {
    padding: 0 var(--container-step-mobile);
  }
}

h1 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 47px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h3 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  h3 {
    font-size: 16px;
  }
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
  margin: 0px;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

img{
  max-width: 100%;
  min-width: 0px;
}

section {
  padding: 80px 0px;

}

@media (max-width: 600px) {
  section {
    padding: 40px 0px;
  }
}


.hbd93d96a-site-header{
  margin-top: 20px;
  margin-bottom: 40px;
}

.hbd93d96a-header-container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.hbd93d96a-main-navigation{
  max-width: 740px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.15);
  background: #fafafc;
  border-radius: 30px;
}

.hbd93d96a-nav-list{
  flex-direction: row;
  gap: 20px;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  color: #0a0a0a;
}


/* ===== Burger ===== */
.hbd93d96a-burger {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hbd93d96a-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0a0a0a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Cross animation */
.hbd93d96a-burger.hbd93d96a-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hbd93d96a-burger.hbd93d96a-active span:nth-child(2) {
  opacity: 0;
}

.hbd93d96a-burger.hbd93d96a-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {

  .hbd93d96a-burger {
    display: flex;
  }

  .hbd93d96a-main-navigation {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    box-shadow: none;
    border-radius: 0;
  }

  .hbd93d96a-main-navigation.hbd93d96a-active {
    transform: translateY(0);
  }

  .hbd93d96a-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}



.hbd93d96a-hero-section{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px;
}

.hbd93d96a-hero-container{
  flex-direction: row;
  gap: 20px;
}

.hbd93d96a-hero-heading{
  flex: 1;
}

.hbd93d96a-hero-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.hbd93d96a-hero-description{
  font-weight: 500;
  font-size: 20px;
  color: #0a0a0a;
}

.hbd93d96a-hero-button{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fafafc;
  display: flex;
  max-width: 188px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 0px;
  justify-content: center;
  gap: 10px;
  background: #0a0a0a;
  border-radius: 30px;
  border: 0px;
  align-items: center;
}

.hbd93d96a-portfolio_image{
  background: url("/hbd93d96a-i/hbd93d96a-portfolio_image.webp");
  background-size: cover;
  background-position: top;
  height: 500px;
  width: 100%;
}


.hbd93d96a-stats-wrapper{
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  box-sizing: border-box;
  align-items: center;
  gap: 16px;
}

.hbd93d96a-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hbd93d96a-stat-value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 44px;
  text-transform: uppercase;
  text-align: center;
  color: #0a0a0a;
}

.hbd93d96a-stat-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #0a0a0a;
}

.hbd93d96a-line {
  min-width: 1px;
  min-height: 85px;
  background: #0a0a0a;
}

.hbd93d96a-stats-section{
  padding: 49.5px 0px;
}

.hbd93d96a-about-container{
  flex-direction: row;
  justify-content: space-between;
}

.hbd93d96a-about-content{
  max-width: 901px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hbd93d96a-about-intro{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #0a0a0a;
}

.hbd93d96a-about-approach{
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
}










.hbd93d96a-site-footer{
  background: url("/hbd93d96a-i/hbd93d96a-footer_bg.webp");
  background-size: cover;
  background-position: center;
  padding: 40px 0px;
}

.hbd93d96a-footer-content{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hbd93d96a-footer-disclaimer{
  max-width: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.hbd93d96a-footer-disclaimer p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.hbd93d96a-footer-legal{
  max-width: 173px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hbd93d96a-footer-list{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    list-style: disc;
    padding-left: 20px;
    gap: 10px;
}

.hbd93d96a-footer-more-work{
  max-width: 188px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hbd93d96a-external-link{
  display: flex;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  align-items: end;
}

.hbd93d96a-footer-copyright{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: center;
}


.hbd93d96a-cases-list{
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.hbd93d96a-cases-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hbd93d96a-cases-item-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
}

.hbd93d96a-cases-result{
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #0a0a0a;
}

.hbd93d96a-cases-subtitle{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #0a0a0a;
}


.hbd93d96a-cases-header{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: start;
  width: 100%;
}

.hbd93d96a-cases-content{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hbd93d96a-cases-button{
  max-width: 256px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  align-self: center;
}

.hbd93d96a-cta-content{
  background: url("/hbd93d96a-i/hbd93d96a-ready_to_bring_character.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 15px;
}

.hbd93d96a-cta-title{
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  color: #fafafc;
}

.hbd93d96a-cta-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #fafafc;
}

.hbd93d96a-cta-link{
  border-radius: 30px;
  padding: 16px 0px;
  max-width: 287px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fafafc;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #0a0a0a;
}

.hbd93d96a-featured-project-content {
  background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/hbd93d96a-i/hbd93d96a-vikings.webp");
  background-position: top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0px;
  border-radius: 16px;
}

.hbd93d96a-featured-project-title{
  max-width: 700px;
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #fafafc;
}

.hbd93d96a-featured-project-description{
  max-width: 700px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #fafafc;
}

.hbd93d96a-tools-container{
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.hbd93d96a-tools-list{
  flex-direction: row;
  gap: 40px;
}

.hbd93d96a-results-container{
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.hbd93d96a-results-text{
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
}


.hbd93d96a-results-section, .hbd93d96a-tools-section, .hbd93d96a-featured-project-section{
  margin-bottom: 40px;
  padding: 0px;
}

.hbd93d96a-cases-section{
  padding: 40px 0px;
  padding-top: 10px;
}

.hbd93d96a-cta-section{
  padding: 80px 0px;
}

.hbd93d96a-project-preview-frame{
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1200 / 600;
  height: fit-content;
}


@media screen and (max-width: 990px) {
  .hbd93d96a-hero-container{
    flex-direction: column;
  }

  .hbd93d96a-hero-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hbd93d96a-hero-button{
    align-self: center;
  }

  .hbd93d96a-stats-wrapper{
    flex-direction: column;
  }

  .hbd93d96a-line{
    min-height: 1px;
    max-height: 1px;
    height: 1px;
    width: 100%;
  }

  .hbd93d96a-cases-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .hbd93d96a-portfolio_page .hbd93d96a-cases-list{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hbd93d96a-policy_container {
  display: flex;
  flex-direction: row;
  gap: 100px;
  flex-wrap: nowrap;
}

.hbd93d96a-policy_container ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
  padding-left: 20px;
  list-style: disc;
}












.hbd93d96a-cases_2-inner{
  justify-content: center;
  flex-direction: unset !important;
}

.hbd93d96a-cases_2-list{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.hbd93d96a-cases_2-card.hbd93d96a-cases_2-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.hbd93d96a-cases_2-img{
  width: 100%;
  border-radius: 15px;
}

.hbd93d96a-mobile.hbd93d96a-cases_2-img{
  display: none;
}

.hbd93d96a-cases_2-inner .hbd93d96a-slider_container{
  width: 100%;
}

@media screen and (max-width: 900px) {
  .hbd93d96a-cases_2-img{
    display: none;
  }

  .hbd93d96a-cases_2-card.hbd93d96a-cases_2-item{
    min-width: 280px !important;
    max-width: none !important;
    flex: none !important;
    width: 100%;
  }

  .hbd93d96a-mobile.hbd93d96a-cases_2-img{
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .hbd93d96a-cases_2-list{
    flex-wrap: nowrap;
    flex-direction: unset;
    justify-content: unset;
    padding-right: 20px;
  }

  .hbd93d96a-cases_2-list{
    gap: 0px;
  }

  .hbd93d96a-cases_2-card.hbd93d96a-cases_2-item{
    min-width: 280px !important;
    max-width: none !important;
    flex: auto !important;
  }

  .hbd93d96a-cases_2-inner{
    justify-content: center;
  }
}


.hbd93d96a-cases_2-inner .swiper-pagination {
  margin-top: 16px;
  position: relative;
}

.hbd93d96a-cases_2-section{
  padding: 0px;
}

.hbd93d96a-cases_2-section .swiper-pagination{
  width: 100% !important;
}

.hbd93d96a-cases_2-result{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
}

.swiper-pagination-bullet{
  min-height: 20px;
  min-width: 20px;
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 1000px;
  background: transparent;
}

.swiper-pagination-bullet-active{
  background-color: black;
}








.hbd93d96a-reviews-inner{
  justify-content: center;
  flex-direction: unset !important;
  max-width: none;
  padding-left: 120px;
}

.hbd93d96a-reviews-title{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1326px;
}

.hbd93d96a-review_subheading{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #0a0a0a;
}

.hbd93d96a-reviews-list{
  flex-wrap: nowrap;
  flex-direction: unset;
  justify-content: unset;
  max-width: 1326px;
}

.hbd93d96a-reviews-card{
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 350px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  gap: 16px;
  background: #272727;
  border: 1px solid var(--stroke);
  border-radius: 30px;
}

.hbd93d96a-review_name{
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #cecece;
}

.hbd93d96a-review_body{
  color: #fafafc;
}

.hbd93d96a-review_results{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fafafc;
  display: flex;
  height: 100%;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  text-align: start;
}

.hbd93d96a-reviews-img{
  width: 100%;
  border-radius: 15px;
}

.hbd93d96a-mobile.hbd93d96a-reviews-img{
  display: none;
}

@media screen and (max-width: 900px) {
  .hbd93d96a-reviews-img{
    display: none;
  }

  .hbd93d96a-reviews-card{
    max-width: 320px;
  }

  .hbd93d96a-mobile.hbd93d96a-reviews-img{
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .hbd93d96a-reviews-card{
    width: 320px !important;
    height: 409px;
    margin-right: 0px !important;
  }

  .hbd93d96a-reviews-inner{
    padding-right: 0px;
    justify-content: center;
    padding-left: 10px;
  }

  .hbd93d96a-reviews-list{
    gap: 20px;
  }
}

.hbd93d96a-reviews-section .swiper-pagination{
  position: static;
}




.hbd93d96a-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}



.hbd93d96a-services-inner{
  justify-content: center;
  flex-direction: row;
  gap: 50px;
  flex-wrap: nowrap;
}

.hbd93d96a-services-card h3{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
}

.hbd93d96a-services-card span{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0a;
}

.hbd93d96a-services-list{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hbd93d96a-services-card{
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 287px;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
  background: transparent;
}

.hbd93d96a-services-img{
  width: 100%;
  border-radius: 15px;
}

.swiper-pagination{
  display: none !important;
}

.hbd93d96a-mobile.hbd93d96a-services-img{
  display: none;
}

@media screen and (max-width: 900px) {
  .hbd93d96a-services-img{
    display: none;
  }

  .hbd93d96a-services-title{
    width: 100%;
  }

  .hbd93d96a-services-card{
    max-width: 287px;
  }

  .hbd93d96a-mobile.hbd93d96a-services-img{
    display: block;
  }

  .hbd93d96a-services-inner{
    padding-right: 0px;
    justify-content: center;
    flex-direction: unset;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .hbd93d96a-services-list{
    flex-wrap: nowrap;
    flex-direction: unset;
    justify-content: unset;
  }

  .swiper-pagination{
    display: flex !important;
  }

  .hbd93d96a-services-card{
    width: 287px !important;
    height: auto;
    margin-right: 0px !important;
  }

  .hbd93d96a-services-inner{
    padding-right: 0px;
    justify-content: center;
    flex-direction: unset;
  }
}

.swiper-pagination{
  position: static !important;
  width: 100% !important;
  display: flex;
  justify-content: center;
  transform: none !important;
}

.swiper-pagination-bullet{
  min-height: 20px;
  min-width: 20px;
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 1000px;
  background: transparent;
}

.swiper-pagination-bullet-active{
  background-color: black;
}


@media screen and (max-width: 830px) {
  .hbd93d96a-footer-content{
    flex-wrap: wrap;
  }
}



.hbd93d96a-simple-contact-title{
  text-align: center;
  font-size: 32px;
}

.hbd93d96a-simple-contact-form{
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
}

.hbd93d96a-simple-contact-row{
  display: flex;
  gap: 14px;
}

.hbd93d96a-simple-contact-field{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #0a0a0a;
}

.hbd93d96a-simple-contact-input{
  border-radius: 15px;
  background: #cecece;
  border: 0px;
  height: 40px;
  box-sizing: border-box;
  padding: 15px;
}

.hbd93d96a-simple-contact-textarea{
  border-radius: 15px;
  background: #cecece;
  border: 0px;
  height: 100px;
  box-sizing: border-box;
  padding: 15px;
}

.hbd93d96a-message{
  display: none;
}

.hbd93d96a-active .hbd93d96a-message{
  display: block;
}

@media screen and (max-width: 600px) {
  .hbd93d96a-about-container{
    flex-direction: column;
  }

  .hbd93d96a-tools-container{
    flex-direction: column;
  }

  .hbd93d96a-results-container{
    flex-direction: column;
  }

  .hbd93d96a-simple-contact-row{
    flex-direction: column;
  }
}


.hbd93d96a-cases_2-item-title{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
}

@media screen and (max-width: 990px) {
  .hbd93d96a-policy_container{
    flex-direction: column;
    gap: 20px;
  }

  .hbd93d96a-policy_container h2{
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 24px;
    color: #0a0a0a;
  }
}