@font-face {
	font-family: 'Bellota';
	src: url(../fonts/Bellota-Bold.ttf) format('truetype');

	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/Montserrat-Bold.ttf) format('truetype');

	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype');

	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/Montserrat-Medium.ttf) format('truetype');

	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/Montserrat-Regular.ttf) format('truetype');

	font-weight: 400;
	font-style: normal;
}

html {
	font-size: 62.5%;
}


body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
 overflow-x: hidden;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 1.3;
	color: #150000;
}

i {
	font-style: unset;
}

a {
	text-decoration: none;
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
li {
	margin: 0;
	padding: 0;
}
p {
	margin-top: 17px; /* Верхний отступ */
	margin-bottom: 17px; /* Нижний отступ */
	margin-left: 0px; /* Левый отступ */
	margin-right: 20px; /* Правый отступ */
}

ul {
list-style-type: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}



.container {
	width: 100%;
	max-width: 1246px;

	margin: 0 auto;
	padding: 0 1.5rem;
}

.container2 {
	width: 100%;
	max-width: 800px;
	background-color: #f0f0f0; /* Замените на желаемый цвет фона */
	margin: 0;
	padding: 10px; /* Замените значение на нужные вам отступы */
	justify-content: flex-start;
	align-items: flex-start;
	border-radius: 10px; /* Закругление блока */
	color: #000000; /* Черный цвет шрифта */
	font-size: 16px; /* Размер шрифта */
}





/* SECTION */

.section {
	padding: 8rem 0 0 0;

	position: relative;
}

.section.section--price {
	background-color: #fff;
	padding-top: 3rem;
}

.section.section--faq {
	padding: 3rem 0 0 0;
}

.section--contacts {
	background-color: #e6e6e6;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 0;
}

.section__title {
	font-weight: 700;
	font-size: 48px;
	line-height: 59px;

	margin: 0 0 4rem 0;
}

 

.nav-toggle__item {
	display: block;
	width: 100%;
	height: 3px;

	background-color: #150000;

	position: absolute;
	top: 15px;
	right: 10px;
	bottom: 0;
	margin: auto;

	transition: background 0.2s linear;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
	content: "";
	width: 30px;
	height: 3px;

	background-color: #150000;

	position: absolute;
	left: 0;
	z-index: 1;

	transition: transform 0.2s linear;
}

.nav-toggle__item:before {
	top: -8px;
}

.nav-toggle__item:after {
	top: 8px;
}

.nav-toggle.active .nav-toggle__item {
	background: none;
}

.nav-toggle.active .nav-toggle__item:before {
	transform-origin: left top;
	transform: rotate(45deg) translateX(-2px);
	background-color: #ffcc00;
}

.nav-toggle.active .nav-toggle__item:after {
	transform-origin: left bottom;
	transform: rotate(-45deg) translateX(-3px);
	background-color: #ffcc00;
}

/* BURGER */

.burger {
	padding: 3rem 0 4rem 4rem;

	border-left: 1px solid #005AE9;
	border-bottom: 1px solid #005AE9;
	border-radius: 0 0 0 10px;

	width: 320px;

	display: none;
	position: absolute;
	top: 0;
	right: -30px;
	z-index: 100;

	background-color: #fff;
}
.burger-menu {
	display: none;
}
.burger.active {
	display: block;
}
/* Основные стили для шапки */
.header {
    background-color: #ffc107; /* Желтый фон */
    padding: 10px 20px;
    border-bottom: 4px solid #e0a800; /* Более темная желтая полоса */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Позволяет элементам переноситься на следующую строку */
}

/* Логотип */
.logo {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

/* Контактная информация */
.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Позволяет элементам переноситься на следующую строку */
}

.contact-info div {
    margin-left: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Сервисы */
.services {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Позволяет элементам переноситься на следующую строку */
    justify-content: center; /* Центрирует элементы по горизонтали */
}

.services a {
    margin: 10px; /* Уменьшаем отступы для мобильных устройств */
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.services img {
    width: 24px; /* Ширина иконки */
    height: 24px; /* Высота иконки */
    margin-right: 8px; /* Отступ между иконкой и текстом */
}

.services a:hover {
    text-decoration: underline;
}

.cart {
    background-color: #e0a800; /* Более темный желтый фон */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cart:hover {
    background-color: #c69500; /* Еще темнее при наведении */
}

/* Навигация */
.nav {
    background-color: #343a40 !important; /* Темный фон */
    padding: 10px 20px !important;
}

.nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.nav ul li {
    margin-right: 20px !important;
    position: relative !important;
}

.nav ul li a {
    color: #ffc107 !important; /* Желтый текст */
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.3s !important;
}

.nav ul li a:hover {
    color: #000 !important; /* Белый текст при наведении */
}

/* Стили для подменю */
.nav ul li ul {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #343a40 !important;
    padding: 10px !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    list-style: none !important;
    width: 300px !important; /* Ширина подменю */
}

.nav ul li:hover ul {
    display: block !important;
}

.nav ul li ul li {
    margin: 0 !important;
}

.nav ul li ul li a {
    color: #ffc107 !important;
    padding: 10px !important;
    display: block !important;
}

.nav ul li ul li a:hover {
    background-color: #495057 !important;
    color: #fff !important;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .header {
		position: relative;
        flex-direction: column;
        align-items: flex-start;
    }
	.burger-menu {
		cursor: pointer;
		position: absolute;
		right: 16px;
		top: 16px;
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 30px;
		height: 30px;
		z-index: 2;
	}
	.burger-menu span {
		width: 100%;
		height: 2px;
		background-color: #000;
	}
    .logo {
        margin-bottom: 10px;
    }

    .contact-info {
        margin-top: 10px;
    }

    .contact-info div {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .services {
        flex-direction: column;
        align-items: flex-start;
    }

    .services a {
        margin: 5px 0; /* Уменьшаем отступы для мобильных устройств */
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav ul li ul {
        position: static !important;
        box-shadow: none !important;
        width: 100% !important;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .header {
        padding: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .contact-info div {
        font-size: 14px;
    }

    .services a {
        font-size: 14px;
    }
}

			
.burger-header__title {
	font-size: 2.2rem;
	font-weight: 600;
	color: #150000;
	margin-bottom: 2rem;
}

.burger-header__logo {
	font-family: 'Bellota', cursive;
	color: #000;
	font-size: 4rem;
	padding: 0 .7rem 0 0;
	margin: 2rem 0 0 0;
}

.burger-nav__item.burger-nav__item-info {
	margin-top: 4rem;
}

.burger-nav__link {
	margin-bottom: 1rem;
}

.burger-nav__link:last-child {
	margin-bottom: 0;
}

.burger-nav__link:hover {
	color: #94378c;
}

.burger-nav__item-info .nav__link {
	padding: 0;
}

.burger-nav__link-item {
	display: flex;
	gap: 1rem;
}

.burger-nav__link-icon {
	position: relative;
	/* padding-left: 2.5rem; */
}

.burger-nav__link-icon img {
	display: block;
	height: auto;
	max-width: 100%;
}

/* INTRO */
.intro {
	padding: 21rem 0 19rem 0;

	background: url("../img/intro.webp") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;

	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro__inner {
	position: relative;

}

.intro__title {
	max-width: 782px;

	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 6.4rem;
	line-height: 77px;

}

.intro__subtitle {
	max-width: 545px;

	margin: 2rem 0 4rem 0;
 color: #ffffff;
 font-weight: 900;
}

.intro-button {
	background-color: yellow;
}

.item__title {
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 2rem;
	line-height: 24px;
}

.button {
	padding: 1.4rem 3.2rem 1.6rem;
	margin: 0;

	font-family: 'Montserrat', sans-serif;
	color: #fff;

	background: #ffcc00;
	border-radius: 10px;
	border: 2px solid transparent;

	cursor: pointer;

	transition: all .2s linear;
}

.button:hover {
	background: #fff;
	border-color: #ffcc00;
	color: #150000;
}

/* CHOOSE */

.choose {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}

.choose__item {
	display: flex;
	align-items: center;

	padding: 2rem;
	gap: 2rem;

	background: #EAF4FB;
	border-radius: 10px;
}

.choose__item-image {
	max-width: 80px;
}

.choose__item-image img {
	display: block;
	width: 80px;
	height: 80px;
}

.choose__item-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* .choose__item-title {} */

/* .choose__text {} */

/* TARIFF */

.tariff {
	display: flex;
	justify-content: space-between;

	min-width: 0;
}

.tariff__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	padding: 4rem;

	background: #EAF4FB;
	border-radius: 10px;

	width: 32%;

	transition: all .2s ease-in-out;

}

.tariff__item:hover {
	background: #ffcc00;
	color: #fff;
}

.tariff__item:hover .button {
	background-color: #fff;
	color: #150000;
}

.tariff__item .button:hover {
	background-color: rgba(132, 169, 201, 0.5);
	border-color: #fff;
	color: #fff;
}

.tariff__item-header {
	display: flex;
	justify-content: space-between;

	margin: 0 0 2rem 0;
}

.tariff__price {
	font-weight: 600;
	font-size: 2rem;

	color: #ffcc00;

	/* margin: 0 0 1rem 0; */
}

.tariff__item:hover .tariff__price {
	color: #FFD84F;
}

.tariff__item:not(.opened) .tariff__list {
	height: auto;
}

.tariff__item.opened .item__overflow::before,
.delivery__list.opened+.item__overflow::before {
	transform: rotate(315deg);
	top: 35%;
}

.tariff__list {
	list-style: none;

	display: flex;
	flex-direction: column;
	gap: 1rem;

	margin: 0 0 2rem 0;
}

.tariff__list-link {
	padding: 0 0 0 2.7rem;

	position: relative;
}

.tariff__list-link::before {
	content: "";
	mask-image: url("../img/tariff/check.svg");
	-webkit-mask-image: url("../img/tariff/check.svg");
	background-color: #150000;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;

	/* transform: translateY(-50%); */
}

.tariff__item:hover .tariff__list-link::before {
	background-color: #fff;
}

.tariff__overflow.item__overflow {
	display: none;
	margin: 0 0 2rem 0;
}

.tariff .button {
	width: fit-content;
	margin: 4rem 0 0 0;
}

/* SLIDER */

/* Слайдер */
.slick-slider {
	cursor: grabbing;
}

/* Ограничивающая оболочка */
.slick-list {
	overflow: hidden;
}

/* Лента слайдов */
.slick-track {
	display: flex;
	min-width: 0;
	gap: 2rem;
}

/* .reviews .slick-track,
.tariff .slick-track {
	gap: 2rem;
} */

/* Слайд */
/* .slick-slide {} */

/* .reviews__item.slick-slide {
	flex: 1 1 0;
} */

/* .slick-slide img {
	display: block;
	width: 100%;
} */

/* .slick-initialized .slick-slide {} */

/* Слайд активный (показывается) */
/* .slick-slide.slick-active {} */

/* Слайд основной */
/* .slick-slide.slick-current {} */

/* Слайд по центру */
/* .slick-slide.slick-center {} */

/* Клонированный слайд */
/* .slick-slide.slick-cloned {} */

/* Стрелка */
/* .slick-arrow {
	font-weight: 500;
	color: #000;
	font-size: 0;
	color: transparent;

	background-color: #D3E2FF;
	border-radius: 6rem;
	border: none;

	cursor: pointer;
	height: fit-content;
} */

/* .slick-arrow:hover {
	background-color: #b8cffc;
} */

/* .slick-arrow.slick-disabled:hover {
	cursor: not-allowed;
	background-color: #D3E2FF;
} */

/* Стрелка влево */
/* .slick-arrow.slick-prev,
.slick-arrow.slick-next {
	font-size: 0;
	position: relative;
} */

/* .slick-arrow.slick-prev {
	padding: 1.5rem 1.3rem 1.5rem 1.7rem;
} */

/* .slick-arrow.slick-next {
	padding: 1.5rem 1.7rem 1.5rem 1.3rem;
} */

/* .slick-arrow.slick-prev::before {
	content: "";
	display: inline-block;
	margin: 0 auto;


	width: 10px;
	height: 10px;

	border-top: 2px solid rgba(0, 0, 0);
	border-right: 2px solid rgba(0, 0, 0);

	transform: rotate(225deg);
} */

/* .slick-arrow.slick-next::before {
	content: "";
	display: inline-block;
	margin: 0 auto;

	width: 10px;
	height: 10px;

	border-top: 2px solid rgba(0, 0, 0);
	border-right: 2px solid rgba(0, 0, 0);

	transform: rotate(45deg);
} */

/* Стрелка не активная */
/* .slick-arrow.slick-disabled::before {
	border-top: 2px solid rgba(0, 0, 0, .5);
	border-right: 2px solid rgba(0, 0, 0, .5);
} */

/* .slider__item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
} */

/* PORTFOLIO */

.portfolio {
	padding: 0 0 5rem 0;

	display: flex;
	/* display: grid; */
	gap: 2rem;
	/* grid-template-columns: 1fr 3fr; */
}

.portfolio__content {
	display: flex;
	gap: 2rem;
	flex-direction: column;
	align-items: center;
}

/* display: grid;
	grid-template-areas:
			"a a b"
			"c d f"; */


.portfolio__content-down {
	display: flex;
	gap: 2rem;
}

.portfolio__left {
	display: flex;

}

.portfolio__right {
	display: flex;
	flex-direction: column;

	gap: 2rem;
}

.portfolio__item-content {
	margin: auto 0;

}

/* .portfolio__content .portfolio__item:nth-child(1) {
	grid-area: a;
}

.portfolio__content .portfolio__item:nth-child(2) {
	grid-area: b;
}

.portfolio__content .portfolio__item:nth-child(3) {
	grid-area: c;
}

.portfolio__content .portfolio__item:nth-child(4) {
	grid-area: d;
}

.portfolio__content .portfolio__item:nth-child(5) {
	grid-area: f;
	padding: 5rem 0;
} */

#name__study {
	margin: auto 0;
}

/* .portfolio__content .portfolio__item:nth-child(6) {} */

.portfolio__item img {
	display: block;
	max-width: 100%;
	height: auto;

}

.portfolio__item-title,
.portfolio__link {
	max-width: 289px;
}

.portfolio__link {
	margin-top: 2rem;
}

.portfolio__link a {
	font-weight: 700;
	font-size: 4.8rem;
	color: #ffcc00;

	word-break: break-all;

}

/* PRICE */

.price {
	max-width: 1113px;
	position: relative;
	z-index: 5;
	padding: 0 0 6rem 0;
}

.price__title {
	position: relative;
	z-index: 5;
}

.price__content {
	display: flex;
}

.price__left {
	width: 349px;

	padding: 4rem 4rem 4rem 2rem;

	background-color: #fff;
}

.service__list {
	list-style: none;

	display: flex;
	flex-direction: column;
	gap: 1rem;

	width: 289px;
}

.service__list-link {
	display: flex;

	position: relative;

	padding: .8rem 0 1rem 1.6rem;
	border-left: 4px solid transparent;

	cursor: pointer;
}

.service__link-body {
	display: none;
}

.service__link-header {
	display: flex;
	gap: 1rem;
	width: 100%;

	transition: all .5s linear;
}

.service__list-link.active {
	border-left: 4px solid #FFD84F;
	color: #ffcc00;
}

.service__list-link.active img {
	filter: invert(73%) sepia(66%) saturate(4535%) hue-rotate(183deg) brightness(87%) contrast(82%);
}

.price__image img {
	display: block;
	width: 20px;
	height: 20px;
}

.price__right {
	display: flex;
	justify-content: space-between;

	width: 68.6%;

	padding: 4rem 10rem 4rem 4rem;

	background-color: #D1E7FF;

}

.price__list-link {
	padding: .8rem 0 1rem 0;
	display: flex;
	justify-content: space-between;
}

.price__list {
	list-style: none;

	display: flex;
	flex-direction: column;
	gap: 1rem;

	width: 100%;
}

.price__list.price__list-price {
	align-items: flex-end;
}

.service__name {
	max-width: 47.1rem;
}

.service__price {
	white-space: nowrap;
}

.price__footer {
	padding: 4rem 11rem 4rem 4rem;
	margin: 5rem 0 0 0;

	background-color: #FFD84F;
	border-radius: 1rem;

	position: relative;

	/* overflow: hidden; */
}

.popup .price__footer {
	margin: 0;
}

.price__footer-title {
	margin: 0 0 1rem 0;
}

.price__footer-img {
	position: absolute;
	right: -30px;
	bottom: 0px;
	z-index: 1;
}

.price__footer-img img {
	display: block;
	max-width: 332px;
	height: auto;
}

.price__form {
	margin: 2rem 0 1rem 0;

	position: relative;
	z-index: 5;
}

.form {
	display: flex;
	/* justify-content: space-between; */
	align-items: center;
	gap: 2rem;
}

.form__item {
	position: relative;
}

.form__item:nth-child(3) {
	width: 100%;
}

.form__input {
	padding: 1.5rem 0 1.5rem 2rem;
	background: #FFFFFF;

	border: 2px solid transparent;
	border-radius: 10px;

	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
}

 

.form__input::placeholder {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	color: rgba(0, 0, 0, 0.5);
}

.form__input:focus {
	outline: none;
	border-color: #ffcc00;
}

.select {
	width: 100%;
	padding: 1.5rem 0 1.5rem 2rem;
	position: relative;

	border: 2px solid transparent;
	border-radius: 10px;

	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.6rem;

	appearance: none;
}

.form__item:nth-child(3):after {
	content: "";
	display: block;

	border-style: solid;
	border-width: 7px 3.5px 0 3.5px;
	border-color: #7F7F7F transparent transparent transparent;

	pointer-events: none;

	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
}

.select:focus {
	outline: none;
	border-color: #ffcc00;
}

.select option:disabled+option::selection {
	color: #7F7F7F;
}

.price__description {
	font-weight: 400;
	font-size: 1.2rem;
	color: rgba(0, 0, 0, .5);
}

.price__description a {
	text-decoration: underline;
}

/* FAQ */

.faq__title {
	margin: 0 0 4rem 0;
}

.faq {
	display: flex;
	justify-content: space-between;
	gap: 5rem;
}

.faq__content {
	display: inline-block;
	width: 48%;
}

.faq-accordion {
	max-width: 560px;
}

.faq-accordion.active .faq-accordion__item:nth-child(n + 5) {
	display: block;
}

.faq-accordion__item {
	border-bottom: 2px solid #D1E7FF;
}

.faq-accordion__item:first-child {
	border-top: 2px solid #D1E7FF;
}

.faq-accordion__item.active .faq-accordion__content {
	display: block;
}

.faq-accordion__item.active {
	border-bottom: 2px solid #ffcc00;
}

.faq-accordion__item.active .faq-accordion__header::after {
	background: url("../img/faq/minus.svg") center no-repeat;
}

.faq-accordion__header {
	padding: 2rem 3rem 2rem 0;
	position: relative;

	cursor: pointer;
}

.faq-accordion__header::after {
	content: "";
	display: block;

	width: 34px;
	height: 34px;
	background: url("../img/faq/plus.svg") center no-repeat;

	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;

	transform: translateY(-50%);

	transition: all 0.2s linear;
}

.faq-accordion__content {
	padding: 0 0 2rem 0;
	display: none;
	max-width: 85%;
}

/* .faq-accordion__title {} */

.item__overflow {
	display: inline-block;

	position: relative;

	margin: 2rem 0 0 0;
	padding: 0 0 0 3rem;

	color: #005AE9;
}

.item__overflow:hover {
	text-decoration: underline;
}

.item__overflow::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid #005AE9;
	border-right: 1px solid #005AE9;
	position: absolute;
	top: 5%;
	left: 8px;
	z-index: 1;
	transform: rotate(135deg);
	transition: all 0.3s linear;
}

.faq-accordion.active+.item__overflow::before {
	transform: rotate(315deg);

	top: 35%;
}

.faq__image {
	position: relative;
	width: 50%;
	display: block;
}

.faq__image img {
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

/* CONTACTS */

.contacts {
	padding: 4rem 0;

	position: relative;
}

.contacts__item {
	max-width: 384px;
	padding: 4rem;

	background: #FFFFFF;
	border-radius: 10px;
}

.contacts__content {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;

	margin: 2rem 0 0 0;
}

.contacts__content-item {
	display: flex;
	gap: .8rem;
	align-items: center;
}

.contacts__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.contacts__item-image img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

/* FOOTER */

.footer {
	background-color: #212121;
	color: #fff;

	padding: 3rem 0 4rem 0;
}

.footer__body {
	display: flex;
	justify-content: space-between;
	align-items: center;

	margin: 0 0 2.5rem 0;
}

.footer__logo {
	font-family: 'Bellota', sans-serif;
	font-weight: 700;
	font-size: 2.4rem;

	text-transform: uppercase;
}

.footer__list {
	display: flex;
	gap: 10rem;
}

.footer__list-item {}

.footer__list-item:hover {
	color: #ffcc00;
}

.footer__description {
	display: flex;
	justify-content: space-between;

	color: rgba(255, 255, 255, 0.5);

	font-weight: 400;
}

.copyright {
	display: flex;
	gap: 1rem;
}

.copyright__item {}

.copyright__item:first-child {
	padding-right: 1rem;
	border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.copyright__item:hover,
.law:hover {
	color: rgba(71, 142, 204, .5);
}

/* DEBUG */

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
	grid-auto-rows: 6rem;
}

.tests {
	display: grid;
	grid-template-areas:
			"first second second third" 1fr 2fr 1fr
			"first fourth fifth sixth" 1fr;
}

.test {}

.test img {
	display: block;
	max-width: 100%;
	height: auto;
}

.test1 {
	grid-area: first;
}

.test2 {
	grid-area: second;
}

.test3 {
	grid-area: third;
}

.test4 {
	grid-area: fourth;
}

.test5 {
	grid-area: fifth;
}

.test6 {
	grid-area: sixth;
}




@media (max-width: 1440px) {}

@media (max-width: 1230px) {
	/* TARIFF */

	.tariff__item-header {
			flex-direction: column;
			gap: 1rem;
	}

	/* PRICE */

	.price__right {
			padding: 4rem;
	}

	.price__footer-img {
			display: none;
	}

	.price__footer {
			padding: 4rem;
	}

	/* FOOTER */

	.footer__body {
			gap: 5rem;
	}

	.footer__list {
			gap: 7rem;
	}
}

@media (max-width: 993px) {
	/* HEADER */

	.header__inner {
			padding-right: 6rem;
	}

	.nav__item {
			display: none;
	}

	.nav__item.nav__item-info {
			display: flex;
	}

	.nav-toggle {
			display: block;
	}

	.burger-nav__item.burger-nav__item-info {
			display: none;
	}

	/* CHOOSE */

	.choose {
			grid-template-columns: 1fr 1fr;
	}

	/* TARIFF */

	.tariff__item {
			padding: 3rem;
	}

	/* PRICE */

	.form {
			flex-wrap: wrap;
			justify-content: space-between;
	}

	[type="text"],
	[type="tel"] {
			max-width: 100%;
			width: 100%;
	}

	.form__item {
			width: 48%;
	}

	/* FAQ */

	.faq__content {
			max-width: 100%;
			width: 80%;
	}

	.faq__image {
			display: none;
	}

	/* FOOTER */

	.footer__list {
			gap: 2.6rem;
	}
}

@media (max-width: 770px) {
	/* INTRO */

	.intro {
			padding: 9rem 0 9.5rem 0;
	}

	.intro__title {
			font-size: 4.8rem;
			line-height: 59px;
	}

	/* TARIFF */

	.tariff {
			flex-direction: column;
			gap: 1.5rem;
	}

	.tariff__item {
			width: 100%;
	}

	/* PRICE */

	.price__title {
			margin: 0 0 3rem 0;
			padding: 0 2rem;
	}

	.price__content {
			flex-direction: column;
	}

	.price__left,
	.service__list {
			width: 100%;
			background-color: #EAF4FB;
	}

	.price__left {
			padding: 0;
	}

	.price__right {
			display: none;
	}

	.price__list-link {
			padding: 0;
	}

	.price__list-link .service__name {
			max-width: 352px;
	}

	.price__list-link .service__price {
			margin-left: 2rem;
			display: block;
	}

	.service__list-link {
			padding: 0;
			border: 0;

			flex-direction: column;
	}

	.service__list-link.active {
			border: 0;
	}

	.service__list-link.active .service__link-header {
			margin-bottom: 1rem;
	}

	.service__list-link.active .service__link-body {
			display: block;
			color: #150000;
	}

	.service__link-header {
			padding: 0.8rem 0 1rem 0;
			font-weight: 600;
			font-size: 1.8rem;

			position: relative;
	}

	.service__link-header span {
			max-width: 290px;
	}

	.service__link-header:after {
			content: "";
			display: block;
			width: 8px;
			height: 8px;
			border-top: 2px solid #000;
			border-right: 2px solid #000;
			position: absolute;
			top: 50%;
			right: 0;
			z-index: 1;
			transform: translateY(-50%) rotate(135deg);
	}

	.service__list-link.active .service__link-header:after {
			transform: translateY(-50%) rotate(-45deg);
			margin-top: 5px;
			border-color: #1298BD;
	}

	.form__item {
			width: 47%;
	}

	/* FAQ */

	.faq__content {
			width: 100%;
	}

	/* CONTACTS */

	.section--contacts {
			margin-bottom: 206px;
	}

	.section--contacts .container {
			padding: 0;
	}

	.contacts__item {
			position: relative;
			bottom: -247px;
			max-width: 100%;
			padding: 2rem;
			border-radius: 0;
			/* border: 1px dotted #000; */
	}

	/* FOOTER */

	.footer__body {
			align-items: flex-start;
	}

	.footer__list {
			flex-direction: column;
			gap: 1rem;

			margin: 0 auto;
	}

	.footer__description {
			flex-direction: column;
			gap: 1rem;
	}
}

@media (max-width: 575px) {

	.section__title {
			font-size: 3.0rem;
			line-height: 1.3;
			margin: 0 0 2rem 0;
	}

	/* HEADER */

	.header {
			padding: 1.5rem 0 0 0;
	}

	.header__inner {}

	/* INTRO */

	/* .intro {
			background-position: unset;
			background-size: contain;

			padding: 21rem 0 0 0;

			height: auto;
	} */

	.intro__title {
			font-size: 3.2rem;
			line-height: 39px;
	}

	.intro__subtitle {
			font-size: 1.8rem;
	}

	/* CHOOSE */

	.choose {
			grid-template-columns: 1fr;
			gap: 1rem;
	}

	/* PRICE */

	.section.section--price .container {
			padding: 0;
	}

	.service__link-header span {
			max-width: 234px;
	}

	.form__item {
			/* max-width: 100%; */
			width: 100%;
	}

	.price__content,
	.price__footer {
			padding: 0 2rem 0 2rem;
	}

	.price__footer {
			padding: 2rem;
			border-radius: 0;
	}

	.price__footer-title {
			line-height: 1.3;
	}

	/* FOOTER */

	.copyright {
			flex-direction: column;
			gap: 1rem;
	}

	.copyright__item:first-child {
			border: none;
	}
}

@media (max-width: 400px) {
	.nav {
			display: none;
	}

	.burger-nav__item.burger-nav__item-info {
			display: flex;
	}

	/* CHOOSE */

	.choose__item-image {
			max-width: 40px;
	}

	.choose__item-image img {
			display: block;
			width: 40px;
			height: 40px;
	}

	.choose__text {
			display: none;
	}
}

/* выпадающее меню */
.nav__dropdown {
	position: relative;
}

/* Стиль для элемента, по которому происходит клик */
.nav__dropdown-toggle {
	cursor: pointer;
} 

/* Стиль для выпадающего меню */
.nav__dropdown-menu {
	display: none;
	position: absolute;
	width: 340px;
	top: 100%; /* Положение меню прямо под элементом */
	left: 0;
	z-index: 100; /* Обновленное значение z-index для корректного отображения поверх других элементов */
	padding: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	margin-top: 1px; /* Уменьшение разрыва между пунктом меню и выпадающим списком */
}

/* Стиль для элементов внутри выпадающего меню */
.nav__dropdown-menu li {
	margin-bottom: 5px;
}

/* Показываем меню при наведении на родительский элемент или на само меню */
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
	display: block;

}

/* Дополнительный стиль для активного меню (если нужно) */
.nav__dropdown:hover .nav__dropdown-toggle {
	/* Можно добавить стили для активного состояния, например, изменить цвет или добавить подчеркивание */

}




/* Дополнительные стили для КАТАЛОГА */
* {
box-sizing: border-box;
}
body3 {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
background-color: #f7f8fc;
font-family: "Roboto", sans-serif;
color: #10182f;
}
.container3 {
 display: flex;
	flex-wrap: wrap;
	justify-content: space-around; /* Изменено значение */
	margin: 20px; /* Добавлен отступ с обеих сторон контейнера */
}

.card {
	margin: 10px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	width: calc(33.33% - 20px); /* Рассчитываем ширину блока с учетом отступов */
	flex: 1 0 30%; /* Добавляем гибкость для адаптивности на мобильных устройствах */
}

.card-header img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 20px;
	min-height: 250px;
}

.tag {
	background: #cccccc;
	border-radius: 50px;
	font-size: 12px;
	margin: 0;
	color: #fff;
	padding: 2px 10px;
	text-transform: uppercase;
	cursor: pointer;
}

.tag-teal {
	background-color: #47bcd4;
}

.tag-purple {
	background-color: #5e76bf;
}

.tag-pink {
	background-color: #cd5b9f;
}

.card-body p {
	font-size: 13px;
	margin: 0 0 40px;
}

.user {
	display: flex;
	margin-top: auto;
}

.user img {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.user-info h5 {
	margin: 0;
}

.user-info small {
	color: #545d7a;
}
.nav-close {
	display: none;
}
.unique-nav .unique-dropdown:hover > .unique-dropdown-content {
	display: block !important;
}
.modal {
	z-index: 10 !important;
}
/* Медиазапросы для мобильных устройств */
@media (max-width: 768px) {
	.choose__item {
		padding: 1rem;
	}
	.card {
		flex: 0 1 100%
	}
	.portfolio__left {
		flex-direction: column;
		gap: 8px;
	}
	.card-body {
		min-height: 180px;
	}
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
	.unique-nav.active .nav-close {
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 30px;
		height: 30px;
		position: absolute;
		top: 16px;
		right: 16px;
		cursor: pointer;
	}
	
	.nav-close span {
		position: relative;
		width: 100%;
		height: 2px;
		background-color: #ffc107;
	}
	.nav-close span:nth-of-type(1) {
		transform: rotate(45deg);
		top: 13px;
	}
	.nav-close span:nth-of-type(2) {
		transform: rotate(-45deg);
  		top: 7px;
		
	}
	.unique-nav.active {
		display: block;
	}

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info div {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .services {
        flex-direction: column;
        align-items: flex-start;
    }

    .services a {
        margin: 5px 0;
    }

    .nav {
        display: none; /* Показываем меню на мобильных устройствах, когда открыто */
        position: fixed;
        /* top: 100%; */
		top: 0;
		height: 100vh;
        left: 0;
        right: 0;
        background-color: #343a40;
        z-index: 1000;
    }

    .menu-toggle {
        display: block; /* Показываем кнопку на мобильных устройствах */
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .contact-info {
        font-size: 12px;
    }

    .services img {
        width: 20px;
        height: 20px;
    }
}

/* Секция акций */
.section--promotions {
    padding: 40px 0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%); /* Мягкий градиент */
}

.promotions__title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotions__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #BC8BCC; /* Цвет из вашей темы */
    margin: 8px auto 0;
    border-radius: 2px;
}

.promotions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 столбца */
    gap: 15px; /* Уменьшенный зазор */
    max-width: 1000px; /* Уменьшена максимальная ширина */
    margin: 0 auto;
}

.promotion__card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 15px; /* Уменьшенные отступы */
    min-height: 300px; /* Фиксированная высота для прямоугольной формы */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(188, 139, 204, 0.15);
}

.promotion__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.promotion__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 120px; /* Уменьшенная высота изображения */
}

.promotion__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion__card:hover .promotion__image {
    transform: scale(1.03); /* Меньший зум для компактности */
}

.promotion__title {
    font-size: 1.1rem; /* Уменьшенный шрифт */
    font-weight: 600;
    margin: 12px 0 8px;
    color: #333;
    line-height: 1.2;
}

.promotion__description {
    font-size: 0.85rem; /* Уменьшенный шрифт */
    color: #555;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.4;
}

.promotion__button {
    display: inline-block;
    padding: 8px 20px; /* Уменьшенные отступы */
    background: #ffc107; /* Ваш цвет кнопок */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.promotion__button:hover {
    background: #e0a800; /* Темнее для ховера */
    transform: scale(1.03);
}

/* Адаптивная верстка */
@media (max-width: 768px) {
    .promotions__grid {
        grid-template-columns: 1fr; /* 1 столбец на мобильных */
        gap: 10px;
    }

    .promotions__title {
        font-size: 1.8rem;
    }

    .promotion__card {
        padding: 12px;
        min-height: 280px; /* Чуть меньше для мобильных */
    }

    .promotion__title {
        font-size: 1rem;
    }

    .promotion__description {
        font-size: 0.8rem;
    }

    .promotion__button {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .promotions__title {
        font-size: 1.6rem;
    }

    .promotion__image-wrapper {
        height: 100px; /* Еще меньше для маленьких экранов */
    }
}



/* Секция команды */
.wprt-section {
    padding: 40px 0;
    background: #ffffff;
}

.featured-title-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.featured-title-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #BC8BCC;
    margin: 8px auto 0;
    border-radius: 2px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 карточки в ряд */
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.employee {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 15px;
    min-height: 300px; /* Прямоугольная форма */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(188, 139, 204, 0.15);
}

.employee:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.employee__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 180px; /* Компактная высота изображения */
}

.employee__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.employee:hover .employee__image {
    transform: scale(1.03);
}

.employee__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 12px 0 5px;
    line-height: 1.2;
}

.employee__position {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr); /* 2 карточки на планшетах */
        gap: 10px;
    }

    .employee {
        min-height: 280px;
    }

    .employee__image-wrapper {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .team-container {
        grid-template-columns: 1fr; /* 1 карточка на мобильных */
        gap: 8px;
    }

    .employee {
        min-height: 260px;
        padding: 12px;
    }

    .employee__image-wrapper {
        height: 140px;
    }

    .employee__name {
        font-size: 1rem;
    }

    .employee__position {
        font-size: 0.8rem;
    }
}

.services-table {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            border-collapse: collapse;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        .services-table th, .services-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .services-table th {
            background-color: #4CAF50;
            color: white;
            font-weight: bold;
        }
        .services-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .services-table tr:hover {
            background-color: #f1f1f1;
        }
        .services-table a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s;
        }
        .services-table a:hover {
            color: #003366;
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .services-table th, .services-table td {
                padding: 8px;
                font-size: 14px;
            }
        }
		
#whatsapp_widget {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 68px;
    height: 68px;
    background-color: #fdd835; /* Желтый цвет */
    border-radius: 16px; 
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.25);
}

#whatsapp_widget svg {
    margin: 2px 1px 0 0;
    transition: height 0.4s;
    height: 71%;
    fill: #212121; /* Темно-серый цвет для лучшего контраста */
}

#whatsapp_widget:hover svg {
    height: 76%;
}

#whatsapp_widget > span {
    color: #212121; /* Темно-серый цвет для текста */
    margin-right: 10px;
    font-size: 22.666666666667px;
}

#whatsapp_widget {
    width: unset;
    padding: 0 0 0 15px;
}

#whatsapp_widget {
    animation: 3s radial-pulse 10s infinite;
}

@keyframes radial-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
}

/* Стили для кнопки */
        #scrollToTopBtn {
            position: fixed;
            bottom: 100px;
            right: 20px;
            display: none; /* Изначально скрыта */
            background-color: #ffcc00;
 
            color: #000000;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
        }

        /* Показываем кнопку на экранах с шириной больше 768px */
        @media (min-width: 768px) {
            #scrollToTopBtn {
                display: block;
            }
        }
/* Общий стиль футера */
.footer {
            background-color: #343a40; /* Темный фон */
            color: #fff;
            padding: 30px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer h3 {
            margin-top: 0;
            color: #ffc107; /* Желтый цвет */
            font-size: 1.2em;
        }

        .footer .column {
            flex: 1;
            min-width: 200px;
        }

        .footer .column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer .column ul li {
            margin-bottom: 10px;
        }

        .footer .column ul li a {
            color: #ffc107; /* Желтый текст */
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s, background-color 0.3s;
            display: inline-block;
            padding: 5px;
            border-radius: 5px;
        }

        .footer .column ul li a:hover {
            color: #fff; /* Белый текст при наведении */
            background-color: #495057; /* Темный фон при наведении */
        }

        .footer .highlight {
            font-weight: bold;
            color: #ffc107;
        }

        .footer .highlight a {
            color: #ffc107; /* Желтый текст */
            text-decoration: none;
        }

        .footer .highlight a:hover {
            color: #fff; /* Белый текст при наведении */
            text-decoration: underline;
        }

        .footer .social-media {
            margin-top: 20px;
        }

        .footer .social-media img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            vertical-align: middle;
        }

        .footer .disclaimer {
            font-size: 0.9em;
            margin-top: 20px;
        }

        .footer .disclaimer a {
            color: #ffc107;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .footer .disclaimer a:hover {
            text-decoration: underline;
            color: #fff;
        }
		
 .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: #f5f7fa; /* Light pleasant blue-gray */
    color: #2d3748; /* Dark gray for text */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  }

  .cookie-content {
    max-width: 1200px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie-banner a {
    color: #3182ce; /* Soft blue for links */
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .cookie-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .cookie-btn.accept {
    background: #48bb78; /* Soft green */
    color: #fff;
  }

  .cookie-btn.accept:hover {
    background: #38a169;
  }

  .cookie-btn.decline {
    background: #e53e3e; /* Soft red */
    color: #fff;
  }

  .cookie-btn.decline:hover {
    background: #c53030;
  }

  .hidden {
    display: none;
  }