@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  overflow-x: hidden;
}

html {
  width: 100%;
  height: 100%;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button,
input button:active,
input:active,
button:focus,
input:focus {
  outline: none;
}

/* Удаляем все анимации и переходы для людей, которые предпочитают их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.news__item p, .mtv__text {
  border-radius: 20px 0;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  background: #1C1B21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Poppins";
  color: #fff;
  overflow: hidden;
}

.main {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.header {
  width: 100%;
  position: fixed;
  top: 100px;
  opacity: 0;
  left: 0;
  z-index: 10;
}

.header._active {
  top: 0;
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.header__container {
  max-width: 950px;
  padding: 0 15px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 260px 1fr;
      grid-template: 1fr / 260px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  position: relative;
  z-index: 10;
}

.menu__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.menu__link:hover {
  color: #d4d4d4;
  border-bottom: 2px solid #d4d4d4;
}

.menu__list {
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .header__container {
    height: 90px;
  }
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .header__logo img {
    width: 30px;
  }
  .menu {
    -ms-grid-column-align: end;
        justify-self: end;
  }
  .menu__body {
    padding-top: 50px;
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1C1B21;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__body li {
    margin-bottom: 5px;
    margin-left: 15px;
  }
  .header__container {
    height: 50px;
  }
  .menu__icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 25px;
    height: 15px;
    cursor: pointer;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon span {
    top: 50%;
    -webkit-transform: translate(0px, -50%);
            transform: translate(0px, -50%);
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #fff;
    border-radius: 5px;
  }
  .menu__icon._active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .menu__icon._active::before {
    top: 50%;
    -webkit-transform: rotate(45deg) translate(0px, -50%);
            transform: rotate(45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0px, -50%);
            transform: rotate(-45deg) translate(0px, -50%);
  }
}

.first {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  background: url("../img/first/background.jpg") center no-repeat;
  background-size: cover;
}

.first .container {
  position: relative;
  width: 100%;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: start;
}

.first .container h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  margin-bottom: 10px;
  -webkit-transform: translate(0, 120%);
          transform: translate(0, 120%);
  opacity: 0;
}

.first .container h2._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

.first .container h1 {
  font-weight: 700;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #fff;
  -webkit-transform: translate(0, 120%);
          transform: translate(0, 120%);
  opacity: 0;
}

.first .container h1._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 2s ease 2s;
  transition: all 2s ease 2s;
}

@media (min-width: 768px) {
  .first h1 {
    font-size: 100px;
    line-height: 150px;
  }
}

.news {
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template: 1fr / 1fr 1fr 1fr;
  padding: 20px 0;
  position: relative;
}

.news__item {
  position: relative;
}

.news__item img {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.news__item._active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}

.news__item p {
  position: absolute;
  bottom: 0;
  width: 350px;
  padding: 20px;
  background: rgba(122, 102, 204, 0.7);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  -webkit-transform: translate(0, 120%);
          transform: translate(0, 120%);
  opacity: 0;
}

.news__item._active p {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

@media (max-width: 1200px) {
  .news {
    -ms-grid-rows: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr 1fr / 1fr 1fr;
    justify-items: center;
    row-gap: 20px;
  }
  .news__item:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 20px 0;
    -ms-grid-rows: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr;
        grid-template: 1fr 1fr 1fr / 1fr;
  }
  .news__item:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 375px) {
  .news__item,
  .news__item img,
  .news__item p {
    width: 100%;
  }
}

.about {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 180px;
}

.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 0;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.about__title._active {
  font-size: 48px;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.about__title img {
  margin-right: 30px;
}

.about p {
  width: 80%;
  font-size: 16px;
  line-height: 24px;
  margin-top: 80px;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transform: translate(-120%, 0);
          transform: translate(-120%, 0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.about p._active {
  margin-bottom: 60px;
  opacity: 0.5;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.about__item {
  position: relative;
}

.about__img1 {
  position: absolute;
  top: 70px;
  right: 95px;
  z-index: 2;
  -webkit-transform: translate(120%, 0);
          transform: translate(120%, 0);
  opacity: 0;
}

.about__img2 {
  margin-top: 150px;
  -webkit-transform: translate(120%, 0);
          transform: translate(120%, 0);
  opacity: 0;
}

.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
      grid-template: 1fr 1fr / 1fr 1fr;
  gap: 30px;
}

.about__list li {
  -webkit-transform: translate(-120%, 0);
          transform: translate(-120%, 0);
  opacity: 0;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__list li img {
  margin-right: 20px;
}

.about__list._active li {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

@media (min-width: 993px) {
  .about__item._active .about__img1 {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    -webkit-transition: all 2s ease 1s;
    transition: all 2s ease 1s;
  }
  .about__item._active .about__img2 {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    -webkit-transition: all ease 2s;
    transition: all ease 2s;
  }
}

@media (max-width: 992px) {
  .about {
    display: block;
    text-align: center;
    margin: 50px 0;
  }
  .about .about__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 30px;
  }
  .about p {
    width: 100%;
    margin-top: 30px;
  }
  .about__img2 {
    display: none;
  }
  .about__img1 {
    display: none;
  }
  .about__list {
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: minmax(0, 1fr) 1fr minmax(0, 1fr);
        grid-template: 1fr 1fr 1fr 1fr/minmax(0, 1fr) 1fr minmax(0, 1fr);
  }
  .about__list li {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .about__list li img {
    width: 30px;
  }
  .about__list._active li {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  .about__list._active li:nth-child(1) {
    -webkit-transition: -webkit-transform 1s ease 0s;
    transition: -webkit-transform 1s ease 0s;
    transition: transform 1s ease 0s;
    transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
  }
  .about__list._active li:nth-child(2) {
    -webkit-transition: -webkit-transform 1s ease 0.4s;
    transition: -webkit-transform 1s ease 0.4s;
    transition: transform 1s ease 0.4s;
    transition: transform 1s ease 0.4s, -webkit-transform 1s ease 0.4s;
  }
  .about__list._active li:nth-child(3) {
    -webkit-transition: -webkit-transform 1s ease 0.6s;
    transition: -webkit-transform 1s ease 0.6s;
    transition: transform 1s ease 0.6s;
    transition: transform 1s ease 0.6s, -webkit-transform 1s ease 0.6s;
  }
  .about__list._active li:nth-child(4) {
    -webkit-transition: -webkit-transform 1s ease 0.8s;
    transition: -webkit-transform 1s ease 0.8s;
    transition: transform 1s ease 0.8s;
    transition: transform 1s ease 0.8s, -webkit-transform 1s ease 0.8s;
  }
}

@media (max-width: 375px) {
  .about__img1 {
    width: 100%;
  }
}

.mtv {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: block;
  position: relative;
  margin-top: 150px;
  margin-bottom: 780px;
}

.mtv__text {
  width: 100%;
  position: absolute;
  -webkit-transform: translate(120%, 0);
          transform: translate(120%, 0);
  opacity: 0;
  margin-top: 85px;
  padding: 50px 0 50px 80px;
  border: 1px solid #fff;
}

.mtv__text p {
  width: 520px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-weight: 400;
}

.mtv__img {
  position: absolute;
  top: 50%;
  right: 80px;
  -webkit-transform: translate(-120%, 0);
          transform: translate(-120%, 0);
  opacity: 0;
}

.mtv__link {
  display: block;
  color: #7A66CC;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 25px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.mtv__link:hover {
  color: #4d4082;
}

.mtv._active .mtv__text {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.mtv._active .mtv__img {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

@media (max-width: 1200px) {
  .mtv {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mtv__text {
    position: static;
    padding: 50px 80px;
  }
  .mtv__text p {
    width: 100%;
  }
  .mtv__img {
    display: none;
  }
}

@media (max-width: 768px) {
  .mtv__text {
    padding: 10px 20px;
  }
}

.music {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-bottom: 200px;
}

.music__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.music__img-img {
  border-radius: 50%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-transform: translate(120%, 0) scale(0);
          transform: translate(120%, 0) scale(0);
  opacity: 0;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.music__img-img._active {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.music__img-img._play {
  -webkit-animation-name: musicPlayImg;
          animation-name: musicPlayImg;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.music__body {
  max-width: 540px;
  width: 100%;
  display: block;
  -webkit-transform: translate(-120%, 0) scale(0);
          transform: translate(-120%, 0) scale(0);
  opacity: 0;
}

.music__body._active {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.music__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 330px;
  width: 100%;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 62px;
}

.music__player {
  max-width: 543px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.music__player .progres__container {
  margin-left: 50px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.music__player .progres__container .progres {
  max-width: 100%;
  width: 0;
  height: 6px;
  border-radius: 10px;
  background: #7A66CC;
}

.music .player__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.music .player__btns {
  cursor: pointer;
}

.music .player__btns .play {
  margin: 0 20px;
}

.music .song__title {
  color: #fff;
  font-size: 18px;
}

@-webkit-keyframes musicPlayImg {
  0% {
    -webkit-box-shadow: 0 0 0 30px rgba(122, 102, 204, 0.6), 0 0 0 60px rgba(122, 102, 204, 0.3);
            box-shadow: 0 0 0 30px rgba(122, 102, 204, 0.6), 0 0 0 60px rgba(122, 102, 204, 0.3);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes musicPlayImg {
  0% {
    -webkit-box-shadow: 0 0 0 30px rgba(122, 102, 204, 0.6), 0 0 0 60px rgba(122, 102, 204, 0.3);
            box-shadow: 0 0 0 30px rgba(122, 102, 204, 0.6), 0 0 0 60px rgba(122, 102, 204, 0.3);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .music {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 80px;
    margin-bottom: 50px;
    margin-bottom: 70px;
  }
  .music__title {
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 50px;
    font-size: 30px;
  }
  .music__img-img {
    width: 60%;
    margin: 0 auto;
  }
  .song__title {
    text-align: center;
  }
}

.gallery {
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template: 1fr 1fr / 1fr 1fr 1fr 1fr;
  gap: 38px;
}

.gallery .gallery__text {
  font-size: 24px;
  color: #7A66CC;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.gallery .gallery___item {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  cursor: pointer;
}

.gallery .gallery___item img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.gallery .gallery___item:hover img {
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}

.gallery .gallery___item:hover .gallery__text {
  opacity: 1;
}

.gallery .gallery___item_low_row {
  opacity: 0;
  -webkit-transform: translate(0, -120%);
          transform: translate(0, -120%);
}

.gallery .gallery___item_low_row._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.gallery .gallery___item_big_row {
  grid-row: span 2;
}

.gallery .gallery___item_big_row {
  opacity: 0;
}

.gallery .gallery___item_big_row._active {
  opacity: 1;
  -webkit-transition: all 1s ease 2s;
  transition: all 1s ease 2s;
}

@media (max-width: 1200px) {
  .gallery {
    -ms-grid-rows: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr 1fr / 1fr 1fr;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gallery .gallery___item_big_row {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .gallery .gallery___item_low_row {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 767px) {
  .gallery {
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr;
        grid-template: 1fr 1fr 1fr 1fr / 1fr;
  }
  .gallery img {
    width: 100%;
  }
}

.tours {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  margin-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tours .card {
  margin: 20px 0;
  border-radius: 30px 0;
  background: #9e9e9e;
  opacity: 0;
  max-width: 350px;
  width: 100%;
}

.tours .card._active {
  background: #2F2B2B;
  opacity: 1;
  -webkit-transition: all ease 2s;
  transition: all ease 2s;
}

.tours .card img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  max-width: 350px;
  width: 100%;
}

.tours .card img:hover {
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
}

.tours .card__title {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.5;
  margin: 30px 0 20px 35px;
}

.tours .card__text {
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0 30px 35px;
}

.tours .card .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tours .card .btns p {
  opacity: 0.5;
  margin: 0 auto;
}

.tours .card .btns a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  background: #7A66CC;
  padding: 20px 60px;
  border-radius: 30px 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.tours .card .btns a:hover {
  background: #646464;
  color: black;
}

.tours .card .btns p,
.tours .card .btns a {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .tours {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer {
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  margin-top: 180px;
}

.footer * {
  margin: 0 auto;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 510px;
  width: 100%;
}

.contacts__img {
  max-width: 533px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.copyright {
  margin-top: 100px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 50px;
  }
  .contacts__img {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__links li {
    margin: 10px 0;
  }
  .copyright {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
