*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/static/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap');

#mons {
  font-family: 'Montserrat';
}

body {
  font-family: 'Montserrat', sans-serif;
  /* background-image: url('istockphoto.jpg');  */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: #cecece; /* Цвет фона header (замените на свой цвет) */
 
}



header {
  background-color: #666666; /* Цвет фона header (замените на свой цвет) */
  color: #fff; /* Цвет текста и иконок (замените на свой цвет) */
  padding: 0 0; /* Внутренние отступы сверху и снизу */
  display: flex; /* Применяем flex-контейнер для выравнивания элементов в header */
  justify-content: space-between; /* Равномерно распределяем элементы по горизонтали */
  align-items: center;
   /* Выравниваем элементы по вертикали по центру */
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  header {
      width: 100%;
      justify-content: space-between; 
      /* margin-bottom: 20px; */
    /* Другие стили для мобильной версии */
  }
}


/* Стили для логотипа */
.logo img {
  max-width: 120px; /* Максимальная ширина логотипа (замените на свой размер) */
  height: auto; /* Поддерживаем пропорции */
  margin-left: 20px;
  margin-top: 5px; /* Отступ слева от логотипа (замените на свой размер) */
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  .logo img {
      max-width: 80px;
      /* margin-left: 20px; */
    /* Другие стили для мобильной версии */
  }
}

/* Стили для меню */
nav ul {
  list-style: none; /* Убираем маркеры списка */
  margin: 0;
  padding: 0;
  display: flex; /* Применяем flex-контейнер для меню */
  margin-right: 60px;
}

nav ul li {
margin-right: 30px; /* Отступ между пунктами меню (замените на свой размер) */

}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  nav ul {
      /* display: flex; */
      margin-right: 20px;
      /* margin-left: 20px; */
    /* Другие стили для мобильной версии */
  }
  nav ul li {
    margin-right: 15px; /* Отступ между пунктами меню (замените на свой размер) */

}
}

@media (max-width: 321px) {
  /* Стили для мобильной версии сайта */
  nav ul {
      /* display: flex; */
      margin-right: 15px;
      /* margin-left: 20px; */
    /* Другие стили для мобильной версии */
  }
  nav ul li a {
    
    font-size: 12px;
    
}
  
}


nav ul li:last-child {
  margin-right: 0; /* Убираем отступ справа у последнего пункта меню */
}

/* Стили для ссылок в меню */
nav ul li a {
  text-decoration: none; /* Убираем подчеркивание ссылок */
  color: #fff; /* Цвет текста ссылок (замените на свой цвет) */
  font-weight: bold; /* Жирный текст для ссылок (по желанию) */
  font-size: 20px;
  font-family: 'Montserrat';
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  nav ul li a {
      font-size: 14px;
    /* Другие стили для мобильной версии */
  }
}

@media (max-width: 380px) {
  /* Стили для мобильной версии сайта */
  nav ul li a {
      font-size: 10px;
    /* Другие стили для мобильной версии */
  }
}

/* Стили для ссылок при наведении */
nav ul li a:hover {
  text-decoration: none; /* Подчеркиваем ссылки при наведении (по желанию) */
  color: #ffaa95;
}

/* Дополнительные стили здесь, если необходимо */


/* ПЕРЕКЛЮЧЕНИЕ ЯЗЫКА................................ */

.language-container {
display: flex;
width: 90%;
text-align: right; /* Выравнивание по правому краю */
/* margin: 20px 0;  */
margin-right: 20px;
/* margin-top: 10px; */
margin-bottom: 10[x];
flex-direction: row;
justify-content: center;
text-decoration: none;
}

.language-container a{
    text-decoration: none;
  }

#lang {
display: flex;
color: #fff;
font-size: 14px;
font-weight: bold;
background-color: #0f0f0f;
border: none;
border-radius: 5px;
padding: 5px 5px 5px 5px;
margin-left: 20px; /* Расстояние между кнопками */
cursor: pointer;
margin-top: 10px;
margin-bottom: 10px;
/* width: 20px; */
justify-content: center;
text-align: center;
text-decoration: none;


}



/* #lang {
max-width: 20px;
} */

#lang:hover {
/* text-decoration: none; */
background-color: #ffaa95;
}

#lang a text:hover {
text-decoration: none;

}



.left-half-container {
  width: 50%; /* Занимает половину ширины экрана */
  height: 100vh; /* Занимает 100% высоты экрана */
  float: left; /* Обтекание справа */
  align-items: center; /* Выравниваем по вертикали по центру */
  justify-content: center; /* Выравниваем по горизонтали по центру */
  min-width: 720px;
  
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  .left-half-container {
      display: none; /* Размер текста надписи (замените на свой размер) */
    /* Другие стили для мобильной версии */
  }
}



.center-text {
  text-align: center;
  margin-top: 200px;
  position: fixed; /* Зафиксируем заголовок в верхней части страницы */
  top: 0; /* Разместим его вверху */
  left: 20; /* Разместим его влево */
  /* background-color: #f0f0f0; Цвет фона заголовка (замените на свой цвет) */
  padding: 10px; /* Внутренние отступы заголовка */
  margin-left: 20px;
}

.center-text h1 {
  font-size: 100px; /* Размер текста надписи (замените на свой размер) */
  text-align: center; /* Центрируем текст по горизонтали */
  color: #fff;
  opacity: 0.9;
  font-family: 'Montserrat';
  text-shadow: 
      -1px -1px 0 black,  
       1px -1px 0 black,
      -1px 1px 0 black,
       1px 1px 0 black; /* Обводка текста (расположение тени) */
  
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  .center-text h1 {
      font-size: 50px; /* Размер текста надписи (замените на свой размер) */
    /* Другие стили для мобильной версии */
  }
}


.right-half-container {
  display: flex;
  flex-direction: column;
  width: 50%; /* Занимает половину ширины экрана */
  height: 100vh; /* Занимает 100% высоты экрана */
  float: right; /* Обтекание справа */
  min-width: 400px;
  align-items: center;
 
  
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  
  .right-half-container {
      /* margin-top: 600px; */
      /* justify-content: center;  */
      align-items: center; 
      /* height: 100vh;  */
      width: 100%;
      min-width: auto; 
    float: none;
  }
}

.contact-section {
  margin-top: 10px;
  width: 90%;
  max-width: 720px; 
  margin: 0 auto; /* Горизонтальное выравнивание по центру */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #0f0f0f;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-section h3{
  text-align: center;
}

.contact-section a{
  color: #fff;
  text-decoration: none;
}

.contact-section a:hover{
  color: #ffaa95;
  
}




@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  .contact-section {
    padding: 10px;
      font-size: 18px;
      
    /* Другие стили для мобильной версии */
  }
}


@media (max-width: 380px) {
  /* Стили для мобильной версии сайта */
  .contact-section {
    padding: 10px;
      font-size: 14px;
      
    /* Другие стили для мобильной версии */
  }
}
.contact-text {
  margin-left: 15px;
  flex-grow: 1; /* Занимает доступное пространство между текстом и значком */
}

.contact-text p {
  margin: 0;
}

.whatsapp-button {
  text-decoration: none;
  display: inline-block;
  padding: 5px;
  /* border: 1px solid #25d366;  */
  border-radius: 5px;
}

.whatsapp-button img {
  width: 60px; /* Размер значка WhatsApp (по вашему желанию) */
  height: 60px;
  vertical-align: middle;
  margin-left: 5px; /* Расстояние между текстом и значком */
}

/* .whatsapp-button img:hover {
width: 52px; 
height: 52px;
} */


.button-container {
  
  display: flex;
  flex-direction: row; /* Располагаем кнопки вертикально */
  align-items: center; /* Центрируем кнопки по горизонтали */
  justify-content: center; /* Центрируем кнопки по вертикали */
  text-align: center;
  
  /* height: 100vh; Занимает 100% высоты экрана */
}

.button-container a{
  
  text-decoration: none;
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  .button-container {
      display: flex;
      max-width: 90%; /* Размер текста надписи (замените на свой размер) */
      justify-content: center;
      align-items: center;
      font-size: 20px;
      
    /* Другие стили для мобильной версии */
  }
}

#widget1 {
  width: auto;
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  #widget1 {
      
      max-width: 90%; /* Размер текста надписи (замените на свой размер) */
      text-align: center;
      margin-bottom: 10px;
      /* justify-content: space-between; */
    /* Другие стили для мобильной версии */
  }
}



#widget2 {
  width: auto;
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  #widget2 {
      
      max-width: 90%; /* Размер текста надписи (замените на свой размер) */
      text-align: center;
      margin-bottom: 10px;
      /* justify-content: space-between; */
    /* Другие стили для мобильной версии */
  }
}

#button1 {
  display: flex;
  background-color: #0f0f0f; /* Цвет фона кнопки (замените на свой цвет) */
  color: #fff; /* Цвет текста кнопки */
  padding: 10px 20px; /* Внутренние отступы кнопки */
  border: none; /* Убираем границу кнопки */
  border-radius: 20px; /* Закругляем углы кнопки */
  margin-left: 10px; /* Отступ между кнопками */
  margin-right: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
  cursor: pointer; /* Изменяем указатель при наведении */
  font-size: 36px; /* Размер текста кнопки */
  width: 350px; /* Фиксированная ширина кнопки */
  height: 100px; /* Фиксированная высота кнопки */
  transition: background-color 0.5s ease;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  #button1 {
      
    font-size: 18px;
    padding: 5px 15px; /* Внутренние отступы кнопки */
  }
}

@media (max-width: 360px) {
  /* Стили для мобильной версии сайта */
  #button1 {
      
    font-size: 16px;
    padding: 5px 15px; /* Внутренние отступы кнопки */
  }
}

#button2 {
  display: flex;
  background-color: #0f0f0f; /* Цвет фона кнопки (замените на свой цвет) */
  color: #fff; /* Цвет текста кнопки */
  padding: 10px 20px; /* Внутренние отступы кнопки */
  border: none; /* Убираем границу кнопки */
  border-radius: 20px; /* Закругляем углы кнопки */
  margin-left: 10px; /* Отступ между кнопками */
  margin-right: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
  cursor: pointer; /* Изменяем указатель при наведении */
  font-size: 36px; /* Размер текста кнопки */
  width: 350px; /* Фиксированная ширина кнопки */
  height: 100px; /* Фиксированная высота кнопки */
  transition: background-color 0.5s ease;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1281px) {
  /* Стили для мобильной версии сайта */
  #button2 {
      
    font-size: 18px;
    padding: 5px 15px; /* Внутренние отступы кнопки */
  }
}

@media (max-width: 360px) {
  /* Стили для мобильной версии сайта */
  #button2 {
      
    font-size: 16px;
    padding: 5px 15px; /* Внутренние отступы кнопки */
  }
}

#button1:hover {
  background-color: #ffaa95; /* Цвет фона кнопки при наведении (замените на свой цвет) */
}

#button2:hover {
  background-color: #ffaa95; /* Цвет фона кнопки при наведении (замените на свой цвет) */
}

.widget {
  width: auto;
  display: none; /* Скрываем все виджеты по умолчанию */
  
}

button {
display: flex;
align-items: center;
background-color: #0f0f0f; /* Цвет фона кнопки (по вашему желанию) */
color: #fff; /* Цвет текста (по вашему желанию) */
border: none;
padding: 10px 20px; /* Отступы внутри кнопки (по вашему желанию) */
border-radius: 20px;
cursor: pointer;
margin-top: 20px;
width: 300px;
/* justify-content: space-between; */
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
transition: background-color 0.5s ease;

}

button:hover {
background-color: #ffaa95;
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
button {
  min-width: 130px;  
  margin-left: 3px;
  margin-right: 3px;
    /* justify-content: space-between; */
  /* Другие стили для мобильной версии */
}
}

.button-icon {
width: 60px; /* Размер изображения (по вашему желанию) */
height: 60px;
margin-right: 10px; /* Расстояние между изображением и текстом (по вашему желанию) */
object-fit: contain; /* Сохранить соотношение сторон изображения */
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
.button-icon {
  width: 48px; /* Размер изображения (по вашему желанию) */
  height: 48px;
}
}

.button-text {
font-weight: bold; /* Жирный шрифт (по вашему желанию) */
}

#button3 {
font-size: 26px;
}

#button4 {
font-size: 26px;
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
#button3 {
  width: 150px;
    
  font-size: 14px;
    /* justify-content: space-between; */
  /* Другие стили для мобильной версии */
}
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
#button4 {
  width: 150px;  
  font-size: 14px;
    /* justify-content: space-between; */
  /* Другие стили для мобильной версии */
}
}

.weather {
display: flex;
justify-content: center;
margin-bottom: 20px;
}

/* таблица прайс////////////////////////////////////////////////// */

.text1 {

  display: flex;
  text-align: center;
  justify-content: center;
  /* align-items: center; */
  /* height: 100vh; */
  margin-top: 10px;
  padding: 0;
  

}

.text1 h1{
font-family: 'Montserrat';
}

.price {
display: flex;
/* font-family: 'Montserrat'; */
justify-content: center;
/* align-items: center; */
/* height: 100vh; */
margin: 0;
padding: 0;

}

table {
font-family: 'Montserrat';
border-collapse: collapse;
/* text-align: center; */
width: 720px; /* Максимальная ширина 90% */
/* max-width: 720px;  */
margin-top: 20px;
margin-bottom: 10px;
background-color: white; /* Белый фон для таблицы */
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
table {
    
    max-width: 90%; /* Размер текста надписи (замените на свой размер) */
    justify-content: center;
    align-items: center;
    max-height: 90%;
    
  /* Другие стили для мобильной версии */
}
}

th, td {
font-family: 'Montserrat';

font-size: 22px;
border: 1px solid #dddddd;
text-align: left;
padding: 5px;
text-align: center;
font-weight: 600;
}

th {
 
background-color: #f2f2f2;

}

tr:nth-child(even) {
background-color: #f2f2f2;
}

tr {
height: 20px;
}

@media (max-width: 1281px) {
/* Стили для мобильной версии сайта */
th, td {
    
  font-size: 16px;
    
  /* Другие стили для мобильной версии */
}
}

/* .man {
  display: flex;
  flex-direction: column;
} */

th img {
  height: auto;
  width: 30px;
  
}

#pricedown{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text2 {

  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  text-align: center;
  padding: 0;
  /* width: 90%; */
  /* max-width: 720px; */
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px; 

}



/* КУРС ВАЛЮТ ...................................................................................*/

#curr {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 300px;
  margin-bottom: 15px;
  /* text-align: center; */
  align-items: center;
  

}

#curr a{
  text-decoration: none;
 font-size: 12px;
 color: #0f0f0f;
}


/* ФУТЕР ...............................................................................................*/

footer {
  background-color: #666666;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  margin-top: 10px;
  
}

.footer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-logo img{
  width: 120px;
  height: auto;
}

