@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Thin.woff2') format('woff2'),
        url('../fonts/Mont-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.woff2') format('woff2'),
        url('../fonts/Mont-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Light.woff2') format('woff2'),
        url('../fonts/Mont-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.woff2') format('woff2'),
        url('../fonts/Mont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* VARIABLES */
:root {
    --bg-color: #34261E;
    --white-color: #fff;
    --primary-font: 'Mont', sans-serif;
    --primary-color: #5F4A3A;
    --primary-color-300: #CC9956;
    --text-color: #F4EEEC;
    --animate-duration: 2s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    font-size: 62.5%;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

html.is-locked {
    overflow: hidden;
}

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

button {
    appearance: none;
    border: none;
    background: none;
    border: none;
    cursor: pointer;
}

ul, ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    min-height: -webkit-fill-available;
}

body {
    background: var(--bg-color);
    font-family: var(--primary-font);
    font-weight: normal;
    font-size: 1.6rem;
    min-height: -webkit-fill-available;
}

.body {
    width: 100vw;
    height: 100dvh;
    min-height: -webkit-fill-available;
    overflow: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    /* max-width: 1540px; */
}

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

.header__container {
    display: flex;
    align-items: center;
    padding-top: 65px;
    padding-bottom: 65px;
}

.header__logo {
    display: block;
    margin-left: auto;
}

.logo__img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.navigation__list {
    display: flex;
    align-items: center;
}

.navigation__list-item:not(:last-child) {
    margin-right: 50px;
}

.navigation__list-link {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.8rem;
    letter-spacing: .05em;
}

.navigation__list-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--text-color);
    top: 100%;
    transform: translateY(5px);
    left: 0;
    opacity: 0;
    transition: transform .5s ease;
    will-change: transform;
}

.navigation__list-link:hover::before {
    opacity: 1;
    transform: none;
}

.navigation__list-link_is-active {
    pointer-events: none;
}

.navigation__list-link_is-active::before {
    opacity: 1;
    transform: none;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.footer__container {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

.footer__text {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: .04em;
    color: var(--white-color);
}

.footer__text:last-child {
    margin-left: auto;
}

.footer__text a {
    text-decoration: none;
    color: var(--white-color);
}

.footer__text a:hover {
    opacity: .85;
}

.template {
    width: 100%;
    height: 100dvh;
    min-height: -webkit-fill-available;
    background: var(--bg-color);
}

.template__container {
    display: flex;
    width: 100%;
    height: 100%;
}

.template__col {
    position: relative;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    flex: 1;
}

.template__col:first-child {
    flex: 0 1 47vw;
}

.template__img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.template__img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../img/layer.svg') no-repeat 50%/cover;
}

.template__img-value {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
}

.template__title {
    position: absolute;
    bottom: 120px;
    left: 0;
    padding: 0 60px;
    margin: 0;
    font-size: 6.2rem;
    letter-spacing: .05em;
    font-weight: 300;
    color: var(--white-color);
    z-index: 10;
}

.template__grid {
    padding-left: 100px;
    padding-top: 130px;
    height: 100%;
}

.filter {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11;
}

.filter__button:not(:last-child) {
    margin-right: 10px;
}

.filter__button {
    color: var(--text-color);
    letter-spacing: .05em;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    height: 40px;
    padding: 0 25px;
}

.filter__button:hover {
    background: var(--primary-color);
}

.filter__button_is-active {
    pointer-events: none;
    background: var(--primary-color);
}

.template-item {
    display: block;
    text-decoration: none;
}

.template-item__name {
    margin: 0;
    color: var(--text-color);
    font-size: 2.2rem;
    margin-top: 20px;
}

.template-item__sub-name {
    margin: 0;
    margin-top: 8px;
    color: var(--primary-color-300);
}

.template-item__img {
    width: 100%;
}

.music-template__img {
    position: relative;
    /* max-height: 350px; */
}

.template-item__img-value {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template__list {
    margin-top: 30px;
    max-height: 100%;
}

.template__list {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    padding-bottom: 50px;
}

.music-template__list-item {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
    margin-bottom: 50px;
}

.music-template__list-item:nth-child(2n) {
    margin-right: 0;
}

.music-template__list-item:hover  .music-template__links {
	opacity: 1;
}

.music-template__list-item:hover  .music-template__links-item {
    opacity: 1;
    pointer-events: auto;
    opacity: 1;
    transform: none;
}

.music-template__links {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
	opacity: 0;
	transition: all .3s ease;
	will-change: auto;
    padding: 25px 15px;
    background: linear-gradient(to bottom, rgba(70,51,40, 0), rgba(21,14,10, 1));
    z-index: 1;
}

.music-template__links-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border: 1px solid var(--primary-color-300);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: .036em;
    color: var(--text-color);
    transform: translateY(-5px);
    transition: all .3s ease;
    pointer-events: none;
    will-change: transform;
}

.music-template__links-item:not(:last-child) {
    margin-right: clamp(5px, .625vw, 10px);
}

.music-template__links-item:hover {
    background: var(--primary-color-300);
}

.template__grid {
    padding-right: 60px;
}

.video-template__list-item {
    margin-bottom: 60px;
}

.video-template__list-item-img {
    position: relative;
}

.video-template__list-item-img::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url('../img/play.svg') no-repeat 50%/80px;
    transition: transform .3s ease;
    will-change: transform;
}

.video-template__list-item:hover .video-template__list-item-img::before {
    transform: scale(.96);
}

.main-template {
    height: 100dvh;
    max-height: 100dvh;
}

.main-template__grid, .main-template__swiper, .main-template__swiper-wrapper {
    width: 100%;
    height: 100%;
}

.main-swiper__slide {
    position: relative;
    background-size: cover;
    background-position: center 15%;
}

.main-swiper__slide::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/swiper-layer.svg') no-repeat 50%/cover;
    top: 0;
    left: 0;
    pointer-events: none;
}

.main-swiper__content {
    position: relative;
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 0 60px;
    /* max-width: 1540px; */
    left: 50%;
    transform: translateX(-50%);
    bottom: 230px;
    z-index: 11;
}

/* .main-swiper__content img:last-child {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
} */

.main-swiper__content-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: 5%;
    padding-left: 20px;
    border-left: 1px solid rgba(239,228,228, .4);
}

.main-swiper__content-title {
    font-size: 1.8rem;
    color: var(--primary-color-300);
    letter-spacing: .05em;
}

.main-swiper__content-sub-title {
    font-size: 3.6rem;
    color: var(--white-color);
    font-weight: 100;
    letter-spacing: .05em;
    margin-top: 5px;
}

.show-more {
    display: flex;
    justify-content: center;
}

.show-more__button {
    height: 50px;
    padding: 0 35px;
    color: var(--white-color);
    letter-spacing: .05em;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
}

.show-more__button:hover {
    background: var(--primary-color);
}

.template__show-more {
    position: relative;
    width: 100%;
    padding: 0;
    padding-bottom: 60px;
    z-index: 11;
}

.page-template {
    height: auto;
}

.page-template__container {
    display: block;
    padding: 200px 0;
    padding-bottom: 175px;
}

.page-template + .footer {
    position: relative;
}

.page-template__title {
    margin: 0;
    font-size: 6.2rem;
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: .08em;
    margin-bottom: 40px;
}

.about-template__grid {
    display: flex;
}

.about-template__col {
    width: calc((100% - 40px) / 2);
}

.about-template__col:not(:last-child) {
    margin-right: 40px;
}

.about-template__col img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.about-template__col img:not(:last-child) {
    margin-bottom: 70px;
}

.about-template__col p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.45;
    color: var(--text-color);
}

.about-template__col p:not(:last-child) {
    margin-bottom: 70px;
}

.contacts-template__grid {
    padding-top: 200px;
    overflow-y: auto;
    padding-right: calc((100vw - 1480px) / 2);
}

.contacts-template__section-title {
    margin: 0;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contacts-template__section:not(:last-child) {
    margin-bottom: 60px;
}

.contacts-template__section-link {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color-300);
    text-decoration: none;
    letter-spacing: .03em;
}

.contacts-template__section-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color-300);
    top: 100%;
    left: 0;
}

.contacts-template__section-link:hover {
    opacity: .85;
}

.contacts-template__section-link:not(:last-child) {
    margin-right: 20px;
}

.contacts-template__section-phone-link {
    margin: 0;
    margin-bottom: 20px;
}

.contacts-template__section-phone-link a {
    text-decoration: none;
    font-size: 2.6rem;
    color: var(--text-color);
}

.contacts-template__section-phone-link a:hover {
    opacity: .85;
}

.contacts-template__section-link_is-rounded {
    height: 40px;
    padding: 0 25px;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    line-height: 39px;
    border-radius: 30px;
}

.contacts-template__section-link_is-rounded::before {
    content: none;
}

.contacts-template__section-link_is-rounded:hover {
    background: var(--primary-color);
}

.blog-template__container {
    padding-bottom: 100px;
}

.blog-template__title {
    margin-bottom: 55px;
}

.blog-template__list {
    display: flex;
    flex-wrap: wrap;
}

.blog-template__list-item {
    display: block;
    width: calc((100% - 110px) / 2);
    margin-right: 110px;
    margin-top: 130px;
}

.blog-template__list-item:nth-child(1), .blog-template__list-item:nth-child(2) {
    margin-top: 0;
}

.blog-template__list-item:nth-child(2n) {
    margin-right: 0;
}

.blog-item {
    text-decoration: none;
}

.blog-item:hover {
    opacity: .8;
}

.blog-item__img img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.blog-item__title {
    margin: 0;
    font-size: 2.6rem;
    margin-top: 30px;
    max-width: 65%;
    text-decoration: none;
    color: var(--text-color);
    line-height: 1.35;
}

.blog-item__date {
    display: block;
    color: var(--primary-color-300);
    margin-top: 15px;
}

.blog-template__show-more {
    display: flex;
    padding: 0;
    padding-top: 100px;
}

.article-template__container {
    padding-bottom: 130px;
}

.article-template__title {
    max-width: 930px;
    font-size: 4.4rem;
    font-weight: normal;
    letter-spacing: .011em;
    line-height: 1.25;
    margin-bottom: 0;
}

.article-template__grid {
    max-width: 930px;
    margin-top: 60px;
}

.article-template__date {
    margin: 0;
    color: var(--primary-color-300);
    font-size: 2.2rem;
    margin-top: 20px;
}

.article-template__back-link {
    position: relative;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .03em;
    color: var(--primary-color-300);
    padding-left: 65px;
    margin-top: 60px;
}

.article-template__back-link svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: transform .3s ease-in-out;
    will-change: transform;
}

.article-template__back-link::after {
    content: '';
    position: absolute;
    width: calc(100% - 65px);
    left: 65px;
    top: 100%;
    height: 1px;
    background: var(--primary-color-300);
}

.article-template__back-link:hover {
    opacity: .8;
}

.article-template__back-link:hover svg {
    transform: translateX(5px) translateY(-50%);
}

.article-template__grid img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.article-template__grid img:not(:last-child) {
    margin-bottom: 70px;
}

.article-template__grid p {
    margin: 0;
    font-size: 2rem;
    color: var(--white-color);
    line-height: 1.45;
    margin-bottom: 35px;
}

.article-template__grid p:last-child {
    margin-bottom: 0;
}

.m-btn {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
}

.m-btn__line {
    width: 100%;
    height: 2.5px;
    background: var(--text-color);
    border-radius: 3px;
    pointer-events: none;
    transition: transform .3s ease-in-out;
    will-change: transform;
}

.m-btn__line:not(:last-child) {
    margin-bottom: 6.5px;
}

.header__m-btn {
    margin-left: auto;
}

.m-btn_is-active .m-btn__line:first-child {
    transform: translate3d(0px, 4.45px, 0) rotate(-45deg);
}

.m-btn_is-active .m-btn__line:last-child {
    transform: translate3d(0, -4.25px, 0) rotate(45deg);
}

.m-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: -webkit-fill-available;
    top: 0;
    left: 0;
    background: var(--bg-color);
    transition: all .4s ease;
    pointer-events: none;
    transform-origin: 0 50%;
    opacity: 0;
    overflow: hidden;
    will-change: auto;
}

.m-menu_is-active {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 11;
}

.main-swiper__slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}

@keyframes bgChange {
    0% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(1.15);
    }
  }

.main-swiper .swiper-slide:last-child:not(.swiper-slide-active, .swiper-slide-next) .main-swiper__slide-img {
	animation: bgChange 9s forwards;
}

.main-swiper .swiper-slide-prev .main-swiper__slide-img {
	animation: bgChange 9s forwards;
}

.main-swiper .swiper-slide-active .main-swiper__slide-img {
	animation: bgChange 9s forwards;
}

@media screen and (min-width: 1100px) {
	.template__list {
		padding-bottom: 100px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1600px) {
    .navigation__list-item:not(:last-child) {
        margin-right: clamp(25px, 3.125vw, 50px);
    }

    .navigation__list-link {
        font-size: clamp(1.4rem, 1.125vw, 1.8rem);
    }
    .main-swiper__content img {
        max-width: clamp(450px, 40.19vw, 100%);
    }
    .main-swiper__content-sub-title {
        font-size: clamp(2.5rem, 2.25vw, 3.6rem);
    }
    .main-swiper__content-title {
        font-size: clamp(1.5rem, 1.125vw, 1.8rem);
    }
    .header__logo {
        max-width: clamp(220px, 18.75vw, 100%);
    }
    .page-template__title {
        font-size: clamp(5.2rem, 3.875vw, 6.2rem);
    }
    .about-template__col p {
        font-size: clamp(1.6rem, 1.25vw, 1.8rem);
    }
    .blog-item__title {
        font-size: clamp(1.8rem, 1.625vw, 2.6rem);
    }
    .template__title {
        font-size: clamp(5.2rem, 3.875vw, 6.2rem);
    }
    .article-template__title {
        font-size: clamp(3.2rem, 2.75vw, 4.4rem);
    }
    .article-template__date {
        font-size: clamp(1.6rem, 1.375vw, 2.2rem);
    }
    .blog-template__list-item {
        margin-top: clamp(65px, 8.125vw, 130px);
    }
    .blog-template__list-item:nth-child(1), .blog-template__list-item:nth-child(2) {
        margin-top: 0;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1600px) {
    .contacts-template__section-link:not(:last-child) {
        margin-right: clamp(10px, 0.625vw, 30px);
    }
    .contacts-template__section-title {
        font-size: clamp(1.8rem, 1.125vw, 2rem);
    }
    .contacts-template__section-phone-link a {
        font-size: clamp(2.2rem, 1.625vw, 2.6rem);
    }
    .contacts-template__section-link {
        font-size: clamp(1.4rem, 1vw, 1.6rem);
    }
    .filter__button {
        font-size: clamp(1.4rem, 1vw, 1.6rem);
    }
    .template-item__name {
        font-size: clamp(2rem, 1.375vw, 2.2rem);
    }
    .template-item__sub-name {
        font-size: clamp(1.4rem, 1vw, 1.6rem);
    }
    .template__grid {
        padding-left: clamp(50px, 6.25vw, 100px);
    }
}

@media screen and (min-width: 992px) {
    .music-template__grid, .video-template__grid {
        padding-right: 40px;
    }
    .music-template__list, .video-template__list {
        padding-right: 20px;
    }
}

@media screen and (max-width: 1540px) {
    .template__title {
        left: 0;
    }
    .music-template__links {
        padding: 25px clamp(5px, .625vw, 10px);
    }
    .music-template__links-item {
        padding: 0 clamp(5px, .94vw, 15px);
        font-size: clamp(.9rem, .875vw, 1.4rem);
    }
}

@media screen and (max-width: 1100px) {
    .template {
        height: auto;
        min-height: auto;
    }
    .template__container {
        flex-wrap: wrap;
        flex-direction: column;
		height: auto;
    }
    .template__col:nth-child(n) {
        width: 100%;
        flex: auto;
        max-height: none;
        overflow: visible;
    }
    .template__col:first-child {
        height: 132.6vw;
        max-width: 100%;
    }
    .main:not(.main-template) + .footer {
        position: relative;
    }
    .template__grid {
        padding-left: 60px;
        padding-right: 60px;
    }
    .template__list {
        padding-right: 0;
    }
    .music-template__img {
        max-height: none;
    }
    .blog-template__container {
        padding-bottom: 70px;
    }
    .blog-template__show-more {
        padding-top: 60px;
    }
    .blog-template__list-item {
        width: calc((100% - 55px) / 2);
        margin-right: 55px;
    }
    .blog-template__list-item:nth-child(2n) {
        margin-right: 0;
    }
    .contacts-template__grid {
        padding-top: 60px;
        padding-bottom: 90px;
		overflow: visible;
    }
}

@media screen and (max-width: 992px) {
    /* .header__container:not(.header__container_is-index) {
        padding-top: 30px;
        padding-bottom: 30px;
    } */
    .page-template__container {
        padding-top: 120px;
        padding-bottom: 85px;
    }
    .header {
        position: absolute;
        z-index: 12;
    }
    .header__container {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .header__logo {
        margin-left: 0;
    }
    .logo__img {
        max-width: 220px;
    }
    .template__title {
        font-size: 3.8rem;
        bottom: 30px;
    }
    .template__grid {
        height: auto;
        padding-top: 30px;
    }
    .footer {
        z-index: 9;
    }
    .footer__container {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 40px;
    }
    .footer__text:last-child {
        margin-left: 0;
        margin-top: 15px;
    }
    .template__list {
        // padding-bottom: 0;
        overflow: visible;
    }
    .video-template__list-item-img::before {
        width: 70px;
        height: 70px;
        margin-left: -35px;
        margin-top: -35px;
        background: url('../img/play.svg') no-repeat 50%/70px;
    }
    .show-more {
        display: flex;
    }
    .music-template__list-item:last-child, .video-template__list-item:last-child {
        margin-bottom: 0;
    }
    .main-swiper__content {
        bottom: 160px;
        flex-direction: column;
        align-items: flex-start;
    }
    .main-swiper__content-text {
        margin-left: 0;
        margin-top: 70px;
    }
    .m-btn {
        display: flex;
        z-index: 11;
    }
    .header__navigation {
        display: none;
    }
    .navigation__list {
        flex-direction: column;
    }
    .navigation__list-link {
        font-size: 2.2rem;
    }
    .navigation__list-item:not(:last-child) {
        margin: 0;
        margin-bottom: 40px;
    }
    .page-template__title {
        font-size: 3.8rem;
        margin-bottom: 30px;
    }
    .about-template__col p {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    .about-template__col img:not(:last-child) {
        margin-bottom: 45px;
    }
    .about-template__col p:not(:last-child) {
        margin-bottom: 45px;
    }
    .about-template__grid {
        flex-wrap: wrap;
    }
    .about-template__col {
        width: 100%;
    }
    .about-template__col:not(:last-child) {
        margin: 0;
        margin-bottom: 45px;
    }
    .article-template__title {
        font-size: 2rem;
        margin-bottom: 0;
    }
    .article-template__date {
        font-size: 1.6rem;
    }
    .article-template__grid {
        max-width: none;
        margin-top: 30px;
    }
    .article-template__grid img:not(:last-child) {
        margin-bottom: 40px;
    }
    .article-template__grid p {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    .article-template__back-link {
        margin-top: 15px;
    }
    .blog-item__title {
        font-size: 2rem;
        max-width: none;
        margin-top: 25px;
    }
    .blog-template__list-item:nth-child(n) {
        margin-top: 60px;
    }
    .blog-template__list-item:nth-child(1), .blog-template__list-item:nth-child(2) {
        margin-top: 0;
    }
    .blog-template__list-item {
        width: calc((100% - 30px) / 2);
        margin-right: 30px;
    }
    .blog-template__list-item:nth-child(2n) {
        margin-right: 0;
    }
    .music-template__links-item {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (max-width: 767px) {
    // .contacts-template__section {
    //    display: flex;
    //    flex-direction: column;
    //    align-items: flex-start;
    //}
    //.contacts-template__section-link:not(:last-child) {
    //    margin-right: 0;
    //    margin-bottom: 15px;
    //}
	.contacts-template__section-link:not(.contacts-template__section-link_is-rounded):not(:last-child) {
		margin-right: 20px;	
	}
	.contacts-template__section-link:not(:last-child) {
		margin-right: 10px;
	}
	.contacts-template__section-link.contacts-template__section-link_is-rounded {
		margin-bottom: 15px;
	}
	.contacts-template__section:not(:last-child):not(:first-child) {
		margin-bottom: 45px;
	}
}

@media screen and (max-width: 575px) {
    .blog-template__list-item {
        width: 100%;
        margin-right: 0;
    }
    .blog-template__list-item:nth-child(2n) {
        margin-right: 0;
        margin-top: 60px;
    }
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .main-swiper__content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .template__grid {
        padding-left: 30px;
        padding-right: 30px;
    }
    .template__title {
        padding: 0 30px;
    }
    .main-swiper__content img {
        max-width: 100%;
    }
    /* .main-template {
        overflow: hidden;
    } */
}

@media screen and (max-width: 476px) {
    .music-template__list-item {
        width: 100%;
    }
    .music-template__list-item:nth-child(n) {
        margin-right: 0;
    }
    .template__show-more {
        padding-top: 45px;
    }
    .music-template__links-item {
        padding: 0 20px;
        height: 40px;
        font-size: 1.4rem;
    }
    .music-template__links-item:not(:last-child) {
        margin-right: 15px;
    }
	.body .footer__container {padding-bottom: 30px;}
	.main-swiper__content {bottom: 105px;}
	.main-swiper__content-text {margin-top: 45px;}
	.main-swiper__content-text {padding-left: 15px;}
	.main-swiper__content picture {position:relative;left:-3px;}
	.main-swiper__content-sub-title {font-weight: 300;lie-height:1;}
	.main-swiper__content-text {padding-top: 5px;}
}

@media screen and (max-width: 376px) {
    .contacts-template__section-link:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@supports(padding:max(0px)) {
    body, header, footer {
        padding-left: min(0vmin, env(safe-area-inset-left));
        padding-right: min(0vmin, env(safe-area-inset-right));
    }
}