@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

body {
  margin: 0;
  font-family: 'Geometria', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

img.deer, .photo_gallery_1, .video_gallery_1, .broadcasts_1 {
  width: 100%;
  border-radius: 5px;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  padding: 0 8.934%;
  width: 100%;
}

/* Intro */
.intro {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100vh;
  background: url("/assets/img/Tiger.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}


/* Header */
.header {
  width: 100%;
  padding-top: 35px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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


.header__logo {
  font-family: 'Geometria';
  font-size: 13px;
  color: #aaaaaa;
}

.header__logo .logo-indent {
  display: block;
  line-height: 8px;
}

/* Nav===================
*/

.nav {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.nav__link {
  margin: 0 0 0 50px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav__link-active:after{
  opacity: 1 !important;
}
.nav__link:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  transition: color .2s linear;
  background-color: #f29400;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: opacity .2s linear;
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover:after {
  opacity: 1;
}


/*Word intro*/

.intro-title {
  padding: 5.255% 8.934% 0;
}

.word_1, .word_2, .word_3 {
  font-family: Bookman Old Style;
  font-size: 107px;
  color: #f29400;
}

.word_2 {
  margin-top: -40px;
}

.word_3 {
  margin-top: -40px;
  color: #fff;
}

/*Button===========
*/

.online-broadcast {
  height: 50px;
}

.broadcast-image {
  border-radius: 5px;
  width: 85px;
  height: 50px;
  object-fit: cover;
}

/*Arrow*/

.arrow-8 {
  position: relative;
  left: 50%;
  width: 20px;
  height: 20px;
}

.arrow-8:before,
.arrow-8:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  animation: arrow-8 2s linear infinite;
}

.arrow-8:after {
  animation: arrow-8 2s linear infinite -1.5s;
}

@keyframes arrow-8 {
  0% {
    opacity: 0;
    transform: translate(0, -53px) rotate(-45deg);
  }

  10%, 90% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
  }

  100% {
    opacity: 0;
    transform: translate(0, 53px) rotate(-45deg);
  }
}



/*
============Section*/

.section {
  width: 100%;
  padding: 8.934% 0 6.832%;
  background: url("/assets/img/login-background.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.text_welcome {
  font-size: 30px;
  font-style: italic;
  font-family: Bookman Old Style;
  line-height: 38px;
}

.section_welcome {
  margin-bottom: 140px;
  display: flex;
  justify-content: space-between;
}

.container_welcome {
  max-width: 30%;
}

.container_welcome_2 {
  max-width: 60%;
}

.paragraph_1 {
  padding-bottom: 40px;
}

.paragraph_1, .paragraph_2 {
  font-family: 'Geometria';
  font-size: 20px;
  text-align: justify;
  line-height: 26px;
}


.container_gallery {
  display: flex;
}

.animal_gallery {
  padding-right: 30px;
}

section.animal_gallery {
  padding-right: 0;
}

.text_tiger {
  font-size: 26px;
}

.text_deer {
  font-size: 20px;
  font-weight: 500;
}

.buttons_1 {
  float: right;
}

.buttons_1 .animals-prev-button {
  margin-right: 6px;
}

a.button {
  margin-top: 50px;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  user-select: none;
  background: #f29400;
  padding: 10px 25px;
  font-size: 20px;
  outline: none;
  cursor: pointer;
}

a.button:hover {
  background: #e5a848;
}

a.button:active {
  background: #c7b96c;
}

.buttons-block {
  margin-top: 40px;
}

.map {
  padding: 6.0435% 0 3.679% 8.934%;
  min-height: calc(100vh - 70px);
  height: 100%;
  background-color: #eeeeee;
}

.section-title {
  margin-bottom: 50px;
  font-family: Bookman Old Style;
  color: #000000;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 400;
}

.section-subtitle {
  display: block;
  margin-bottom: 80px;
  font-size: 20px;
}

.mapdiv {
  position: relative;
  text-align: center;
  margin-left: 180px;
}

.mapimg {
  padding: 10px 10px 15px 10px;
  transform: scale(1.4, 1);
  width: 50%;
}

.maplabel {
  padding: -150px;
  position: absolute;
}

.maplabel .maplabelimg {
  left: -6px;
  position: absolute;
  top: -9px;
  z-index: 10;
}

.photolightGallery {
  text-decoration: none;
}

.maplabel .labeltoleft {
  display: none;
  left: -56px;
  position: absolute;
  top: -28px;
  z-index: 20;
}

.maplabel .labeltoright {
  display: none;
  left: 10px;
  position: absolute;
  top: -28px;
  z-index: 20;
}

.maptextlabel {
  display: none;
  margin-left: 40px;
  margin-top: -25px;
  position: absolute;
  z-index: 30;
}

.maptextlabelright {
  margin-left: 36px;
}

.maptextlabelleft {
  margin-right: 34px;
}

.maptextlabel div {
  background-color: #f1f1f1;
  max-width: 450px;
  padding: 10px 15px;
  text-align: left;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

.maptextlabel div h1 {
  font-size: 14pt;
  font-weight: bold;
  line-height: 16px;
}

.maptextlabel div h2 {
  font-size: 12pt;
  font-weight: bold;
  line-height: 10px;
}

.maptextlabel div p {
  font-size: 12pt;
  font-weight: normal;
  line-height: normal;
  margin: 12px 0 12px 0;
}

.map__reservation {
  position: relative;
}

.map__reservation_type {
  position: absolute;
}

[type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

input {
  overflow: visible;
}

button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
}

.toggle-wrapper:not(:last-child) {
  margin-bottom: 20px;
}

.toggle-button {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 40px;
  margin: 0;
  vertical-align: top;
  background: #ffffff;
  border: none;
  border-radius: 30px;
  background-color: #c2c2c2; 
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: 0.3s;
}

.toggle-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 5px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translateX(0);
  transition: 0.3s;
}

.toggle-button:checked::after {
  transform: translateX(calc(100% + 26px));
  background-color: #c2c2c2;  
}

.toggle-button:checked {
  background-color: #fff;
}

.toggle-text {
  margin-left: 35px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.toggle-orange .toggle-button::after {
  background-color: #f29400;
}

.toggle-orange .toggle-button:checked::after {
  background-color: #c2c2c2;
}

.toggle-orange .toggle-button:checked {
  background-color: #f29400;
}

.toggle-green .toggle-button::after {
  background-color: #5d8500;
}

.toggle-green .toggle-button:checked::after {
  background-color: #c2c2c2;
}

.toggle-green .toggle-button:checked {
  background-color: #5d8500;
}

.toggle-blue .toggle-button::after {
  background-color: #003466;
}

.toggle-blue .toggle-button:checked::after {
  background-color: #c2c2c2;
}

.toggle-blue .toggle-button:checked {
  background-color: #003466;
}

.section-about {
  padding-top: 7.883%;
  padding-left: 8.934%;
  padding-bottom: 17.3415%;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: url("/assets/img/About%20Proekt.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.main_text {
  padding-bottom: 5.255%;
  font-size: 35px;
  font-family: Bookman Old Style;
}

.container_quote {
  display: flex;
  align-items: flex-start;
}

.text_quote {
  font-size: 26px;
}

.text_quote_1 {
  font-family: Bookman Old Style;
  font-style: italic;
}

.img_quote {
  margin-right: 50px;
  width: 80px;
  opacity: 0.75;
}

.quote_putin {
  padding: 55px 0;
  font-family: Bookman Old Style;
  font-style: italic;
}

/*Footer*/

footer {
  background-color: #262626;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 90px 8.934%;
  background-color: #262626;
}

.footer-block {
  font-size: 16px;
}

.footer-copyright {
  margin-bottom: 30px;
  color: #fff;
}

.footer-rights {
  color: #fff;
}

.footer-menu {
  display: flex;
  flex-direction: column;
}

.footer-menu .footer-menu-item {
  color: #fff;
  text-decoration: none;
}

.footer-menu .footer-menu-item:hover {
  color: #aaaaaa
}

.footer-email {
  margin-bottom: 30px;
  display: block;
  color: #fff;
}

.footer-email:hover {
  color: #aaaaaa;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-link:not(:last-child) {
  margin-right: 40px;
}

/*Gallery*/

.gallery {
  padding-bottom: 5.255%;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: url("/assets/img/Media%20files.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}


.broadcasts_1 {
  margin: 0 15px;
}

.online_broadcasts, .video_gallery, .Photo_gallery {
  border-bottom: 1px;
  margin: 5.781% 8.934% 0;
}

.online_broadcasts_text {
  color: #fff;
  font-size: 34px;
  font-family: Bookman Old Style;
  margin: 0 0 60px 12px;
}


.hr-line {
  margin: 50px 0 0 16px;
  padding: 0;
  height: 0;
  border: none;
  border-top: 1px solid #989898;
}


.online_video_text {
  margin: 0 0 60px 12px;
  color: #fff;
  font-size: 34px;
  font-family: Bookman Old Style;
}

.video_gallery_1 {
  margin: 0 15px;
}


.Photo_gallery_text {
  margin: 0 0 60px 12px;
  color: #fff;
  font-size: 34px;
  font-family: Bookman Old Style;
}

.photo_gallery_1 {
  margin: 0 15px;
}

.buttons {
  float: right;
}

.slick-arrow {
  cursor: pointer;
}

.slick-slider {
  max-width: 100%;
}

.slick-disabled {
  opacity: 0.6;
  cursor: default;
}

@media (max-width: 1441px) {
  .nav__link {
    font-size: 14px;
  }
  .word_1, .word_2, .word_3 {
    font-size: 100px;
  }
  .section {
    padding: 120px 0;
  }
  .section_welcome {
    margin-bottom: 120px;
  }
  .text_welcome {
    font-size: 28px;
  }
  .paragraph_1 {
    padding-bottom: 30px;
  }
  .paragraph_1, .paragraph_2, .text_deer, .toggle-text {
    font-size: 18px;
  }
  a.button {
    padding: 8px 25px;
    font-size: 18px;
  }
  .section-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .section-subtitle {
    margin-bottom: 70px;
    font-size: 18px;
  }
  .toggle-button {
    width: 80px;
    height: 30px;
  }
  .toggle-button::after {
    width: 20px;
    height: 20px;
  }
  .toggle-text {
    margin-left: 20px;
    font-size: 16px;
  }
  .online_broadcasts_text,
  .online_video_text,
  .Photo_gallery_text,
  .main_text {
    font-size: 32px;
  }
  .section-about {
    padding-top: 130px;
    padding-bottom: 170px;
  }
  .main_text {
    padding-bottom: 80px;
  }
  .img_quote {
    width: 70px;
  }
  .text_quote {
    font-size: 20px;
  }
  .quote_putin {
    padding: 45px 0;
  }
  .footer-block {
    font-size: 14px;
  }
}

@media (max-width: 1367px) {
  .online-broadcast {
    height: 35px;
  }
  .broadcast-image {
    width: 65px;
    height: 35px;
  }
  .word_1, .word_2, .word_3 {
    font-size: 90px;
  }
  .section-title {
    margin-bottom: 25px;
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .text_deer {
    font-size: 16px;
  }
  .text_welcome {
    font-size: 26px;
  }
  .paragraph_1 {
    padding-bottom: 20px;
  }
  .paragraph_1, .paragraph_2 {
    font-size: 16px;
  }
  a.button {
    font-size: 16px;
  }
  .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .online_broadcasts_text,
  .online_video_text,
  .Photo_gallery_text,
  .main_text {
    font-size: 28px;
  }
  .img_quote {
    width: 60px;
  }
  .text_quote {
    font-size: 18px;
  }
  .quote_putin {
    padding: 35px 0;
  }
}

@media (max-width: 1281px) {
  .word_1, .word_2, .word_3 {
    font-size: 82px;
  }
  .text_welcome {
    font-size: 24px;
    line-height: 34px;
  }
  .paragraph_1, .paragraph_2 {
    font-size: 14px;
    line-height: 22px;
  }
  .paragraph_1 {
    padding-bottom: 15px;
  }
  .section_welcome {
    margin-bottom: 80px;
  }
  .text_deer {
    font-size: 14px;
  }
  .section-title {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .section-subtitle, .toggle-text, a.button {
    font-size: 14px;
  }
  .online_broadcasts_text,
  .online_video_text,
  .Photo_gallery_text,
  .main_text {
    font-size: 24px;
  }
  .hr-line {
    margin: 30px 0 0 16px;
  }
  .online_broadcasts, .video_gallery, .Photo_gallery {
    margin-top: 60px;
  }
  .img_quote {
    width: 50px;
  }
  .text_quote {
    font-size: 16px;
  }
  .footer-block {
    font-size: 12px;
  }
}

@media (max-width: 1025px) {
  .header__logo {
    font-size: 12px;
  }
  .nav__link {
    font-size: 12px;
  }
  .broadcast-image {
    width: 45px;
    height: 25px;
  }
  .online-broadcast {
    height: 25px;
  }
  .word_1, .word_2, .word_3 {
    font-size: 64px;
    line-height: 115px;
  }
  .text_welcome {
    font-size: 20px;
    line-height: 28px;
  }
  .paragraph_1, .paragraph_2 {
    font-size: 12px;
    line-height: 18px;
  }
  .section_welcome {
    margin-bottom: 45px;
  }
  .text_deer {
    font-size: 14px;
  }
  .mapdiv {
    margin-left: 0;
  }
  .toggle-text {
    opacity: 0;
  }
  a.button {
    padding: 8px 25px;
    font-size: 14px;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .online_broadcasts_text,
  .online_video_text,
  .Photo_gallery_text,
  .main_text {
    font-size: 22px;
  }
  .quote_putin {
    padding: 20px 0;
  }
  .img_quote {
    width: 50px;
  }
  .text_quote {
    font-size: 16px;
  }
}
