/* 1) Базовые сбросы */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	min-height: 100dvh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	background: var(--bg);
}

img,
svg,
video,
canvas,
audio,
iframe {
	display: block;
	max-width: 100%;
	height: 100%;
	width: 100%;
    	-o-object-fit: cover;
    	object-fit: cover;
}
img,svg {
    width: auto;
    height: auto;
}
picture {
	display: contents;
}

ul,
ol,
menu {
	list-style: none;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	vertical-align: top;
	font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

b,
strong {
	font-weight: 600;
}

pre,
code,
kbd,
samp {
	font: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
}

button,
[role="button"] {
	cursor: pointer;
}

button:disabled,
[disabled] {
	cursor: not-allowed;
}

textarea {
	resize: vertical;
}

input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: none;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

.wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	overflow: hidden;
	min-height: 100dvh;
	position: relative;
}
.no-scroll{
    overflow: hidden;
}
.container {
	max-inline-size: 1920px;
	margin: 0 auto;
	width: 100%;
}

:root {
	/* Бэкграунды */
	--bg: #ffffff;
	--bg-muted: #f7f7f7;
	/* светло-серый из палитры “заполнения” */
	--footer-bg: #111111;
	/* “чёрный футер” */

	/* Текстовые цвета (из палитры “Текст/элементы”) */
	--text-primary: #090714;
	/* основной текст на светлом */
	--text-secondary: #626262;
	/* вторичный текст/подзаголовки */
	--text-inverse: #ffffff;
	/* текст на тёмном */
	--text-muted: rgba(9, 7, 20, 0.6);
	/* неактивные/пояснения */
	--text-disabled: rgba(9, 7, 20, 0.38);

	/* Линии/границы (из “серый/линия”: #090714 @ 10%) */
	--border: rgba(9, 7, 20, 0.1);

	/* Ссылки/фокус (если нужны кастомные — переопредели в теме) */
	--link: #090714;
	--focus-outline: rgba(9, 7, 20, 0.32);
}

/* Опционально: тёмная тема */
[data-theme="dark"] {
	--bg: #111111;
	--bg-muted: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.72);
	--text-inverse: #090714;
	--text-muted: rgba(255, 255, 255, 0.56);
	--text-disabled: rgba(255, 255, 255, 0.4);
	--border: rgba(255, 255, 255, 0.12);
	--link: #ffffff;
	--focus-outline: rgba(255, 255, 255, 0.45);
}

/* ===========================
   Утилиты (по желанию)
   =========================== */

.text-primary {
	color: var(--text-primary);
}

.text-secondary {
	color: var(--text-secondary);
}

.text-muted {
	color: var(--text-muted);
}

.text-inverse {
	color: var(--text-inverse);
}

.border {
	border: 1px solid var(--border);
}

.border-top {
	border-top: 1px solid var(--border);
}

.border-bottom {
	border-bottom: 1px solid var(--border);
}

main {
	flex: 1 0 auto;
	padding-top: 82px;
	padding-bottom: 150px;
}

.main,
.main__body {
	display: flex;
	flex-direction: column;
	row-gap: 150px;
}

.footer {
	flex-shrink: 0;
	margin-top: auto;
}

.p-cont {
	padding: 0px 140px !important;
}

.link__map {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	text-decoration: none;
	border-bottom: 1px solid #090714;
	padding-bottom: 2px;
}


.breadcrumbs {
	margin-bottom: 20px;
	padding-top: 60px;
	font-size: 14px;
	font-weight: 300;
	color: #626262;
	text-decoration: none;
}

.breadcrumbs a {
	font-size: 14px;
	font-weight: 300;
	color: #626262;
	text-decoration: none;
}

.breadcrumbs__item {
	color: inherit;
	text-decoration: none;
}
 

.breadcrumbs__item--current {
	color: #090714;
}

.swiper-button-prev,
.swiper-button-next {
	transition: all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: white;
}

.swiper-button-prev:before {
	transition: border-color .3s ease;
}

.swiper-button-prev:hover:before,
.swiper-button-next:hover:before {
	border-color: #090714;
}

@media ((max-width: 1920px) and (min-width: 650px)) {

	.news .p-cont,
	.tarrifs-swiper .p-cont {
		padding-right: 0 !important;
	}


}

@media (max-width: 1920px) {
	.p-cont {
		padding: 0px clamp(5rem, -6.25rem + 12.5vi, 8.75rem) !important;
	}

	.breadcrumbs {
		padding-top: clamp(1.063rem, -0.044rem + 3.162vi, 3.75rem);
	}

	.main,
	.main__body {
		row-gap: clamp(8.75rem, 6.875rem + 2.083vi, 9.375rem);
		padding-bottom: clamp(8.75rem, 6.875rem + 2.083vi, 9.375rem);
	}
}

@media (max-width: 1440px) {
	.p-cont {
		padding: 0 clamp(3.75rem, 0rem + 4.167vi, 5rem) !important;
	}

	.breadcrumbs {
		padding-top: 40px;
	}

}

@media (max-width: 1280px) {
	.p-cont {
		padding: 0 clamp(2.5rem, 0.625rem + 3.906vi, 3.75rem) !important;
	}


	.main,
	.main__body {
		row-gap: clamp(7.5rem, -2.5rem + 12.5vi, 8.75rem);
		padding-bottom: clamp(7.5rem, -2.5rem + 12.5vi, 8.75rem);
	}
}

@media (max-width: 768px) {
	.p-cont {
		padding: 0px clamp(1.25rem, 0.147rem + 4.902vi, 2.5rem) !important;
	}

	.main,
	.main__body {
		row-gap: clamp(5rem, 2.794rem + 9.804vi, 7.5rem);
		padding-bottom: clamp(5rem, 2.794rem + 9.804vi, 7.5rem);
	}
}

@media (max-width: 650px) {
	.main {
		padding-top: 57px;
	}
}


.notify__popup {
    position: fixed;
    background-color: #00000070;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 111;
    padding: 0px 20px;
    display: none;
}
.popup__body {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 270px;
    background-color: white;
    backdrop-filter: blur(20px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;

}
.notify__popup.active{
    display: flex;
    
}
.popup-open{
    overflow: hidden;
}
.popup__close {
 position: absolute;
 right: 34px;
 top: 30px;
}
.popup__content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.popup__title {
    font-size: 32px;
    font-family: var(--font-headline);
    width: 100%;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 110%;
    text-align: center;
    max-width: 320px;
    color: #09714;
}
.popup-text__block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}
.popup__text {
    line-height: 110%;
    font-size: 22px;
        color: #09714;
    font-weight: 400;
}

.headline-2__title{
    font-size: 48px;
}
@media(max-width: 1920px){
    .headline-2__title{
    font-size: clamp(2rem, 1.588rem + 1.176vi, 3rem)
}
}
@media(max-width: 768px){
        .popup__title{
        font-size: clamp(1.5rem, 0.897rem + 2.299vi, 2rem);
    }
    .popup__text{
        font-size: clamp(1.125rem, 0.823rem + 1.149vi, 1.375rem);
    }

}

@media(max-width: 560px){
        .popup__close{
        top: 20px;
        right: 20px;
    }
}

