@font-face {
  font-family: "Montserrat";
  src: url("/style/img/main/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/style/img/main/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/style/img/main/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/style/img/main/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/*сброс стилей*/
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #2f2f2f;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff5700;
}

button,
input {
  border: none;
  background-color: transparent;
  font: inherit;
  line-height: inherit;
}

a,
button,
input {
  outline: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

label {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  background-color: rgba(0, 0, 0, 0.5);
  scroll-behavior: smooth;
}

.page {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding: 24px 40px;
}

h1 {
  font-size: 3.5rem;
  line-height: 4.125rem;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  line-height: 3.25rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.bg-layer {
  position: relative;
}

.bg-layer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 767px) {
  .page {
    padding: 16px;
  }

  h1 {
    font-size: 2.625rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  h4 {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

/*кнопки*/
.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn {
  width: 100%;
  max-width: 235px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background-color: #2f2f2f;
  line-height: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.btn:hover {
  color: #ff5700;
  background-color: #2f2f2fea;
}

.hf-btn {
  max-width: none;
  height: 44px;
  padding: 0 24px;
  font-weight: 600;
}

.btn-arrow {
  position: relative;
}

.btn-arrow::after {
  content: url("/style/img/main/image/icon/arrow-icon.svg");
  position: absolute;
  right: 4px;
  width: 40px;
  height: 40px;
  padding-top: 12.5px;
  text-align: center;
  border-radius: 16px;
  background-color: #ffffff;
}

.btn-submit:disabled {
  color: #ffffff89;
  background-color: #8d8d8d;
  cursor: wait;
  transition: none;
}

@media (max-width: 576px) {
  .btn {
    max-width: none !important;
  }

  .hf-btn {
    height: 48px;
  }
}

/*popup*/
.popup-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup_open {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 640px;
  padding: 40px;
  border-radius: 24px;
  background-color: #f2f9ff;
}

.popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #ffffff;
}

@media (max-width: 576px) {
  .popup-content {
    padding: 48px 24px 24px;
  }
}

/*инпуты*/
.form-input {
  width: 100%;
  padding: 13px 16px 11px;
  background-color: #ffffff;
  border-radius: 16px;
}

.form-input::placeholder {
  color: #8a99aa;
}

.form-input:focus-visible {
  outline: 1px solid #2f2f2f;
}

.form-radio {
  position: relative;
}

.form-radio input {
  appearance: none;
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.form-checkbox {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #2f2f2f;
  border-radius: 56px;
  background-color: transparent;
}

.form-checkbox:checked {
  background-color: #2f2f2f;
}

.form-checkbox:checked::after {
  content: url("/style/img/main/image/icon/check-icon.svg");
  position: absolute;
  width: 11px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}

/*форма*/
.form-app {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.topics-container {
  overflow-x: auto;
  margin-right: -24px;
}

@media (hover: none) and (pointer: coarse) {
  .topics-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .topics-container::-webkit-scrollbar {
    display: none;
  }
}

.topics-wrapper {
  width: max-content;
  padding: 2px;
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  border-radius: 16px;
  background-color: #ffffff;
}

.form-radio.topic {
  padding: 8px 16px;
  border-radius: 16px;
  line-height: 1.25rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  user-select: none;
}

.form-radio.topic:has(input:checked) {
  background-color: #e9e9e9;
  cursor: default;
  pointer-events: none;
}

.form-section.inputs {
  gap: 12px;
}

.form-app .btn {
  max-width: none;
}

.agreement-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.agreement-wrapper input {
  flex-shrink: 0;
}

.agreement-wrapper label {
  line-height: 1.25rem;
  color: #6e788a;
  user-select: none;
}

.agreement-wrapper label a {
  color: #ff5700;
  text-decoration: underline;
}

.agreement-wrapper label a:hover {
  text-decoration: none;
}

@media (max-width: 576px) {
  .agreement-wrapper label {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

/*социальные сети*/
.socials {
  display: flex;
  gap: 8px;
}

.social-link {
  flex-grow: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-tg {
  background-image: url("/style/img/main/image/icon/tg-icon.svg");
}

.social-vk {
  background-image: url("/style/img/main/image/icon/vk-icon.svg");
}

/*хедер*/
.header {
  width: 100%;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-radius: 16px;
  background-color: #f9f9f9;
}

.logo {
  width: 185px;
  height: 48px;
  padding: 6px 16px 0;
  border-radius: 16px;
  background-color: #ffffff;
}

.header-nav.nav-desktop {
  flex-grow: 1;
  padding: 14px 6px 14px 0;
  display: flex;
  justify-content: center;
}

.header-nav.nav-desktop ul {
  width: 100%;
  max-width: 637px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-call {
  flex-shrink: 0;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.header-call:hover {
  background-color: #ff5500d6;
}

.header-burger {
  display: none;
  width: 48px;
}

.burger-close {
  display: none;
}

.header-burger.is-open .burger-open {
  display: none;
}

.header-burger.is-open .burger-close {
  display: block;
}

.header-nav.nav-mobile {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background-color: #f9f9f9;
}

.header-nav.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 1.25rem;
}

@media (max-width: 1023px) {
  .header {
    gap: 8px;
  }

  .header-nav.nav-desktop {
    padding-right: 0;
  }

  .header-nav.nav-desktop ul {
    justify-content: start;
    gap: 10px;
  }

  .header-nav.nav-desktop li {
    min-width: 31%;
    white-space: nowrap;
  }

  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 799px) {
  .header {
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 0;
    background-color: transparent;
  }

  .header .logo {
    flex-grow: 1;
    width: auto;
    padding: 5px 13px;
    background-color: #f9f9f9;
  }

  .header-nav.nav-desktop {
    display: none;
  }

  .header-call {
    background-color: #f9f9f9;
  }

  .header-contact {
    display: none;
  }

  .header-burger {
    display: flex;
  }
}

/*main*/
.main {
  padding-top: 32px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (max-width: 767px) {
  .main {
    padding-top: 8px;
    padding-bottom: 56px;
    gap: 56px;
  }
}

/*главный баннер*/
.banner-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 481.5px)) minmax(250px, 313px);
  grid-template-rows: 313px 98px 191px;
  gap: 24px;
}

.banner {
  grid-column: span 2;
  grid-row: 1 / 3;
  padding: 56px;
  border-radius: 24px;
  background-color: #f2f9ff;
}

.banner::after {
  right: 5.6px;
  bottom: 12px;
  width: 100%;
  max-width: 287.4px;
  aspect-ratio: 287.4 / 243;
  background-image: url("/style/img/main/image/banner-cat.webp");
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner-content h1 {
  max-width: 634px;
}

.banner-content p {
  width: 62%;
  max-width: 634px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #8d8d8d;
}

.banner-content .btn {
  margin-top: 8px;
}

.card-banner-side {
  grid-column: 3;
}

.side-bottom {
  grid-row: span 2;
}

.card-banner-bottom {
  grid-row: 3;
}

.banner-section .bg-graph {
  background-image: url("/style/img/main/image/graph_drawi.webp");
  background-size: 168px;
}

.banner-section .bg-glass {
  background-image: url("/style/img/main/image/magnifying_glass.webp");
  background-size: 142px;
}

.banner-section .bg-gear {
  background-image: url("/style/img/main/image/gear_in_orange.webp");
  background-size: 209.5px;
}

.banner-section .bg-brush {
  background-image: url("/style/img/main/image/brush_for_paint.webp");
  background-size: 190px;
}

@media (max-width: 1023px) {
  .banner-section {
    display: flex;
    flex-wrap: wrap;
  }

  .banner {
    width: 100%;
  }

  .banner::after {
    right: 0;
    bottom: 0;
  }

  .banner-content {
    gap: 24px;
  }

  .banner-content .btn {
    margin-top: 0;
  }

  .banner-section .card {
    flex-grow: 1;
    width: 47.5%;
    height: 191px;
  }

  .banner-section .bg-graph {
    background-size: 127px;
  }

  .banner-section .bg-glass {
    background-size: 109px;
  }

  .banner-section .bg-gear {
    background-size: 184px;
  }

  .banner-section .bg-brush {
    background-size: 168px;
  }
}

@media (max-width: 699px) {
  .banner {
    padding: 32px 24px 233px;
  }

  .banner::after {
    max-width: 224px;
    bottom: 19.6px;
    right: 50%;
    transform: translateX(50%);
    margin-right: -17px;
  }

  .banner-content p {
    width: 100%;
  }
}

/*карточки*/
.card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  background-color: #f9f9f9;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.card-bb {
  background-color: #f2f9ff;
}

.card p {
  font-weight: 500;
  color: #6d6d6d;
}

/*секции*/
.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*Почему выбирают нас*/
.about_us-cards {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(275.5px, auto));
  gap: 24px;
}

.about_us-mid {
  grid-row: span 2;
  min-height: 419px;
}

.about_us-mid::after {
  height: 388px;
  width: 100%;
  background-image: url("/style/img/main/image/product_development_in_orangewhite.webp");
}

.about_us-clients {
  display: flex;
  gap: 24px;
}

.client-img {
  flex: 1 0 18%;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 24px;
}

.about_us-cards .bg-cycle {
  background-image: url("/style/img/main/image/full_cycle_in_orangewhite.webp");
  background-size: 219px;
}

.about_us-cards .bg-watch {
  background-image: url("/style/img/main/image/alarm_in_orangewhite.webp");
  background-size: 149px;
}

.about_us-cards .bg-russia {
  background-image: url("/style/img/main/image/we_work_throughout_russia.webp");
  background-size: 395px;
}

.about_us-cards .bg-briefcase {
  background-image: url("/style/img/main/image/briefcase_in_orangewhite.webp");
  background-size: 168px;
}

@media (max-width: 1023px) {
  .about_us-cards {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(275.5px, auto));
  }

  .about_us-clients {
    flex-wrap: wrap;
  }

  .client-img {
    flex: 1 0 30%;
  }
}

@media (max-width: 699px) {
  .about_us-cards {
    display: flex;
    flex-direction: column;
  }

  .about_us-cards .card {
    height: 234px;
  }

  .about_us-mid::after {
    height: 253px;
  }

  .about_us-clients {
    display: none;
  }
}

@media (max-width: 576px) {
  .about_us-cards .bg-cycle {
    background-size: 162px;
    background-position: bottom right -23px;
  }

  .about_us-cards .bg-watch {
    background-size: 105px;
  }

  .about_us-cards .bg-russia {
    background-size: 324px;
  }

  .about_us-cards .bg-briefcase {
    background-size: 130px;
  }
}

/*Маркетинг*/
.marketing-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, minmax(275.5px, auto)) minmax(291px, auto);
  gap: 24px;
}

.marketing-top-r {
  grid-column: 1 / span 3;
  padding-right: 39%;
}

.marketing-top-l {
  grid-row: 1 / 3;
  grid-column: 4 / span 3;
  padding-bottom: 439px;
}

.marketing-bottom {
  grid-column: span 2;
  padding-bottom: 105px;
}

.marketing-cards .marketing-top-r::after {
  width: 35%;
  max-width: 210px;
  height: 100%;
}

.marketing-cards .bg-ds::after {
  background-image: url("/style/img/main/image/digital_strategy.webp");
}

.marketing-cards .bg-cm::after {
  background-image: url("/style/img/main/image/content_marketing.webp");
  background-position: center left -89px;
}

.marketing-cards .bg-ca::after {
  width: 100%;
  height: 415px;
  border-radius: 0 0 24px 24px;
  background-image: url("/style/img/main/image/contextual_advertising.webp");
}

.marketing-cards .bg-glass {
  background-image: url("/style/img/main/image/magnifying_glass.webp");
  background-size: 143px;
  background-position: bottom -17px right -12px;
}

.marketing-cards .bg-tech {
  background-image: url("/style/img/main/image/object_technology.webp");
  background-size: 205px;
}

.marketing-cards .bg-app {
  background-image: url("/style/img/main/image/object_application.webp");
  background-size: 250px;
}

@media (max-width: 1023px) {
  .marketing-cards {
    display: flex;
    flex-direction: column;
  }

  .marketing-cards h4 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .marketing-cards .marketing-top-r::after {
    max-width: none;
  }

  .marketing-cards .bg-ds::after {
    background-size: 150%;
  }

  .marketing-cards .bg-cm::after {
    background-position: center center;
  }

  .marketing-cards .bg-ca {
    padding-bottom: 284px;
  }

  .marketing-cards .bg-ca::after {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .marketing-top-r {
    padding-right: 24px;
  }

  .marketing-cards .marketing-top-r::after {
    width: 100%;
  }

  .marketing-cards .bg-ds {
    padding-bottom: 284px;
  }

  .marketing-cards .bg-ds::after {
    height: 260px;
  }

  .marketing-cards .bg-cm {
    padding-bottom: 227px;
  }

  .marketing-cards .bg-cm::after {
    height: 203px;
    background-size: 125%;
  }

  .marketing-cards .bg-ca {
    padding-bottom: 217px;
  }

  .marketing-cards .bg-ca::after {
    height: 193px;
  }

  .marketing-bottom {
    min-height: 291px;
  }
}

@media (max-width: 576px) {
  .marketing-cards .bg-ds::after {
    background-position: top 36% center;
    background-size: 215%;
  }

  .marketing-cards .bg-cm::after {
    background-position: top 33% right 40%;
  }

  .marketing-cards .bg-glass {
    background-size: 130px;
    background-position: bottom -15px right -7px;
  }

  .marketing-cards .bg-tech {
    background-position: bottom right -16px;
  }

  .marketing-cards .bg-app {
    background-position: bottom right -5px;
  }
}

/*IT-продукты*/
.IT_products-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(275.5px, auto));
  gap: 24px;
}

.IT_products-top-l {
  grid-row: span 2;
}

.IT_products-top-r {
  grid-column: span 2;
}

.IT_products-cards .bg-smart_q {
  padding-bottom: 391px;
}

.IT_products-cards .bg-smart_q::after {
  width: 100%;
  height: 367px;
  background-image: url("/style/img/main/image/smart_quality_control.webp");
}

.IT_products-cards .bg-smart_c {
  padding-right: 52%;
}

.IT_products-cards .bg-smart_c::after {
  width: 50%;
  max-width: 434px;
  height: 100%;
  background-image: url("/style/img/main/image/smart_calls_in_orangewhite.webp");
}

.IT_products-cards .bg-support,
.IT_products-cards .bg-solutions {
  padding-bottom: 150px;
}

.IT_products-cards .bg-support {
  background-image: url("/style/img/main/image/technical_support.webp");
  background-size: 267px;
}

.IT_products-cards .bg-solutions {
  background-image: url("/style/img/main/image/business_solutions.webp");
  background-size: 229px;
}

@media (max-width: 1023px) {
  .IT_products-cards {
    display: flex;
    flex-wrap: wrap;
  }

  .IT_products-cards .card {
    flex-grow: 1;
    width: 48%;
  }

  .IT_products-cards .bg-smart_q,
  .IT_products-cards .bg-smart_c {
    padding-bottom: 292px;
  }

  .IT_products-cards .bg-smart_q::after,
  .IT_products-cards .bg-smart_c::after {
    height: 268px;
  }

  .IT_products-cards .bg-smart_c {
    padding-right: 24px;
  }

  .IT_products-cards .bg-smart_c::after {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 699px) {
  .IT_products-cards .card {
    width: 100%;
  }

  .IT_products-cards .bg-smart_c {
    padding-bottom: 247px;
  }

  .IT_products-cards .bg-smart_c::after {
    height: 223px;
  }

  .IT_products-cards .bg-support,
  .IT_products-cards .bg-solutions {
    min-height: 276px;
    padding-bottom: 136px;
  }
}

@media (max-width: 419px) {
  .IT_products-cards .bg-support {
    background-size: 213px;
  }

  .IT_products-cards .bg-solutions {
    background-size: 209px;
    background-position: bottom -12px right -22px;
  }
}

/*Телеком*/
.check_connection-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.check_connection {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  background-color: #f9f9f9;
}

.check_connection-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check_connection-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.address-input {
  flex-grow: 1;
  position: relative;
  z-index: 5;
  width: 70%;
}

.check_connection-form .form-input {
  border-radius: 8px;
}

.suggest-block {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  padding: 10px;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  border: 1px solid #2f2f2f;
  border-radius: 8px;
  color: #ffffff;
  background-color: #8d8d8d;
}

.address-input:focus-within .suggest-block:has(> *) {
  display: flex;
}

.suggest-block>p {
  margin-bottom: 8px;
  font-size: 0.75rem;
  line-height: 1rem;
  user-select: none;
}

.suggest-block>button {
  line-height: 1.1rem;
}

.check_connection-form .btn {
  max-width: 199px;
}

.providers {
  min-width: 340px;
  min-height: 228px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.provider {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 16px;
}

.provider-bb {
  background-color: #f2f9ff;
}

.banner-parther_program {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background-color: #f2f9ff;
}

.banner-parther_program-content {
  padding: 44px 0 44px 44px;
  width: 50%;
  max-width: 571px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner-parther_program-content .logo {
  width: 142px;
  height: 41px;
  padding: 0;
  background-color: transparent;
}

.banner-parther_program-text p {
  max-width: 494px;
  margin-top: 16px;
}

.banner-parther_program-img {
  width: 50%;
  max-width: 619px;
  aspect-ratio: 619 / 384;
  border-radius: 24px;
  background-image: url("/style/img/main/image/parther_program.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1279px) {
  .banner-parther_program {
    padding: 0 12px 0 0;
  }

  .banner-parther_program-content {
    width: 60%;
  }
}

@media (max-width: 1023px) {
  .banner-parther_program {
    padding: 40px;
    flex-direction: column;
    gap: 24px;
  }

  .banner-parther_program-content {
    padding: 0;
    width: 100%;
    max-width: none;
  }

  .banner-parther_program-text p {
    max-width: none;
  }

  .banner-parther_program-img {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 959px) {
  .check_connection-wrapper {
    flex-wrap: wrap;
  }

  .providers {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .check_connection {
    padding: 24px;
  }

  .check_connection-content {
    gap: 24px;
  }

  .banner-parther_program {
    display: none;
  }
}

/*Этапы работы*/
.work_stages-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.work_stages-cards .card {
  flex-grow: 1;
  width: 31%;
  min-height: 216px;
}

.work_stages-cards .card:first-child {
  background-image: url("/style/img/main/image/stage-1.webp");
  background-size: 168px;
}

.work_stages-cards .card:nth-child(2) {
  background-image: url("/style/img/main/image/stage-2.webp");
  background-size: 145px;
}

.work_stages-cards .card:nth-child(3) {
  background-image: url("/style/img/main/image/stage-3.webp");
  background-size: 157px;
}

@media (max-width: 919px) {
  .work_stages-cards .card {
    width: 47%;
  }
}

@media (max-width: 576px) {
  .work_stages-cards .card {
    width: 100%;
  }
}

@media (max-width: 419px) {
  .work_stages-cards .card:first-child {
    background-size: 136px;
    background-position: bottom -2px right -16px;
  }

  .work_stages-cards .card:nth-child(2) {
    background-size: 110px;
    background-position: bottom right -11px;
  }

  .work_stages-cards .card:nth-child(3) {
    background-size: 126px;
    background-position: bottom right -2px;
  }
}

/*Как с нами связаться*/
.contacts-img {
  width: 100%;
  aspect-ratio: 1320 / 385;
  min-height: 235px;
  border-radius: 24px;
  background-image: url("/style/img/main/image/topic_contacts.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contacts-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contacts-cards .card {
  flex-grow: 1;
  justify-content: center;
  width: 31%;
}

.contacts-link {
  color: #2f2f2f;
}

.card-socials {
  gap: 8px;
}

.card-socials .socials {
  width: 52px;
  height: 21px;
}

@media (max-width: 767px) {
  .contacts-cards .card {
    width: 48%;
  }
}

/*Карьера в Domconnect*/
.career-container {
  display: flex;
  gap: 24px;
}

.career-content {
  width: 40%;
  max-width: 438px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  background-color: #f9f9f9;
}

.team .career-content {
  background-color: #f2f9ff;
}

.career-content p {
  font-weight: 500;
}

.career-content .btn {
  margin-top: auto;
}

.career-img {
  flex-grow: 1;
  width: 60%;
  border-radius: 24px;
  overflow: hidden;
}

.career-img-mob {
  display: none;
}

@media (max-width: 919px) {
  .career-container {
    width: 100%;
    padding: 24px;
    flex-direction: column;
    border-radius: 24px;
    background-color: #f9f9f9;
  }

  .career-container.career {
    flex-direction: column-reverse;
  }

  .career-content {
    width: 100%;
    max-width: none;
    padding: 0;
    background-color: transparent !important;
  }

  .career-img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .career-container {
    gap: 16px;
  }

  .career-img-desc {
    display: none;
  }

  .career-img-mob {
    display: block;
    max-height: 225px;
  }
}

/*футер*/
.footer {
  padding: 56px 72px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  background-color: #f9f9f9;
}

.footer-nav {
  width: 100%;
  max-width: 693px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.25rem;
}

.footer-tel {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer .socials {
  flex-shrink: 0;
  width: 72px;
  height: 32px;
}

.footer .btn {
  max-width: 202px;
}

.footer-description {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #737577;
}

.footer-legal {
  width: 100%;
  max-width: 693px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: #737577;
}

.footer-legal a {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (max-width: 919px) {
  .footer-nav ul {
    justify-content: start;
  }

  .footer-legal {
    justify-content: start;
  }
}

@media (max-width: 699px) {
  .footer {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .footer .logo {
    padding: 0;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
  }

  .footer-contacts {
    flex-direction: column;
    align-items: start;
  }
}