/* ========== Fonts Styles ========== */

@font-face {
    font-family: "Min Sans";
    src: url("../fonts/MinSans-Light.woff2") format("woff2"),
         url("../fonts/MinSans-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Min Sans";
    src: url("../fonts/MinSans-Regular.woff2") format("woff2"),
         url("../fonts/MinSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Min Sans";
    src: url("../fonts/MinSans-Medium.woff2") format("woff2"),
         url("../fonts/MinSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Min Sans";
    src: url("../fonts/MinSans-Bold.woff2") format("woff2"),
         url("../fonts/MinSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "FoglihtenNo06";
    src: url("../fonts/FoglihtenNo06.eot");
    src: url("../fonts/FoglihtenNo06.eot?#iefix") format("embedded-opentype"),
         url("../fonts/FoglihtenNo06.woff2") format("woff2"),
         url("../fonts/FoglihtenNo06.woff") format("woff"),
         url("../fonts/FoglihtenNo06.ttf") format("truetype"),
         url("../fonts/FoglihtenNo06.svg#FoglihtenNo06") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Oceanic";
    src: url("../fonts/Oceanic-Light.eot");
    src: url("../fonts/Oceanic-Light.eot?#iefix") format("embedded-opentype"),
         url("../fonts/Oceanic-Light.woff2") format("woff2"),
         url("../fonts/Oceanic-Light.woff") format("woff"),
         url("../fonts/Oceanic-Light.ttf") format("truetype"),
         url("../fonts/Oceanic-Light.svg#Oceanic-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  /* ========== Global Styles ========== */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Min Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    overflow-x: hidden;
    color: var(--color-white);
  }
  /* ========== Variables Styles ========== */

:root {
    --font-main: "Min Sans", sans-serif;
    --font-secondary: "Oceanic", sans-serif;
    --font-tertiary: "FoglihtenNo06", sans-serif;
    --font-size-main: 18px;
  
    --color-white: #e8e6e3;
    --color-white-4: rgba(232, 230, 227, 4%);
    --color-white-8: rgba(232, 230, 227, 8%);
    --color-white-10: rgba(232, 230, 227, 10%);
    --color-white-48: rgba(232, 230, 227, 48%);
    --color-white-72: rgba(232, 230, 227, 72%);
    --color-white-90: rgba(232, 230, 227, 90%);
  
    --color-black: #0c0d0c;
    --color-black-30: rgba(12, 13, 13, 30%);
    --color-black-48: rgba(12, 13, 13, 48%);
    --color-black-72: rgba(12, 13, 13, 72%);
    --color-black-90: rgba(12, 13, 13, 90%);
  
    --color-brand: #c2a070;
    --color-brand-hover: #af9166;
    --color-brand-20: rgba(194, 160, 112, 20%);
    --color-brand-12: rgba(194, 160, 112, 12%);
  
    --color-grad: linear-gradient(
      180deg,
      rgba(194, 160, 112, 0) 0%,
      rgba(194, 160, 112, 0.5) 100%
    );
  
    --color-green: #1b2621;
    --color-bg: #0c0d0c;
  
    --border-rad: 32px;
    --border-rad-sm: 8px;
    --border-rad-md: 16px;
    --border-rad-full: 100px;
  
    --transition-main: 0.2s ease-in-out;
  }
  
  /* ========== Reset Styles ========== */
  
  *,
  :before,
  :after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
  }
  
  *:focus,
  :before:focus,
  :after:focus {
    outline: none !important;
  }
  
  html,
  body {
    scroll-behavior: smooth;
  }
  
  html,
  body,
  #app {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
  }
  
  body {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--font-size-main);
    background: var(--color-bg);
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  
  a {
    color: var(--color-white);
    transition: var(--transition-main);
    text-decoration: none;
    outline: none;
  }
  
  ul {
    list-style: none;
  }
  
  input,
  button,
  textarea {
    outline: none;
    appearance: none;
    background: none;
    appearance: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -webkit-appearance: none;
    -moz-border-radius: 0px;
  }
  
  input {
    font-size: inherit;
    font-family: inherit;
  }
  
  input:-webkit-autofill {
    transition: all 5000s ease-in-out 0s;
  }
  
  strong {
    font-weight: 700;
  }
  
  i {
    font-style: normal;
  }
  
  picture,
  img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }
  /* ========== Header Styles ========== */
  .header-left {
    display: flex;
    gap: 64px;
    align-items: center;
  }
  .container-head {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-size: 15px;
  }
  .gradient-background {
    width: 100%;
    height: 152px;
    background-image: linear-gradient(to bottom, #0c0d0ccf, #00000000);
    position: absolute; 
    top: 0; 
    z-index: 5;
  }
  .header__logo {
    flex-shrink: 0; 
  }
  
  .header__call {
    gap: 17px;
    display: flex;
    align-items: center;
}

 .header__call-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-rad-full);
    background: var(--color-white-8);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .header__call-text-t {
    margin-bottom: 5px;
    letter-spacing: 0.2px;
    font-size: 13px;
    opacity: 0.72;
  }
  .header__nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .header__nav li {
    margin-right: 16px;
  }
  
  .header__nav a {
    text-decoration: none;
  }
  .header__nav a:hover {
    color: var(--color-brand);
}
  .Button {
    gap: 10px;
    z-index: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding: 14px 22px;
    min-height: 52px;
    width: max-content;
    font-family: var(--font-main);
    border-radius: var(--border-rad-full);
    transform: scale(1) translateZ(0);
    transition: var(--transition-main);
    will-change: transform;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: flex;
}
.Button.--BrandSecondary {
    background: var(--color-white-8);
    backdrop-filter: blur(16px);
    color: var(--color-white);
}
.Button.--BrandSecondary:hover {
  background: var(--color-white-10);
}
  /* ========== Hero Section Styles ========== */
  h1 {
    font-size: 52px;
    font-weight: 100;
    line-height: 56px;
    font-family: var(--font-secondary);
}
h2{
  font-family: var(--font-secondary);
  font-size: 44px;
  font-weight: 100;
}
.gradient-bottom {
    width: 100%;
    height: 80vh;
    background-image: linear-gradient(to top, #0c0d0c, #00000000);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .hero-serv {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main-content {
    max-width: 1128px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-main-info {
    max-width: 1128px;
    margin: 0 auto;
    z-index: 2;
    margin-bottom: 76px;
    width: 100%;
  }
  .hero-main-info span {
    color: var(--color-white-48);
    margin-bottom: 24px;
    display: block;
  }
  .hero-main-info p {
    margin: 24px 0;
    display: block;
    width: 744px;
    line-height: 32px;
  }
  .hero-main-info-mob {
    display: none;
  }
  .container-head .Button {
    gap: 10px;
    z-index: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding: 14px 22px;
    min-height: 52px;
    width: max-content;
    font-family: var(--font-main);
    border-radius: var(--border-rad-full);
    transform: scale(1) translateZ(0);
    transition: var(--transition-main);
    will-change: transform;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: flex;
}
.Button.button-back {
    position: absolute;
    background: var(--color-white-8);
    backdrop-filter: blur(16px);
    color: var(--color-white);
    margin-top: 152px;
    padding: 10px 20px 10px 16px;
    min-height: 40px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    left: 0;
    transition: var(--transition-main);
    z-index: 100;
}
.Button.button-back:hover {
  background: var(--color-white-10);
}
.info-wrapper {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.info-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 627px; 
    height: 80px;
    padding: 0 8px;
    background-color: #1B2621;
    border-radius: 999px;
}

.btn {
    height: 64px;
    border-radius: 999px;
    padding: 0 32px;
    font-size: 16px;
    background-color: var(--color-brand);
    transition: var(--transition-main);
    border: none;
    cursor: pointer;
    margin-right: 24px;
    color:var(--color-black);
}
.btn:hover {
background: var(--color-brand-hover);
}
.info-controls a {
  height: 64px;
  border-radius: 999px;
  padding: 0 32px;
  font-size: 16px;
  background-color: var(--color-brand);
  transition: var(--transition-main);
  border: none;
  cursor: pointer;
  margin-right: 24px;
  color:var(--color-black);
}
.info-controls a:hover {
background: var(--color-brand-hover);
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.info-item img {
    width: 24px;
    height: 24px;
}

.info-item div {
    display: flex;
    flex-direction: column;
}
.info-item p {
    width: 100%;
}
.info-item span {
  color: var(--color-white-48);
  margin-bottom: -2px;
  display: block;
  font-size: 13px;
}
.info-item p {
  font-size: 15px;
}
.info-item div p:first-child {
    font-weight: bold;
    margin: 0;
}

.info-item div p:last-child {
    margin: 0;
}

.info-text p{
  max-width: 469px;
  font-size: 13px;
  display: block;
  line-height: 18px;
  margin: 0;
  padding-left: 12px;
  color: var(--color-white-48);
}

.text-wrap{
  padding: 76px 136px 44px;
}
.text-wrap p{
  line-height: 32px;
  padding-bottom: 32px;
  font-weight: 400;
}
.rounded-bg {
  background-color: var(--color-white-4);
  border-radius: 32px;
}

.rounded-bg h3{
  font-family: var(--font-secondary);
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 52px;
}

.text-wrap-round h2 {
  margin-bottom: 16px;
}

.text-wrap-round p {
color: var(--color-white-72);
padding-bottom: 40px;
}
.text-wrap-round ul{
  color: var(--color-white-72);
  margin-top: -32px;
}
.text-indications {
  text-align: center;
}
.centered {
  text-align: center;
  margin-bottom: 64px;
}

.indications .main-content {
  display: block;
}
.lists-container {
    display: flex;
    gap: 16px; 
}

.list {
    width: 412px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 24px;
    color: var(--color-white-72);
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    align-content: flex-start;
}

.list li img {
    width: 24px;
    height: 24px;
}

.cooperation {
  max-width: 1128px;
  margin: 32px auto 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 76px;
  gap: 4px;
}
.image-section {
  width: 50%;
  height: 420px;
  overflow: hidden;
  border-radius: 32px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Button {
  gap: 10px;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  padding: 20px 36px;
  min-height: 64px;
  width: max-content;
  font-family: var(--font-main);
  border-radius: var(--border-rad-full);
  transform: scale(1) translateZ(0);
  transition: var(--transition-main);
  will-change: transform;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  display: flex;
}
.Button.--BgGrad {
  color: var(--color-black);
  background: var(--color-white);
}
.Button.--BgGrad:before {
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  background: var(--color-grad);
  content: "";
}
.whatsapp-button {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 68px;
  height: 68px;
  z-index: 1000;
}
.whatsapp-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.5); /* Полупрозрачный белый ободок */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 3s ease-out infinite;
}

/* Анимация для эффекта пульсации */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.Map-Fullscreen__Button {
  left: 50%;
  margin-top: -30px;
  transform: translateX(-50%);
  padding: 20px;
  position: absolute;
}
.Map-Fullscreen {
  inset: 0;
  opacity: 0;
  padding: 16px 16px 64px;
  z-index: 1000;
  position: fixed;
  pointer-events: none;
  transform: scale(0.95);
  background: var(--color-black-90);
  transition: var(--transition-main);
  backdrop-filter: blur(16px);
}
.Map-Fullscreen__Wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--border-rad);
  overflow: hidden;
}
.H1 {
  font-size: 52px;
  font-weight: 300;
  line-height: 56px;
  font-family: var(--font-secondary);
  text-align: center;
}

.H2 {
  font-size: 44px;
  font-weight: 300;
  line-height: 48px;
  font-family: var(--font-secondary);
}

.T1 {
  font-size: 18px;
  line-height: 32px;
}

.T2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.T2-sm {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.T3 {
  font-size: 13px;
  line-height: 16px;
}
.info-section {
  width: 50%;
  background-color: #1B2621;
  display: flex;
  flex-direction: column;
  padding: 48px;
  height: 420px;
  border-radius: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.highlight {
  color: var(--color-brand);
}

.info-section .btn {
  height: 64px;
  border-radius: 999px;
  padding: 0 32px;
  font-size: 15px;
  background-color: var(--color-brand);
  transition: var(--transition-main);
  border: none;
  cursor: pointer;
  margin-right: 24px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  color:#0C0D0C;
  font-weight: 500;
}

.appointment-button {
  background-color: white;
  color: #4CAF50;
  border: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.appointment-button:hover {
  background-color: #e8f5e9;
}
.Case {
  width: calc(1128px + 20px);
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

.Case .case {
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

.Offset {
  padding: 76px 0;
}
/* ========== Footer Styles ========== */

.Footer {
  color: var(--color-black);
  background: var(--color-brand);
  border-radius: var(--border-rad);
  overflow: hidden;
}

.Footer a {
  color: var(--color-black);
}

.Footer__Wrap {
  gap: 76px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.Footer__Address {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.Footer__Address p {
  margin-bottom: 16px;
}

.Footer__Address p:last-of-type {
  margin-bottom: 0;
}

.Footer__Address-Button {
  margin-top: 24px;
}

.Footer__Contacts {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.Footer__Contacts p {
  margin-top: 16px;
}

.Footer__Socials {
  gap: 16px;
  display: flex;
  align-items: center;
}

.Footer__Socials a:hover {
  transform: scale(0.97);
}

.Footer__Copy {
  gap: 32px;
  display: flex;
}

.Footer__Copy a {
  text-decoration: underline;
  text-decoration-color: transparent;
}

.Footer__Copy a:hover {
  text-decoration-color: var(--color-black);
}
.Header__Back {
    z-index: 101;
    gap: 3px;
    width: 48px;
    height: 48px;
    border-radius: var(--border-rad-full);
    background: var(--color-white-10);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}
.Header__Ham {
  z-index: 101;
  gap: 3px;
  width: 48px;
  height: 48px;
  border-radius: var(--border-rad-full);
  background: var(--color-white-10);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
  display: none;
}

.Header__Ham div {
  width: 18px;
  height: 2px;
  position: relative;
  border-radius: var(--border-rad-sm);
  transition: var(--transition-main);
  background: var(--color-white);
}
.Header__Ham.is-open div:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.Header__Ham.is-open div:nth-child(2) {
  opacity: 0;
}

.Header__Ham.is-open div:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.MobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.MobileMenu.active {
  opacity: 1;
  visibility: visible;
}
.MobileMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: -120px;
  text-align: center;
}

.MobileMenu li {
  margin: 20px 0;
  line-height: 42px;
  font-family: var(--font-secondary);
}

.MobileMenu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 32px;
}

.MobileMenu a:hover {
  color: var(--color-brand);
}
.MobileMenu .header__call {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  text-align: center;
}
.MobileMenu .header__call-info a {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.MobileMenu .header__call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white-8);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.yButton {
  display: none !important;
}








@media (min-width: 1170px) {
  .MobileMenu {
    display: none;
  }
}


@media (max-width: 1170px) {
  .header__call {
    display: none;
    
  }
  

  .container-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
  }
  .container-head .Button {
    display: none;
  }
.header__nav {
  display: none;
}
  .header__logo {
    position: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }
  .Header__Ham {
    display: flex;
  }
  .Header__Back{
    display: flex;
  }
  .Button.button-back {
    display: none;
  }
  .hero-serv {
      height: 90vh;
      padding: 12px 28px 32px 28px;
      margin: 96px 0px 0px 4px;
      width: calc(100% - 8px);
      border-radius: 24px;
  }
  .info-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .info-text p {
    max-width: 100%;
  }
  .info-text p br {
    display: none;
  }
  .Case {
    width: calc(100% + 20px);
  }
  .info-section h2{
    font-size: 36px;
  }
  .info-section .btn {
    margin-right: -5px;
  }
}

@media (max-width: 840px) {
  p {
    font-size: 15px;
    line-height: 22px;
  }
  .hero-serv {
    height: 400px;
  }
  .gradient-background {
    display: none;
  }
  .gradient-bottom {
    display: none;
  }
  .hero-main-info {
    display: none;
  }
  .hero-main-info-mob {
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    max-width: 100%;
  }
  .hero-main-info-mob span {
    color: var(--color-white-48);
    margin-bottom: 4px;
    display: block;
    font-size: 14px;
  }
  .hero-main-info-mob h1 {
    font-size: 36px;
  }
  .hero-main-info-mob p {
    max-width: 100%;
    margin-bottom: 31px;
  }
  .hero-main-info-mob .info-text {
    text-align: center;
    width: 100%;
  }
  .mobinfo-sub {
    display: flex;
    text-align: center;
    margin-bottom: 16px;
  }
  .info-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 162px;
    padding: 4px;
    background: linear-gradient(to top, #1B2621 0%, rgba(27, 38, 33, 0) 100%);
    border-radius: 0px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;   
  }
  .info-item {
    display: flex;
    gap: 4px;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
  }
  .info-text p {
    margin-bottom: 0px;
  }
  .btn {
    height: 56px;
    border-radius: 999px;
    padding: 0 32px;
    font-size: 15px;
    width: 100%;
    margin: 0;
  }
  .text-wrap {
    padding: 32px 24px 0px;
  }
  .text-wrap p{
    font-size: 16px;
    line-height: 26px;
  }
  .rounded-bg h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 32px;
    margin-top: -4px;
  }
  .text-wrap-round h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
  }
  .text-wrap-round p {
    padding-bottom: 32px;
  }
  .rounded-bg .text-wrap {
    padding: 28px 24px 0px;
  }
  .indications h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }
  .lists-container {
    gap: 32px;
    flex-direction: column;
  }
  .list {
    width: 100%;
  }
  .cooperation {
    max-width: 100%;
    margin: 20px auto 0;
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 32px;
    gap: 2px;
    flex-direction: column;
    align-items: center;
  }
  .image-section, .info-section {
    width: 100%;
  }
  .info-section .btn {
    width: 312px;
}
.Offset {
  padding: 46px 0 28px;
}
.Footer__Wrap {
  gap: 52px;
}
.Footer__Address .H1 {
  font-size: 36px;
  line-height: 40px;
}
.Footer__Address .T1 {
  font-size: 16px;
  line-height: 26px;
}
.Footer__Address p {
  max-width: 312px;
}
.Footer__Contacts {
  max-width: 312px;
  margin-left: auto;
  margin-right: auto;
}
.Footer__Contacts p {
  max-width: 312px;
}
.Footer__Contacts .H1 {
  font-size: 36px;
  line-height: 40px;
}
.Footer__Copy {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Footer__Copy a{
  font-size: 15px;
}

}

@media (max-width: 680px) {
  .hero-serv {
    height: 232px;
  }
}