@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --black: #231F20;
  --green: #026632;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --swiper-navigation-color: #fff;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--black);
  overflow-y: scroll;
}

body.stop {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

.link-primary {
  color: var(--green);
  position: relative;
}

.link-primary:after {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 8px;
  border-bottom: 4px dotted;
}

.link-primary:hover:after {
  border-color: transparent;
}

a:hover {
  text-decoration: underline
}

.container {
  width: 1136px;
  margin: auto;
}

button,
a.button {
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  background-color: var(--green);
  color: var(--white);
  padding: 24px 32px;
  border: unset;
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  transition: opacity .2s;
}

button.disabled,
a.button.disabled {
  opacity: .4;
  cursor: not-allowed;
}

button.outline,
a.button.outline {
  background-color: var(--white);
  border: 1px solid var(--green);
  color: var(--green);
}

button:hover,
a.button:hover {
  opacity: .9;
}

button.disabled:hover,
a.button.disabled:hover {
  opacity: .4;
}

button:not(.text):not(.outline):after,
a.button:not(.text):not(.outline):after {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(/public/assets/svg/arrow-down-left.svg);
}

button.text {
  border: none;
  background-color: transparent;
  font-weight: 600;
  color: var(--black);
  padding: 0
}

button.text:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Text */
h1,
.h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 88px;
}

h2,
.h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 72px;
}

.t1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 64px;
}

.t2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}

.t3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.t4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

.banner {
  width: 100%;
  height: 716px;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.section-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

.section-subtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
}
header>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 136px;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav-link,
.header-nav-call,
.header-nav-phone {
  font-size: 20px;
  line-height: 24px;
}

.header-nav-call,
.header-nav-phone {
  font-weight: 800;
}

/*Intro */
#intro {
  overflow: hidden;
  position: relative;
  padding-top: 100px;
  padding-bottom: 96px;
}

#intro>.container {}

#intro h1 {
  margin-top: 0;
  margin-bottom: 16px;
}

#intro .t1 {
  margin-bottom: 48px;
}

#intro .figure {
  width: 969px;
  height: 969px;
  transform: translate(50%, 50%) rotate(45deg);
  background: linear-gradient(10deg, #026632 0%, #05AAFF 100%);
  position: absolute;
  bottom: 0;
  right: -80px;
  z-index: -1;
}

#intro .sber {
  position: absolute;
  bottom: 85px;
  right: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

#intro .sber img {
  width: 259px;
  height: 71px;
}

/* Info */
#info {
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  padding-top: 80px;
  padding-bottom: 140px;
  position: relative;
}

#info .figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#info>.container {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 112px;
  row-gap: 56px;
  position: relative;
  z-index: 1;
}

#info .info-item:first-child {
  grid-column: 1 / 3;
}

#info h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  white-space: nowrap;
}

/* Services */
#services {
    padding-top: 96px;
    padding-bottom: 104px;
}

#services h2 {
  margin-top: 16px;
  margin-bottom: 32px;
}

#services button {
  width: 100%;
  justify-content: center;
}

.services-subtitle p {
  margin: 0 0 16px 0;
}

.services-groups {
  margin: 72px 0 16px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-group {
  color: var(--white);
  padding: 32px;
  position: relative;
}

.services-group__figure {
  background-color: var(--green);
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 20% 100%, 0% 100%);
}

.services-group__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: contain;
  object-position: right;
}


.services-group:nth-child(1) {
  grid-row: 1 / 3;
  height: 560px;
}

.services-group:nth-child(1) .services-group__image {
  object-fit: cover;
}

.services-group:nth-child(2) .services-group__figure {
  clip-path: polygon(0 0, 100% 0, 52% 100%, 0% 100%);
}

.services-group:nth-child(3) .services-group__figure {
  background-color: var(--black);
  clip-path: polygon(0 0, 80% 0, 52% 100%, 0% 100%);
}

.services-group__name {
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 24px;
}

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

.services-group__list-item {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

/* Objects */
#objects {
    padding-top: 72px;
    padding-bottom: 128px;
  background: var(--grey);
}

#objects h2 {
  margin-top: 16px;
  margin-bottom: 24px;
}

.objects-subtitle {
  margin-bottom: 72px;
}

.objects-body {
  display: grid;
  grid-template-columns: minmax(0, 264px) auto;
  gap: 24px;
  align-items: flex-start;
}

.objects-aside {
  background-color: var(--white);
  padding: 16px;
}

.objects-aside img {
  max-width: 166px;
  max-height: 128px;
  object-fit: contain;
}

.objects-aside__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.objects-aside__subtitle {
  margin-bottom: 28px;
}

.objects-aside__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.objects-aside__list-item {
  background-color: var(--grey);
  padding: 4px 16px;
  gap: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.objects-aside__list-item:before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(/public/assets/svg/check.svg);
}

.objects-aside .button {
  display: flex;
  justify-content: center;
  padding: 16px 24px;
}

.objects-aside .button:last-child {
  margin-top: 8px;
}

.objects-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.object-item {
  background-color: var(--white);
  cursor: pointer;
    display: flex;
    flex-direction: column;
}

.object-item__image {
  height: 148px;
  width: 100%;
  max-height: 148px;
  object-fit: cover;
}

.object-item__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.object-item__body-address {
    flex: 1;
}

.object-item__body-name {
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.object-item__body-price {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.objects-action {
  grid-column: 2;
  justify-content: center;
}

/* Advantages */
#advantages {
    padding-top: 98px;
    padding-bottom: 126px;
}

.advantages-title {
  margin: 16px 0 24px 0;
}

.advantages-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px;
}

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

.advantages-list__item-num {
  font-size: 64px;
  font-weight: 800;
  line-height: 72px;
}

.advantages-list__item-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
}

.advantages-list__item-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

/* Form */
#form {
  background-color: var(--black);
  color: var(--white);
  padding-top: 110px;
  padding-bottom: 130px;
}

.form-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 72px;
  margin-bottom: 24px;
}

.form-subtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 50px;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

input {
  padding: 20px 24px;
}

input,
input::placeholder {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}

/* Footer */
footer {
  padding-top: 64px;
  background: var(--green);
}

footer,
footer a {
  color: var(--white);
}

.footer-top {
  padding-bottom: 64px;
  border-bottom: 4px solid #0C6C3A;
}

.footer-top .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-contacts {
  grid-column: 1 / 3;
  grid-row: 1;
}

.footer-persons {
  grid-column: 1 / 3;
  grid-row: 2;
}

.footer-other {
  grid-column: 3 / 4;
  grid-row: 2
}

.footer-phone {
  margin-bottom: 64px;
}

.footer-phone:first-child {
  margin-bottom: 40px;
}

.footer-phone__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.footer-phone__value {
  font-size: 62px;
  font-weight: 800;
  line-height: 72px;
}

.footer-persons {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-person {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-person__job {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.footer-person__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.footer-person__contacts {
  display: flex;
  gap: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 54px;
}

.footer-links-link {
  display: flex;
  align-content: center;
  gap: 8px;
}

.footer-address {
  max-width: 224px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.footer-logo {
  width: 77px;
  height: 56px;
  object-fit: contain;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  --popup-spacing: 16px;
}

.footer-nav-call.text {
  height: 24px;
  color: var(--white);
}

.footer-copyright {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 11;
}

.popup-backdrop {
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
}


.popup-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  display: flex;
  gap: 8px;
  width: calc(100% - 64px);
  max-width: 1185px;
}

.popup-content {
  background-color: #fff;
  padding: 0 24px 40px 40px;
  position: relative;
  overflow-y: scroll;
}

.popup-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 52px;
}

.popup-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.popup-body .popup-body-slider {
    grid-column: 1 / 5;
}

.popup-body-info {
    display: flex;
    flex-direction: column;
    grid-column: 5 / 7;
    gap: 8px;
}

.popup-body-info__item {
    
}

.popup-body-info__item-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    opacity: 0.25;
    display: inline;
    margin-right: 8px;
}

.popup-body-info__item-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    display: inline;
}

.popup-actions {
    position: sticky;
    bottom: 0;
    z-index: 10;
    padding-top: 8px;
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}

.popup-close {
  min-width: 40px;
  width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.popup-close img {
    width: 100%;
    height: 40px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    cursor: pointer;
}

.popup .mainSlider {
  height: 463px;
  margin-bottom: 16px;
}

.popup .mainSlider img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  background-color: #f8f8f8;
}

.popup .thumbsSlider {
  height: 96px;
}

.popup .thumbsSlider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-color: #f8f8f8;
  cursor: pointer;
}

.swiper {
    width: 100%;
    margin-left: 0 !important;
}

.popup-header > div:first-child {
    grid-column: 1 / 5;
}

.popup-header > div:last-child {
    grid-column: 5 / 7;
}

.popup .info__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
}

.popup .info__address {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

.popup .info__price {
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
}
.popup .info__price2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    opacity: 0.25;
}

.popup .info__description {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}

@media (max-width: 1440px) {
    #intro .figure {
        right: -220px;
    }
    #intro .sber {
        right: 20px;
    }
}

.header-nav-mobile-menu {
    visibility: hidden;
}

@media (max-width: 1280px) {
    .container {
        max-width: 768px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    header {
        padding: 8px 0;
    }
    header>.container {
        gap: 32px;
    }
    .header-nav {
        flex-wrap: wrap;
        align-items: center;
    }
    .header-nav-call, .header-nav-phone {
        display: flex;
    }
    .header-nav-link {
        display: none;
    }
    
    .header-nav-mobile-trigger {
        width: 32px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .header-nav-mobile-trigger-line {
        width: 100%;
        height: 3px;
        background-color: black;
        transition: opacity .2s, transform .2s;
    }
    
    .header-nav-mobile-trigger.active .header-nav-mobile-trigger-line:first-child {
        transform: rotate(45deg) translate(7px, 5px);
    }
    .header-nav-mobile-trigger.active .header-nav-mobile-trigger-line:last-child {
        transform: rotate(-45deg) translate(8px, -6px);
    }
    .header-nav-mobile-trigger.active .header-nav-mobile-trigger-line.middle {
        opacity: 0;
    }
    
    .header-nav-mobile-menu {
        transition: opacity .2s;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 11;
        display: flex;
        flex-direction: column;
        font-size: 24px;
        background-color: rgb(0 0 0 / 50%);
        padding-right: 86px;
        box-sizing: border-box;
    }
    .header-nav-mobile-menu a {
        background-color: white;
        padding: 16px 32px;
        border-bottom: 1px solid #eee;
    }
    .header-nav-mobile-menu.opened {
        opacity: 1;
        visibility: visible;
    }
    
    .header-nav-mobile-menu-close {
        width: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 32px;
        position: absolute;
        top: 0;
        right: 0;
        padding: 16px;
        background: white;
    }
    
    .header-nav-mobile-menu-close .line {
        width: 100%;
        height: 3px;
        background-color: black;
        transition: opacity .2s, transform .2s;
    }
    
    .header-nav-mobile-menu-close .line:first-child {
        transform: rotate(45deg) translate(3px, 0px)
    }
    .header-nav-mobile-menu-close .line:last-child {
        transform: rotate(-45deg) translate(2px, 0px)
    }
    
    h1, .h1 {
        font-size: 50px;
        line-height: 66px;
    }
    h2, .h2 {
        font-size: 38px;
        line-height: 48px;
    }
    
    .t1 {
        font-size: 32px;
        line-height: 44px;
    }
    .t2 {
        font-size: 22px;
        line-height: 32px;
    }
    #intro .t1 {
        max-width: 560px;
    }
    
    .objects-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .footer-phone__value {
        font-size: 50px;
        line-height: 60px;
    }
    .footer-nav-link {
        display: none;
    }
    .header-logo {
        height: auto;
        width: 110px;
    }
    .services-group__name {
        font-size: 28px;
        line-height: 38px;
        max-width: 220px;
    }
    .services-group__list-item {
        font-size: 14px;
        line-height: 24px;
    }
    .services-group__list {
        gap: 8px;
    }
    .link-primary:after {
        bottom: 0px;
    }
    .section-subtitle {
        font-size: 26px;
        line-height: 36px;
    }
    .advantages-list__item-title, .form-subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    .advantages-list__item-text {
        font-size: 16px;
        line-height: 26px;
    }
    input, input::placeholder {
        font-size: 16px;
        line-height: 26px;
    }
    input {
        padding: 16px 20px;
    }
    #form button {
        padding: 16px 22px;
        font-size: 18px;
    }
    #intro {
        padding-top: 64px;
    }
    
    .popup .info__title, .popup .info__price {
        font-size: 24px;
        line-height: 34px;
    }
    .popup .info__address, .popup .info__price2 {
        font-size: 16px;
        line-height: 26px;
    }
    .popup-grid.popup-body {
        display: flex;
        flex-direction: column;
    }
    .popup-content {
        padding: 0 40px 40px 40px;
    }
    .popup-actions .button {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .popup-grid {
        display: flex;
        flex-direction: column;
    }
    .popup-header {
        gap: 16px;
        padding-top: 8px;
    }
    .popup-wrapper {
        width: calc(100% - 16px);
        flex-direction: column;
        align-items: flex-end;
    }
    .popup .mainSlider, .popup .thumbsSlider {
        max-width: 320px;
    }
    .popup .mainSlider {
        height: 240px;
    }
    .popup .thumbsSlider {
        height: 46px;
    }
    .popup .info__description {
        font-size: 14px;
        line-height: 24px;
    }
    .popup-body-info__item-title, .popup-body-info__item-value {
        font-size: 16px;
        line-height: 26px;
    }
    .popup-grid.popup-body {
        gap: 12px;
    }
    .popup-content {
        padding: 0 8px 8px 8px;
        order: 1;
    }
    .container {
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    #info>.container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    #info .info-item {
        grid-column: 1;
    }
    
    .services-groups {
        grid-template-columns: 1fr;
    }
    .services-group {
        grid-row: initial !important;
    }
    
    .objects-action {
        width: 100%;
        box-sizing: border-box;
    }
    .objects-body, .advantages-list, .form-fields, .footer-top .container {
        display: flex;
        flex-direction: column;
    }
    #info h2 {
        white-space: normal;
    }
    .header-nav-link, .header-nav-call, .header-nav-phone {
        font-size: 12px;
    }
    .header-nav {
        gap: 8px;
    }
    .header-nav-mobile-trigger-line {
        height: 2px;
    }
    .header-nav-mobile-trigger {
        gap: 2px;
        width: 16px;
    }
    .header-logo {
        width: 48px;
    }
    .header-nav {
        flex: 1;
        justify-content: space-between;
    }
    header>.container {
        gap: 24px;
    }
    .header-nav-mobile-menu {
        font-size: 16px;
        padding-right: 64px;
    }
    .header-nav-mobile-menu-close .line:first-child {
        transform: rotate(45deg) translate(2px, 0px);
    }
    .header-nav-mobile-menu-close .line:last-child {
        transform: rotate(-45deg) translate(1px, 0px);
    }
    .header-nav-mobile-menu-close .line {
        height: 2px;
    }
    .header-nav-mobile-menu-close {
        width: 16px;
        height: 16px;
    }
    #intro {
        padding-top: 32px;
    }
    h1, .h1 {
        font-size: 26px;
        line-height: 36px;
    }
    .t1 {
        font-size: 20px;
        line-height: 30px;
    }
    h2, .h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .t2 {
        font-size: 16px;
        line-height: 26px;
    }
    .t4 {
        font-size: 12px;
        line-height: 22px;
    }
    #info>.container {
        gap: 32px;
    }
    #info h2 {
        margin-top: 4px;
        margin-bottom: 8px;
    }
    body, #info {
        font-size: 14px;
        line-height: 24px;
    }
    #intro .t1 {
        margin-bottom: 42px;
        max-width: 320px;
    }
    #info .figure {
        max-height: 100%;
        object-fit: cover;
    }
    
    #intro .figure {
        right: -500px;
    }
    #intro .sber {
        right: 8px;
        bottom: 18px;
        line-height: 18px;
        font-size: 8px;
    }
    #intro .sber img {
        height: auto;
        width: 100px;
    }
    button, a.button {
        font-size: 14px;
        padding: 12px 16px
    }
    .banner {
        height: 50vh;
    }
    
    #info {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    
    #services {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    #services h2 {
        margin-bottom: 12px;
        margin-top: 8px;
    }
    .services-subtitle p {
        margin: 0 0 4px 0;
    }
    .services-groups {
        margin: 24px 0 16px 0;
    }
    .services-group:nth-child(1) {
        box-sizing: border-box;
        max-width: 100%;
        height: auto;
    }
    .services-group__name {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    .services-group__list-item {
        font-size: 14px;
        line-height: 24px;
    }
    .services-group__list {
        gap: 4px;
    }
    .services-group__figure {
        clip-path: polygon(0 0, 100% 0, 62% 100%, 0% 100%);
    }
    .services-group:nth-child(2) .services-group__figure {
        clip-path: polygon(0 0, 100% 0, 62% 100%, 0% 100%);
    }
    .services-group:nth-child(3) .services-group__figure {
        clip-path: polygon(0 0, 80% 0, 62% 100%, 0% 100%);
    }
    .link-primary:after {
        bottom: 0px;
    }
    #objects {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    #objects h2 {
        margin-bottom: 16px;
        margin-top: 8px;
    }
    .objects-subtitle {
        margin-bottom: 16px;
    }
    .section-name {
        font-size: 14px;
        line-height: 24px;
    }
    .objects-aside {
        width: 100%;
        box-sizing: border-box;
    }
    .objects-aside .button {
        padding: 12px 18px;
    }
    .objects-aside {
        order: 3
    }
    .objects-action {
        order: 2;
    }
    #advantages {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .advantages-list__item {
        gap: 8px;
    }
    .advantages-list__item-num {
        font-size: 40px;
        line-height: 50px;
    }
    .advantages-list__item-title {
        font-size: 28px;
        line-height: 38px;
    }
    .advantages-list__item-text {
        font-size: 14px;
        line-height: 24px;
    }
    #form {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .form-title {
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 8px;
    }
    .form-subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px;
    }
    input {
        padding: 12px 16px;
        
    }
    input, input::placeholder {
        line-height: 24px;
        font-size: 14px;
    }
    .footer-phone__name, .footer-person__job, .footer-person__name, .footer-person__contacts {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-phone__value {
        font-size: 32px;
        line-height: 42px;
    }
    .footer-phone:first-child {
        margin-bottom: 0
    }
    .footer-phone {
        margin-bottom: 0
    }
    .footer-contacts {
        gap: 24px;
        display: flex;
        flex-direction: column;
    }
    .footer-person {
        gap: 4px;
    }
    .footer-persons {
        gap: 16px;
    }
    .footer-top .container {
        gap: 32px;
    }
    .footer-links {
        gap: 12px;
        margin-bottom: 32px;
    }
    .footer-links-link {
        gap: 16px;
    }
    .footer-top {
        padding-bottom: 32px;
    }
    .footer-bottom .container {
        gap: 16px;
    }
    .footer-nav, .footer-copyright {
        font-size: 14px;
        line-height: 24px;
    }
}

.detail_object-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 4px;
}

.detail_object-info-item {
}

.detail_object-info-item-label, .detail_object-info-item-value {
    font-size: 16px;
    line-height: 26px;
    font-weight: 800;
    display: inline;
}

.detail_object-info-item-label {
    opacity: .45;
    margin-right: 8px;
}

body.inner h1,
body.inner .h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 12px;
}

body.inner h2,
body.inner .h2 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 16px;
    margin-top: 48px;
}

.detail_object-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail_object {
    padding-bottom: 32px;
}

.detailedSlider {
    aspect-ratio: 12 / 9;
    margin-bottom: 24px;
}

.detailedSliderThumbs {
    height: 128px;
}
.detailedSliderThumbs img {
    object-fit: cover;
}

@media (max-width: 1280px) {
    .detail_object-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .detail_object-info {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    body.inner h1, body.inner .h1 {
        font-size: 36px;
        line-height: 46px;
    }
    body.inner h2, body.inner .h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 8px;
        margin-top: 24px;
    }
    .detailedSliderThumbs {
        height: 64px;
    }
}

.achievements {
    margin-top: 64px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.achievementsSlider {
    width: 100%;    
}

.achievementsSlider .swiper-slide {
    width: auto;
}

.achievementsSlider img {
    height: 128px;
    width: auto;
    min-width: 64px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}