@charset "UTF-8";
:root {
  --button-primary-color: #f83600;
  --button-secondary-color: #f9d423;
  --text-secondary-color: #F9C020;
  --text-main-color: #2B2D2F;
  --text-gray-color: #596574;
  --background-light: #F8F9FB;
  --button-gray: #E5E5E7;
  --border-gray: #E5E5E7;
  --buttons-height: 48px;
  --buttons-height-xl: 56px;
}

.header__contacts {
  display: flex;
  flex-wrap: wrap;
}

.header__logo {
  padding-bottom: 10px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__location {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", "Arial", "sans-serif";
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 10px;
}

.header__location span.icm svg {
  width: 14px;
  height: 20px;
}

.header__phone {
  font-family: "Montserrat", "Arial", "sans-serif";
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #333333;
  padding-bottom: 20px;
  text-align: right;
}

.header__phone a {
  color: #000;
  text-decoration: none;
}

a.header__phone:hover {
  text-decoration: none;
  color: #000;
}

.header__phone span {
  font-weight: 600;
}

.header__callback {
  font-family: "Montserrat", "Arial", "sans-serif";
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  color: #333333;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 12px;
  padding-bottom: 13px;
  border: 2px solid #333333;
  border-radius: 99px;
  margin-bottom: 20px;
  margin-top: 8px;
}

@media (min-width: 420px) {
  .header__location {
    padding-bottom: 0;
  }
  .header__contacts {
    justify-content: space-between;
  }
  .header__phone {
    align-self: center;
  }
}
@media (min-width: 600px) {
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo {
    width: 280px;
  }
  .header__location {
    align-self: center;
    margin-left: auto;
    position: relative;
    padding-left: 22px;
    padding-bottom: 10px;
  }
  .header__location span.icm {
    position: absolute;
    left: 0;
    top: 0;
  }
  .header__contacts {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .header__logo {
    width: 280px;
  }
  .header__contacts {
    flex-grow: 0;
  }
  .header__location {
    padding-bottom: 20px;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .header {
    padding-top: 20px;
  }
  .header__logo {
    width: 320px;
    margin-right: 47px;
    padding-bottom: 0;
  }
  .header__phone {
    padding-right: 0;
  }
  .header__location {
    padding-bottom: 0;
    margin-left: 0;
    margin-right: auto;
  }
  .header__contacts {
    flex-grow: 0;
  }
  .header__phone {
    align-self: flex-start;
    padding-bottom: 0;
    padding-top: 8px;
  }
  .header__callback {
    margin: 10px auto 0;
    padding-left: 43px;
    padding-right: 44px;
  }
  .header__location {
    align-self: inherit;
    padding-top: 8px;
  }
  .header__location span.icm {
    top: 8px;
  }
  .menu {
    margin-top: 20px;
  }
}
header .header__contacts,
.header .header__contacts {
  padding-left: 1rem;
  max-width: 240px;
}
header .header__phone,
.header .header__phone {
  display: block;
  text-align: center;
  width: 100%;
}
@media (max-width: 1200px) {
  header .header__phone,
  .header .header__phone {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
header .button,
.header .button {
  white-space: nowrap;
  padding: 1rem;
  max-width: 1000px;
  height: var(--buttons-height-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
header .button.clickme,
.header .button.clickme {
  color: #fff;
  margin-right: 1.5rem;
}

.breadcrumbs {
  display: block;
  margin-top: 1rem;
}
.breadcrumbs ul.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}
.breadcrumbs ul.breadcrumb li {
  padding-right: 0rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.breadcrumbs ul.breadcrumb li:after {
  display: block;
  width: 10px;
  height: 10px;
  background: url(/components/breadcrumbs/img/chevron.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  content: "";
}
.breadcrumbs ul.breadcrumb li.active span {
  color: var(--text-secondary-color);
}
.breadcrumbs ul.breadcrumb li.active:after {
  display: none;
}
.breadcrumbs ul.breadcrumb a {
  color: inherit;
  position: relative;
  padding-right: 1rem;
}

.title-header {
  padding-left: 1rem;
}
.title-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-main-color);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.title-header a.neighbors {
  height: var(--buttons-height);
  border: 1px solid var(--text-main-color);
  border-radius: 2rem;
  display: flex;
  padding: 1.05rem 1.2rem 0.95rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-main-color);
}
@media (max-width: 767px) {
  .title-header a.neighbors {
    height: auto;
  }
}
.title-header .neighbors-prev {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.title-header .neighbors-prev:before {
  display: block;
  width: 20px;
  height: 12px;
  background: url(/components/titles/img/arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 0.5rem;
  content: "";
}
.title-header .neighbors-next {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.title-header .neighbors-next:after {
  display: block;
  width: 20px;
  height: 12px;
  background: url(/components/titles/img/arrow-next.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-left: 0.5rem;
  content: "";
}

.portfolio-main-block {
  background: var(--background-light);
}
.portfolio-main-block .portfolio-first-disp {
  min-height: 500px;
  display: flex;
  align-items: start;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.portfolio-main-block .portfolio-first-disp p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.portfolio-main-block .portfolio-first-disp .port-h1 {
  font-size: 3rem;
  font-weight: 800;
}
.portfolio-main-block .portfolio-first-disp img {
  max-width: 360px;
  margin: 0 auto;
}
.portfolio-main-block .port-infobox1 .port-item {
  margin-right: 2rem;
  margin-top: 3rem;
}
.portfolio-main-block .port-infobox1 .port-item .item-name {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.portfolio-main-block .port-infobox1 .port-item .item-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.portfolio-main-block .port-buttonsbox1 {
  margin-top: 3rem;
}
.portfolio-main-block .port-buttonsbox1 .button {
  white-space: nowrap;
  padding: 1rem;
  max-width: 1000px;
  height: var(--buttons-height-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-main-block .port-buttonsbox1 .button.clickme {
  margin-right: 1.5rem;
}
.portfolio-main-block .port-buttonsbox1 .button-link {
  background: var(--button-gray);
  color: var(--text-gray-color);
  width: auto;
  min-width: 200px;
  font-size: 1.1rem;
  font-weight: 500;
  padding-left: 1.2rem;
  padding-right: 1.8rem;
}
.portfolio-main-block .port-buttonsbox1 .button-link:before {
  border: 2px solid var(--text-main-color);
}
.portfolio-main-block .port-buttonsbox1 .button-link:after {
  display: block;
  width: 25px;
  height: 16px;
  background: url(/components/portfolio/img/link.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 0.5rem;
  order: -1;
  content: "";
  transform: none !important;
  opacity: 1 !important;
}
.portfolio-main-block .portfolio-first-disp--photo {
  background: url(/components/portfolio/img/port-1st-disp.webp);
  background-size: cover;
  background-position: top center;
}
.portfolio-about {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.portfolio-about .about-item {
  display: flex;
  flex-direction: column;
}
.portfolio-about .about-item .item-name {
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 4px solid var(--button-primary-color);
  align-self: baseline;
  margin-bottom: 0.5rem;
}
.portfolio-black-block {
  background: #000;
  min-height: 500px;
}
.portfolio-black-block .portfolio-black-disp {
  min-height: 500px;
  display: flex;
  align-items: start;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.portfolio-black-block .portfolio-black-disp p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}
.portfolio-black-block .portfolio-black-disp .port-h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.portfolio-black-block .portfolio-black-disp--photo {
  background: url(/components/portfolio/img/portfolio-black-disp.webp);
  background-size: cover;
  background-position: center center;
}
.portfolio-white-block {
  padding-bottom: 8rem;
}
.portfolio-white-block.stages {
  background-image: none;
}
.portfolio-white-block .subtitle {
  text-transform: uppercase;
  padding-bottom: 5px;
}
.portfolio-white-block .title {
  padding-bottom: 15px;
  font-weight: 800;
}
.portfolio-white-block .stages__wrap {
  display: flex;
  flex-direction: column;
}
.portfolio-white-block .stages__background-text {
  font-size: 6rem;
}
.portfolio-white-block .block-white-row-with-items > div {
  margin-bottom: 30px;
}
.portfolio-white-block .block-white-item {
  border-radius: 24px;
  border-color: var(--border-gray);
  border-width: 1px;
  border-style: solid;
  padding: 1rem;
  height: 100%;
}
.portfolio-white-block .block-white-item .item-name {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  padding-bottom: 1.4rem;
  padding-top: 1rem;
}
.portfolio-white-block .color-column {
  order: 3;
}
@media (max-width: 1199px) {
  .portfolio-white-block .color-column {
    order: 6;
  }
}
.portfolio-white-block .color-column .block-white-item {
  background-image: linear-gradient(270deg, #F9D423 0%, #F83600 100%);
}
.portfolio-white-block .color-column .block-white-item .item-icon {
  padding-top: 2rem;
  padding-left: 2rem;
  opacity: 0.3;
  padding-bottom: 1rem;
}
.portfolio-white-block .color-column .block-white-item .item-name {
  color: #fff;
  padding-bottom: 1rem;
}
.portfolio-white-block .color-column .block-white-item .item-val {
  color: #fff;
}
.portfolio-white-block .stages_bonus {
  top: auto;
  bottom: 0;
  right: 0;
  width: auto;
  left: auto;
}
.portfolio-design-black-block {
  background: #000;
  min-height: 500px;
}
.portfolio-design-black-block .portfolio-design-black-disp {
  min-height: 500px;
  width: 460px;
  display: flex;
  align-items: end;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.portfolio-design-black-block .portfolio-design-black-disp p {
  font-size: 1.1rem;
  color: #fff;
  width: 100%;
  margin-bottom: 0;
}
.portfolio-design-black-block .portfolio-design-black-disp .port-h2 {
  font-size: 2rem;
  width: 100%;
  color: #fff;
  font-weight: 900;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
  padding-top: 4rem;
}
.portfolio-design-black-block .portfolio-design-black-disp img {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.portfolio-design-black-block .portfolio-design-black-disp--photo {
  background: url(/components/portfolio/img/nbook.webp);
  background-size: 700px;
  background-position: left center;
  background-repeat: no-repeat;
}

.portfolio-v2 {
  display: flex;
  flex-wrap: wrap;
}
.portfolio-v2 .project-card-v2 {
  padding: 15px;
  margin-bottom: 30px;
}
.portfolio-v2 .project-card-v2 .card-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
  background: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-img {
  transform: scale(1.05);
  opacity: 0.4;
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-badges {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-description {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-v2 .project-card-v2 .card-wrapper:hover .card-title {
  transform: translateY(-10px);
}
.portfolio-v2 .project-card-v2 .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio-v2 .project-card-v2 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  transition: all 0.4s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}
.portfolio-v2 .project-card-v2 .card-content {
  width: 100%;
}
.portfolio-v2 .project-card-v2 .card-title {
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}
.portfolio-v2 .project-card-v2 .card-badges, .portfolio-v2 .project-card-v2 .card-description, .portfolio-v2 .project-card-v2 .card-link {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.portfolio-v2 .project-card-v2 .card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.portfolio-v2 .project-card-v2 .card-badges .badge-item {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}
.portfolio-v2 .project-card-v2 .card-badges .badge-item i {
  color: #f9d423;
}
.portfolio-v2 .project-card-v2 .card-description {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 20px;
}
.portfolio-v2 .project-card-v2 .card-link {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f9d423;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.portfolio-v2 .project-card-v2 .card-link i {
  transition: transform 0.3s ease;
}
.portfolio-v2 .project-card-v2 .card-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-v2 .project-card-v2 .card-title {
    font-size: 20px;
  }
  .portfolio-v2 .project-card-v2 .card-badges {
    opacity: 1;
    transform: translateY(0);
  }
  .portfolio-v2 .project-card-v2 .card-link {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 575px) {
  .portfolio-v2 .project-card-v2 .card-wrapper {
    aspect-ratio: 1/1;
  }
  .portfolio-v2 .project-card-v2 .card-overlay {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%);
  }
  .portfolio-v2 .project-card-v2 .card-description {
    display: none;
  }
  .portfolio-v2 .project-card-v2 .card-title {
    font-size: 18px;
  }
}
.col-fixed-430 {
  width: 430px;
}

.w100 {
  width: 100%;
}

@media (min-width: 768px) {
  header .header__container,
  .header .header__container {
    flex-wrap: nowrap;
  }
  header .header__phone a,
  .header .header__phone a {
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .portfolio-black-block .portfolio-black-disp,
  .portfolio-main-block .portfolio-first-disp {
    width: auto;
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .portfolio-black-block .portfolio-black-disp,
  .portfolio-main-block .portfolio-first-disp {
    width: 540px;
    padding-left: 0;
  }
}
@media (min-width: 1600px) {
  .portfolio-black-block .portfolio-black-disp,
  .portfolio-main-block .portfolio-first-disp {
    width: 610px;
  }
}

@media (min-width: 768px) {
  .portfolio-main-block .port-buttonsbox1 {
    flex-wrap: wrap;
  }
  .portfolio-main-block .port-buttonsbox1 a {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 1199px) {
  .title-header .d-flex.col-fixed-430 {
    width: 250px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: end;
  }
  .title-header .d-flex.col-fixed-430 a {
    margin-bottom: 0.5rem;
    width: 220px;
  }
}
@media (max-width: 599px) {
  .title-header .d-flex.col-fixed-430 {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-left: 15px;
  }
  .title-header .d-flex.col-fixed-430 a {
    width: 100%;
    justify-content: center;
  }
  .title-header .d-flex.col-fixed-430 a:before, .title-header .d-flex.col-fixed-430 a:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .d-md-block {
    display: block !important;
  }
  body,
  html {
    overflow-x: hidden;
    font-size: 14px;
  }
  .button {
    height: auto !important;
  }
  .portfolio-about .about-item {
    margin-bottom: 2.5rem;
  }
  .portfolio-about .about-item .item-name {
    font-size: 1.3rem;
  }
  .portfolio-about .about-item .item-val {
    font-size: 1.1rem;
  }
  .portfolio-main-block,
  .portfolio-black-block,
  .portfolio-design-black-block {
    padding-top: 2rem;
  }
  .portfolio-main-block .container-fluid,
  .portfolio-black-block .container-fluid,
  .portfolio-design-black-block .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) and (min-width: 650px) {
  .portfolio-main-block .container-fluid,
  .portfolio-black-block .container-fluid,
  .portfolio-design-black-block .container-fluid {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .portfolio-black-block .portfolio-black-disp {
    min-height: 100px;
    padding-bottom: 2rem;
  }
  .portfolio-black-block .portfolio-black-disp--photo {
    height: 500px;
  }
  .portfolio-first-disp {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .breadcrumbs {
    margin-left: -1rem;
  }
  .title-header {
    padding-left: 0;
    padding-bottom: 1rem;
  }
  .port-buttonsbox1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .port-buttonsbox1 a {
    margin-bottom: 1rem;
  }
  .main {
    padding-top: 83px;
  }
}
.pricing-section {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Arial Black", "Arial", sans-serif;
}
.pricing-section .container {
  max-width: 1200px;
}
.pricing-section .pricing-header {
  text-align: center;
  margin-bottom: 50px;
  text-align: start;
}
.pricing-section .pricing-header .subtitle {
  color: #cc8e00;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: start;
}
.pricing-section .pricing-header .title {
  color: #000;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.pricing-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}
.pricing-card .card-header {
  background: linear-gradient(90deg, #ff5c00 0%, #ffb800 100%);
  padding: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 65px;
}
.pricing-card .card-header .icon {
  margin-right: 12px;
  font-size: 20px;
}
.pricing-card .card-header h3 {
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.pricing-card .card-body {
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pricing-card .card-body .desc {
  font-size: 13px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 600;
  height: 80px;
}
.pricing-card .card-body .features {
  list-style: none;
  padding: 0;
  margin: 0 0 5px;
}
.pricing-card .card-body .features li {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.pricing-card .card-body .features li:before {
  content: "✔";
  color: #ff5c00;
  position: absolute;
  left: 0;
  font-weight: 900;
}
.pricing-card .card-body .push-to-bottom {
  margin-top: auto;
}
.pricing-card .card-body .info {
  font-size: 13px;
  color: #777;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.6;
  border-top: 2px solid #f9f9f9;
  padding-top: 20px;
  text-align: start;
}
.pricing-card .card-body .price-final {
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
}
.pricing-card .card-footer {
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent !important;
}
.pricing-card .card-footer .btn-order {
  flex-grow: 1;
  background: linear-gradient(90deg, #ff5c00 0%, #ffb800 100%);
  color: #fff;
  text-decoration: none;
  padding: 15px 5px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  min-width: 0;
  width: auto;
  height: auto;
}
.pricing-card .card-footer .btn-order:hover {
  filter: brightness(1.05);
  color: #fff;
}
.pricing-card .card-footer .hex-number {
  background: linear-gradient(90deg, #ff5c00 0%, #ffb800 100%);
  color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: none;
}

.research-banner {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 60px;
  padding: 18px 35px;
  display: flex;
  align-items: center;
}
.research-banner .search-icon {
  margin-right: 20px;
  color: #bbb;
  font-size: 24px;
}
.research-banner p {
  font-size: 13px;
  margin: 0;
  color: #000;
  font-weight: 700;
}

@media (max-width: 767px) {
  .research-banner {
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .research-banner .search-icon {
    margin: 0 0 10px 0;
  }
}
.modal-content {
  top: 40px;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

.quiz-dialog {
  max-width: 900px;
}
.quiz-dialog .modal-content {
  padding-left: 20px;
  padding-right: 20px;
}

body,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: #000;
}

.calculate-button {
  display: flex;
  z-index: 50;
  align-items: center;
  padding: 7px 20px 7px 12px;
  position: fixed;
  bottom: 150px;
  left: -109px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 20px;
  color: #fff;
  background: #000;
  border-radius: 0 0 10px 10px;
  border: none;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .calculate-button {
    padding: 5px 15px 5px 10px;
    font-size: 14px;
    left: -95px;
  }
}
.calculate-button:hover {
  background: #333;
}
.calculate-button__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .calculate-button__icon {
    width: 30px;
    height: 30px;
  }
}

.quiz {
  width: calc(100% - 20px);
  max-width: 900px;
  margin: 50px auto;
  display: none;
  overflow: hidden;
}
.quiz.active {
  display: block;
}

.question-popup {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
}
.question-popup.hidden-popup {
  display: none;
}

.quiz__content {
  display: none;
}
.quiz__content.active {
  display: block;
}
.quiz__content_last {
  margin-bottom: 80px;
}

.quiz__radios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  min-height: 235px;
}
@media screen and (max-width: 767px) {
  .quiz__radios {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
  .quiz__radios > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .quiz__radios > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .quiz__radios > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .quiz__radios > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.question-popup__radios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px;
  min-height: 235px;
  max-width: 462px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .question-popup__radios {
    grid-gap: 10px;
  }
}

.question-popup__subtitle {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: #4F4F4F;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .question-popup__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}

.radio-field__label-inner {
  width: 100%;
  height: 170px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  border: 1px dashed #E4E4E4;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .radio-field__label-inner {
    height: auto;
    aspect-ratio: 16/12;
    padding: 4px;
  }
}
.radio-field__label-inner img:not(.radio-field__custom-image) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  display: block;
}
.radio-field__label {
  display: block;
  transition: 0.3s ease;
  cursor: pointer;
}
.radio-field__label:hover .radio-field__label-inner {
  border-color: #8C8C8C;
}
.radio-field__input {
  display: none;
}
.radio-field__input:checked ~ .radio-field__label .radio-field__label-inner {
  border-color: #F83600;
}
.radio-field__input:checked ~ .radio-field__label .radio-field__label-check-inner {
  border: none;
  background: linear-gradient(270deg, #F9D423 0%, #F83600 100%);
}
.radio-field__label-check {
  position: absolute;
  left: calc(50% - 20px);
  bottom: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.radio-field__label-check-inner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #E4E4E4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.radio-field__label-text {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .radio-field__label-text {
    font-size: 13px;
    line-height: 17px;
  }
}

.quiz__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #000;
  padding: 7px;
  border-radius: 50px;
  max-width: 750px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .quiz__bottom {
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .quiz__progress {
    width: 100%;
  }
}

.quiz__progress-line-bg {
  width: 500px;
  height: 12px;
  border-radius: 5px;
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
  padding: 2px;
}
@media screen and (max-width: 767px) {
  .quiz__progress-line-bg {
    width: 100%;
  }
}

.quiz__progress-line {
  width: 12.5%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(270deg, #F9D423 0%, #F83600 100%);
  transition: 0.3s ease;
}

.radio-field__custom-image {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .radio-field__custom-image {
    height: 64px;
    width: auto;
  }
}

.quiz__input {
  width: 350px;
  height: 46px;
  background: url(../img/phone-svg.svg) no-repeat center left 10px;
  background-size: 24px;
  border: 1px solid #B9B9B9;
  padding: 6px 15px 6px 42px;
  margin-left: calc(50% - 175px);
  font-size: 14px;
  line-height: 20px;
  font-family: inherit;
}
@media screen and (max-width: 767px) {
  .quiz__input {
    width: 100%;
    max-width: 350px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.quiz__input::-moz-placeholder {
  color: #ABABAB;
}
.quiz__input::placeholder {
  color: #ABABAB;
}

.prev-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .prev-button {
    order: 1;
  }
}
.prev-button:hover {
  background: #333;
}

.next-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #F9D423 0%, #F83600 100%);
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  height: 60px;
  border-radius: 50px;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .next-button {
    order: 2;
  }
}
.next-button:hover {
  filter: brightness(1.1);
}

.quiz__caption {
  display: flex;
  align-items: center;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .quiz__caption {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }
}
.quiz__caption img {
  width: 30px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .quiz__caption img {
    display: none;
  }
}
.quiz__caption-text {
  font-size: 14px;
  line-height: 20px;
  margin-left: 15px;
  width: calc(100% - 45px);
}
@media screen and (max-width: 767px) {
  .quiz__caption-text {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
  }
}
.quiz__caption-text span {
  font-weight: 600;
}

.quiz__policy {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  max-width: 332px;
}
@media screen and (max-width: 767px) {
  .quiz__policy {
    font-size: 12px;
    line-height: 15px;
    max-width: 100%;
    order: 3;
    margin-top: 10px;
  }
}
.quiz__policy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #323232;
  transition: 0.3s ease;
}
.quiz__policy a:hover {
  border-color: transparent;
}

.hidden-block {
  display: none;
}

.quiz__gift {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .quiz__gift {
    position: absolute;
    right: 0;
    top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .quiz__gift img {
    width: 45px;
    height: auto;
  }
}
.quiz__gift-text {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .quiz__gift-text {
    margin-left: 10px;
  }
}
.quiz__gift-title {
  font-size: 14px;
  line-height: 16px;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .quiz__gift-title {
    font-size: 13px;
    line-height: 14px;
    max-width: 120px;
  }
}
.quiz__gift-description {
  font-size: 13px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .quiz__gift-description {
    font-size: 14px;
    line-height: 18px;
  }
}
.quiz__gift-description span:first-child {
  margin-right: 8px;
}

.quiz__row {
  display: flex;
  align-items: center;
  padding: 30px 0 20px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .quiz__row {
    position: relative;
    padding-top: 50px;
  }
}

.quiz__content-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .quiz__content-title {
    font-size: 14px;
    line-height: 20px;
  }
}

.quiz__progress-counter {
  font-size: 18px;
  line-height: 22px;
  color: #6F6F6F;
  margin-bottom: 5px;
}
.quiz__progress-counter span {
  font-weight: 600;
  color: #323232;
}

.quiz__title {
  font-size: 24px;
  line-height: 30px;
  color: #828282;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .quiz__title {
    font-size: 16px;
    line-height: 20px;
  }
}

.quiz__subtitle {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: #4F4F4F;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .quiz__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
}

.quiz__second-title {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 20px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .quiz__second-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 14px;
  }
}
.quiz__second-title span {
  font-weight: 600;
}

.quiz__description-text {
  font-size: 16px;
  line-height: 20px;
  color: #717171;
  text-align: center;
  max-width: 590px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .quiz__description-text {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
  }
}

.advantages-new-section {
  background-color: #000;
  color: #ffffff;
}
.advantages-new-section .adv-angel-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: url("/assets/img/angel.jpg") no-repeat right bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
.advantages-new-section .z-1 {
  z-index: 1;
}
.advantages-new-section .adv-header .adv-subtitle {
  color: #a4785c;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
}
.advantages-new-section .adv-header .adv-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}
@media (max-width: 768px) {
  .advantages-new-section .adv-header .adv-title {
    font-size: 1.8rem;
  }
}
.advantages-new-section .adv-header .adv-divider {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, #ff5e00 0%, #ffb000 100%);
  border-radius: 2px;
}
.advantages-new-section .text-gradient {
  background: linear-gradient(90deg, #ff5e00 0%, #ffb000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ff5e00;
}
.advantages-new-section .adv-list .adv-icon-wrap {
  width: 45px;
  text-align: center;
}
.advantages-new-section .adv-list .adv-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.advantages-new-section .adv-list .adv-item-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
  text-transform: none;
  max-width: 500px;
}
.advantages-new-section .btn-gradient-action {
  background: linear-gradient(90deg, #ff5e00 0%, #ffb000 100%);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 94, 0, 0.3);
  font-size: 1rem;
}
.advantages-new-section .btn-gradient-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.5);
  color: #fff;
}

.min-width-256 {
  min-width: 256px;
}

/* 1. Жёлтый → оранжевый */
.gradient-yellow-orange {
  background: linear-gradient(90deg, #f9d223 0%, #f9d223 100%) !important;
}

/* 2. Оранжевый (светлый → тёмный) */
.gradient-orange {
  background: linear-gradient(90deg, #f9d223 0%, #ff7e05 100%) !important;
}

/* 3. Оранжевый → красный (оранжевого оттенка) */
.gradient-orange-red {
  background: linear-gradient(90deg, #ff8c00 0%, #ff2710 100%) !important;
}

/* 4. Цвета радуги */
.gradient-rainbow {
  background: linear-gradient(90deg, #ff2710 0%, #f9d223 100%) !important;
}

.z--10 {
  z-index: -10 !important;
}

.z--9 {
  z-index: -9 !important;
}

.z--8 {
  z-index: -8 !important;
}

.z--7 {
  z-index: -7 !important;
}

.z--6 {
  z-index: -6 !important;
}

.z--5 {
  z-index: -5 !important;
}

.z--4 {
  z-index: -4 !important;
}

.z--3 {
  z-index: -3 !important;
}

.z--2 {
  z-index: -2 !important;
}

.z--1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

.z-6 {
  z-index: 6 !important;
}

.z-7 {
  z-index: 7 !important;
}

.z-8 {
  z-index: 8 !important;
}

.z-9 {
  z-index: 9 !important;
}

.z-10 {
  z-index: 10 !important;
}/*# sourceMappingURL=componets.css.map */