* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
	scroll-behavior: smooth;
	overflow-x: hidden;
	margin: 0;
  padding: 0;
	scrollbar-gutter: stable;
}
h1, h2, h3, h4, h5, h6, p{
	margin: 0;
}
ul, ol{
	margin: 0;
	padding: 0;
	list-style: none;
}
a{
	color: #000;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
hr {
	margin: 0;
}
.img {
	height: auto;
}
/* ---------------------------------------------------------------- */
._container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	/* overflow-x: hidden; */
	/* border: 1px solid red; */
}
/* ----------------------START HEADER---------------------------------- */
.header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 50;
}
.header__container {
	display: flex;
	justify-content: space-between; 
	min-height: 60px;
}
.header__logo_title {
	display: inline-block;
	font-family: Georgia;
  font-size: 32px;
  font-weight: 400;
  line-height: 35.2px;
  letter-spacing: 0.06em;
	text-align: left;
	color: #F1CDB3;
	margin-bottom: 10px;
	padding-top: 30px;
}
.header__logo_subtitle {
	font-family: 'Arial';
	font-size: 13px;
	font-weight: 400;
	line-height: 14.95px;
	letter-spacing: 0.1em;
	text-align: left;
	font-style: normal;
	padding-left: 4px;
}
.menu__list {
	display: flex;
	flex-wrap: wrap;
}
.menu__item {
	padding-top: 46px;
}
.menu__item:not(:first-child) {
	margin: 0 0 0 35px;
}
.menu__item:not(:last-child) {
	margin: 0 0 0 35px;
}
.menu__item_active {
	/* margin: 0 0 0 22px; */
	padding-top: 46px;
}
.menu__item_active {
	color: #FAFAFA;
}
.menu__link_active {
	font: 400 15px/calc(24 / 15 * 100%) Arial, arial, helvetica, sans-serif;
	color: #FAFAFA;
	pointer-events: none;
  text-decoration: none;
  cursor: default;
}
.menu__item_active::after {
	display: block;
	content: '';
	border-top: 3px solid #F1CDB3;
	padding-top: 10px;
}
.menu__link {
	font: 400 15px/calc(24 / 15 * 100%) Arial, arial, helvetica, sans-serif;
	color: #CDCDCD;
}
.header-menu__btn {
	display: none;
}
.header-menu__btn_close {
	display: none;
}
@media (max-width: 768px) {
	.header__menu {
		/* margin: 0 0 0 81px; */
	}
	.header__container {
		max-width: 768px;
		padding: 0 30px;
		margin: 0 auto;
	}
	.menu__link {
		font-size: 15px;
		text-align: center;
	}
	.menu__item {
    padding-top: 46px;
	}
	.menu__item:not(:last-child) {
    margin: 0 0 0 35px;
  }
	.menu__item_active {
    margin: 0 0 0 22px;
		padding-top: 46px;
  }
}
@media (max-width: 767.5px) {
	.menu__list {
		display: none;
		padding: 50px;
		text-align: center;
		display: flex;
    flex-direction: column; /* Вертикальное расположение ссылок */
    align-items: center; /* Горизонтальное центрирование */
    justify-content: center; /* Вертикальное центрирование */
    margin: 0;
    list-style: none; /* Убираем маркеры списка */
	}
	.menu_open {
		display: block; /* Отображаем меню при наличии класса menu_open */
	}
	.header__menu {
    position: fixed;
    margin: 0;
    width: 320px;
    height: 823px;
    top: 50%;
    left: 79%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color:#292929;
	}
	.header__menu::backdrop {
		background-color: rgb(0, 0, 0 / 0.8);
	}
	ul a {
		margin-bottom: 50px;
	}
	.header-menu__btn, .header-menu__btn_close {
		display: flex;
		position: relative;
		z-index: 1;
		align-items: center;
		justify-content: flex-end;
		width: 30px;
		height: 22px;
		margin-top: 43px;
		cursor: pointer;
		background-color: transparent;
		border: none;
	}
	.header-menu__btn_close {
		display: none; /* Скрываем кнопку закрытия по умолчанию */
		position: absolute;
    top: 10px; /* Отступ от верхнего края меню */
    right: 10px; /* Отступ от правого края меню */
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Обеспечиваем, что кнопка будет выше меню */
	}
	.header-menu__btn-item {
    height: 2px;
    width: 100%; /* Устанавливаем ширину на 100% от родителя */
    background-color: #F1CDB3;
    transition: all 0.3s ease;
    position: relative; /* Устанавливаем относительное позиционирование */
    display: block; /* Убедитесь, что элемент отображается как блок */
}
.header-menu__btn-item::before,
.header-menu__btn-item::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%; /* Ширина псевдоэлементов должна соответствовать родителю */
    background-color: #F1CDB3;
    transition: all 0.3s ease;
    left: 0; /* Привязываем псевдоэлементы к левому краю родителя */
}
	.header-menu__btn-item::before {
		top: -8px; /* Верхняя полоска */
	}
	.header-menu__btn-item::after {
		bottom: -8px; /* Нижняя полоска */
	}
	/* Анимация кнопки при открытом меню */
	.menu_open .header-menu__btn-item {
		background-color: transparent; /* Скрываем среднюю полоску */
	}
	.menu_open .header-menu__btn-item::before {
		transform: rotate(45deg);
		top: 0; /* Перемещаем верхнюю полоску в центр и поворачиваем */
	}
	.menu_open .header-menu__btn-item::after {
		transform: rotate(-45deg);
		bottom: 0; /* Перемещаем нижнюю полоску в центр и поворачиваем */
	}
	.menu__item_active::after {
    display: block;
    content: '';
    border-top: 3px solid #F1CDB3;
    padding-top: 10px;
    width: 100%;
    left: 0;
}
	.scroll-block {
		position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
	}
	.menu__item {
    margin-bottom: 15px; /* Расстояние между элементами меню */
}

.menu__item:last-child {
    margin-bottom: 0; /* Убираем нижний отступ у последнего элемента */
}

.menu__link {
    color: #000; /* Цвет текста ссылок */
    text-decoration: none; /* Убираем подчеркивание */
    font-size: 18px; /* Размер текста */
}

.menu__link_active {
    font-weight: bold; /* Делаем активную ссылку жирной */
    color: #FAFAFA;
		 /* Цвет активной ссылки */
}
.menu__link {
	color: #FAFAFA;
}
.menu_open .menu__list {
    display: block; /* Отображаем список, когда меню открыто */
}
.menu_open .header-menu__btn {
	display: none; /* Скрываем кнопку бургера при открытом меню */
}
.menu_open .header-menu__btn_close {
	display: flex; /* Показываем кнопку закрытия при открытом меню */
}
.header__menu:not(.menu_open) {
	display: none; /* Скрываем меню, если класс menu_open не применяется */
}
}
@media (max-width: 320px) {
	.header__menu {
		margin: 0 0 0 236px;
	}
	.header__logo_title {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.header-menu-btn {
		display: none ;
	}
}
/* -------------END HEADER-------------------------- */
/* -------------MAIN BLOCK--------------------------- */
.main {
	flex: 1 1 auto;
}
/* -------------START NOT-ONLY-BLOCK--------------------- */
.not-only {
	background: radial-gradient(237.5% 111.8% at 0% 0%, rgb(91, 72, 58) 0%, rgb(38, 36, 37) 100%);
}
.not-only__container {
	display: flex;
}
.not-only__body {
	padding: 343px 0 243px 0;
	max-width: 460px;
	margin-right: 43px;
}
.not-only__body > *:not(:last-child) {
	margin: 0 0 42px 0;
}
.not-only__title {
	font: 400 44px/calc(57.2 / 44 * 100%) 'Georgia', arial, helvetica, sans-serif;
}
.not-only__text {
	font: 400 15px/calc(24 / 15 * 100%) 'Arial', arial, helvetica, sans-serif;
	color:#CDCDCD;
}
.not-only__image {
	width: 100%;
	height: 100%;
	left: 40px;
  top: 181px;
	object-position: right;
	max-width: 698px;
	left: 502px;
	margin-top: 180px;
}
.not-only__buttons_link {
	font: 400 17px/calc(22.1 / 17 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	background: #F1CDB3;
	border-radius: 100px;
	width: 207px;
  height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.not-only__container {
		display: flex;
		flex-direction: column;
		max-width: 569px;
	}
	.not-only__body {
    max-width: 460px;
    margin: 149px 0 0px 13px;
		padding: 0;
  }
  .not-only__title {
	  font: 400 44px / calc(57.2 / 44* 100%) 'Georgia', arial, helvetica, sans-serif;
	  max-width: 69%;
	  color: #FFFFFF;
  }
  .not-only__buttons_link {
	  font: 400 17px / calc(22.1 / 17* 100%) 'Georgia', arial, helvetica, sans-serif;
	  letter-spacing: 0.06em;
	  background: #F1CDB3;
	  border-radius: 100px;
	  width: 207px;
	  height: 52px;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin-left: 127px;
		margin-bottom: 103px;
  }
	.not-only__image {
    margin-top: 0px;
}
	.not-only__image_start-screen-puppy {
    width: 569px;
    height: auto;
    /* margin-top: 102px; */
    margin-left: 30px;
  }
	.not-only__image_start-screen-puppy {
		/* display: none; */
	}
}
/* ----------------------END BLOCK NOT-ONLY--------------- */
/* ----------------------START BLOCK ABOUT--------------- */
/* .about__container {
	display: flex;
} */
.about__body {
	width: 430px;
}
.about__text_description {
	font: 400 15px/calc(24 / 15 * 100%) 'Arial', arial, helvetica, sans-serif;
	text-align: left;
	margin-bottom: 25px;
}
.about__title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	text-align: left;
	margin-top: 91px;
	margin-bottom: 24px;
}
.about__image {
	height: 100%;
	margin-right: 120px;
	margin-left: 175px;
	margin-top: 80px;
	margin-bottom: 95px;
}
.about__image_img {
	width: 300px;
}
@media (max-width: 768px) {
	.about__container {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
	.about__image_img img {
		width: 300px;
    height: 408px;
	}
	.about__title {
    margin-top: 74px;
  }
	.about__image {
    margin-left: 118px;
    margin-top: 54px;
  }
}
/* ----------------------END BLOCK ABOUT--------------- */
/* ----------------------START BLOCK OUR-FRIENDS--------------- */
.our-friends {
	height: 877px;
	position: relative;
	background: #F6F6F6;
}
.our-friends__container {
	position: relative;
	align-items: center;
}
.our-friends__title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	text-align: center;
	padding-top: 80px;
	margin-bottom: 55px;
}
.our-friends__block {
	display: flex;
}
.our-friends__blok__btn-left {
	width: 52px;
	height: 52px;
	border: 2px solid #F1CDB3;
	border-radius: 100px;
	cursor: pointer;
	margin-top: 32px;
	margin-right: 54px;
}
.our-friends__blok__btn-right {
	width: 52px;
	height: 52px;
	border: 2px solid #F1CDB3;
	border-radius: 100px;
	cursor: pointer;
}
.our-friends__card {
	display: flex;
	flex-direction: column;
	background: #FAFAFA;
	margin-bottom: 60px;
	transition: background-color 0.3s ease;
	cursor: pointer;
	z-index: 1;
}
.our-friends__card:hover {
	background-color: #a10c0c2d;
}
.our-friends__card1 {
	margin-right: 88px;
}
.our-friends__card2 {
	margin-right: 88px;
}
.our-friends__card3 {
	margin-right: 53px;
}
.our-friends__card_image {
	width: 270px;
  height: 270px;
	margin-bottom: 32px;
}
.our-friends__card_text {
	font: 400 20px/calc(22.72 / 20 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	text-align: center;
	margin-bottom: 32px;
}
.our-friends__card_image-img {
	margin-bottom: 10px;
}
.our-friends__card_buttons {
	width: 187px;
	height: 52px;
	padding: 15px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	border: 2px solid #F1CDB3;
	z-index: 5;
  background-color: white;
	margin-bottom: 30px;
}
.our-friends__card_buttons_link {
	font: 400 17px/calc(22.1 / 17 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
}
.our-friends__card_buttons-know-the-rest {
	width: 261px;
	height: 52px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	background: #F1CDB3;
	margin: 0 auto;
	margin-bottom: 100px;
}
.our-friends__card_buttons_link-know-the-rest {
	font: 400 17px/calc(22.1 / 17 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
}
@media (max-width: 768px) {
	/* ._container {
		max-width: 708px;
		margin: 0 auto;
		padding: 0 30px 0 0;
		overflow-x: hidden;
	} */
	.our-friends__block {
		display: flex;
    width: 708px;
		margin: 0 auto;
  }
	.our-friends__card3 {
		display: none;
	}
	.our-friends__container {
    /* width: 708px; */
		/* margin: 0; */
		width: 708px;
    /* margin: 0; */
      padding: 0 0px 0 0px;   
  }
	.our-friends__title {
    margin-bottom: 61px;
}
	.our-friends__blok__btn-left {
    margin-top: 190px;
    margin-right: 12px;
  }
	.our-friends__blok__btn-right {
    margin-top: 191px;
	}
	.our-friends__card1 {
    margin-right: 40px;
  }
	.our-friends__card2 {
    margin-right: 12px;
  }
	.our-friends__card_image {
    margin-bottom: 29px;
}
}
/* ----------------END BLOCK OUR-FRIENDS------------------- */
/* ----------------START BLOCK HELP------------------------ */
.help__title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	text-align: center;
	padding-top: 80px;
}
.help__container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.help__block {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 54px 119px;
  margin: 52px 0 0 0;
}
.help__block_element {
	display: flex;
  flex-direction: column;
  align-items: center;
}
.help__element_text {
	font: 400 20px/calc(23 / 20 * 100%) 'Georgia', arial, helvetica, sans-serif;
	display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.06em;
  color: #545454;
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 768px) {
	.help__block {
		gap: 55px 122px;
	}
}

/* ------------------------------END BLOCK HELP---------------------- */
/* -------------------------------START BLOK in-addition__container----------------- */
.in-addition__container {
	display: flex;
	padding-top: 80px;
	margin-bottom: 18px;
}
.in-addition__body {
	width: 380px;
}
.in-addition__image {
	height: 100%;
	margin-left: 145px;
  margin-top: 106px;
	margin-bottom: 95px;
}
.in-addition__image {
	width: 505px;
	margin-right: 29px;
}
.in-addition__title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	margin-top: 97px;
	margin-bottom: 16px;
}
.in-addition__subtitle {
	font: 400 15px/calc(16.5 / 15 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	margin-bottom: 23px;
}
.in-addition__card {
	display: flex;
	width: 349px;
	height: 43px;
	top: 147px;
	padding: 10px 15px 10px 15px;
	gap: 10px;
	border-radius: 9px;
	opacity: 0px;
	background: #F1CDB3;
	margin-bottom: 20px;
}
.in-addition__number-card_img {
	width: 30px;
	height: 23px;
}
.in-addition__number-card_link {
	font: 400 20px/calc(23 / 20 * 100%) 'Georgia', arial, helvetica, sans-serif;
	display: inline-block;
	white-space: nowrap;
	letter-spacing: 0.06em;
	font-family: Georgia;
  text-align: left;
}   
.in-addition__text_description {
	font-family: Arial;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	color: #B2B2B2;
}
@media (max-width: 768px) {
	.in-addition__container {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
	.in-addition__image {
    width: 505px;
    margin: 0 auto;
		margin-bottom: 80px;
  }
	.in-addition__image_img{
	}
	.in-addition__text_description {
    margin-bottom: 60px;
  }
}
/* -------------------------END IN-ADDITION--------------------------- */
/* -------------------------FOOTER------------------------------------ */
.footer {
	background: radial-gradient(237.5% 111.8% at 0% 0%, rgb(91, 72, 58) 0%, rgb(38, 36, 37) 100%);
}
.footer__container {
	display: flex;
	max-width: 1200px;
}
.footer__questions {
	max-width: 279px;
	margin-top: 57px;
	margin-right: 140px;
}
.footer__questions_title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	color: #FFFFFF;
	margin-bottom: 40px;
}
.footer__visit {
	max-width: 300px;
	margin-top: 57px;
	margin-right: 141px;
}
.footer__visit_title {
	font: 400 35px/calc(45.5 / 35 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	margin-bottom: 40px;
	margin-bottom: 33px;
	color: #FFFFFF;
}
.footer__questions__email {
	margin-bottom: 40px;
}
.footer__questions__email-link,
.footer__questions__phone-link,
.footer__visit__adress-link1,
.footer__visit__adress-link2,
.footer__questions__email,
.footer__questions__phone, 
.footer__visit__adress1,
.footer__visit__adress2 {
	display: flex;
	align-items: center;
	gap: 0 20px;
	font: 400 20px/calc(23 / 20 * 100%) 'Georgia', arial, helvetica, sans-serif;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: #F1CDB3;

}
.footer__visit__adress-link1 {
	/* margin-bottom: 33px; */
}
.footer__puppy {
	margin-top: 36px;
}
.footer__puppy {
	padding-left: 20px;
}
@media (max-width: 768px) {
	.footer__container {
		max-width: 708px;
		flex-direction: row;
		padding: 0 30px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer__questions{
		/* max-width: 50%; */
    margin-top: 30px;
    margin-right: 60px
	}
	.footer__questions_title  {
    /* padding-left: 17px; */
		margin-bottom: 40px;
  }
	.footer__questions__email {
		/* padding-left: 17px; */
	}
	.footer__questions__phone {
		/* padding-left: 17px; */
	}
	.footer__visit {
		/* max-width: 50%; */
		margin-top: 30px;
		margin-right: 4px;
	}
	.footer__visit_title {
		/* padding-left: 17px; */
		margin-bottom: 30px;
	}
	.footer__visit__adress1 {
	  margin-bottom: 34px;
	}
	.footer__visit__adress2 {
	  margin-bottom: 28px;
	}
	.footer__visit__adress-img1 {
		/* padding-left: 7px; */
	}
	.footer__puppy {
		padding-left: 1px;
	}
}
