/* CSS Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
}

strong {
    font-weight: bolder;
}

em {
    font-style: italic;
}

html,
body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    float: left;
    width: 100%;
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    position: relative;
    background: #000;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

::selection {
    background: #9de2ff;
}

::-moz-selection {
    background: #9de2ff;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.54);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.54);
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.54);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.54);
}

input,
textarea,
button,
select {
    outline: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    border: 0;
    -webkit-appearance: none;
    font-weight: normal;
    font-size: 14px;
}

input[type=submit],
button {
    cursor: pointer;
}

div {
    box-sizing: border-box;
    display: flex;
}

table {
    border: 0 none;
    padding: 0;
    border-spacing: 0;
}

td {
    vertical-align: top;
}

img {
    border: none;
}

b,
strong {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

a {
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

* {
    transition: all 0.3s ease;
}

.container {
    width: 1140px;
    margin: 0 auto;
    overflow-x: hidden;
}

.header {
    display: flex;
    width: 100%;
    padding: 15px 0;
    background: #272728;
    box-shadow: inset 0px -2px 0px 0px #151515;
}

.header .container {
    /* flex-wrap: nowrap; */
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.header__logo {
    flex: 0 1 auto;
}

.header__logo img {
    transition: 0.3s;
    position: relative;
}

.header__logo:hover img {
    /* transform: scale(1.1) */
}

.header__button-bookmark {
    position: relative;
    flex: 0 1 auto;
    padding: 13px 35px;
    background: linear-gradient(270.3deg, #78c142 -19.65%, #78c142 99.73%, rgba(196, 196, 196, 0) 99.74%, #F28020 99.74%);
    border-radius: 22px;
    font-size: 16px;
    line-height: 19px;
    color: #FEFEFE;
}

.header__button-bookmark span {
    position: relative;
    z-index: 5;
    padding: 0 0 0 20px;
    background: url(../images/icon-bookmark.svg) no-repeat left top 3px;
}

.header__button-bookmark:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(270.3deg, #78c142 -19.65%, #78c142 99.73%, rgba(196, 196, 196, 0) 99.74%, #F28020 99.74%);
    border-radius: 22px;
    content: '';
    opacity: 0;
    transition: all 0.3s ease;
}

.header__button-bookmark:after {
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 3;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #2F2F30;
    border-radius: 22px;
    content: '';
    opacity: 0;
    transition: all 0.3s ease;
}

.header__button-bookmark:hover {
    background: #2F2F30;
}

.header__button-bookmark:hover:before,
.header__button-bookmark:hover:after {
    opacity: 1;
}

.header__button-bookmark:hover span {
    color: #78c142;
    background: url(../images/icon-bookmark-h.svg) no-repeat left top 3px;
}

.header__button-bookmark.added {
    background: #2F2F30;
}

.header__button-bookmark.added:before,
.header__button-bookmark.added:after {
    opacity: 1;
}

.header__button-bookmark.added span {
    color: #78c142;
    background: url(../images/icon-bookmark-h.svg) no-repeat left top 3px;
}

.content-block {
    flex: 0 1 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 10px 40px 10px;
    background: #272728;
    overflow-x: hidden;
}

.content-block__project-text {
    width: 100%;
    margin: 20px 0 10px 0;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    color: #F2F2F2;
}

.content-block__project-name {
    width: 100%;
    margin: 0px 0 20px 0;
    justify-content: center;
    color: #F2F2F2;
}

.content-block__project-name span {
    color: #e71010;
}

.content-block__project-name a {
    flex: 0 1 auto;
    box-shadow: inset 0px -3px 0px 0px #E0E0E0;
    font-weight: 700;
    font-size: 80px;
    line-height: normal;
    color: #F2F2F2;
}

.content-block__project-name a:hover {
    box-shadow: none;
    background: linear-gradient(270.3deg, #78c142 -19.65%, #a6d384 99.73%, rgba(196, 196, 196, 0) 99.74%, #78c142 99.74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-block__project-save {
    position: relative;
    max-width: 730px;
    margin: 0 auto 17px;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    display: block;
    color: #F2F2F2;
    text-align: center;
}

.content-block__project-save a {
    color: #78c142;
}

.content-block__project-save img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    margin-right: 7px;
    margin-bottom: -2px;
}

.content-block__project-name-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(241, 126, 33, 0) 0%, #78c142 53.12%, rgba(241, 126, 33, 0) 100%);
}

.content-block__save-title {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px auto 18px;
}

.content-block__save-buttons {
    width: 100%;
    padding-bottom: 26px;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #4F4F4F;
}

.content-block__save-buttons .button .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.content-block__save-buttons .button .icon.favorite {
    background: url(../images/icon-social-favorite.svg) no-repeat center;
    background-size: 100% auto;
}

.content-block__save-buttons .button.favorite:hover .icon.favorite {
    background: url(../images/icon-social-favorite-h.svg) no-repeat center;
    /* background-size: 55% auto; */
}

.content-block__save-buttons .button .icon.tg {
    background: url(../images/icon-social-tg.svg) no-repeat center left 45% #25A2E0;
    background-size: 51% auto;
}

.content-block__save-buttons .button.tg:hover .icon.tg {
    background: url(../images/icon-social-tg-h.svg) no-repeat center left 45% #fff;
    box-shadow: 0 0 0 3px #25A2E0;
    background-size: 55% auto;
}

.content-block__save-buttons .button .icon.vk {
    background: url(../images/icon-social-vk.svg) no-repeat center #0077FF;
    background-size: 50% auto;
}

.content-block__save-buttons .button.vk:hover .icon.vk {
    background: url(../images/icon-social-vk-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #0077FF;
    background-size: 55% auto;
}

.content-block__save-buttons .button .icon.ok {
    background: url(../images/icon-social-ok.svg) no-repeat center #FF8800;
    background-size: 33% auto;
}

.content-block__save-buttons .button.ok:hover .icon.ok {
    background: url(../images/icon-social-ok-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #FF8800;
    background-size: 36% auto;
}

.content-block__save-buttons .button .icon.wa {
    background: url(../images/icon-social-wa.svg) no-repeat center #25D366;
    /* background-size: 33% auto; */
}

.content-block__save-buttons .button.wa:hover .icon.wa {
    background: url(../images/icon-social-wa-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #25D366;
}




.content-block__subscribe-title {
    width: 100%;
    margin: 44px 0 22px 0;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    line-height: 116%;
    color: #F2F2F2;
}

.content-block__subscribe-buttons {
    width: 100%;
    padding-bottom: 26px;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
}

.content-block__subscribe-buttons.bottom {
    padding-bottom: 50px;
    border-bottom: 1px solid #4F4F4F;
}

.content-block__subscribe-buttons .button {
    flex: 0 1 auto;
    display: flex;
    width: calc(33% - 27px);
    max-width: 330px;
    position: relative;
}

.content-block__subscribe-buttons .button.vk {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #0077FF;
    color: #0077FF;
}

.content-block__subscribe-buttons .button.vk:hover {
    background: #0077FF;
    color: #fff;
}

.content-block__subscribe-buttons .button.tg {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #25A2E0;
    color: #25A2E0;
}

.content-block__subscribe-buttons .button.tg:hover {
    background: #25A2E0;
    color: #fff;
}

.content-block__subscribe-buttons .button.ok {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #FF8800;
    color: #FF8800;
}

.content-block__subscribe-buttons .button.ok:hover {
    background: #FF8800;
    color: #fff;
}

.content-block__subscribe-buttons .button.yz {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #E03122;
    color: #E03122;
}

.content-block__subscribe-buttons .button.yz:hover {
    background: #E03122;
    color: #fff;
}

.content-block__subscribe-buttons .button.fb {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #1877F2;
    color: #1877F2;
}

.content-block__subscribe-buttons .button.fb:hover {
    background: #1877F2;
    color: #fff;
}

.content-block__subscribe-buttons .button.twitter {
    border-radius: 33px;
    background: #fff;
    box-shadow: inset 0 0 0 3px #1D9BF0;
    color: #1D9BF0;
}

.content-block__subscribe-buttons .button.twitter:hover {
    background: #1D9BF0;
    color: #fff;
}

.content-block__subscribe-buttons .button .icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.content-block__subscribe-buttons .button .icon.vk {
    background: url(../images/icon-social-vk.svg) no-repeat center #0077FF;
    background-size: 51% auto;
}

.content-block__subscribe-buttons .button.vk:hover .icon.vk {
    background: url(../images/icon-social-vk-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #0077FF;
}

.content-block__subscribe-buttons .button .icon.vk-two {
    background: url(../images/icon-social-vk-two.svg) no-repeat center #0077FF;
    background-size: 70% auto;
}

.content-block__subscribe-buttons .button.vk:hover .vk-two {
    background: url(../images/icon-social-vk-two-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #0077FF;
}

.content-block__subscribe-buttons .button .icon.vk-film {
    background: url(../images/icon-social-vk-film.svg) no-repeat center #0077FF;
    background-size: 90% auto;
}

.content-block__subscribe-buttons .button.vk:hover .vk-film {
    background: url(../images/icon-social-vk-film-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #0077FF;
}

.content-block__subscribe-buttons .button .icon.tg {
    background: url(../images/icon-social-tg.svg) no-repeat center left 45% #25A2E0;
    background-size: 51% auto;
}

.content-block__subscribe-buttons .button.tg:hover .icon.tg {
    background: url(../images/icon-social-tg-h.svg) no-repeat center left 45% #fff;
    box-shadow: 0 0 0 3px #25A2E0;
}

.content-block__subscribe-buttons .button .icon.ok {
    background: url(../images/icon-social-ok.svg) no-repeat center #FF8800;
    background-size: 33% auto;
}

.content-block__subscribe-buttons .button.ok:hover .icon.ok {
    background: url(../images/icon-social-ok-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #FF8800;
}

.content-block__subscribe-buttons .button .icon.yz {
    background: url(../images/icon-social-yz.svg) no-repeat center #fff;
    background-size: 100% 100%;
    box-shadow: inset 0 0 0 1px #E03122;
}

.content-block__subscribe-buttons .button.yz:hover .icon.yz {
    background: url(../images/icon-social-yz-h.svg) no-repeat center #E03122;
    box-shadow: inset 0 0 0 1px #fff, 0 0 0 3px #E03122;
}

.content-block__subscribe-buttons .button .icon.fb {
    background: url(../images/icon-social-fb.svg) no-repeat center #1877F2;
    background-size: 28% auto;
}

.content-block__subscribe-buttons .button.fb:hover .icon.fb {
    background: url(../images/icon-social-fb-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #1877F2;
    background-size: 28% auto;
}

.content-block__subscribe-buttons .button .icon.twitter {
    background: url(../images/icon-social-twitter.svg) no-repeat center #1D9BF0;
    background-size: 54% auto;
}

.content-block__subscribe-buttons .button.twitter:hover .icon.twitter {
    background: url(../images/icon-social-twitter-h.svg) no-repeat center #fff;
    box-shadow: 0 0 0 3px #1D9BF0;
}

.content-block__subscribe-buttons .button .text {
    /* padding: 20px 26px 20px 30px; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    transition: none;
    white-space: nowrap;
}

.content-block__subscribe-buttons .button.tg .text {
    left: 96px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.ok .text {
    left: 96px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.vk-two .text {
    left: 95px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.vk-three .text {
    left: 95px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.yz .text {
    left: 112px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.fb .text {
    left: 130px;
    transform: translate(0%, -50%);
}

.content-block__subscribe-buttons .button.twitter .text {
    left: 141px;
    transform: translate(0%, -50%);
}


.content-block__share-title {
    width: 100%;
    margin: 30px 0 30px 0;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    line-height: 116%;
    color: #F2F2F2;
    padding: 0 15px;
}

.content-block__share-section-title {
    font-size: 28px;
    color: #f2f2f2;
    font-weight: 700;
    line-height: normal;
    margin: 28px auto 20px;
}

.content-block__share-section-list {
    justify-content: center;
    gap: 28px;
    align-items: center;
}

.content-block__share-section-list.second {
    margin-top: 24px;
}

.content-block__share-section-list.second .link {
    flex-grow: 1;
    flex-shrink: 0;
    width: 10%;
    max-width: 187px;
}

.content-block__share-section-list .link {
    display: inline-block;
    text-align: center;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: inset 0 -3px #66aa33;
    color: #fff;
    background-color: #79c142;
    font-size: 14px;
    font-weight: 600;
}

.content-block__share-section-list .link .text {
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-block__share-section-list .link:hover {
    background: linear-gradient(90deg, #b9d5a2 0%, #b3da96 100%);
    border: none;
}

.content-block__share-section-list .link:hover .text {
    background: linear-gradient(90deg, #FFF 0%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.content-block__share {
    width: 100%;
    justify-content: center;
    gap: 46px;
    padding: 0 15px;
    grid-template-columns: 1fr 1fr 1fr;
}

.content-block__share .item {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
}

.content-block__share .item .icon-block {
    flex: 0 1 100%;
    justify-content: center;
}

.content-block__share .item .icon-block .icon {
    position: relative;
    display: flex;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.content-block__share .item .icon-block .icon .count {
    position: absolute;
    top: -3px;
    right: -5px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: #D91E61;
    box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.42);
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.content-block__share .item .icon-block .icon.vk {
    background: url(../images/icon-social-vk.svg) no-repeat center #0077FF;
    background-size: 51% auto;
}

.content-block__share .item:hover .icon-block .icon.vk {
    background: url(../images/icon-social-vk-h.svg) no-repeat center #fff;
    background-size: 51% auto;
    box-shadow: inset 0 0 0 5px #0077FF;
}

.content-block__share .item .icon-block .icon.tg {
    background: url(../images/icon-social-tg.svg) no-repeat center left 40% #25A2E0;
    background-size: 51% auto;
}

.content-block__share .item:hover .icon-block .icon.tg {
    background: url(../images/icon-social-tg-h.svg) no-repeat center left 40% #fff;
    background-size: 51% auto;
    box-shadow: inset 0 0 0 5px #25A2E0;
}

.content-block__share .item .icon-block .icon.ok {
    background: url(../images/icon-social-ok.svg) no-repeat center #FF8800;
    background-size: 33% auto;
}

.content-block__share .item:hover .icon-block .icon.ok {
    background: url(../images/icon-social-ok-h.svg) no-repeat center #fff;
    background-size: 33% auto;
    box-shadow: inset 0 0 0 5px #FF8800;
}

.content-block__share .item .image {
    position: relative;
    flex: 0 1 100%;
    margin: -16px 0 0 0;
    max-width: 315px;
}

.content-block__share .item .image img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
}

.content-block__share .item .image .inner {
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 3;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    opacity: 0;
}

.content-block__share .item:hover .inner {
    opacity: 1;
}

.content-block__share .item .image .inner.img-1 {
    background: url(../images/screen-13-h.png) no-repeat center;
    background-size: 97.5% 97.5%;
}

.content-block__share .item .image .inner.img-2 {
    background: url(../images/screen-17-h.png) no-repeat center;
    background-size: 97.5% 97.5%;
}

.content-block__share .item .image .inner.img-3 {
    background: url(../images/screen-11-h.png) no-repeat center;
    background-size: 97.5% 97.5%;
}

.content-block__share .item .subscribe-text {
    flex: 0 1 100%;
    display: flex;
    width: 100%;
    margin: 28px 0 0 0;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 115%;
}

.content-block__share .item .subscribe-text span {
    flex: 0 1 auto;
    padding: 0 0 5px 0;
}

.content-block__share .item .subscribe-text.vk span {
    color: #0077FF;
    border-bottom: 1px solid #144f93;
}

.content-block__share .item:hover .subscribe-text.vk span {
    color: #581c87;
    border: 0;
}

.content-block__share .item .subscribe-text.tg span {
    color: #25A2E0;
    border-bottom: 1px solid #285e82;
}

.content-block__share .item:hover .subscribe-text.tg span {
    color: #581c87;
    border: 0;
}

.content-block__share .item .subscribe-text.ok span {
    color: #FF8800;
    border-bottom: 1px solid #925714;
}

.content-block__share .item:hover .subscribe-text.ok span {
    color: #581c87;
    border: 0;
}

.content-block__mobile-img {
    display: none;
    width: 100%;
    margin: 32px 0 0 0;
    justify-content: center;
}

.content-block__mobile-img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.content-block__description {
    display: flex;
    flex-flow: column wrap;
    padding: 0 15px;
}

.content-block__description.image {
    display: block;
    padding: 0 74px;
}

.content-block__description img {
    float: left;
    margin-right: 25px;
    margin-bottom: 4px;
    max-width: 557px;
    max-height: 313px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-block__description h2 {
    margin: 50px 0 12px 0;
    text-align: left;
    font-size: 28px;
    line-height: auto;
    color: #F2F2F2;
}

.content-block__description .center {
    text-align: center;
    font-size: 30px;
}

.content-block__description p {
    margin-bottom: 24px;
    line-height: 24px;
    font-size: 18px;
    color: #9B9B9C
}
.content-block__description p.small-bottom {
    margin-bottom: 20px;
}

.footer {
    width: 100%;
    padding: 23px 0 28px 0;
}

.footer .container {
    padding: 0 35px;
}

.footer__logo {
    flex: 0 1 auto;
    mix-blend-mode: luminosity;
}

.footer__row {
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.footer__about a {
    color: #828282;
    font-size: 16px;
    line-height: normal;
}
.footer__about a:hover {
    opacity: 1;
    color: #fc4a49;
}

.content-block__social {
    padding: 30px 0;
    border-top: 1px solid #4F4F4F;
    border-bottom: 1px solid #4F4F4F;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.content-block__social-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 23px;
    text-align: center;
}
.content-block__social-title br {
    display: none;
}
.content-block__social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.content-block__social-item {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 35px;
    overflow: hidden;
}
.content-block__social-item.vk {
    background: #0A7CFF;
    border: 3px solid #0A7CFF;
    padding: 0 30px;
}
.content-block__social-item.ok {
    background: #FF8800;
    border: 3px solid #FF8800;
    padding: 0 38px;
}
.content-block__social-item.tg {
    background: #27A6E5;
    border: 3px solid #27A6E5;
    padding: 0 40px;
}
.content-block__social-item.fb {
    background: #1877F2;
    border: 3px solid #1877F2;
    padding: 0 42px;
}
.content-block__social-item svg {
    fill: #FFF;
    transition: all 0.1s ease-in-out;
}
.content-block__social-item .text {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #FFF;
}
.content-block__social-item.vk .text {
    font-size: 24px;
    line-height: 28px;
}
.content-block__social-item:hover {
    background: #FFF;
}
.content-block__social-item.vk:hover svg {
    fill: #0A7CFF;
    transition: all 0.1s ease-in-out;
}
.content-block__social-item.vk:hover .text {
    color: #0A7CFF;
}
.content-block__social-item.ok:hover svg {
    fill: #FF8800;
    transition: all 0.1s ease-in-out;
}
.content-block__social-item.ok:hover .text {
    color: #FF8800;
}
.content-block__social-item.tg:hover svg {
    fill: #27A6E5;
    transition: all 0.1s ease-in-out;
}
.content-block__social-item.tg:hover .text {
    color: #27A6E5;
}
.content-block__social-item.fb:hover svg {
    fill: #1877F2;
    transition: all 0.1s ease-in-out;
}
.content-block__social-item.fb:hover .text {
    color: #1877F2;
}
@media only screen and (max-width: 1140px) {
    .container {
        width: 100%;
    }

    .header {
        padding: 15px 12px;
    }

    .content-block__subscribe-buttons .button .text {
        font-size: 16px;
    }

    .content-block__share .item {
        margin: 0 5px;
    }

    .header .container.container-header {
        justify-content: center;
    }

    .content-block__share-section-list .link {
        width: 25%;
    }

    .content-block__share-section-list.second .link {
        max-width: 100%;
    }

    .content-block__description.image {
        display: block;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 900px) {
    .content-block__subscribe-buttons .button {
        width: auto;
    }

    .content-block__subscribe-buttons .button .text {
        display: none;
    }

    .content-block__share .item .image,
    .content-block__share .item .subscribe-text {
        display: none;
    }

    .content-block__mobile-img {
        display: flex;
    }

    .content-block__share-section-list {
        gap: 16px;
        flex-wrap: wrap;
    }

    .content-block__share-section-list .link:nth-child(1) {
        order: 1;
        width: 100%;
    }

    .content-block__share-section-list .link:nth-child(2) {
        order: 2;
        width: calc(50% - 8px);
    }

    .content-block__share-section-list .link:nth-child(3) {
        order: 4;
        width: 100%;
    }

    .content-block__share-section-list .link:nth-child(4) {
        order: 3;
        width: calc(50% - 8px);
    }

    .content-block__share-section-list.second {
        margin-top: 16px;
    }

    .content-block__share-section-list.second .link:nth-child(1) {
        order: 1;
        width: calc(50% - 8px);
    }

    .content-block__share-section-list.second .link:nth-child(2) {
        order: 3;
        width: 100%;
    }

    .content-block__share-section-list.second .link:nth-child(3) {
        order: 2;
        width: calc(50% - 8px);
    }

    .content-block__share-section-list.second .link:nth-child(4) {
        order: 4;
        width: calc(50% - 8px);
    }

    .content-block__share-section-list.second .link:nth-child(5) {
        order: 5;
        width: calc(50% - 8px);
    }
    .content-block__social {
        padding: 20px 0;
        margin-top: 20px;
    }
    .content-block__social-list {
        row-gap: 14px;
        column-gap: 20px;
        width: 100%;
    }
    .content-block__social-item {
        height: 66px;
        padding: 0 !important;
        width: calc(50% - 10px);
    }
    .content-block__social-item .text {
        display: none;
    }
    .content-block__social-title {
        margin-bottom: 18px;
    }
    .content-block__social-item.vk svg {
        transform: scale(1.3);
    }
    .content-block__social-item.ok svg {
        transform: scale(1.2);
    }
    .content-block__social-item.vk svg {
        transform: scale(1.4);
    }
    .content-block__social-item.vk svg {
        transform: scale(1.2);
    }
}

@media only screen and (max-width: 720px) {
    .content-block__subscribe-buttons .button {
        background: transparent;
        box-shadow: transparent;
    }

    .content-block__subscribe-buttons .button .icon {
        width: 60px;
        height: 60px;
    }

    .content-block__project-name a {
        font-size: 48px;
    }

    .content-block__subscribe-title {
        font-size: 28px;
    }

    .content-block__share-title {
        font-size: 28px;
    }

    .content-block__project-text {
        font-size: 28px;
    }

    .content-block__project-save {
        font-size: 22px;
        line-height: 28px;
    }

    .content-block__project-save img {
        width: 20px;
        height: 20px;
        margin-bottom: 0;
    }
    .content-block__description img {
        margin-bottom: 25px;
    }
    .content-block__description p.small-bottom {
        margin-bottom: 25px;
    }
    .content-block__social-title {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 600px) {
    .header__logo img {
        width: 161px;
    }

    .header__button-bookmark {
        padding: 13px 15px;
        display: none;
    }

    .content-block__share .item .icon-block .icon {
        width: 90px;
        height: 90px;
    }

    .content-block__share .item .icon-block .icon .count {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }

    .footer .container {
        padding: 0;
        justify-content: center;
    }

    .footer__row {
        justify-content: center;
        flex-direction: column-reverse;
        gap: 25px;
    }

    .content-block__project-name-divider {
        /* display: none; */
    }

    .content-block__subscribe-title {
        margin: 22px 0 19px 0;
    }

    .content-block__project-name {
        margin-bottom: 20px;
    }

    .content-block__project-text {
        margin: 18px 0 18px 0;
    }

    .content-block__project-save {
        margin-bottom: 20px;
    }

    .content-block__subscribe-buttons.bottom {
        /* column-gap: 70px; */
        display: grid;
        grid-template-columns: repeat(3, 60px);
        gap: 37px;
        row-gap: 20px;
    }

    .content-block__description h2 {
        margin-top: 30px;
    }
    .content-block__description .center {
        font-size: 28px;
    }
    .content-block__share-section-title {
        font-size: 24px;
        margin: 20px auto 16px;
    }

    .content-block__save-title {
        font-size: 28px;
        margin: 20px auto 14px;
        text-align: center;
        /* white-space: nowrap; */
    }
}

@media only screen and (max-width: 400px) {

    .content-block__subscribe-buttons {
        padding: 0 0 20px 0;
    }

    .content-block__share-title {
        margin: 30px 0 20px 0;
    }

    .content-block__project-name a {
        font-size: 38px;
    }

    .content-block__subscribe-buttons.bottom {
        padding-bottom: 20px;
    }

    .content-block__share .item .icon-block .icon {
        width: 70px;
        height: 70px;
    }

    .content-block__project-text {
        text-align: center;
    }
}

.close-br {
    display: none;
}

@media (max-width: 440px) {
    .close-br {
        display: block;
    }

    .content-block__save-buttons .button.favorite {
        display: none;
    }

    .content-block__save-buttons {
        gap: 23px;
    }
    .content-block__social-title br {
        display: block;
    }
}

@media (max-width: 320px) {
    .content-block__save-buttons {
        gap: 10px;
    }
}