/* Hero Block Styles */
.hero-block {
  position: relative;
  height: 570px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  bottom: 40px;
  margin-bottom: 80px;
  padding: 40px 0;
  transition: all 0.3s ease;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-block .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-block__content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero-block .invert {
  cursor: pointer;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  background-color: #1f2022 !important;
  color: #fff !important;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  min-width: 100%;
  padding: 15px 40px;
  border-radius: 20px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.hero-block .invert:hover {
  background: #fff !important;
  color: #1f2022 !important;
  border: 1px solid #1f2022 !important;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .hero-block {
    height: 500px;
  }
  
  .hero-block__title {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .hero-block {
    height: 400px;
    margin-bottom: 60px;
  }
  
  .hero-block__content {
    gap: 25px;
  }
  
  .hero-block__title {
    font-size: 42px;
  }
  
  .hero-block .btn-invert {
    font-size: 15px;
    padding: 13px 35px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .hero-block {
    height: 410px;
    margin-bottom: 50px;
	  border-radius: 0px;
  }
  
	.hero-block::before{
		opacity:0;
	}
	
  .hero-block__content {
    gap: 20px;
  }
  
  .hero-block__title {
    font-size: 32px;
  }
  
  .hero-block .btn-invert {
    font-size: 14px;
    padding: 12px 18px;
    min-width: 160px;
  }
	
	.hero-block .hero-block__button {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 183%;
	text-align: center;
	color: #fff;
    padding: 12px 18px;
    border-radius: 16px;
	}
}

/* Стили, применяемые через JavaScript для мобильных экранов */
.hero-title-dark {
  color: #1f2022 !important;
}

.hero-block--mobile {
  overflow: visible !important;
  margin-bottom: 170px !important;
}

.hero-block__content--mobile {
  gap: 20px !important;
  bottom: -300px !important;
  position: relative !important;
}

/* Text Block Styles */
.text-block {
  width: 100%;
  margin: 0 auto;
  padding: 70px 35px;
  border-radius: 20px;
  background: #1f2022;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.text-block .text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block .big-text {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 105%;
  color: #fff;
  margin: 0;
}

.text-block .small-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 130%;
}

/* Responsive styles for text-block */
@media (max-width: 768px) {
  .text-block {
    flex-direction: column;
    gap: 40px;
    padding: 50px 25px;
  }
  
  .text-block .big-text {
    font-size: 36px;
  }
  
  .text-block .small-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .text-block {
    padding: unset;
	  background:unset;
    gap: 8px;
  }
  
	.text-block .text-section {
		padding: 20px 12px;
		background: #1f2022;
		border-radius:15px;
		gap:6px;
	}
	
  .text-block .big-text {
   font-family: var(--second-family);
font-weight: 700;
font-size: 20px;
line-height: 105%;
color: #fff;
  }
  
  .text-block .small-text {
  font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #fff;
	  opacity:.8;
  }
}

/* About Block Styles */
.about-block {
  width: 100%;
  padding: 40px 0;
}

.about-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  margin: 0 0 35px 0;
  text-transform: uppercase;
}

.about-block__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-block__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-block__image {
  width: 100%;
  max-width: 650px;
  height: 356px;
  border-radius: 20px;
  overflow: hidden;
}

.about-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-block__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1f2022;
  margin: 0;
}

.about-block>.container {
	padding:unset;
}

.about-block__gallery {
	display:none;
	position:relative;
	
	.swiper-slide{
		width:100% !important;
	}
}

.about-block__swiper-item {
	width:100%;
	display:flex;
	overflow:hidden;
	height:261px;
	border-radius:6px;
	
	img {
		width:100%;
		height:100%;
		display:flex;
		object-fit:cover;
	}
}

.about-block__swiper-pagination {
	display: flex;
    width: fit-content !important;
    justify-content: center;
    gap: 3px;
	position:absolute;
	z-index:1;
	bottom:10px !important;
	right:40px !important;
	left:unset !important;
	
	.swiper-pagination-bullet {
		        border-radius: 100%;
        background-color: #d9d9d9;
        width: 4px;
        height: 4px;
        margin: unset !important;
        opacity: 1 !important;
	}
	
	    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #fff;
    }
}

/* Responsive styles for about-block */
@media (max-width: 1024px) {
  .about-block {
    padding: 60px 0;
  }
  
  .about-block__title {
    font-size: 55px;
    margin-bottom: 50px;
  }
  
  .about-block__image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-block {
    padding: 50px 0;
  }
  
  .about-block__title {
    font-size: 45px;
    margin-bottom: 40px;
  }
  
  .about-block__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-block__image {
    max-width: 100%;
    height: 280px;
  }
  
  .about-block__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 40px 0;
  }
	
	body.home .about-block {
		padding-bottom:0px;
	}
	
	.about-block__gallery {
		display:flex;
	}
	
	.about-block__item:has(.about-block__gallery) .about-block__image {
		display:none;
	}
  
  .about-block__title {
font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
    margin-bottom: 16px;
  }
  
  .about-block__content {
    gap: 20px;
  }
  
  .about-block__item {
    gap: 12px;
  }
  
  .about-block__image {
    height: 261px;
	border-radius:6px;
  }
  
  .about-block__text {
    font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
  }
}

/* Portfolio Block Styles */
.portfolio-block {
  width: 100%;
  padding: 40px 0;
}

.portfolio-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.portfolio-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  margin: 0;
  text-transform: uppercase;
}

.portfolio-block__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1f2022;
  margin: 0;
  flex: 1;
}

.portfolio-block__view-all {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: right;
  color: #1f2022;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio-block__view-all:hover {
  color: var(--primary);
  text-decoration: underline;
}

.portfolio-block__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Portfolio Card */
.portfolio-card {
  background: #2c2c2c;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  min-height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Чередование карточек - каждая вторая с обратным порядком */
.portfolio-card--reverse {
  flex-direction: row-reverse;
}

.portfolio-card__image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #2c2c2c;
}

.portfolio-card__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.portfolio-card__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
  flex: 1;
}

.portfolio-card__button {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  transition: all 0.3s ease, gap 0.3s ease;
  max-width: 100% !important;
  width: fit-content;
}

.portfolio-card__button span {
  display: inline-block;
}

.portfolio-card__button:hover {
  gap: 15px;
}

.portfolio-card__button svg {
  width: 16px;
  height: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.portfolio-card__button:hover svg {
  transform: translateX(5px);
}

.portfolio-card__button-mobile{
	display:none !important;
}

.portfolio-block>.container {
	padding:unset;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .portfolio-card__content {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .portfolio-block {
    padding: 50px 0;
  }

	.portfolio-card__button{
		display: none !important;
	}

.portfolio-card__button-mobile{
	display:flex !important;
order:3;
	width: -webkit-fill-available;
	margin-top:6px;
	margin-left:12px;
	margin-right:12px;
	margin-bottom:20px;
}

	.portfolio-card__content {
		order:1;
	}

	.portfolio-card__image{
		order:2;
	}
  
  .portfolio-block__header {
    align-items: flex-start;
    margin-bottom: 40px;
  }
  
  .portfolio-block__title {
    font-size: 45px;
  }
  
  .portfolio-block__subtitle {
    font-size: 14px;
  }
  
  .portfolio-block__grid {
    gap: 20px;
  }
  
  .portfolio-card,
  .portfolio-card--reverse {
    flex-direction: column;
    min-height: auto;
  }
  
  .portfolio-card__image {
    flex: 0 0 auto;
    height: 250px;
margin-top: 0px;
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 6px;
  }
  
  .portfolio-card__content {
    padding-top: 20px;
	  padding-left:12px;
	  padding-right:12px;
	  padding-bottom:6px;
  }
  
  .portfolio-card__title {
    font-size: 24px;
  }
  
  .portfolio-card__description {
    font-size: 14px;
margin-bottom:0px;
  }
}

@media (max-width: 480px) {
  .portfolio-block {
    padding: 40px 0;
  }
	
	.portfolio-block__view-all{
		font-family: var(--font-family);
font-weight: 600;
font-size: 8px;
line-height: 275%;
text-decoration: underline;
text-decoration-skip-ink: none;
text-align: right;
color: #1f2022;
	}
	
	.portfolio-block__header{
		align-items:center;
		margin-bottom:16px;
	}
  
	body.home .portfolio-block{
		padding-bottom:0px;
	}
	
  .portfolio-block__title {
    font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
  }
  
  .portfolio-card__image {
    height: 150px;
	  margin-bottom:12px;
	 
  }
	
	.portfolio-card__image img {
		 border-radius:15px;
}
  
  .portfolio-card__content {
    padding: 20px 12px;
	  padding-bottom:12px;
  }
  
  .portfolio-card__title {
   font-family: var(--second-family);
font-weight: 700;
font-size: 22px;
line-height: 105%;
color: #fff;
    margin-bottom: 12px;
  }
  
  .portfolio-card__description {
   font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #fff;
	  opacity:.8;
    margin-bottom: 0px;
  }
	
	.portfolio-card__button-mobile {
		margin-top:0px;
		padding-top:7px;
		padding-bottom:7px;
		min-height:36px;
		gap:5px;
	}
	
	.portfolio-card__button-mobile span {
		font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 157%;
text-align: center;
color: #1e1e1e;
}
	
	.portfolio-card__button-mobile svg {
		width:11px;
		height:8px;
		display:flex;
	}
	
	.portfolio-block__grid{
		gap:8px;
	}
	
	.portfolio-card{
		border-radius: 15px;
	}
}

/* Form Block Styles */
.form-block {
  width: 100%;
  padding: 40px 0;
}

.form-block__content {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 510px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1f2022;
  padding: 35px;
}

.form-block__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #1f2022;
  padding: 35px;
  justify-content: center;
}

.form-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.form-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.form-block__list-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding-left: 20px;
  position: relative;
}

.form-block__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

.form-block__right {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
	border-radius:20px;
	overflow:hidden;
}

.form-block__right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.form-block__form-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.form-block__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.form-block__input {
  width: 100%;
  height: 46px;
  border-radius: 20px;
  border: none;
  padding: 0 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #2b2b2b;
  outline: none;
  transition: all 0.3s ease;
}

.form-block__input::placeholder {
  color: rgba(43, 43, 43, 0.5);
}

.form-block__input:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.form-block__button {
  width: 100%;
  height: 55px;
  border-radius: 20px;
  border: none;
  background: #000;
  font-family: var(--font4);
  font-weight: 600;
  font-size: 17px;
  line-height: 138%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-block__button:hover {
  background: var(--hover);
  transform: translateY(-2px);
}

.form-block__button:active {
  transform: translateY(0);
}

.form-block__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}

.form-block__checkbox input[type="checkbox"] {
  display: none;
}

.form-block__checkbox input[type="checkbox"]:checked + .form-block__checkbox-icon svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

.form-block__checkbox input[type="checkbox"]:checked + .form-block__checkbox-icon::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.form-block__checkbox-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.form-block__checkbox-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.form-block__checkbox-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.4;
}

.form-block__checkbox-text a {
  color: #fff;
  text-decoration: underline;
}

.form-block__checkbox-text a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
  .form-block__content {
    flex-direction: column;
  }
  
  .form-block__left {
    padding: 35px;
  }
  
  .form-block__right {
    flex: 0 0 auto;
    min-height: 500px;
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .form-block {
    padding: 60px 0;
  }
  
  .form-block__left,
  .form-block__right {
    padding: 35px;
  }
  
  .form-block__right {
    min-height: 450px;
  }
  
  .form-block__title {
    font-size: 45px;
  }
  
  .form-block__list-item {
    font-size: 16px;
  }
  
  .form-block__input {
    height: 44px;
    font-size: 14px;
  }
  
  .form-block__button {
    height: 50px;
    font-size: 16px;
  }

	body.home {
		.form-block__content,
		.form-block__left{
			background-color:unset;
		}
		.form-block__content{
			padding-left:0px;
			padding-right:0px;
		}
		.form-block__content {
			overflow:visible;
		}
		.form-block__right {
/* margin-left: calc(-100vw / 2 + 100% / 2); */
/*     margin-right: calc(-100vw / 2 + 100% / 2); */
/*     max-width: 1920px; */
			border-radius:unset;
		}
		.form-block__left{
			padding-top:unset;
			padding-left:unset;
			padding-right:unset;
		}
		.form-block__left *,
		.form-block__list-item::before{
			color: #1f2022 !important;
		}

	}
}

@media (max-width: 480px) {
  .form-block {
    padding: 40px 0;
  }
	
	body.home .form-block{
padding-bottom:0px;
	}
	
	.form-block__content {
		min-height:unset;
	}
	
	
  .form-block__content {
    padding: 0px;
  }
  
  .form-block__content {
    border-radius: 0;
  }
  
	.form-block__button {
		margin-top:4px;
		font-family: var(--font-family);
font-weight: 500;
font-size: 12px;
line-height: 92%;
letter-spacing: -0.02em;
text-align: center;
color: #fff;
		padding-top:12px;
		padding-bottom:11px;
		height:36px;
	}
	
	.form-block__left {
		gap:8px;
		padding-bottom:20px !important;
	}
	
  .form-block__left,
  .form-block__right {
    padding: 35px 20px;
  }
  
  .form-block__right {
    min-height: 201px;
	  padding-top:35px;
	  padding-bottom:35px;
	  padding-left:21px;
	  padding-right:32px;
  }
	
	.form-block__form{
		gap:8px;
	}
  
  .form-block__title {
   font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
  }
  
  .form-block__list-item {
    font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
  }
	
	.form-block__input{
		height:28px;
		font-family: var(--font-family);
font-weight: 500;
font-size: 12px;
letter-spacing: -0.01em;
color: #2b2b2b;
	}
  
	.form-block__input::placeholder {
		font-family: var(--font-family) !important;
font-weight: 500 !important;
font-size: 12px !important;
letter-spacing: -0.01em !important;
color: #2b2b2b !important;
}
	
  .form-block__checkbox-text {
    font-family: var(--font-family);
font-weight: 400;
font-size: 10px;
color: #fff;
  }
	
	.form-block__checkbox-icon{
		width:10px;
		height:10px;
	}
	
	.form-block__left{
		flex:0;
	}
	
	.form-block__right{
		flex:1;
	}
}

/* Contacts Block Styles */
.contacts-block {
  width: 100%;
  padding: 40px 0;
}

.contacts-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.contacts-block__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1f2022;
  margin: 0 0 50px 0;
  max-width: 580px;
}

.contacts-block__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.contacts-block__info {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
}

.contacts-block__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-block__value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-block__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-block__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contacts-block__label {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1f2022;
}

.contacts-block__value {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  color: #1f2022;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-block__value:hover {
  color: var(--primary);
}

a.contacts-block__value {
  cursor: pointer;
}

.contacts-block__map {
  width: 100%;
}

.contacts-block__map iframe {
  width: 100%;
  height: 543px;
  border-radius: 20px;
  border: none;
}

.contacts-block>.container{
	padding:unset;
}

/* Responsive styles for contacts-block */
@media (max-width: 1200px) {
  .contacts-block__info {
    gap: 30px;
  }
  
  .contacts-block__map iframe {
    height: 450px;
  }
}

@media (max-width: 980px) {
  .contacts-block__info {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .contacts-block {
    padding: 50px 0;
  }
  
  .contacts-block__title {
    font-size: 45px;
    margin-bottom: 20px;
  }
  
  .contacts-block__subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  .contacts-block__info {
    flex-direction: column;
    gap: 25px;
  }
  
  .contacts-block__value {
    font-size: 18px;
  }
  
  .contacts-block__map iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contacts-block {
    padding: 40px 0;
  }
	
	body.home .contacts-block{
		padding-bottom:15px;
	}
	
	.contacts-block__content{
		gap:48px;
	}
  
  .contacts-block__title {
    font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
	  margin-bottom:8px;
  }
  
  .contacts-block__subtitle {
  font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
	  margin-bottom:16px;
  }
  
  .contacts-block__info {
    flex-direction: column;
	  gap:12px;
  }
	
	.contacts-block__value-wrapper{
		align-items:flex-start;
	}
  
  .contacts-block__item {
	  gap:6px;
  }
  
  .contacts-block__icon {
    width: 20px;
    height: 20px;
  }
  
  .contacts-block__label {
 font-family: var(--font3);
font-weight: 400;
font-size: 13px;
line-height: 130%;
color: #1f2022;
  }
  
  .contacts-block__value {
    font-family: var(--second-family);
font-weight: 700;
font-size: 20px;
line-height: 105%;
color: #1f2022;
  }
  
  .contacts-block__map iframe {
    height: 350px;
  }
}