/*Обнуление */

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*-------------------------------*/

/* comman */

.wrapper {
  width: 1920px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
}

.content {
  margin: 0 auto;
  max-width: 1620px;
}

.main {
  color: #4F4F4F;
  font-family: 'Roboto', sans-serif;
}

.button {
  width: 194px;
  height: 55px;
  background: linear-gradient(106.89deg, #4BD8B5 -14.32%, #49D6DF 100.68%);
  border-radius: 5px;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  user-select: none;
  text-transform: uppercase;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.name {
  font-size: 48px;
  font-weight: 900;
}

.info h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.info p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 16px;
}

.info button {
  margin-top: 35px;
}

.video {
  background-color: #E5E5E5;
}

/* comman carousel  */

.carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel__withBtns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel__items-view {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
}

.carousel__items-line {
  position: relative;
  display: flex;
  transition: 0.5s;
}

.carousel__item {
  position: relative;
  animation: 0.5s ease-in-out;
  margin: 0 auto;
  user-select: none;
}

.carousel__arrow {
  padding: 20px;
  display: inline-block;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
}

.carousel__arrow_disabled {
  opacity: 0.6;
}

/* comman rage input */

.carousel__rage-input {
  appearance: none;
  width: 245px;
  height: 5px;
  outline: none;
  background-color: #D8D8D8;
  margin-bottom: 30px;
  cursor: pointer;
}

.carousel__rage-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #333333;
  width: 30px;
  height: 10px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.carousel__rage-input::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.carousel__rageNumber {
  margin-top: 30px;
  margin-bottom: 15px;
  display: flex;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 24px;
  user-select: none;
}

.carousel__rageNumber_inAll {
  font-weight: 500;
  font-size: 16px;
  padding-top: 6px;
  color: #828282;
}

/* header  */

.header {
  min-height: 95px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  box-shadow: 0px 8px 20px rgba(44, 101, 77, 0.08);
  z-index: 1;
}

.header .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header .content h1 {
  position: absolute;
  opacity: .000001;
  top: 9999px;
  right: 9999px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  margin-right: 465px;
  margin-top: -8px;
}

.header__logo h2 {
  font-size: 36px;
  font-weight: 900;
  color: #333333;
  margin-bottom: -5px;
}

.header__logo p {
  font-size: 18px;
  font-weight: 900;
  color: #333333;
  letter-spacing: .1em;
}

/* header switcher */

.header__switcher-block .header__switcher, .header__switcher-block .header__switcher_for {
  right: 55px;
}

.header__switcher {
  display: none;
}

.header__switcher_for {
  position: relative;
}

.header__switcher_for::after {
  content: "";
  width: 54px;
  height: 30px;
  background-color: #F2F2F2;
  border-radius: 15px;
  position: absolute;
  top: -14px;
  cursor: pointer;
}

.header__switcher_for::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: -9.5px;
  right: -25px;
  transition: .3s;
  cursor: pointer;
}

.header__switcher:checked+.header__switcher_for::before {
  right: -48px;
  transition: .3s;
}

/* header NAV */

.header__nav {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-right: 380px;
  padding-bottom: 10px;
}

.header__nav ul {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  margin-right: 60px;
}

.header__nav ul li {
  margin-right: 80px;
}

.header__nav ul li a, a:visited {
  color: #333333;
}

.header__nav ul li a {
  color: #333333;
}

.header__nav_active {
  font-weight: 900;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  pointer-events: none;
  cursor: default;
}

/* HEADER BURGER  */

.header__burger {
  position: relative;
  width: 40px;
  height: 20px;
  display: none;
  margin-left: 35px;
  bottom: 0px;
}

.header__burger::before, .header__burger::after {
  content: '';
  background-color: #333333;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
}

.header__burger::before {
  top: 1px;
}

.header__burger::after {
  bottom: 0;
  width: 82.5%;
  left: 17.5%;
}

.header__burger span {
  content: '';
  background-color: #333333;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 9px;
}

.header__nav_disabled {
  display: none;
}

.header__burger_active span {
  /* display: none; */
  top: 10px;
}

.header__burger_active::before {
  top: 10px;
  transform: rotate(-30deg);
}

.header__burger_active::after {
  bottom: 8px;
  width: 100%;
  left: 0;
  transform: rotate(30deg);
}

/* video-block */

.video {
  background-color: #FBFBFB;
}

.video__nav-carousel_wrapper {
  position: absolute;
  height: 100%;
  left: -130px;
}

.video .content {
  height: 910px;
  flex-direction: column;
  position: relative;
}

.video-item {
  margin: 0 210px;
  padding-top: 60px;
}

.video-item__inner {
  display: flex;
  margin-top: 5px;
}

.video-item__media {
  margin-top: 40px;
}

.panda__info {
  margin-top: 40px;
  margin-left: 30px;
}

/* pets-carousel */

.media__carousel__items-line {
  left: 0;
  width: 790px;
}

.media__carousel__item {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
  margin: 30px 0;
}

.media__carousel__item iframe {
  pointer-events: none;
}

.media__carousel__item img {
  width: 246px;
}

.media__carousel_dots {
  width: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}

.media__carousel_dots:hover {
  transform: scale(1.5);
}

.carousel__dot {
  content: '';
  height: 8px;
  width: 8px;
  background-color: #C4C4C4;
  border-radius: 50%;
  cursor: pointer;
}

.carousel__dot_active {
  width: 11px;
  height: 11px;
  background: linear-gradient(106.89deg, #4BD8B5 -14.32%, #49D6DF 100.68%);
}

/* nav carousel */

.video__nav-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 65px;
  bottom: 65px;
  margin-top: 65px;
  margin-bottom: 15px;
}

.nav-carousel__item {
  margin: 5px;
}

.nav-carousel__item img {
  width: 108px;
  height: 108px;
  cursor: pointer;
}

.nav-carousel__view {
  height: 530px;
  width: 170px;
  overflow: hidden;
}

.nav-carousel__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0px;
}

.nav-carousel__control {
  cursor: pointer;
}

.nav-carousel__control_disabled {
  opacity: .5;
}

.nav-carousel__control_up {
  margin-bottom: 15px;
}

.nav-carousel__control_down {
  margin-top: 8px;
}

.nav-carousel__item_active {
  /* border: solid 1px red; */
  border-radius: 50%;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.nav-carousel__item_active img {
  cursor: unset;
  pointer-events: none;
  width: 137px;
  height: 137px;
}

.footer__checkbox_unchecked .footer__checkbox_label::before {
  border: 1px solid #FFA300;
}

.nav-carousel__item_active::before {
  background: linear-gradient(0.3turn, #07EEE0, #DF496D);
  width: 160px;
  height: 160px;
  position: absolute;
  content: '';
  z-index: -2;
  left: -0px;
  bottom: 0px;
  border-radius: 50%;
  opacity: 1;
}

.nav-carousel__item_active::after {
  background-color: #E5E5E5;
  width: 152px;
  height: 152px;
  position: absolute;
  content: '';
  z-index: -1;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  opacity: 1;
}

/* footer  */

.footer .content .footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer {
  background-color: #333333;
}

.footer__item {
  width: 43%;
}

.footer__contact-us {
  display: flex;
  flex-direction: column;
}

.footer__contact-us_logo {
  margin-top: 90px;
  margin-bottom: 70px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  margin-right: 465px;
  user-select: none;
}

.footer__contact-us_logo h2 {
  font-size: 36px;
  font-weight: 900;
}

.footer__contact-us_logo p {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .1em;
}

.footer__inputs {
  display: flex;
  flex-direction: column;
}

.footer__contact_form-block h3 {
  font-size: 20px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 30px;
  color: #FEFEFE;
}

.footer__inputs input {
  max-width: 57%;
  margin-bottom: 15px;
  border-bottom: 1px solid #BDBDBD;
  background-color: #333333;
  padding-bottom: 10px;
  color: #E0E0E0;
}

.footer__inputs input::placeholder {
  color: #E0E0E0;
}

.footer__contact_textArea {
  width: 102%;
  position: relative;
  margin-top: 18px;
  bottom: 5px;
}

.footer__contact_textArea textarea {
  margin-bottom: 20px;
  width: 56%;
  border: 1px solid #BDBDBD;
  background-color: #333333;
  border-radius: 5px;
  resize: none;
  color: #E0E0E0;
  padding: 10px;
  padding-top: 15px;
}

.footer__contact_textArea textarea::placeholder {
  color: #E0E0E0;
}

.footer__contact_textArea legend {
  text-align: center;
  max-width: 165px;
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #333333;
  padding: 5px 5px;
  color: #BDBDBD;
  font-size: 12px;
}

.footer__send-form {
  display: flex;
  flex-direction: row;
}

/* checkbox */

.footer__contact_checkBox {
  position: relative;
  display: flex;
  align-items: center;
  bottom: 5px;
}

.footer__contact_checkBox input {
  appearance: none;
  position: absolute;
}

.footer__checkbox_unchecked .footer__checkbox_label::before {
  border: 1px solid #FFA300;
}

.footer__checkbox_label {
  padding-left: 20px;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding-top: 1px;
  color: #BDBDBD;
}

.footer__checkbox_label::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-color: #333333;
  border: 1px solid #BDBDBD;
  border-radius: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: .3s;
}

.footer__checkbox_label::after {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-color: #BDBDBD;
  border-radius: 1px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

.footer__contact_checkBox input:checked+.footer__checkbox_label::after {
  opacity: 1;
}

/* footer send btn */

.footer__send-btn-form {
  width: 108px;
  margin-top: 15px;
  margin-left: 260px;
}

#footer__send-btn {
  display: none;
}

.footer__send-btn_label {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  color: #FEFEFE;
  background-color: #333333;
  margin-top: 18px;
  font-size: 14px;
}

.footer__send-btn_label {
  display: flex;
  cursor: pointer;
}

.footer__send-btn-form img {
  align-self: center;
  width: 48px;
  max-height: 12px;
}

.footer__send-btn-form p {
  padding-right: 25px;
}

/* footer info */

.footer__info {
  width: 60%;
  padding-left: 150px;
  color: #FEFEFE;
  font-family: 'Roboto', sans-serif
}

.footer__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-top: 90px;
}

.footer__navigation_nav {
  margin-right: 130px;
}

.footer__navigation_nav a, a:visited {
  text-decoration: none;
  color: #FEFEFE;
}

.footer__navigation_nav ul {
  display: flex;
}

.footer__navigation_nav ul li {
  margin-right: 73px;
}

.footer__navigation_nav ul li:last-child {
  margin-right: 0;
}

.donate-btn {
  text-transform: uppercase;
}

.footer__contacts {
  margin-top: 43px;
}

.footer__contacts h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  cursor: default;
}

.footer__contacts_adresses {
  display: block;
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.footer__contacts_phones {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #FEFEFE;
}

.footer__contacts_phones a {
  font-style: normal;
}

.footer__contacts_phone {
  margin-bottom: 10px;
}

.footer__contacts_phones a, a:visited {
  text-decoration: none;
  color: #FEFEFE;
}

.footer__info_social ul {
  display: flex;
}

.footer__info_social ul li {
  margin-right: 15px;
}

.footer__info_social ul li:last-child {
  margin-right: 0;
}

.footer__donate-btn {
  width: 275px;
  text-transform: uppercase;
  position: relative;
  bottom: 15px;
  font-weight: 500;
  font-size: 18px;
}

/* footer line */

.footer__line div {
  min-height: .5px;
  background-color: #FEFEFE;
  min-width: 100%;
  margin-bottom: 25px;
}

.footer__after-line {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #BDBDBD;
  margin-bottom: 75px;
  padding-top: 5px;
}

.footer__after-line p:first-child {
  margin-bottom: 5px;
}

.footer a, a:visited {
  text-decoration: none;
  color: #FFFFFF;
}

/* DARK THEME  */

.dark-theme .header {
  background-color: #333333;
  color: #FEFEFE;
}

.dark-theme .header__switcher_for::after {
  background-color: #4F4F4F;
}

.dark-theme .header__switcher_for::before {
  background-color: #1B1B1B;
}

.dark-theme .main {
  color: #F2F2F2;
}

.dark-theme .video {
  background-color: #4F4F4F;
}

.dark-theme .nav-carousel__item_active::after {
  background-color: #4F4F4F;
}

.dark-theme .review-carousel__item-inner p {
  color: #F2F2F2;
}

.dark-theme .header__logo h2, .dark-theme .header__logo p, .dark-theme .header__nav ul li a {
  color: #FEFEFE;
}

.dark-theme .header__nav {
  background-color: #333333;
}

.dark-theme .header__burger::after, .dark-theme .header__burger::before, .dark-theme .header__burger span {
  background-color: #FEFEFE;
}