

/* Start:/local/templates/madsquad/components/bitrix/menu/main_menu/style.css?17539189391166*/
.main_menu {
	display: flex;
	align-items: center;
    font-family: Inter-SemiBold;
}

.main_menu span a {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    margin: 0 20px;
    line-height: 88px;
    display: inline-block;
    height: 88px;
    position: relative;
    text-decoration: none;
}

.main_menu span a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Начинаем с 0 ширины */
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 127, 0, 1) 54%, rgba(255, 255, 255, 1) 66%, rgba(45, 41, 41, 1) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    white-space: nowrap; /* Текст не переносится */
    transition: width 0.3s ease; /* Анимация ширины */
    width: 100%; /* Всегда на всю ширину */
    opacity: 0; /* Начальная прозрачность */
    transition: opacity 0.3s ease;
}

.main_menu span a:hover::before {
    opacity: 1; /* Появление при наведении */
}
/* End */


/* Start:/local/templates/madsquad/styles.css?17540237265847*/
body {

}

div h2 {
  padding: 15px;
  font-size: 26px;
  font-family: Inter-ExtraBoldItalic;
}

.index_content {
	margin: 60px auto;
	max-width: 1440px;
}

/*Слайдер*/
.main_slider {
	position: relative;
}
.torn-image-container {
	width: 100%;
	height: 700px;
	overflow: hidden;
}
.torn-image-container img {
	object-fit: cover;
	object-position: center;
	height: 700px;
}

.torn-image-container img {
    object-fit: cover;
    height: 700px;
}
.torn-image.portrait-image {
    object-position: top;
}
.torn-image.landscape-image {
    object-position: center;
}

/*Разделительная линия*/
.line_separator {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px 0; /* Отступы сверху и снизу */
}

.line_separator::before,
.line_separator::after {
  content: "";
  flex: 1;
  height: 4px; /* Толщина линии (можно увеличить) */
  background: linear-gradient(90deg, 
    transparent, 
    transparent 30%, 
    #000 30%, 
    #000 70%, 
    transparent 70%, 
    transparent
  );
  background-size: 42px 100%; /* Ширина полосок (чем больше, тем длиннее) */
}

.line_separator img {
  margin: 0 25px; /* Большие отступы от линий */
}

/*Стили кнопок слайдера*/
.custom-nav {
  display: flex;
  justify-content: space-between; /* Растягиваем на всю ширину */
  position: absolute;
  top: 50%; /* Центрируем по вертикали */
  left: 0;
  right: 0;
  transform: translateY(-50%); /* Точное центрирование */
  z-index: 5;
  pointer-events: none; /* Чтобы не блокировал события слайдера */
  padding: 0 15px; /* Отступы от краёв */
}

.custom-prev, .custom-next {
  background: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* Возвращаем кликабельность */
}

.custom-prev {
  left: 0;
}
.custom-next {
  right: 0;
}

.custom-prev:hover, .custom-next:hover {
  background: #555;
}

.image-caption {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  bottom: 20%;
  left: 2%;
  padding: 15px;
  font-size: 26px;
  font-family: Inter-ExtraBoldItalic;
}

/*Приветственный текст */
.great_text {
  background: #858585;
  width: 100%;
  min-height: 250px;
  font-size: 24px;
  color: #fff;
  padding: 15px;
}

.content {
  margin: 0 auto;
  width: 75%;
  font-family: Inter-Regular;
}

/*Крайние походы*/

.sections_container {
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 20px; 
  margin: 20px 0;
}

.section_card {
  flex: 1 1 30%; 
  min-width: 320px; 
  background: #fff; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section_image {
  height: 250px; 
  overflow: hidden;
}

.section_image a img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.section_info {
  padding: 15px;
}

.section_info a{
  text-decoration: none;
  font-family: Inter-Regular;
  color: #000;
}

.section_info a h3 {
  margin: 0 0 10px 0; 
  font-size: 18px;
}

.section_info p {
  margin: 0; 
  color: #666;
}

/* Стили для слайдера походов */
#hikes-slider .owl-stage {
    display: flex;
    padding: 10px 0;
}

#hikes-slider .item {
    padding: 0 15px;
}

#hikes-slider .section_card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

#hikes-slider .section_card:hover {
    transform: translateY(-5px);
}

#hikes-slider .section_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#hikes-slider .section_info {
    padding: 15px;
}

/* Кнопки навигации */
.custom-navigation {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.hike-prev, .hike-next {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 30%;
}

.hike-prev:hover, .hike-next:hover {
    background: rgba(0,0,0,0.9);
}

/*Полезные заметки*/

.article_block {
  background: #bbb;
  font-family: Inter-SemiBold;
}

.article_item {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article_block > .article_item:nth-of-type(2n) {
  background: #7f7e7e;
}
.article_name {
  font-family: Inter-Regular;
  color: #000;
  font-size: 24px;
  padding-left: 25px;
  font-weight: bold;
}
.article_link {
  width: 150px;
  height: 50px;
  background: #bbb;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
}

.article_link a {
  text-decoration: none;
  color: #000;
}

/*Калькуляторы*/

.alkocalculate_block {
  background: #bbb;
  font-family: Inter-SemiBold;
}
.input_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  margin: 15px auto;
  width: 50%;
}

.input_block label {
  font-weight: bold;
}

.input_block input {
  height: 25px;
}

.btn_calculate {
  width: 250px;
  height: 50px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: bold;
}
/* End */


/* Start:/local/templates/madsquad/template_styles.css?17539194504483*/
@font-face {
  /*Inter */
  font-family: "Inter-Black";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-Black.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-BoldItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-BoldItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-ExtraBold";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-ExtraBold.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-ExtraBoldItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-ExtraBoldItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-ExtraLightItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-ExtraLightItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-Italic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-Italic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-LightItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-LightItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-MediumItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-MediumItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-Regular";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-Regular.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-SemiBold";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-SemiBold.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-SemiBoldItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-SemiBoldItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  /*Inter */
  font-family: "Inter-Thin";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-Thin.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 


@font-face {
  /*Inter */
  font-family: "Inter-ThinItalic";  
  src: url("/local/templates/madsquad/fonts/inter/Inter_18pt-ThinItalic.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

/*@import url("/home/bitrix/www/local/templates/madsquad/fonts/inter/inter_fonts.css");*/



.background_pattern {
    background: linear-gradient(to bottom, black 0%, black 70%, white 100%);
    position: absolute;
    height: 500px; /* Увеличили высоту до 500px */
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.header {
	display: flex;
  flex-wrap: wrap;
	max-width: 1440px;
	margin: 0 auto;
	justify-content: space-between;
}

.logo_wrapper {
	display: flex;
}
.logo_wrapper a {
	text-decoration: none;
	display: flex;
}
.logo_icon {
	width: 88px;
	height: 88px;
}
.logo_icon img {
	text-align: center;
}

.logo {
    font-size: 48px; /* Размер шрифта по вашему выбору */
    font-weight: bold; /* Жирный шрифт для лучшей видимости градиента */
    background: linear-gradient(180deg, rgba(255, 127, 0, 1) 54%, rgba(255, 255, 255, 1) 66%, rgba(45, 41, 41, 1) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Делаем обычный цвет текста прозрачным */
    /* Для поддержки в старых браузерах */
    -webkit-text-fill-color: transparent;
    line-height: 88px;
    height: 88px;

}
.main_menu {

}

.footer {
	height: 150px;
	background: #000;
	padding: 20px;
}

.footer_text_block {
	margin: 0 auto;
	max-width: 1440px;
	font-size: 16px;
	position: relative;
	color: #fff;
}
.date_create {
	position: absolute;
	top: 10px;
	right: 10px;
}
/* End */
/* /local/templates/madsquad/components/bitrix/menu/main_menu/style.css?17539189391166 */
/* /local/templates/madsquad/styles.css?17540237265847 */
/* /local/templates/madsquad/template_styles.css?17539194504483 */
