@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.bg-hover-primary:hover,
.bg-primary {
    background-color: #bf465c !important;
}
.color-hover-primary:hover,
.color-primary {
    color: #bf465c !important;
}
.bg-accient,
.bg-hover-accient:hover {
    background-color: #773e4e !important;
}
.color-accient,
.color-hover-accient:hover {
    color: #773e4e !important;
}
.bg-gray-100,
.bg-hover-gray-100:hover {
    background-color: #e6e9eb !important;
}
.color-gray-100,
.color-hover-gray-100:hover {
    color: #e6e9eb !important;
}
.bg-gray-200,
.bg-hover-gray-200:hover {
    background-color: #c4c5c8 !important;
}
.color-gray-200,
.color-hover-gray-200:hover {
    color: #c4c5c8 !important;
}
.bg-gray-300,
.bg-hover-gray-300:hover {
    background-color: #c1c2c6 !important;
}
.color-gray-300,
.color-hover-gray-300:hover {
    color: #c1c2c6 !important;
}
.bg-gray-400,
.bg-hover-gray-400:hover {
    background-color: #a3aeb6 !important;
}
.color-gray-400,
.color-hover-gray-400:hover {
    color: #a3aeb6 !important;
}
.bg-gray-500,
.bg-hover-gray-500:hover {
    background-color: #8b8e95 !important;
}
.color-gray-500,
.color-hover-gray-500:hover {
    color: #8b8e95 !important;
}
.bg-gray-600,
.bg-hover-gray-600:hover {
    background-color: #6d7279 !important;
}
.color-gray-600,
.color-hover-gray-600:hover {
    color: #6d7279 !important;
}
.bg-gray-700,
.bg-hover-gray-700:hover {
    background-color: #3d434e !important;
}
.color-gray-700,
.color-hover-gray-700:hover {
    color: #3d434e !important;
}
.bg-gray-800,
.bg-hover-gray-800:hover {
    background-color: #393e48 !important;
}
.color-gray-800,
.color-hover-gray-800:hover {
    color: #393e48 !important;
}
.bg-gray-900,
.bg-hover-gray-900:hover {
    background-color: #2f3540 !important;
}
.color-gray-900,
.color-hover-gray-900:hover {
    color: #2f3540 !important;
}
.bg-hover-white:hover,
.bg-white {
    background-color: #fff !important;
}
.color-hover-white:hover,
.color-white {
    color: #fff !important;
}
.header__wrapper .navbar,
.header__wrapper header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__wrapper header {
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.header__wrapper .navbar {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header__wrapper .navbar .hamburger {
    display: none;
    margin-bottom: 32px;
    margin-top: 32px;
}
@media screen and (max-width: 1024px) {
    .header__wrapper .navbar .hamburger {
        display: block;
    }
}
.header__wrapper .navbar .hamburger span {
    display: block;
    width: 32px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
}
.header__wrapper .navbar .hamburger span:last-child {
    margin-bottom: 0;
}
.header__wrapper .navbar .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.header__wrapper .navbar .menu-list .menu-item.active {
    background-color: rgba(191, 70, 92, 0.5);
}
.header__wrapper .navbar .menu-list .menu-item a,
.header__wrapper .search input {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.header__wrapper .navbar .menu-list .menu-item a {
    font-size: 14px;
    line-height: 24px;
    border-bottom: 2px solid transparent;
    display: block;
    color: #fff;
    text-transform: uppercase;
    padding: 27px 15px;
}
.header__wrapper .navbar .menu-list .menu-item a:hover {
    border-bottom: 2px solid #bf465c;
}
.header__wrapper .lang {
    position: relative;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.header__wrapper .lang div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}
.header__wrapper .lang div:hover,
.header__wrapper .lang ul {
    background: rgba(191, 70, 92, 0.5);
}
.header__wrapper .lang ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 100;
    top: 100%;
    width: 100%;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}
.header__wrapper .lang ul.open {
    visibility: visible;
    opacity: 1;
}
.header__wrapper .lang .ico {
    margin-left: 10px;
}
.header__wrapper .search {
    padding-top: 50px;
    padding-bottom: 46px;
}
.header__wrapper .search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid transparent;
    padding: 13px 16px;
}
.header__wrapper .search input:focus {
    border: 1px solid #bf465c;
}
.header__wrapper .themes {
    padding-bottom: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__wrapper .themes a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 19px;
}
.header__wrapper .themes a:hover {
    text-shadow: 1px 0 0 #fff;
    color: #fff;
}
.header__wrapper .themes,
.header__wrapper .themes ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.header__wrapper .themes ul .theme-item {
    margin-right: 30px;
}
.header__wrapper .themes .all-themes {
}
.footer__wrapper {
    background-color: #2f3540;
    color: #fff;
    padding: 20px;
}
.footer__wrapper .row {
    padding: 22px 0;
}
.footer__wrapper .logo,
.slider .main-slide .content h3 {
    margin-bottom: 30px;
}
.footer__wrapper .input_button {
    margin-top: 12px;
    height: 40px;
}
.btn,
.footer__wrapper .input_button button span {
    font-size: 12px;
    padding: 0 12px;
}
.footer__wrapper ul.links li {
    margin-bottom: 9px;
}
.footer__wrapper .copyright {
    font-size: 11.5px;
    line-height: 16px;
    max-width: 700px;
    margin-right: 20px;
}
.footer__wrapper .copyright a{
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease-in-out;
}
.footer__wrapper .copyright a:hover{
    text-decoration-color: transparent;
}
@media (max-width: 991px) {
    .footer__wrapper .copyright{
        margin-right: unset;
        margin-bottom: 35px;
    }
}
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 15px;
    line-height: 24px;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    background-color: #bf465c;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.btn.shadow ::before {
    -webkit-box-shadow: 0 4px 8px rgba(54, 123, 245, 0.24);
    box-shadow: 0 4px 8px rgba(54, 123, 245, 0.24);
    mix-blend-mode: multiply;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.block.block-s .content h6,
.btn:hover {
    color: #2f3540;
}
.btn,
.btn span {
    color: inherit;
    text-transform: uppercase;
}
.btn *,
.btn span,
.input_button button * {
    margin-right: 10px;
}
.btn :last-child,
.input_button button :last-child,
.social li:last-child {
    margin-right: 0;
}
.ico {
    display: inline-block;
    height: 15px;
    width: 15px;
}
.ico.ico-arrow-up {
    background: url(../../static/assets/arrow-up.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-arrow-right {
    background: url(../../static/assets/arrow-right.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-search {
    background: url(../../static/assets/search.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-mail {
    background: url(../../static/assets/mail.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-twitter {
    background: url(../../static/assets/twitter.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-facebook {
    background: url(../../static/assets/facebook.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-instagram {
    background: url(../../static/assets/instagram.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-telegram {
    background: url(../../static/assets/telegram.svg) no-repeat center;
    background-size: 100% 100%;
}
.ico.ico-play {
    background: url(../../static/assets/play.svg) no-repeat center;
    background-size: 100% 100%;
}
.input_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.input_button input {
    line-height: 20px;
    font-size: 15px;
    padding: 14px 16px;
    border: 0;
    background-color: #3d434e;
    color: #fff;
}
.input_button input::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.3;
}
.input_button input::-moz-placeholder {
    color: #fff;
    opacity: 0.3;
}
.input_button input:-ms-input-placeholder,
.input_button input::-ms-input-placeholder {
    color: #fff;
    opacity: 0.3;
}
.input_button input::placeholder {
    color: #fff;
    opacity: 0.3;
}
.block,
.input_button button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input_button button {
    border: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: #bf465c;
    min-width: 48px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.input_button button span {
    margin-right: 10px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}
.block {
    max-width: 805px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 35px;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
.block.block-m {
    background-color: #fff;
}
.block.block-m:hover {
    background-color: #2f3540;
    color: #fff;
}
.block.block-m:hover .overlay::after {
    background-color: rgba(47, 53, 64, 0.2);
}
.block.block-i {
    height: 400px;
}
.block.block-i .overlay {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}
.block.block-i .overlay::after {
    background-color: rgba(47, 53, 64, 0.55);
}
.block.block-i .content {
    color: #fff;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.block.block-i .content .block-content {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
}
.block.block-i .content .block-content h6 {
    font-size: 24px;
    line-height: 34px;
}
.block.block-i .content .block-content p,
.widget_2 .content h4 {
    font-size: 16px;
    line-height: 22px;
}
.block.block-i .content .block-info {
    margin-top: 38px;
}
.block.block-i .content .block-info .theme-title,
.block.block-i.podcast .overlay::after {
    display: none;
}
.block.block-i.podcast {
    background-color: #2f3540;
}
.block.block-i.podcast .overlay {
    position: relative;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    z-index: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 30px;
}
.block.block-i.podcast .content {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
.block.block-i.podcast .content .block-content,
.block.block-s {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.block.block-i.podcast .content .block-content {
    -webkit-box-flex: 0.9;
    -ms-flex: 0.9;
    flex: 0.9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.block.block-s {
    display: block;
    width: calc(100% / 2 - 7px);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.block.block-s .content {
    padding: 20px 0;
}
.block.block-s .content .date,
.block.block-s .content .theme-title,
.block.block-s .content p {
    font-size: 14px;
    line-height: 19px;
}
.block.block-s .content .theme-title {
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: 700;
}
.block.block-s .overlay::after {
    background-color: rgba(47, 53, 64, 0.2);
}
.block.block-s:hover .overlay::after {
    background-color: rgba(47, 53, 64, 0.3);
}
.block.block-t {
    width: calc(100% / 3);
}
.block.block-t .content .date,
.block.block-t .content .theme-title,
.block.block-t .content p {
    font-size: 14px;
    line-height: 19px;
}
.block.block-t:hover {
    background-color: #e6e9eb;
}
.block.block-theme {
    width: calc(100% / 2 - 14px);
    height: 337px;
    color: #fff;
}
.block .overlay,
.block.block-theme .content .block-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.block.block-theme .content .block-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.block.block-theme .content .block-content h6 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.block.block-theme .overlay {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}
.block.block-theme .overlay::after {
    background-color: rgba(47, 53, 64, 0.55);
}
.block.block-theme:hover .overlay::after {
    background-color: transparent;
}
.block.block-theme:hover h6 {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.block.podcast .overlay::after {
    display: none;
}
.block .overlay {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.block .content,
.block .overlay,
.block .overlay .b-play,
.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.block .overlay .b-play {
    background-color: #bf465c;
    height: 100px;
    width: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 11px 30px rgba(0, 0, 0, 0.25);
    box-shadow: 0 11px 30px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
.block .overlay .b-play .ico-play {
    height: 45px;
    width: 45px;
}
.block .overlay img,
.block .overlay::after {
    display: block;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.block .overlay img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.block .overlay::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(47, 53, 64, 0.3);
}
.block .content,
.social {
    -webkit-box-direction: normal;
}
.block .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
}
.block .content .theme-title {
    margin-bottom: 20px;
}
.block .content h6 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.block .content .block-info {
    margin-top: 15px;
}
.block .content .block-info,
.block .content .theme-title,
.block .content p {
    font-size: 10px;
    line-height: 14px;
}
.block .content .block-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.social {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.social li {
    margin-right: 23px;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
.social li:hover {
    opacity: 0.7;
}
.social .ico {
    height: 23px;
    width: 23px;
}
.widget_1 {
    height: 400px;
}
.widget_1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.widget_1 .overlay::after,
.widget_2 .overlay::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(47, 53, 64, 0.7);
}
.widget_1 .content,
.widget_1 .share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.widget_1 .content {
    color: #fff;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.widget_1 .content .number {
    font-weight: 600;
    font-size: 70px;
    line-height: 94px;
}
.widget_1 .share {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: height 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out;
    transition: height 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out;
}
.widget_1 .share h6 {
    color: #fff;
    margin-bottom: 14px;
}
.widget_1:hover .share {
    -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out 0.2s;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out 0.2s;
    height: 120px;
    opacity: 1;
}
.widget_2 .overlay {
    position: relative;
}
.widget_2 .content h4 {
    font-weight: 400;
}
.widget_2 .content .theme {
    opacity: 0.7;
    text-align: right;
}
.widget_3 p {
    margin-bottom: 16px;
    line-height: 19px;
}
.widget_3 .input_button input {
    width: 100%;
    background-color: #e6e9eb;
    color: #393e48;
}
.widget_3 .input_button input::-webkit-input-placeholder {
    color: #2f3540;
}
.widget_3 .input_button input::-moz-placeholder {
    color: #2f3540;
}
.widget_3 .input_button input:-ms-input-placeholder,
.widget_3 .input_button input::-ms-input-placeholder {
    color: #2f3540;
}
.widget_3 .input_button input::placeholder {
    color: #2f3540;
}
.widget_3 .input_button .ico {
    width: 20px;
    height: 20px;
}
.slider .main-slide,
.slider .subslide,
.widget_4 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.widget_4 .row {
    margin-bottom: 15px;
    font-size: 10px;
}
.widget_4 .row .block-info {
    margin-top: 7px;
}
.widget_4 .row:hover p {
    text-decoration: underline;
}
.slider {
    color: #fff;
}
.slider .main-slide,
.slider .subslide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.slider .main-slide {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-size: cover;
    border-right: 2px solid #8b8e95;
    padding: 50px;
}
.slider .main-slide .content {
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: auto;
}
.slider .main-slide .content h1 {
    margin-bottom: 15px;
}
.slider .main-slide .overlay {
    overflow: hidden;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.slider .main-slide .overlay img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}
.slider .main-slide:hover .overlay img,
.slider .subslide:hover .overlay img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.slider .subslide {
    width: 450px;
    height: 300px;
    padding: 36px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 2px solid #8b8e95;
}
.slider .subslide:last-child {
    border-bottom: 0;
}
.slider .subslide .overlay {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.slider .subslide .overlay img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}
.slider .subslide .content {
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.slider .subslide .content h3 {
    font-size: 21px;
    line-height: 29px;
}
.slider .subslide .content h6 {
    margin-top: 15px;
    line-height: 22px;
}
.slider .subslide h6,
.slider h3 {
    font-weight: 400;
}
.slider h3 {
    font-size: 18px;
}
.slider .block-info {
    margin-top: 10px;
}
.slider .block-info .title {
    margin-right: 30px;
}
.news {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.news .news-block {
    width: 50%;
    margin-top: 15px;
    margin-bottom: 15px;
    opacity: 0.7;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
.news .news-block .block-info {
    margin-top: 10px;
}
.news .news-block:hover {
    opacity: 1;
}
.bg__overlay {
    background-color: #2f3540;
    height: 400px;
    position: absolute;
    z-index: -1;
    width: 100%;
}
.read-more {
    width: 100%;
    margin-top: 15px;
}
.read-more .ico {
    height: 12px;
}
.commend__wrapeer,
.read-more {
    margin-bottom: 100px;
}
.commend__wrapeer .commend-title {
    margin-bottom: 50px;
}
.commend__wrapeer .block.block-i {
    margin: 0 27px 0 0;
    width: 340px;
    height: 340px;
}
.commend__wrapeer .block.block-i:last-child {
    margin: 0;
}
.commend__wrapeer .block.block-i .overlay::after {
    background-color: rgba(47, 53, 64, 0.7);
}
.commend__wrapeer .block.block-i:hover .overlay::after {
    background-color: rgba(47, 53, 64, 0.4);
}
.one_news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.one_news .content h3 {
    margin-bottom: 60px;
    font-weight: 700;
}
.one_news .content p {
    margin: 20px 0;
}
.one_news .block-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 50px;
}
.one_news .block-info .theme {
    color: #bf465c;
    font-weight: 700;
    margin-bottom: 20px;
}
.one_news .share {
    margin: 80px 0;
}
.one_page .subscrible {
    margin-top: 10px;
}
.one_page .block__wrapper .content {
    margin-top: 0;
}
.one_page .share__wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
}
.commend__wrapeer .block.block-i .content h6,
.one_theme .title-header h3 {
    font-size: 20px;
    line-height: 30px;
}
.one_theme .main-image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(47, 53, 64, 0.5);
}
.podcasts .block.block-s .overlay {
    height: 279px;
    background-color: #bf465c;
}
body,
html {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
html,
p,
ul {
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 2em;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
button,
input,
select,
textarea {
    outline-style: none;
    font-family: "Open Sans", sans-serif;
}
.content__wrapper {
    max-width: 1080px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content__wrapper h3 {
    font-size: 25px;
    line-height: 34px;
}
.content__wrapper .page-theme {
    font-size: 14px;
    line-height: 21px;
    margin-top: 35px;
    margin-bottom: 20px;
}
.content__wrapper .author__wrapper .author {
    color: #bf465c;
}
.content__wrapper > .content {
    margin-top: 60px;
    margin-bottom: 60px;
}
.content__wrapper > .content p {
    margin-bottom: 1.5em;
}
.content__wrapper .title-header {
    margin-bottom: 12px;
    margin-top: 10px;
}
.content__wrapper .page-theme,
.content__wrapper .page-title {
    font-weight: 700;
}
.content__wrapper .page-theme {
    color: #bf465c;
}
.content__wrapper .title-footer {
    margin-top: 20px;
    margin-bottom: 40px;
}
.content__wrapper .main-image,
.widget .overlay img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.content__wrapper .main-image.theme {
    height: 300px;
}
.content__wrapper .main-image-wrapper {
    position: relative;
    margin-top: 19px;
    margin-bottom: 10px;
}
ul {
    list-style-type: none;
}
.page__content,
.row {
    margin: auto;
}
a {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
}
.row {
    width: 100%;
    max-width: 1440px;
}
.block-info,
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.block-info .title {
    font-weight: 600;
    margin-right: 15px;
}
.block-info .date {
    opacity: 0.7;
}
.section {
    padding: 4em 7em;
}
.between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-title {
    margin-bottom: 25px;
}
.widget__wrapper {
    width: 240px;
    margin-left: 35px;
}
.widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 35px;
}
.widget .overlay {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.widget .overlay img {
    display: block;
    height: 100%;
}
.widget .content {
    padding: 28px;
}
.logo {
    height: 40px;
    display: block;
}
.block__wrapper,
.widget .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.shadow-main {
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.content-title {
    margin: 35px 0;
}
.page-title {
    margin-top: 50px;
    margin-bottom: -15px;
    color: #2f3540;
}
.main__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 50px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.text-opacity {
    opacity: 0.7;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}
.text-opacity:hover {
    opacity: 1;
}
.blog__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.loader {
    border-radius: 50%;
    color: #bf465c;
    font-size: 11px;
    text-indent: -99999em;
    margin: 55px auto;
    position: relative;
    width: 10em;
    height: 10em;
    -webkit-box-shadow: inset 0 0 0 1em;
    box-shadow: inset 0 0 0 1em;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.loader:after,
.loader:before {
    position: absolute;
    content: "";
    width: 5.2em;
    height: 10.2em;
    background: #bf465c;
    border-radius: 10.2em 0 0 10.2em;
    top: -0.1em;
    left: -0.1em;
    -webkit-transform-origin: 5.2em 5.1em;
    transform-origin: 5.2em 5.1em;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}
.loader:after {
    border-radius: 0 10.2em 10.2em 0;
    left: 5.1em;
    -webkit-transform-origin: 0 5.1em;
    transform-origin: 0 5.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}
@media screen and (max-width: 1024px) {
    body {
        font-size: 0.5em;
    }
    .block-m .content p,
    .news-block h6,
    .slider .subslide .content h6,
    a {
        font-size: 12px;
    }
    header .search-wrap {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        background-color: #fff;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 45px;
    }
    header .search-wrap input {
        background-color: #e6e9eb;
    }
    header .search-wrap input::-webkit-input-placeholder {
        color: #2f3540;
    }
    header .search-wrap input::-moz-placeholder {
        color: #2f3540;
    }
    header .search-wrap input:-ms-input-placeholder,
    header .search-wrap input::-ms-input-placeholder {
        color: #2f3540;
    }
    header .search-wrap input::placeholder {
        color: #2f3540;
    }
    .content__wrapper .section:last-child {
        background-color: #fff !important;
        color: #2f3540 !important;
    }
    .content__wrapper .section:last-child .news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .content__wrapper .section:last-child .news .news-block {
        width: 100%;
    }
    .content__wrapper .section:last-child .news .news-block h6 {
        font-weight: 400;
    }
    .themes {
        overflow: auto;
        padding: 14px !important;
        background-color: #e6e9eb;
        margin-left: -20px;
        margin-right: -20px;
    }
    .themes a {
        white-space: nowrap;
        color: #6d7279 !important;
    }
    .news-block {
        opacity: 1 !important;
        padding: 0 !important;
    }
    .bg__overlay,
    .main-slide {
        display: none !important;
    }
    .slider .subslide {
        height: auto;
        display: block;
        width: 100%;
        padding: 0;
        color: #2f3540;
        background-color: #fff;
        font-size: 12px;
    }
    .slider .subslide .overlay {
        position: relative;
    }
    .slider .subslide .content {
        padding: 14px 45px;
    }
    .block-m .content h6,
    .slider .subslide .content h4 {
        font-size: 14px;
    }
    .slider .subslide .block-info {
        padding: 0 45px 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .slider .subslide .block-info .title {
        margin: 0;
        color: #bf465c;
    }
    .block-m,
    .commend__wrapeer > .row,
    .main__wrapper,
    .widget_1 .share .social {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .main__wrapper {
        padding: 0;
    }
    .block-m {
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-bottom: 0;
    }
    .footer__wrapper .row,
    .navbar {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .navbar .lang,
    .widget_1 .share h6 {
        display: none;
    }
    .navbar .menu-list {
        height: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navbar .menu-list .menu-item a {
        padding: 15px !important;
    }
    .widget__wrapper {
        margin: 0;
        width: 100%;
    }
    .widget_1 {
        height: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .widget_1 .content {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .widget_1 .content h3 {
        font-size: 25px;
    }
    .widget_1 .share {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        overflow: unset;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: auto !important;
        opacity: 1;
        padding: 20px 0;
    }
    .widget_1 .share .social i {
        -webkit-filter: brightness(10);
        filter: brightness(10);
        margin: 5px;
    }
    .widget_1,
    .widget_2 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .widget_2 h4 {
        font-size: 12px !important;
        line-height: 18px !important;
    }
    .widget_2 .overlay {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
    }
    .widget_2 .content {
        -webkit-box-flex: 3;
        -ms-flex: 3;
        flex: 3;
        padding-left: 13px;
    }
    .widget_3 {
        padding: 45px;
        font-size: 12px;
    }
    .commend__wrapeer .commend-title {
        padding: 0 45px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .commend__wrapeer .block.block-i {
        width: 100%;
    }
    .commend__wrapeer .block.block-i .content h6 {
        font-size: 13px;
        line-height: 18px;
    }
}
@media screen and (min-width: 1025px) {
    .menu-list {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .mc-layout__modalContent{
        margin-top: 85px;
    }
    .mc-modal {
        top: 50px!important;
    }
    .mc-closeModal.mc-closeModal {
        right: 10px!important;
        top: 100px!important;
    }
    .commend__wrapeer.footer-news-wrapper{
        display: none;
    }
}
.archive[
]


