* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  min-width: 330px;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  scrollbar-width: none;
  overflow-x: hidden;
  color: #6E8AA5;
}

.wrapper {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  grid-template-rows: 0fr 1fr 0fr;
  height: 100vh;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  gap: 10px 20px;
  max-width: 2400px;
  margin: 0 auto;
}
@media screen and (max-width: 1980px) {
  .wrapper {
    grid-template-columns: 320px 1fr 180px;
  }
}
@media screen and (max-width: 992px) {
  .wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.content {
  padding: 0 0 40px;
}
.content a {
  color: #333;
  text-decoration: underline;
}
.content ul, .content ol {
  padding-left: 20px;
  margin: 20px 0;
}
.content ul li, .content ol li {
  line-height: 1.4;
  margin: 0 0 5px;
}

strong {
  font-weight: 700;
  color: #333;
}

a {
  text-decoration: none;
  color: #6E8AA5;
  font-weight: 400;
}

p {
  line-height: 1.6;
  margin: 0 0 20px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input {
  outline: none;
}

.hidden {
  display: none !important;
}

.form_index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #6E8AA5;
  padding: 0 40px 0 20px;
  width: 100%;
}

section {
  margin: 0 0 40px;
}

button {
  font-weight: 400;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.icon {
  border: none;
  display: inline-block;
}
.icon.i_search {
  background: url(../img/i_search.svg) no-repeat center/cover;
  width: 17px;
  height: 17px;
  position: relative;
  top: 1px;
}
.icon.i_user {
  background: url(../img/i_user.svg) no-repeat center/cover;
  width: 17px;
  height: 17px;
}
.icon.i_notes {
  background: url(../img/i_notes.svg) no-repeat center/cover;
  width: 66px;
  height: 92px;
}
.icon.i_play {
  background: url(../img/i_play.svg) no-repeat center/cover;
  width: 60px;
  height: 60px;
}
.icon.i_share {
  background: url(../img/i_share.svg) no-repeat center/cover;
  width: 16px;
  height: 16px;
}
.icon.i_prev {
  background: url(../img/i_prev.svg) no-repeat center/cover;
  width: 20px;
  height: 8px;
}
.icon.i_car {
  background: url(../img/i_car.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
}
.icon.i_car_count {
  background: url(../img/i_car_count.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
  position: relative;
  top: 1px;
}
.icon.i_menu {
  background: url(../img/i_menu.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
}
.icon.i_close {
  background: url(../img/i_close.svg) no-repeat center/cover;
  width: 18px;
  height: 18px;
}
.icon.i_download {
  background: url(../img/i_download.svg) no-repeat center/cover;
  width: 18px;
  height: 18px;
}
.icon.i_exit {
  background: url(../img/i_exit.svg) no-repeat center/cover;
  width: 18px;
  height: 18px;
}

h1, .h1 {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

h2, .h2 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

h3, .h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

/*header*/
header {
  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;
  gap: 20px;
  padding: 20px 0;
  grid-column: 1/4;
}
@media screen and (max-width: 1200px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 15px 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
            box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 768px) {
  header {
    gap: 15px;
  }
}
header .logo {
  width: 100%;
  max-width: 320px;
  padding: 0 30px 0;
}
@media screen and (max-width: 1200px) {
  header .logo {
    max-width: 180px;
    padding: 0 10px 0;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    padding: 0;
  }
}
header .search {
  width: 100%;
}
header .technical {
  width: 100%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1980px) {
  header .technical {
    max-width: 240px;
  }
}
@media screen and (max-width: 992px) {
  header .technical {
    max-width: 200px;
    padding-right: 20px;
    gap: 15px;
  }
}
header .btn_search_mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  header .btn_search_mobile {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  header .btn_user span {
    display: none;
  }
}
header #car_count {
  position: relative;
}
header #car_count .count {
  position: absolute;
  background: #6E8AA5;
  color: #fff;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  bottom: 0px;
  right: -8px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
header .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
}
header .language_ru {
  position: relative;
}
header .language_ru::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -8px;
}
header .btn_menu_mobile {
  margin: 0 0 0 20px;
  display: none;
}
@media screen and (max-width: 1200px) {
  header .btn_menu_mobile {
    display: block;
  }
}

/*search*/
#search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  #search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
            box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
    z-index: 99;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #search.open {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#search .i_close {
  display: none;
}
@media screen and (max-width: 992px) {
  #search .i_close {
    display: block;
  }
}
#search form {
  width: 100%;
  position: relative;
}
#search .btn_search {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/*main*/
aside {
  grid-column: 1/1;
  padding: 0 10px 0 40px;
}
@media screen and (max-width: 1200px) {
  aside.mobile {
    visibility: hidden;
  }
}
aside.mobile.open {
  visibility: visible;
}
aside.mobile.open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  z-index: 99;
}
aside.mobile.open nav {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
aside.mobile.open .btn_close {
  opacity: 1;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
}
aside .btn_close {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 20px;
  opacity: 0;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
aside nav {
  position: sticky;
  top: 5%;
}
@media screen and (max-width: 1200px) {
  aside nav {
    position: fixed;
    background: #fff;
    padding: 20px;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 60px 20px 0 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}
aside nav ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
aside nav ul li a {
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
aside nav ul li a:hover {
  color: #333;
}

@media screen and (max-width: 1400px) {
  main {
    grid-column: 2/4;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  main {
    grid-column: 1/4;
    padding: 80px 20px 0;
  }
}

/*about*/
.about {
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .about {
    margin: 0 0 30px;
  }
}

.about_row {
  display: grid;
  grid-template-columns: 463px 1fr;
  gap: 20px;
}
@media screen and (max-width: 1400px) {
  .about_row {
    grid-template-columns: 340px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .about_row {
    grid-template-columns: 1fr;
  }
}
.about_row .img {
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
/*.about_row .img img {
  position: absolute;
  inset: 0;
}*/
/*.about_row .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}*/
.about_row .name {
  font-size: 20px;
  margin: 20px 0;
}
.about_row .desc {
  font-size: 18px;
  line-height: 1.6;
}

/*news_music*/
.news_music, .news_video {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .news_music, .news_video {
    margin: 0 0 40px;
  }
}

.news_music_row, .news_video_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .news_music_row, .news_video_row {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .news_music_row, .news_video_row {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .news_music_row, .news_video_row {
    grid-template-columns: repeat(3, 1fr);
    margin: 20px 0;
  }
}
@media screen and (max-width: 620px) {
  .news_music_row, .news_video_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news_music_row .item, .news_video_row .item {
  text-decoration: none;
}
.news_music_row .item:hover .i_play, .news_video_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.news_music_row .item:hover .i_notes, .news_video_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.news_music_row .item:hover .img img, .news_video_row .item:hover .img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.news_music_row .item:hover .img::after, .news_video_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.news_music_row .item .img, .news_video_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
}
.news_music_row .item .img img, .news_video_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.news_music_row .item .img::before, .news_video_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.news_music_row .item .img::after, .news_video_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.news_music_row .item .title, .news_video_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
}
@media screen and (max-width: 620px) {
  .news_music_row .item .title, .news_video_row .item .title {
    font-size: 14px;
  }
}
.news_music_row .item .icon, .news_video_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}

/*news*/
.all_news {
  margin: 40px 0 0;
}
.all_news .news_more {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F1F8FF;
  font-size: 14px;
  color: #6E8AA5;
  text-decoration: none;
}

.all_news_row .item {
  margin: 0 0 40px;
}
.all_news_row a {
  color: #6E8AA5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.all_news_row a:hover {
  color: #333;
}
.all_news_row .info_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 20px;
  font-size: 14px;
  margin: 0 0 20px;
}
.all_news_row .info_row .data {
  position: relative;
}
.all_news_row .info_row .data::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -12px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #6E8AA5;
}
.all_news_row .info_row .data:last-child::before {
  display: none;
}
.all_news_row .desc {
  line-height: 1.6;
  margin: 10px 0 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
}
.all_news_row .link_row {
  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;
  font-size: 14px;
}
.all_news_row .more {
  text-decoration: underline;
}
.all_news_row .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.all_news_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*literary*/
.literary_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .literary_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .literary_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .literary_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.literary_row .item {
  text-decoration: none;
  margin: 0 0 120px;
}
.literary_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.literary_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.literary_row .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.literary_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.literary_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.literary_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
/*.literary_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}*/
.literary_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.literary_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .literary_row .item .title {
    font-size: 14px;
  }
}
.literary_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}
.literary_row .item .price {
  color: #6E8AA5;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .literary_row .item .price {
    font-size: 24px;
  }
}
.literary_row .item .add_car {
  background: #6E8AA5;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.literary_row .item .add_car.added-to-cart {
  background: #2d4c90;
}
@media screen and (max-width: 480px) {
  .literary_row .item .add_car {
    width: 50px;
    height: 50px;
  }
}

/*literary_detailed*/
.literary_detailed {
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .literary_detailed {
    padding: 0;
  }
}

.literary_detailed_row {
  width: 100%;
}
.literary_detailed_row .desc h3 {
  margin: 0 0 10px;
}

.literary_detailed_props {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .literary_detailed_props {
    grid-template-columns: 1fr;
  }
}
.literary_detailed_props .literary_props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .literary_detailed_props .literary_props {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.literary_detailed_props .literary_img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  /* max-height: 400px; */
}
.literary_detailed_props .literary_img_photo {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .literary_detailed_props .literary_img,
  .literary_detailed_props .literary_img_photo {
    max-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.literary_detailed_props .literary_img img,
.literary_detailed_props .literary_img_photo img {
  /*-webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;*/
}
/*.literary_detailed_props .literary_img::before {
  content: "";
  display: block;
  padding: 60% 0 100%;
}*/
.literary_detailed_props .params {
  line-height: 1.6;
  margin: 0 0 20px;
}
.literary_detailed_props .price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.literary_detailed_props .add_car_detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  border-radius: 6px;
  background: #6E8AA5;
  text-decoration: none;
  color: #fff;
}
.literary_detailed_props .info_text {
  margin: 20px 0 0;
  font-size: 14px;
}
.literary_detailed_props .download_file {
  margin: 10px 0;
}
.literary_detailed_props .download {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.literary_detailed_props .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

/* auth page (now styled via css/wp-signup.css for consistency) */

.link_row {
  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;
  font-size: 14px;
}
.link_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*music*/
.music_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .music_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .music_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .music_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.music_row .item {
  text-decoration: none;
  margin: 0 0 120px;
}
.music_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.music_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.music_row .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.music_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.music_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.music_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.music_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.music_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.music_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .music_row .item .title {
    font-size: 14px;
  }
}
.music_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}
.music_row .item .price {
  color: #6E8AA5;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .music_row .item .price {
    font-size: 24px;
  }
}
.music_row .item .add_car {
  background: #6E8AA5;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.music_row .item .add_car.added-to-cart {
  background: #004eff;
}
@media screen and (max-width: 480px) {
  .music_row .item .add_car {
    width: 50px;
    height: 50px;
  }
}

/*music_detailed*/
.music_detailed {
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .music_detailed {
    padding: 0;
  }
}

.music_detailed_row {
  width: 100%;
}
.music_detailed_row .desc h3 {
  margin: 0 0 10px;
}

.music_detailed_props {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .music_detailed_props {
    grid-template-columns: 1fr;
  }
}
.music_detailed_props .music_props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .music_detailed_props .music_props {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.music_detailed_props .music_img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .music_detailed_props .music_img {
    max-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.music_detailed_props .music_img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.music_detailed_props .music_img::before {
  content: "";
  display: block;
  padding: 60% 0 100%;
}
.music_detailed_props .params {
  line-height: 1.6;
  margin: 0 0 20px;
}
.music_detailed_props .price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.music_detailed_props .add_car_detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  border-radius: 6px;
  background: #6E8AA5;
  text-decoration: none;
  color: #fff;
}
.music_detailed_props .info_text {
  margin: 20px 0 0;
  font-size: 14px;
}
.music_detailed_props .download_file {
  margin: 10px 0;
}
.music_detailed_props .download {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.music_detailed_props .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.link_row {
  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;
  font-size: 14px;
}
.link_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*nots*/
.nots_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .nots_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .nots_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .nots_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.nots_row .item {
  text-decoration: none;
  margin: 0 0 120px;
}
.nots_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.nots_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.nots_row .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.nots_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.nots_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.nots_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.nots_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.nots_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.nots_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .nots_row .item .title {
    font-size: 14px;
  }
}
.nots_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}
.nots_row .item .price {
  color: #6E8AA5;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .nots_row .item .price {
    font-size: 24px;
  }
}
.nots_row .item .add_car {
  background: #6E8AA5;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.nots_row .item .add_car.added-to-cart {
  background: #004eff;
}
@media screen and (max-width: 480px) {
  .nots_row .item .add_car {
    width: 50px;
    height: 50px;
  }
}

/*nots_detailed*/
.nots_detailed {
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .nots_detailed {
    padding: 0;
  }
}

.nots_detailed_row {
  width: 100%;
}
.nots_detailed_row .desc h3 {
  margin: 0 0 10px;
}

.nots_detailed_props {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .nots_detailed_props {
    grid-template-columns: 1fr;
  }
}
.nots_detailed_props .nots_props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .nots_detailed_props .nots_props {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.nots_detailed_props .nots_img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .nots_detailed_props .nots_img {
    max-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.nots_detailed_props .nots_img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.nots_detailed_props .nots_img::before {
  content: "";
  display: block;
  padding: 60% 0 100%;
}
.nots_detailed_props .params {
  line-height: 1.6;
  margin: 0 0 20px;
}
.nots_detailed_props .price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.nots_detailed_props .add_car_detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  border-radius: 6px;
  background: #6E8AA5;
  text-decoration: none;
  color: #fff;
}
.nots_detailed_props .info_text {
  margin: 20px 0 0;
  font-size: 14px;
}
.nots_detailed_props .download_file {
  margin: 10px 0;
}
.nots_detailed_props .download {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.nots_detailed_props .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.link_row {
  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;
  font-size: 14px;
}
.link_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*video*/
.video_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .video_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .video_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .video_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.video_row .item {
  text-decoration: none;
  margin: 0 0 120px;
}
.video_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.video_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.video_row .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.video_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.video_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.video_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.video_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.video_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.video_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .video_row .item .title {
    font-size: 14px;
  }
}
.video_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}
.video_row .item .price {
  color: #6E8AA5;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .video_row .item .price {
    font-size: 24px;
  }
}
.video_row .item .add_car {
  background: #6E8AA5;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.video_row .item .add_car.added-to-cart {
  background: #004eff;
}
@media screen and (max-width: 480px) {
  .video_row .item .add_car {
    width: 50px;
    height: 50px;
  }
}

/*video_detailed*/
.video_detailed {
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .video_detailed {
    padding: 0;
  }
}

.video_detailed_row {
  width: 100%;
}
.video_detailed_row .desc h3 {
  margin: 0 0 10px;
}

.video_detailed_props {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .video_detailed_props {
    grid-template-columns: 1fr;
  }
}
.video_detailed_props .video_props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .video_detailed_props .video_props {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.video_detailed_props .video_img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .video_detailed_props .video_img {
    max-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.video_detailed_props .video_img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.video_detailed_props .video_img::before {
  content: "";
  display: block;
  padding: 60% 0 100%;
}
.video_detailed_props .params {
  line-height: 1.6;
  margin: 0 0 20px;
}
.video_detailed_props .price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.video_detailed_props .add_car_detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  border-radius: 6px;
  background: #6E8AA5;
  text-decoration: none;
  color: #fff;
}
.video_detailed_props .info_text {
  margin: 20px 0 0;
  font-size: 14px;
}
.video_detailed_props .download_file {
  margin: 10px 0;
}
.video_detailed_props .download {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.video_detailed_props .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.link_row {
  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;
  font-size: 14px;
}
.link_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*photo*/
.photo_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin: 35px 0;
}
@media screen and (max-width: 1680px) {
  .photo_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .photo_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .photo_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.photo_row .item {
  text-decoration: none;
  margin: 0 0 40px;
}
.photo_row .item:hover .i_play {
  background: url(../img/i_play_w.svg) no-repeat center/cover;
}
.photo_row .item:hover .i_notes {
  background: url(../img/i_notes_w.svg) no-repeat center/cover;
}
.photo_row .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.photo_row .item:hover .img::after {
  content: "";
  position: absolute;
  background: #333;
  inset: 0;
  opacity: 0.2;
}
.photo_row .item .img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: block;
}
.photo_row .item .img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.photo_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.photo_row .item .img::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  inset: 0;
  opacity: 0.4;
}
.photo_row .item .title {
  font-size: 16px;
  color: #333;
  margin: 10px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .photo_row .item .title {
    font-size: 14px;
  }
}
.photo_row .item .icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
}
.photo_row .item .price {
  color: #6E8AA5;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .photo_row .item .price {
    font-size: 24px;
  }
}
.photo_row .item .add_car {
  background: #6E8AA5;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.photo_row .item .add_car.added-to-cart {
  background: #004eff;
}
@media screen and (max-width: 480px) {
  .photo_row .item .add_car {
    width: 50px;
    height: 50px;
  }
}

/*photo_detailed*/
.photo_detailed {
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .photo_detailed {
    padding: 0;
  }
}

.photo_detailed_row {
  width: 100%;
}
.photo_detailed_row .desc h3 {
  margin: 0 0 10px;
}

.photo_detailed_props {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .photo_detailed_props {
    grid-template-columns: 1fr;
  }
}
.photo_detailed_props .photo_props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .photo_detailed_props .photo_props {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.photo_detailed_props .photo_img {
  position: relative;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .photo_detailed_props .photo_img {
    max-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}
.photo_detailed_props .photo_img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  inset: 0;
}
.photo_detailed_props .photo_img::before {
  content: "";
  display: block;
  padding: 60% 0 100%;
}
.photo_detailed_props .params {
  line-height: 1.6;
  margin: 0 0 20px;
}
.photo_detailed_props .price {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.photo_detailed_props .add_car_detailed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  border-radius: 6px;
  background: #6E8AA5;
  text-decoration: none;
  color: #fff;
}
.photo_detailed_props .info_text {
  margin: 20px 0 0;
  font-size: 14px;
}
.photo_detailed_props .download_file {
  margin: 10px 0;
}
.photo_detailed_props .download {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.photo_detailed_props .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #6E8AA5;
  text-decoration: none;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.link_row {
  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;
  font-size: 14px;
}
.link_row .new_prev {
  color: #6E8AA5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*footer*/
footer {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  background: #F1F8FF;
}
@media screen and (max-width: 1980px) {
  footer {
    grid-template-columns: 320px 1fr 180px;
  }
}
@media screen and (max-width: 1200px) {
  footer {
    grid-template-columns: 1fr;
  }
}
footer .footer_row {
  width: 100%;
  grid-column: 2/2;
  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;
  padding: 20px;
}
@media screen and (max-width: 1200px) {
  footer .footer_row {
    grid-column: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_row {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
    gap: 10px;
  }
}
footer a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer a:hover {
  color: #333;
  text-decoration: underline;
}

/*breadcrumbs*/
.breadcrumbs {
  margin: 0 0 20px;
}
.breadcrumbs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 15px;
  margin: 0;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .breadcrumbs ul {
    font-size: 12px;
  }
}
.breadcrumbs ul li {
  color: #8d8d8d;
}
.breadcrumbs ul .link {
  position: relative;
}
.breadcrumbs ul .link::before {
  content: "/";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -10px;
  color: #6E8AA5;
}
.breadcrumbs ul .link a {
  color: #6E8AA5;
}

.inner_page .content {
  margin: 20px 0 0;
}

.content_title {
  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;
}