

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}
.body{
    background-color: rgb(255, 255, 255);
}
.dark-theme .body{
    background-color: #1a1a1a;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}


.site-header {
    background-color: #f8f9fa; 
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.site-header .logo img {
    height: 40px; 
    max-width: 150px; 
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff; 
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 20px;
}

.search-bar input[type="text"] {
    border: none;
    outline: none;
    background: none;
    padding: 5px;
    width: 150px; 
}

.search-bar button {
    background-color: #007bff;
    color: white;
    border-radius: 3px;
    padding: 5px 10px;
    margin-left: 5px;
}

.search-bar button:hover {
    background-color: #0056b3;
}

.user-actions {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.user-actions a {
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.user-actions a:hover {
    color: #007bff;
}

.header-tools button {
    font-size: 20px;
    margin-left: 15px;
    color: #555;
    transition: color 0.3s ease;
}

.header-tools button:hover {
    color: #007bff;
}

.mobile-menu-toggle {
    display: none; 
    font-size: 24px;
    color: #333;
}

@media (max-width: 768px) {
    .main-nav, .search-bar, .user-actions, .header-tools {
        display: none; 
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header .container {
        flex-wrap: wrap;
    }

    .logo {
        flex-grow: 1; 
    }

    .header-actions {
        width: 100%; 
        justify-content: flex-end;
        margin-top: 10px; 
    }

    .mobile-nav {
        display: none; 
        width: 100%;
        position: absolute;
        top: 70px; 
        left: 0;
        background-color: #f8f9fa;
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        z-index: 1000; 
    }

    .mobile-nav.active {
        display: block; 
    }

    .mobile-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .mobile-nav li {
        margin-bottom: 15px;
    }

    .mobile-nav a {
        font-size: 18px;
    }

    .mobile-header-actions {
        display: flex;
        justify-content: space-around;
        margin-top: 15px;
    }

    .mobile-header-actions a,
    .mobile-header-actions button {
        font-size: 20px;
    }

    .search-bar-mobile { 
        display: flex;
        align-items: center;
        border: 1px solid #ced4da;
        border-radius: 5px;
        padding: 8px 10px;
        margin-bottom: 15px;
        width: calc(100% - 20px);
    }

    .search-bar-mobile input[type="text"] {
        border: none;
        outline: none;
        background: none;
        padding: 5px;
        flex-grow: 1;
    }

    .search-bar-mobile button {
        background-color: #007bff;
        color: white;
        border-radius: 3px;
        padding: 5px 10px;
        margin-left: 5px;
    }
}
.dark-theme .site-header {
    background-color: #1a1a1a;
    color: #ffffff;
    border-bottom-color: #333;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
}

.dark-theme .main-nav a:hover {
    color: #66a3ff;
}
.dark-theme .main-nav a{
    color: #e0e0e0;
}

.dark-theme .search-bar {
    border-color: #555;
}

.dark-theme .search-bar input[type="text"] {
    color: #fff;
}

.dark-theme .search-bar button {
    background-color: #66a3ff;
}

.dark-theme .search-bar button:hover {
    background-color: #4da6ff;
}

.dark-theme .user-actions a:hover,
.dark-theme .header-tools button:hover {
    color: #66a3ff;
}

.dark-theme .mobile-menu-toggle {
    color: #ddd;
}


@media (max-width: 768px) { 
    .content{
        display: none;
    }

    .site-header .main-nav {
        display: none;
    }
    .site-header .header-actions .search-bar {
        display: none;
    }
    .site-header .header-actions .user-actions {
        display: none;
    }
    .site-header .header-actions .theme-toggle,
    .site-header .header-actions .accessibility-toggle {
        display: none;
    }
    .mobile-menu-toggle {
        display: block; 
        order: 2;
        margin-left: auto; }
   .site-header .container {
        display: flex;
        justify-content: space-between; 
        align-items: center;
    }

    .logo {
        order: 1; /* Логотип слева */
    }

    .mobile-menu {
        display: none; 
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1000; 
        padding: 20px;
    }
     .main-nav {
      order: 2;
    }

    .mobile-menu.open { 
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu li {
        margin-bottom: 15px;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }
}

.accessibility-mode .site-header {
    border-bottom-color: #000;
}

.accessibility-mode .site-header img {
    filter: invert(1); 
}

.accessibility-mode .main-nav a,
.accessibility-mode .user-actions a,
.accessibility-mode .header-tools button {
    font-weight: bold;
    font-size: 130%; 
}

.accessibility-mode .search-bar {
    border-color: #000;
    background-color: #eee;
}

.accessibility-mode .search-bar input[type="text"] {
    color: #000;
}

.accessibility-mode .search-bar button {
    background-color: #007bff;
    color: white;
}

@media (max-width: 768px) {
    .accessibility-mode .mobile-nav {
        background-color: #fff;
        border-bottom-color: #000;
    }
    .accessibility-mode .mobile-nav a,
    .accessibility-mode .mobile-header-actions button {
        color: #000;
        font-weight: bold;
        font-size: 18px;
    }
    .accessibility-mode .search-bar-mobile {
        border-color: #000;
        background-color: #eee;
    }
     .accessibility-mode .search-bar-mobile button {
        background-color: #007bff;
        color: white;
    }
}
.user-actions {
    display: flex;
    align-items: center;
    margin-right: 20px; 
}

.user-actions a {
    margin-left: 15px; 
    font-size: 18px;
    color: #555; 
    transition: color 0.3s ease;
}

.user-actions a:hover {
    color: #007bff; 
}




.slider1{
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #eee;
}
.slider1s{
    background-color: #eee;
    display: flex;
    width: 100%;
    height: 600px;
    color: rgb(29, 29, 29);
    transition: .6s;
    transition-timing-function: linear;
}
.sliderChild{
    height: auto;
    min-width: 100%;
    z-index: 1;
}
.sliderChild a {
    position: relative;
    display: flex;
    text-decoration: none;
    color: rgb(29, 29, 29);
    cursor: default;
}
.info{
    position: absolute;
    right: 2%;
    top: 4.5%;
    width: 500px;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    padding: 2%;
    color: rgb(29, 29, 29);
}
.text{
    font-size: 200%;
}
.estimation{
    font-size: 60%;
    text-align: right;
}

.slider1s:last-child{
    margin-right: 0;
}
.sliderChild img{
    
    height: auto;
    width: 100%;
}
.sliderImg{
    display: block;
    width: 100%;
    overflow: hidden;
}
.sliderP{
    overflow-y: hidden;
    position: relative;
    right: 0;
    top: -1%;
    display: block;
    width: 50%;
    padding: 1.5%;
    padding-right: 20%;
}
.slider10{ position: relative; 
margin-top: 1%;}
.slider10 button{
    position: absolute;
    padding: -2%;
    width: 3%;
    font-size: 1.3em;
    height: 100%;
    border: none;
    outline: none;
    background-color: #eee;
    color: rgb(29, 29, 29);
    text-align: center;
    z-index: 2;
    transition: 0.3s;
}
.slider10 button:hover{ background-color: #eee }
.slider10 button:active { background-color: #eee }
.slider10 .rightBtn{ right: 0; }

.hello{
    background-color:#eee;
    padding: 2%;
    margin-top: 2%;
    border-radius: 50px;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 150%;
}
.hello img{
    float: right;
}
@media screen and (max-width:426px){
    .hello p{
        font-size: 100%;
    }
    .hello h1{
        font-size: 150%;
    }
}

.about{

  color: rgb(29, 29, 29);
  /* borderadius: 30px; */
  margin: 1% 14%;
  padding:0% 1% 0% 1%;
}
.about img{
  border-radius: 10px;
}
.aboutp1{
  font-size:300%;
}
.aboutp2{
  font-size: 130%;
  display: inline-block;
  width: 45%;
  padding: 2%;
  text-align: justify;
  vertical-align: top;
}
@media screen and (max-width:1000px){
    .about{
        margin: 2% 2%;
    }
    .aboutp2{
        display: block;
        width: 100%;
        margin-right: 4%;
        padding-right: 2%;
    }
}



.tourpanel{
    background-color: #eee;
    overflow: hidden;
    display: inline-block;
    width: 30%;
    height: 60%;
    vertical-align: top;
       border-radius: 7px;
       margin-left: 2%;
}
@media screen and (max-width:832px){
    .tourpanel{
        display: block;
        width: 100%;
        margin-bottom: 2%;
    }
    .tourpanel img{
         width: 40%;

    }
}
.tour{
    height: max-content;
}

.tourpanel img {
    overflow: hidden;
    width: 100%;
    height:70%;
}
.nexntour{
    box-sizing: border-box;
}
.tourP{
    font-size: 300%;
    text-align: center;}
#text-1{
    font-size: 200%;
    margin-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;
}
#text-2{
    font-size: 150%;
    margin-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;

}
#text-3{
    font-size: 120%;
    margin-bottom: 3%;
    padding-left: 4%;
    padding-right: 4%;
}
#text-4{
    font-size: 150%;
    padding-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;
}
#text-5{
    font-size: 160%;
    padding-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;
    text-align: right;
    font-weight: bold;
}
#text-5-1{
    font-size: 120%;
    padding-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;
    text-align: right;
    color: #838383;
    font-weight: bold;
}
#text-6{
    color: red;
    font-weight: bold;
    font-size: 160%;
    text-align: right;
    padding-bottom: 2%;
    padding-left: 4%;
    padding-right: 4%;
}

.timer {
    text-align: right;
    display: grid;
    grid-template-columns:3% 1% 3% 1% 3% 1% 5% ;
    font-size: 120%;
    justify-items: center;
}

.timer__item {
  position: relative;
}

.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 45%;
  color: #424242;
}


.tourpanel a{
    color: rgb(59, 59, 59);
    text-decoration: none;
}
.tourpanel a:hover{
    color: rgb(102, 102, 102)
}

.forms{
    color: rgb(29, 29, 29);
    display: block;

}

.forms input{
    display: block;
}
.news{
    margin-left: 5%;
    margin-top: 2%;
    margin-bottom: 4%;
  padding: 2% 5%;
  background-color:#e0e0e0; 
  border-radius: 15px;
  box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
-webkit-box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
-moz-box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
    text-align: center;
    align-items: center;
}
.news input{
  border: none;
  padding: 2% 5%;
  margin: 2%;
  border-radius: 5px;
}


.radio label {
  display: flex;
  position: relative;
  padding-left: 10%;
  cursor: pointer;
    line-height: 1;

}
/* .radio input {
  position: absolute; 
   opacity: 0;
} */
.forms a{
    color: rgb(157, 146, 127);
}
@media screen and (max-width:1100px){
.news{
    margin: 2%;
}
.news p {
    padding-top: 2%;
    color: rgb(29, 29, 29);
}
}

.autoriz{
    font-size: 150%;
    color:rgb(29, 29, 29);
}
.registration2{
    color: rgb(29, 29, 29);
    display: block;

}
.login{
     margin-left: 1%;
    margin-top: 2%;
    margin-bottom: 4%;
    margin-right: 9%;
  padding: 2% 5%;
  background-color:#e0e0e0; 
  border-radius: 15px;
  box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
-webkit-box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
-moz-box-shadow: 1px 1px 9px 7px rgba(0,0,0,0.31);
    text-align: center;
    /* display: flex; */
    align-items: center;}
.profil{
  top: 100%;
  margin-top: 3%;
  
}
.login a{
    color: rgb(102, 102, 102);
    font-size: 50%;
}
.login input{
  border: none;
  padding: 2% 4%;
  margin: 2%;
  border-radius: 5px;
  box-sizing: border-box;
}
.registration2 input{
    display: block;
}
.loginAndNews{
    display: flex;
    align-items: center;
    font-size: 190%;
    justify-content: space-between;
}

@media screen and (max-width:1134px) {
    .loginAndNews{
        display: block;
        font-size: 120%;
    }
}


.dark-theme .slider1 {
background-color: rgb(29, 29, 29);
color: #eee;
}

.dark-theme .slider10 button{
background-color: rgb(29, 29, 29);
color: #eee;
}
.dark-theme.slider10 button:hover {
background-color: rgb(29, 29, 29);
color: #eee;
}
.dark-theme  .slider10 button:active {
background-color: rgb(29, 29, 29);
color: #eee;
}
.dark-theme  .hello{
background-color: rgb(29, 29, 29);
color: #eee;
}

.dark-theme .about{
background-color: rgb(17, 17, 17);
color: #eee;
}
.dark-theme  .tourpanel{
background-color: rgb(29, 29, 29);
color: #eee;
}

.dark-theme .body{
    background-color: rgb(17, 17, 17);
}
.dark-theme .connection{
    background-color: #1a1a1a; 
    color: #e0e0e0;
}
.dark-theme .connection a {
    color: #e0e0e0;
}
.dark-theme .tourpanel a {
    color: #e0e0e0;
}
.dark-theme .tourpanel a:hover{
    color: #e0e0e0;
}
.dark-theme .info {
    background-color: #292929;
    color: #e0e0e0;
}
.dark-theme .autoriz{
    color: #e0e0e0;
}
.dark-theme .registration2{
    color: #e0e0e0;
}
.dark-theme .login{
    background-color:rgb(29, 29, 29);
}
.dark-theme .forms{
    color:#e0e0e0;
}
.dark-theme .news{
 background-color: rgb(29, 29, 29);
}
.dark-theme .news p{
    color: #e0e0e0;
}
.accessibility-mode .body{
    font-weight: bold;
}
.accessibility-mode .connection{
    font-size: 110%;
}
.accessibility-mode .info{
    font-weight: 120%;
}
.accessibility-mode .hello h1{
    font-size: 170%;
}
.accessibility-mode .hello p{
    font-size: 120%;
}
.accessibility-mode .aboutp1{
    font-size: 300%;
}
.accessibility-mode .aboutp2{
    font-size: 200%;
}
.accessibility-mode .tourP{
    font-size: 300%;
}
.accessibility-mode #text-1{
    font-size: 200%;
}
.accessibility-mode #text-2{
    font-size: 180%;
}
.accessibility-mode #text-3{
    font-size: 160%;
}
.accessibility-mode #text-4{
    font-size: 140% ;
}
.accessibility-mode .forms{
    font-size: 100%;
}
.accessibility-mode .forms p{
    font-size: 110%;
}
.accessibility-mode .forms input{
    font-size: 110%;
}
.accessibility-mode .registration2 p{
    font-size: 110%;
}
.accessibility-mode .registration2 input{
    font-size: 110%;
}
.accessibility-mode .registration2 a{
    font-size: 90%;
}
