@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(40, 56, 145, 0.779) !important;
    border-radius: 6px;
    transition: all 0.3s linear;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    font-family: "Gelasio", serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

a {
    display: inline-block;
    text-decoration: none;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.breadcump {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    padding-bottom: 16px;
    margin-bottom: 25px;
    background-color: #f2f4ff;
    color: #283891;
}
.breadcump a {
    color: #fc502b;
    font-size: 16px;
}

section {
    overflow-x: hidden;
}

.pthead {
    padding-top: 120px !important;
}

@media only screen and (max-width: 1650px) {
    .container {
        max-width: 1316px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .pthead {
        padding-top: 99px !important;
    }
}
.pagination {
    margin-top: 25px;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
}
.pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-item span,
.pagination .page-item a,
.pagination .page-item .page-link {
    border-radius: 50% !important;
    width: 38px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #283891;
    font-weight: 600;
    border: 2px solid #283891;
}
.pagination .active a,
.pagination .active span {
    background-color: #283891 !important;
    color: #fff !important;
}

@media only screen and (max-width: 990px) {
    .fwtitle {
        font-weight: 700 !important;
        font-size: 20px !important;
    }
    .mb2 {
        margin-bottom: 18px !important;
    }
    .container {
        max-width: 630px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pagination {
        margin-top: 15px;
        gap: 8px;
    }
    .pagination .page-item span,
    .pagination .page-item a,
    .pagination .page-item .page-link {
        width: 30px;
        height: 30px;
        font-size: 14px !important;
    }
}
@media only screen and (max-width: 450px) {
    .container {
        max-width: 380px;
    }
    .pthead {
        padding-top: 80px !important;
    }
    .breadcump {
        margin-bottom: 18px;
    }
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    z-index: 1002;
}

.header_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}
.header_block .logo_block img {
    height: 56px;
    object-fit: contain;
}
.header_block .current_lang {
    color: #fff;
    display: flex;
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    gap: 5px;
}
.header_block .current_lang::after {
    content: "";
    display: none;
}
.header_block .current_lang i {
    font-size: 24px;
}
.header_block .lang_block a {
    z-index: 1003;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header_block .lang_block a img {
    width: 24px;
    object-fit: contain;
    height: 18px;
}

#menu_close i {
    display: none;
    position: absolute;
}

.list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.list li a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s linear;
}
.list li a:hover {
    border-bottom: 1px solid #fff;
}
.list .active_nav {
    color: #fc502b;
    border-bottom: 1px solid transparent !important;
}

.lang_menu_block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu_mobile {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu_mobile i {
    color: #fff;
    font-size: 29px;
}

@media only screen and (max-width: 1650px) {
    .header {
        padding: 18px 0;
    }
    .header_block .logo_block {
        flex-shrink: 0;
    }
    .header_block .logo_block img {
        height: 50px;
    }
}
@media only screen and (max-width: 990px) {
    .menu_mobile {
        display: flex;
    }
    #menu_close i {
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 28px;
        color: #283891;
        cursor: pointer;
        transition: all 0.3s linear;
    }
    #menu_close i:hover {
        color: #1f3091;
    }
    .list {
        gap: 10px;
        padding-top: 70px;
        position: fixed;
        transform: translateX(100%);
        background-color: #f9fbff;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 10;
        flex-direction: column;
        transition: all 0.3s linear;
    }
    .list li {
        width: 100%;
        text-align: center;
        padding-right: 20px;
        padding-left: 20px;
    }
    .list li a {
        width: 100%;
        display: block;
        margin: 0;
        padding: 8px 0;
        padding-bottom: 18px;
        color: #283891;
        border-bottom: 0.5px solid rgba(0, 14, 86, 0.2117647059) !important;
        font-size: 20px;
    }
}
.active_menu {
    transform: translateX(0%) !important;
}

@media only screen and (max-width: 450px) {
    .header_block .logo_block img {
        height: 36px;
    }
    .header_block .current_lang {
        font-size: 18px;
        gap: 3px;
    }
    .list li a {
        margin: 0;
        padding: 7px 0;
        padding-bottom: 16px;
        font-size: 18px;
    }
}
.hero {
    background-image: url("../img/hero_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top -40px;
    padding-top: 104px;
}
.hero .hero_block h1 {
    margin-bottom: 50px;
    margin-top: 80px;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #fff;
}
.hero .hero_block .category_block {
    width: 830px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 4px;
}
.hero .hero_block .category_block p {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}
.hero .hero_block .category_block .category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.hero .hero_block .category_block .category a {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 8px 12px;
}

.search_form {
    width: 830px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.search_form input {
    padding: 8px;
    padding-left: 55px;
    background-image: url("../img/search.svg");
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center left 16px;
    width: 100%;
    max-width: 720px;
    height: 54px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    color: #283891;
    font-weight: 500;
}
.search_form input::placeholder {
    color: #959ead;
}
.search_form div {
    background-color: #fff;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 0 8px 8px 0;
}

.btn_search {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background-color: #283891;
    border-radius: 8px;
    padding: 8px 12px;
}

.hero_content_block {
    width: 980px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}
.bxshodow {
    box-shadow: 0 20px 50px 0 rgba(15, 24, 44, 0.15);
}
.hero_content_block .hero_left_block {
    width: 512px;
}
.hero_content_block .hero_left_block img {
    height: 100%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.border_hero {
    border: 1px solid #e5e5e597;
    border-left: 1px transparent;
    border-top: 1px transparent;
}
.hero_content_block .hero_right_block {
    padding: 16px 12px 16px 32px;
}
.hero_content_block .hero_right_block .hero_right_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.hero_content_block .hero_right_block .hero_right_top span {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: #fc502b;
    border-radius: 36px;
    padding: 6px 12px;
}
.hero_content_block .hero_right_block h3 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: #283891;
    margin-bottom: 16px;
}
.hero_content_block .hero_right_block ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.hero_content_block .hero_right_block ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 178%;
    color: #959ead;
}
.hero_content_block .hero_right_block a {
    border: 2px solid #283891;
    border-radius: 8px;
    padding: 8px 0;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: #283891;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    margin-bottom: 24px;
}
.hero_content_block .hero_right_block a i {
    font-size: 20px;
}
.hero_content_block .hero_right_block .edition_block {
    display: flex;
    gap: 25px;
}
.hero_content_block .hero_right_block .edition_block p {
    font-weight: 600;
    font-size: 16px;
    color: #283891;
    text-align: center;
    margin-bottom: 4px;
}
.hero_content_block .hero_right_block .edition_block p i {
    font-size: 24px;
}
.hero_content_block .hero_right_block .edition_block .is_like {
    font-weight: 600;
    font-size: 16px;
    color: #283891;
    text-align: center;
    margin-bottom: 4px;
    padding: 0;
    border: 1px transparent;
    background-color: transparent;
}
.hero_content_block .hero_right_block .edition_block .is_like i {
    font-size: 24px;
}
.hero_content_block .hero_right_block .edition_block .like {
    color: red;
}

.search_form {
    width: 830px;
    margin-bottom: 18px;
}
.search_form div {
    border-radius: 0 7px 7px 0;
}

@media only screen and (max-width: 1650px) {
    .hero {
        padding-top: 75px;
    }
    .hero .hero_block h1 {
        margin-bottom: 35px;
        margin-top: 35px;
        font-size: 40px;
    }
    .hero .hero_block .category_block {
        width: 830px;
        margin-bottom: 40px;
    }
    .hero .hero_block .category_block .category {
        gap: 10px;
    }
    .hero .hero_block .category_block .category a {
        font-weight: 500;
        font-size: 15px;
        padding: 7px 11px;
    }
    .btn_search {
        font-weight: 500;
    }
    .hero_content_block {
        width: 980px;
        height: 360px;
    }
    .hero_content_block .hero_right_block {
        padding: 12px 12px 12px 32px;
    }
    .hero_content_block .hero_right_block .hero_right_top {
        gap: 10px;
        margin-bottom: 20px;
    }
    .hero_content_block .hero_right_block .hero_right_top span {
        font-weight: 500;
        font-size: 15px;
        border-radius: 30px;
    }
    .hero_content_block .hero_right_block h3 {
        font-weight: 600;
    }
    .hero_content_block .hero_right_block ul {
        margin-bottom: 20px;
    }
    .hero_content_block .hero_right_block ul li {
        font-size: 17px;
    }
    .hero_content_block .hero_right_block .edition_block p {
        margin-bottom: 2px;
    }
}
@media only screen and (max-width: 990px) {
    .hero_content_block .hero_left_block {
        width: 0;
    }
    .hero_content_block {
        width: 100%;
        height: auto;
    }
    .search_form {
        max-width: 830px;
        width: 100%;
        margin-bottom: 18px;
    }
    .hero .hero_block .category_block {
        max-width: 830px;
        width: 100%;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 570px) {
    .hero .hero_block h1 {
        font-size: 28px;
        margin-bottom: 24px;
        margin-top: 24px;
    }
    .search_form input {
        padding-left: 45px;
        background-size: 19px;
        background-position: center left 15px;
        height: 48px;
    }
    .search_form div {
        height: 48px;
        padding: 0 10px;
        border-radius: 0 8px 8px 0;
    }
    .btn_search {
        font-weight: 500;
        font-size: 14px;
        padding: 7px 10px;
    }
    .hero .hero_block .category_block {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 24px;
    }
    .hero .hero_block .category_block p {
        font-weight: 700;
        font-size: 18px;
        margin-right: 0;
    }
    .hero .hero_block .category_block .category a {
        font-weight: 500;
        font-size: 13px;
        padding: 6px 10px;
        border: 1px solid #fff;
    }
    .hero .hero_block .category_block .category {
        justify-content: center;
    }
    .hero_content_block .hero_right_block {
        padding: 20px 20px 16px 20px;
    }
    .hero_content_block .hero_right_block .hero_right_top {
        gap: 8px;
        margin-bottom: 12px;
    }
    .hero_content_block .hero_right_block .hero_right_top span {
        font-weight: 400;
        font-size: 13px;
        padding: 5px 13px;
    }
    .hero_content_block .hero_right_block h3 {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .hero_content_block .hero_right_block ul li {
        font-size: 15px;
    }
    .hero_content_block .hero_right_block a {
        border: 1px solid #283891;
        padding: 6px 0;
        font-weight: 500;
        font-size: 14px;
        width: 175px;
        margin-bottom: 12px;
    }
    .hero_content_block .hero_right_block a i {
        font-size: 17px;
    }
    .hero_content_block .hero_right_block .edition_block {
        gap: 20px;
    }
    .hero_content_block .hero_right_block .edition_block p {
        font-size: 15px;
    }
}
.popular_articles {
    padding: 60px 0;
}

.main_title {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.01em;
    color: #283891;
}

.title_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.main_link {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #283891 !important;
    border: 2px solid #283891;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 1px;
}
.main_link i {
    font-size: 20px;
}

.swiper_popular_articles {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 50px;
    background: transparent !important;
}

.popular_articles_item {
    height: 620px;
    background-repeat: no-repeat !important;
    background-size: contain;
    background-position: center;
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 24px;
}
.popular_articles_item .bottom_content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.popular_articles_item .bottom_content h3 {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 32px;
}
.popular_articles_item .bottom_content .author_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popular_articles_item .bottom_content .author_block time {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: right;
}
.popular_articles_item .bottom_content .author_block .author_item {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.popular_articles_item .bottom_content .author_block .author_item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    object-position: top;
}
.popular_articles_item .bottom_content .author_block .author_item div p {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.popular_articles_item .bottom_content .author_block .author_item div span {
    color: #959ead;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.popular_articles_item .bottom_content .author_block .author_item div span i {
    color: #36b37e;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: rgba(54, 179, 127, 0.2352941176);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popular_articles_item .top {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    border-radius: 32px;
    padding: 4px 16px;
    background: #fc502b;
    position: absolute;
    top: 20px;
    left: 20px;
}

.swiper-pagination {
    bottom: 0 !important;
}
.swiper-pagination span {
    background-color: #fff;
    width: 16px;
    height: 16px;
    border: 2px solid #1f3091;
}

.swiper-pagination-bullet-active {
    background-color: #283891 !important;
    border: 2px solid transparent !important;
}

@media only screen and (max-width: 1650px) {
    .popular_articles {
        padding: 50px 0;
    }
    .main_title {
        font-weight: 600;
        font-size: 30px;
        letter-spacing: normal;
    }
    .title_block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }
    .main_link {
        font-weight: 600;
        padding: 8px 16px;
    }
    .swiper_popular_articles {
        padding-bottom: 45px;
    }
    .popular_articles_item {
        height: 500px;
        padding: 22px;
    }
    .popular_articles_item .bottom_content h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .popular_articles_item .bottom_content .author_block time {
        font-weight: 500;
    }
    .popular_articles_item .bottom_content .author_block .author_item {
        gap: 8px;
    }
    .popular_articles_item .top {
        font-weight: 500;
        font-size: 13px;
        padding: 6px 16px;
    }
}
@media only screen and (max-width: 990px) {
    .title_block {
        margin-bottom: 8px;
    }
    .main_title {
        font-size: 20px;
        font-weight: 700;
    }
    .main_link {
        font-size: 12px;
        border: 1px solid #283891;
        padding: 6px 10px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    .main_link i {
        font-size: 15px;
    }
}
@media only screen and (max-width: 550px) {
    .popular_articles_item {
        height: 400px;
        padding: 10px;
    }
    .popular_articles_item .bottom_content h3 {
        font-weight: 500;
        font-size: 18px;
        color: #fff;
        margin-bottom: 16px;
    }
    .popular_articles_item .bottom_content .author_block time {
        color: #fff;
        font-weight: 500;
        font-size: 14px;
    }
    .popular_articles_item .bottom_content .author_block .author_item {
        gap: 6px;
    }
    .popular_articles_item .bottom_content .author_block .author_item div p {
        font-weight: 600;
        font-size: 13px;
    }
    .popular_articles_item .bottom_content .author_block .author_item div span {
        font-size: 13px;
    }
    .popular_articles_item .top {
        font-weight: 400;
        font-size: 12px;
        border-radius: 24px;
        top: 10px;
        left: 10px;
    }
    .swiper_popular_articles {
        padding-bottom: 35px;
    }
}
@media only screen and (max-width: 340px) {
    .popular_articles_item {
        height: 350px;
    }
}
.footer_contact_block {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.footer_contact_block form h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #fff;
    margin-bottom: 48px;
}
.footer_contact_block form .check_block {
    display: flex;
    margin-bottom: 48px;
    align-items: center;
    gap: 10px;
}
.footer_contact_block form .check_block input {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}
.footer_contact_block form .check_block label {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}
.footer_contact_block form .check_block label::selection {
    background-color: transparent;
}
.footer_contact_block form .email_block {
    display: flex;
    align-items: center;
}
.footer_contact_block form .email_block input {
    padding: 16px 0 16px 25px;
    width: 100%;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    font-size: 18px;
}
.footer_contact_block form .email_block input::placeholder {
    font-size: 18px;
    color: #959ead;
}
.footer_contact_block form .email_block button {
    border: none;
    outline: none;
    padding: 17.8px;
    font-size: 16px;
    border-radius: 0 8px 8px 0;
    background-color: #fc502b;
    color: #fff;
}

.footer_contact {
    padding: 60px 0;
    padding-top: 210px;
    background-image: url("../img/bg_contact.png");
    background-position: center bottom -10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer_article_block {
    width: 54% !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/bg_contact_img.png");
    background-repeat: no-repeat;
    background-position: left -75px bottom -50px;
    background-size: cover;
    height: auto;
}
.footer_article_block .bg_white {
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
}

.footer_articles {
    width: 500px !important;
    height: 500px !important;
}

.footer_bm {
    background-color: #283891;
    padding-top: 50px;
    background-image: url("../img/footer.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.footer_bm .footer_top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer_bm .footer_top .footer_item1 {
    display: flex;
    flex-direction: column;
    width: 290px;
    align-items: start;
}
.footer_bm .footer_top .footer_item1 p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #fff;
}
.footer_bm .footer_top .footer_item1 .logo_block img {
    height: 60px;
}
.footer_bm .footer_bottom {
    border-top: 1px solid #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_bm .footer_bottom .left_block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer_bm .footer_bottom .left_block span {
    color: #959ead;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.footer_bm .footer_bottom .left_block span a {
    color: #fff;
    transition: all 0.3s linear;
}
.footer_bm .footer_bottom .left_block span a:hover {
    border-bottom: 1px solid #fff;
}
.footer_bm .footer_bottom .right_block {
    display: flex;
    align-items: center;
    gap: 100px;
}
.footer_bm .footer_bottom .right_block div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer_bm .footer_bottom .right_block div a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s linear;
}
.footer_bm .footer_bottom .right_block div a:hover {
    border-bottom: 1px solid #fff;
}
.footer_bm .footer_bottom .right_block .social_block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_bm .footer_bottom .right_block .social_block a {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s linear;
}
.footer_bm .footer_bottom .right_block .social_block a i {
    font-size: 30px;
}

.list_footer {
    display: flex;
    align-items: center;
    gap: 32px;
}
.list_footer li a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s linear;
}
.list_footer li a:hover {
    border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 990px) {
    .footer_contact_block form h3 {
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 18px;
    }
    .footer_contact_block form .email_block input {
        padding: 9px 0 9px 13px;
        width: 100%;
        font-size: 16px;
    }
    .footer_contact_block form .email_block button {
        padding: 10.6px;
        font-size: 14px;
    }
    .footer_contact_block form .check_block {
        margin-bottom: 18px;
        align-items: center;
        gap: 8px;
    }
    .footer_contact_block form .check_block input {
        width: 18px;
        height: 18px;
    }
    .footer_contact_block form .check_block label {
        font-size: 14px;
        line-height: normal;
        cursor: pointer;
    }
    .footer_bm {
        padding-top: 0px;
    }
    .footer_bm .footer_top .footer_item1 p {
        font-size: 14px;
        text-align: center;
    }
    .footer_bm .footer_top {
        margin-bottom: 15px;
        gap: 15px;
        justify-content: center;
    }
    .footer_bm .footer_top .footer_item1 {
        width: 100%;
    }
    .footer_bm .footer_top .footer_item1 .logo_block {
        margin-left: auto;
        margin-right: auto;
    }
    .list_footer {
        flex-wrap: wrap;
        gap: 0px;
        justify-content: center;
    }
    .list_footer li {
        margin-left: 20px;
        margin-bottom: 5px;
    }
    .list_footer li:first-child {
        margin-left: 0;
    }
    .list_footer li a {
        font-size: 15px;
    }
    .footer_contact {
        padding: 40px 0;
        padding-top: 140px;
        background-position: center bottom -50px;
    }
    .footer_article_block {
        display: none;
    }
    .footer_bm .footer_bottom {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .footer_bm .footer_bottom .left_block {
        text-align: center;
    }
    .footer_bm .footer_bottom .left_block span {
        font-size: 13px;
    }
    .footer_bm .footer_bottom .left_block span a {
        font-size: 13px;
    }
    .footer_bm .footer_bottom .right_block {
        text-align: center;
    }
    .footer_bm .footer_bottom .right_block div {
        width: 100%;
        justify-content: center;
    }
    .footer_bm .footer_bottom .right_block div a {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: normal;
    }
    .footer_bm .footer_bottom .right_block {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.magazine_about {
    padding: 60px 0;
    padding-bottom: 0;
    background-image: url("../img/magazine_about_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
.magazine_about .magazine_about_block {
    display: flex;
    margin-top: 32px;
    justify-content: space-between;
}
.magazine_about .magazine_about_block h3 {
    font-weight: 600;
    font-size: 36px;
    color: #283891;
    margin-bottom: 32px;
}
.magazine_about .magazine_about_block h3 span {
    color: #fc502b;
}
.magazine_about .magazine_about_block .left_block {
    width: 45%;
}
.magazine_about .magazine_about_block .left_block p {
    font-weight: 600;
    font-size: 24px;
    color: #283891;
}
.magazine_about .magazine_about_block .left_block p span {
    color: #fc502b;
}
.magazine_about .magazine_about_block .left_block .main_link {
    margin-top: 32px;
    width: 120px;
}
.magazine_about .magazine_about_block .right_block {
    display: flex;
    align-items: center;
    gap: 20px;
    background-image: url("../img/strelka.png");
    background-repeat: no-repeat;
    background-position: bottom 16% right 37%;
}
.magazine_about .magazine_about_block .right_block img {
    width: 311px;
    height: auto;
}
.magazine_about .magazine_about_block .right_block img:nth-child(2) {
    margin-bottom: 192px;
}

@media only screen and (max-width: 1650px) {
    .magazine_about {
        padding: 50px 0;
        padding-bottom: 0;
    }
    .magazine_about .magazine_about_block {
        margin-top: 0;
    }
    .magazine_about .magazine_about_block h3 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .magazine_about .magazine_about_block .left_block {
        width: 45%;
        flex-shrink: 0;
    }
    .magazine_about .magazine_about_block .left_block p {
        font-size: 22px;
        color: #283891;
    }
    .magazine_about .magazine_about_block .left_block p span {
        color: #fc502b;
    }
    .magazine_about .magazine_about_block .left_block .main_link {
        margin-top: 28px;
        width: 130px;
        text-align: center;
        justify-content: center;
    }
    .magazine_about .magazine_about_block .right_block {
        gap: 15px;
        background-position: bottom 10% right 37%;
    }
    .magazine_about .magazine_about_block .right_block img {
        width: 311px;
        height: 440px;
    }
    .magazine_about .magazine_about_block .right_block img:nth-child(2) {
        margin-bottom: 152px;
    }
}
@media only screen and (max-width: 1250px) {
    .magazine_about .magazine_about_block .left_block {
        width: 40%;
    }
    .magazine_about .magazine_about_block .left_block p {
        font-size: 18px;
    }
    .magazine_about .magazine_about_block .right_block img {
        width: 280px;
        height: 400px;
    }
    .magazine_about .magazine_about_block .right_block img:nth-child(2) {
        margin-bottom: 145px;
    }
}
@media only screen and (max-width: 990px) {
    .magazine_about {
        padding: 40px 0;
        padding-bottom: 0;
    }
    .magazine_about .main_title {
        font-size: 26px;
        font-weight: 700;
    }
    .magazine_about .magazine_about_block {
        flex-direction: column;
    }
    .magazine_about .magazine_about_block .left_block {
        width: 100%;
    }
    .magazine_about .magazine_about_block .right_block {
        gap: 10px;
        justify-content: space-between;
        background-position: bottom 2% right 20%;
        background-size: 110px;
    }
    .magazine_about .magazine_about_block .right_block img {
        width: 49%;
        height: auto;
    }
    .magazine_about .magazine_about_block .right_block img:nth-child(2) {
        margin-bottom: 90px;
    }
    .magazine_about_block {
        margin-top: 0;
    }
}
.publication {
    padding: 60px 0;
}
.publication .swiper_publication {
    overflow-x: hidden;
    position: relative;
}
.publication .swiper_publication .swiper-button-prev {
    background-color: #283891;
    width: 44px;
    height: 44px;
    left: 0;
    border-radius: 50%;
}
.publication .swiper_publication .swiper-button-prev::after {
    background-image: url("../img/prevCorusel.svg") !important;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    font-size: 0;
}
.publication .swiper_publication .swiper-button-next {
    background-color: #283891;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    right: 0;
}
.publication .swiper_publication .swiper-button-next::after {
    background-image: url("../img/nextCorusel.svg") !important;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    font-size: 0;
}
.publication .publication_slider_item {
    width: 92%;
}

@media only screen and (max-width: 700px) {
    .publication .swiper_publication .swiper-button-prev,
    .publication .swiper_publication .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    .swiper-slide {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .publication .swiper_publication .swiper-button-prev::after,
    .publication .swiper_publication .swiper-button-next::after {
        width: 12px;
        height: 12px;
        background-size: 12px;
    }
}
.editing {
    padding: 60px 0;
    background-image: url("../img/bg_editing.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.swiper_editing {
    overflow-x: hidden;
    padding-bottom: 50px;
    position: relative;
}

.editing_item {
    display: block;
    padding: 40px;
    border-radius: 16px;
    height: 400px;
    background-image: url("../img/editingicon.svg"),
        url("../img/editing_item_bg.png");
    background-size: 55px, cover;
    background-position: left 8% bottom 8%, right;
    background-repeat: no-repeat;
    position: relative;
}
.editing_item img {
    width: 250px;
    object-fit: contain;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 66px;
}
.editing_item h3 {
    font-weight: 700;
    font-size: 36px;
    color: #283891;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}
.editing_item h3 span {
    color: #fc502b;
}
.editing_item p {
    font-weight: 400;
    font-size: 24px;
    width: 245px;
    color: #283891;
}

@media only screen and (max-width: 1200px) {
    .editing_item img {
        width: 230px;
        right: 56px;
    }
}
@media only screen and (max-width: 990px) {
    .swiper_editing {
        padding-bottom: 25px;
    }
}
@media only screen and (max-width: 450px) {
    .editing {
        padding: 40px 0;
    }
    .editing_item {
        height: 370px;
    }
    .editing_item h3 {
        font-size: 32px;
    }
    .editing_item {
        padding: 20px;
    }
    .editing_item p {
        font-size: 18px;
        width: 100%;
    }
    .editing_item img {
        width: 200px;
        height: 220px;
        object-fit: contain;
        right: 20px;
    }
}
.recent_articles {
    padding: 60px 0;
}

.recent_articles_block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.w50 {
    width: 49%;
}

.w33 {
    width: 32%;
}

@media only screen and (max-width: 1650px) {
    .recent_articles_block {
        gap: 19px;
    }
}
@media only screen and (max-width: 990px) {
    .recent_articles {
        padding: 35px 0;
        padding-bottom: 0;
    }
    .w33,
    .w50 {
        width: 100%;
    }
    .recent_articles_block {
        margin-top: 12px;
        gap: 24px;
    }
}
.contact {
    padding: 50px 0;
}

.contact_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.contact_block a {
    border-radius: 8px;
    padding: 24px 48px;
    width: 32%;
    height: 147px;
    background: #f2f4ff;
    text-align: center;
    transition: all 0.3s linear;
}
.contact_block a:hover {
    background-color: #283891;
}
.contact_block a:hover h3 {
    color: #fff;
}
.contact_block a:hover p {
    color: #dfe3e8;
}
.contact_block a h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #283891;
    margin-bottom: 12px;
    transition: all 0.3s linear;
}
.contact_block a p {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #959ead;
    transition: all 0.3s linear;
}

.contact_social_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.contact_social_block a {
    width: 19%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    padding: 24px;
    height: 160px;
    background: #f2f4ff;
    transition: all 0.3s linear;
}
.contact_social_block a:hover {
    background-color: #283891;
}
.contact_social_block a:hover * {
    color: #fff;
}
.contact_social_block a i {
    font-size: 80px;
    color: #283891;
}
.contact_social_block a span {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #283891;
}

@media only screen and (max-width: 990px) {
    .contact {
        padding: 10px 0;
    }
    .contact .main_title {
        font-size: 24px;
        font-weight: 700;
    }
    .contact_block {
        display: flex;
        gap: 10px;
        margin-top: 18px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
    .contact_block a {
        width: 100%;
        border-radius: 8px;
        height: auto;
        padding: 24px 24px;
    }
    .contact_block a h3 {
        font-size: 20px;
        font-weight: 600;
    }
    .contact_block a p {
        font-size: 15px;
    }
    .contact_social_block {
        margin-top: 18px;
        gap: 5px;
    }
    .contact_social_block a {
        width: 48.5%;
        padding: 20px 10px;
        height: auto;
        background: #f2f4ff;
        transition: all 0.3s linear;
    }
    .contact_social_block a i {
        font-size: 60px;
    }
    .contact_social_block a span {
        font-size: 16px;
        font-weight: 700;
    }
}
.instruction_item {
    margin-bottom: 28px;
}
.instruction_item .ins_title {
    font-weight: 700;
    font-size: 24px;
    color: #283891;
    margin-bottom: 3px;
}
.instruction_item .ins_description {
    font-size: 20px;
    color: #283891;
    text-align: justify;
}

.instruction_block .beaty_title_block {
    margin-top: 32px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 990px) {
    .insturuction_content_block {
        margin-top: 25px;
    }
    .instruction_item {
        margin-bottom: 20px;
    }
    .instruction_item .ins_title {
        font-weight: 700;
        line-height: 1.3;
        font-size: 20px;
    }
    .instruction_item .ins_description {
        font-size: 18px;
        color: #283891;
    }
}
.main_search {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #959ead;
    border-radius: 10px;
}
.main_search input {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 15px;
}
.main_search .search_btn_block {
    border-radius: 12px !important;
}

.filterBtn,
#close_filter {
    display: none;
}

.main_category_block {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.main_category_block p {
    font-weight: 700;
    font-size: 18px;
    color: #283891;
    margin-right: 15px;
    flex-shrink: 0;
}
.main_category_block .category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.main_category_block .category a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    color: #fff;
    background-color: #283891;
    border-radius: 18px;
    padding: 5px 32px;
    transition: all 0.2s linear;
}
.main_category_block .category a:hover {
    background-color: #fc502b;
}
.main_category_block .active_category {
    background-color: #fc502b !important;
}

@media only screen and (max-width: 990px) {
    #close_filter {
        display: inline-block;
        position: absolute;
        font-size: 30px;
        color: #283891;
        top: 15px;
        right: 15px;
    }
    .filterBtn {
        display: flex;
    }
    .search_block {
        padding: 20px;
        padding-top: 75px;
        position: fixed;
        transform: translateX(-100%);
        background-color: #f9fbff;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9999;
        flex-direction: column;
        transition: all 0.3s linear;
    }
    .main_category_block {
        margin-bottom: 20px;
        gap: 9px;
        display: flex;
        flex-direction: column;
    }
    .main_category_block .category {
        justify-content: center;
    }
    .main_category_block .category a {
        font-weight: 500;
        font-size: 14px;
        padding: 7px 28px;
    }
}
.author_cont_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 35px;
}

.author_width {
    width: 45%;
    flex-shrink: 0;
}

.author_text p {
    font-weight: 600;
    font-size: 40px;
    text-align: justify;
    color: #283891;
    font-size: 24px;
}

.article_show_content_block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
    padding-top: 10px;
}
.article_show_content_block .article_show_text p {
    font-weight: 400;
    font-size: 24px;
    text-align: justify;
    color: #283891;
}
.article_show_content_block .article_show_img_blog {
    width: 50%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.article_show_content_block .article_show_img_blog img {
    height: 620px;
    object-fit: cover;
}
.article_show_content_block .content_block {
    position: absolute;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article_show_content_block .content_block .top {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: #fc502b;
    border-radius: 36px;
    padding: 6px 28px;
}
.article_show_content_block .content_block time {
    font-weight: 600;
    font-size: 16px;
    text-align: right;
    color: #fff;
}

@media only screen and (max-width: 1320px) {
    .article_show_content_block {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .article_show_content_block .article_show_img_blog {
        width: 100%;
    }
    .article_show_content_block .article_show_img_blog img {
        height: auto;
        object-fit: cover;
    }
}
@media only screen and (max-width: 990px) {
    .author_title_block {
        flex-direction: column;
        gap: 8px;
        align-items: start;
    }
    .article_show_content_block .article_show_text p {
        font-size: 20px;
    }
    .article_show_content_block .content_block {
        padding: 12px;
    }
    .article_show_content_block .content_block .top {
        font-weight: 500;
        font-size: 12px;
        border-radius: 30px;
        padding: 6px 18px;
    }
    .article_show_content_block .content_block time {
        font-size: 14px;
    }
    .author_cont_block {
        gap: 25px;
        flex-direction: column;
        margin-top: 18px;
    }
    .author_width {
        width: 100%;
    }
    .author_text p {
        font-size: 20px;
    }
    .article_title {
        font-size: 28px;
    }
}
.journals_category_block {
    flex-direction: column;
    align-items: start;
}

.journals_item {
    width: 100%;
}
.journals_item .hero_left_block {
    width: 45%;
}

.journals_block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dropdown-menu {
    padding: 0 0;
}

.dropdown-item {
    color: #283891;
    font-weight: 600;
    border-bottom: 1px solid #f2f4ff;
    padding: 7px 16px;
}

.filter_block {
    display: flex;
}

.filter_custom_select_block {
    display: flex;
    gap: 20px;
}
.filter_custom_select_block .dropdown-item {
    font-size: 15px;
}
.filter_custom_select_block .filter_custom_select label {
    font-weight: 400;
    font-size: 16px;
    color: #283891;
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

@media only screen and (max-width: 990px) {
    .journals_block {
        gap: 20px;
    }
    .journals_item {
        width: 100%;
    }
    .journals_item .hero_left_block {
        width: 0%;
    }
    .filter_block {
        flex-direction: column;
        align-items: center;
    }
    .journals_category_block {
        align-items: center;
    }
    .filter_custom_select_block .dropdown-item {
        font-size: 13px;
    }
}
.about_all_info {
    padding: 60px 0;
}

.about_all_info_block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.about_all_info_item {
    width: 24%;
    border-radius: 8px;
    padding: 60px 24px 24px 24px;
    background: #f2f4ff;
    position: relative;
    transition: all 0.2s linear;
    margin-top: 78px;
}
.about_all_info_item span {
    position: absolute;
    width: 94px;
    height: 94px;
    object-fit: cover;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f2f4ff;
    border: 4px solid #fff;
    transition: all 0.2s linear;
}
.about_all_info_item span svg {
    fill: #283891;
    width: 22px;
    height: 22px;
    stroke: #283891;
    transition: all 0.2s linear;
}
.about_all_info_item:hover {
    background-color: #283891;
}
.about_all_info_item:hover span {
    background-color: #283891;
}
.about_all_info_item:hover span svg {
    fill: #fff;
    stroke: #fff;
    transform: rotate(-90deg);
}
.about_all_info_item:hover * {
    color: #fff;
}
.about_all_info_item h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 136%;
    color: #283891;
    margin-bottom: 24px;
}
.about_all_info_item p {
    font-weight: 400;
    font-size: 20px;
    color: #283891;
}

.about_activity {
    padding: 60px 0;
}

.about_activity {
    padding: 60px 0;
    background-image: url("../img/bg_editing.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.beaty_title_block {
    background-image: url("../img/title_bg.svg");
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding: 15px 55px;
}
.beaty_title_block h3 {
    font-weight: 700;
    font-size: 29px;
    line-height: 133%;
    letter-spacing: 0.01em;
    color: #fff;
}

.about_activity_text {
    margin-top: 15px;
}
.about_activity_text i {
    margin-right: 10px;
}
.about_activity_text p {
    font-weight: 600;
    font-size: 20px;
    line-height: 190%;
    color: #283891;
}

.employee {
    padding: 60px 0;
}

.employee_block {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.employee_item {
    margin-top: 10px;
    width: 32%;
    display: block;
    padding: 40px;
    border-radius: 16px;
    height: 390px;
    background-image: url("../img/editingicon.svg"), url("../img/pulse_bg.png");
    background-size: 45px, cover;
    background-position: left 15% bottom 5%, right bottom -20px;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.employee_item .job-position{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.editing_item .job-position{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.employee_item img {
    width: 236px;
    object-fit: contain;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: -30px;
}
.employee_item h3 {
    font-weight: 700;
    font-size: 36px;
    color: #283891;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}
.employee_item h3 span {
    color: #fc502b;
}
.employee_item p {
    font-weight: 400;
    font-size: 24px;
    width: 245px;
    color: #283891;
}

@media only screen and (max-width: 1650px) {
    .about_all_info {
        padding: 50px 0;
    }
    .about_all_info_block {
        gap: 8px;
    }
    .about_all_info_item {
        padding: 60px 22px 22px 22px;
        width: 24.3%;
    }
    .about_all_info_item span {
        width: 90px;
        height: 90px;
        top: -45px;
    }
    .about_all_info_item span svg {
        width: 20px;
        height: 20px;
    }
    .about_all_info_item h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .about_all_info_item p {
        font-size: 17px;
    }
    .about_all_info_item {
        width: 49%;
        margin-top: 66px;
    }
    .about_activity {
        padding: 60px 0;
    }
    .about_activity {
        padding: 60px 0;
        background-image: url("../img/bg_editing.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .beaty_title_block {
        background-image: url(null);
        padding: 0 0;
    }
    .beaty_title_block h3 {
        font-weight: 700;
        font-size: 28px;
        line-height: normal;
        color: #283891;
    }
    .about_activity_text {
        margin-top: 18px;
    }
    .about_activity_text i {
        margin-right: 5px;
    }
    .about_activity_text p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1200px) {
    .employee_item {
        padding: 36px;
        background-size: 45px, cover;
        background-position: left 15% bottom 5%, left bottom;
    }
    .employee_item img {
        width: 200px;
    }
    .employee_item h3 {
        font-size: 36px;
    }
    .employee_item p {
        font-size: 20px;
        width: 240px;
    }
}
@media only screen and (max-width: 1064px) {
    .employee_item {
        width: 48.5%;
    }
}
@media only screen and (max-width: 990px) {
    .employee_item {
        width: 48%;
    }
}
@media only screen and (max-width: 990px) {
    .employee_item {
        width: 48%;
    }
}
@media only screen and (max-width: 640px) {
    .employee_item {
        width: 100%;
        padding: 25px;
        height: 325px;
    }
    .employee_item img {
        width: 160px;
    }
}
@media only screen and (max-width: 600px) {
    .about_all_info {
        padding: 35px 0;
    }
    .about_all_info_item {
        width: 100%;
        margin-top: 45px;
    }
    .about_all_info_item h3 {
        margin-bottom: 12px;
    }
    .about_all_info_item span {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    .about_all_info_item span svg {
        width: 17px;
        height: 17px;
    }
    .about_activity {
        padding: 36px 0;
        background-image: url("../img/bg_editing.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .beaty_title_block h3 {
        font-size: 25px;
    }
    .about_activity_text {
        margin-top: 14px;
    }
    .about_activity_text p {
        font-size: 17px;
        text-align: justify;
    }
}
@media only screen and (max-width: 340px) {
    .employee_item img {
        width: 150px;
    }
} /*# sourceMappingURL=main.css.map */
