

/* Start:/local/templates/iamik_main/assets/css/theme.css?17494364983522*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

html {
    font-family: sans-serif;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    color: var(--white-color);
    font-size: 62.5%;
}

body {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--black-color);
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

p {
    margin-bottom: 0;           
}

button,
input,
textarea,
select {
    font: inherit;
    background: none;
    border-radius: 0;
    padding: 0;
    border: none;
    outline: none;
    color: inherit;
}

button {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption {
    text-align: left;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 1.5rem;
    line-height: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

.button {
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding: 20px 22px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 100px    ;
    line-height: 1;
    transition: all 0.25s ease-out;
}

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

.button_default {
    padding: 1.25rem 3rem;
    border-radius: .5rem;
    background-color: rgba(0, 0, 255, 1);
}

.icon {
    display: inline-flex;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background);
}
    
.main {
    flex: 1;
    padding: 50px 0 0 0;
}



.container {
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    max-width: 1390px;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal_visible {
    opacity: 1;
}

.modal__container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal__wrapper {
    position: relative;
    padding: 1rem;
    background-color: var(--white-color);
    color: var(--black-color);
    max-width: 480px;
    width: 100%;
    margin: 1rem;
}

.modal__close {
    position: absolute;
    top: calc(-1rem - 3.2rem);
    right: calc(-1rem - 3.2rem);
    opacity: .5;
    transition: opacity .25s ease-in-out;
}

.modal__close:hover {
    opacity: 1;
}

.modal__close button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close button svg {
    width: 3.2rem;
    height: 3.2rem;
    fill: #FFF;
}

.modal__close button svg line {
    stroke: var(--white-color);
}
/* End */


/* Start:/local/templates/iamik_main/assets/css/main.css?174946419316490*/
:root {
    --white-color: #FFF;
    --black-color: #000;
    --primary-color: #FE9802;   
    --main-gray-color: #898989;
}

.header__row {
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 18px 0;
}

.header__brand {
    max-width: 119px;
}

.header__logo {
    flex: 0 0 119px;
}

.header__brand-description {
    font-weight: 500;
    font-size: 13px;
    color: var(--main-gray-color);
    margin-top: 10px;
}

.header__menu {
    padding: 0 5px;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__link {
    color: var(--black-color);
    font-weight: 500;
    transition: all .2s ease-in-out;
    line-height: 1;
}

.nav__item_parent {
    position: relative;
}

.nav__item.active .nav__link {
    color: var(--primary-color);
}

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

.nav__item_parent {
    position: relative;
}

.nav__item_parent:hover .dropdown {
    display: block;
}

.nav__item_parent::after {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    background-image: url('data:image/svg+xml,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.12305L4.99925 5.1223L8.9985 1.12305" stroke="%23FE9802" stroke-width="2"/></svg>');
    width: 10px;
    height: 7px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .2s ease-in-out;
}

.nav__item_parent:hover::after {
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -34px;
    padding-top: 57px;
    background-color: transparent;
}

.mobile-menu {
    display: none;
}

.sub-menu {
    padding: 20px 22px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    width: 210px;
    background-color: var(--white-color);
}

.sub-menu .nav__item:not(:last-child) {
    margin-bottom: 22px;
}

.search-area__container {
    width: 325px;
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 5px;
}

.search-area__input {
    height: 40px;
    color: var(--black-color);
    padding-right: 10px;
    flex: 1;
    width: 100%;
}

.search-area__input::placeholder {
    color: var(--black-color);
}

.main-search {
    margin-top: 50px;
    
}

.main-search .search-area__container {
    max-width: 900px;
    width: 100%;
    margin-bottom: 80px;
}


.section {
    margin-bottom: 180px;
}

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

.section__title, .page-title {
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
}

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

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

.arrow-go {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--primary-color);
}

.post__image {
    background-color: #eaeaea;
    border-radius: 10px;
}

.post__image.post__image_no_photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post__image.post__image_no_photo img {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.post__image img {
    border-radius: 10px;
}

.post__category {
    display: flex;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 9.5px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all .2s ease-in-out;
}


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

.post__meta {
    color: var(--main-gray-color);
}

.post__title {
    font-weight: 500;
    font-size: 24px;
    transition: all .2s ease-in-out;
}

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

.post__info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.posts__list.posts_type_1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px 20px;
}

.posts_type_1 .post__item:first-child {
    grid-column: 1;
    grid-row: 1 / span 3;
}


.posts_type_1 .post__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.posts_type_1 .post__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.posts_type_1 .post__item:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
}




.posts__list.default {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px 20px;
}

.posts__list.posts_type_2 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;      
}   

/*Post XL*/

.post__item.post__item_col.post__item_xl .post__image {
    height: 400px;
}
.post__item.post__item_col.post__item_xl .post__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.post__item.post__item_col.post__item_xl .post__title {
    font-size: 32px;
    max-width: 550px;
    font-weight: 500;
    margin-bottom: 24px;
}

.posts_type_2 .post__item.post__item_col.post__item_xl .post__title {
    font-size: 24px;
    margin-bottom: 12px;
    max-width: 100%;
}

.posts_type_2 .post__item.post__item_col.post__item_xl .post__image {
    height: 450px;
}

.posts_type_2 .post__item.post__item_col.post__item_xl .post__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.post__item .post__excerpt {
    color: var(--main-gray-color);
    max-width: 550px;
}

.post__item.post__item_col.post__item_sm .post__image {
    height: 222px;
}

.post__item.post__item_col.post__item_sm .post__image img  {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/*Post Col*/
.post__item.post__item_col .post__title {
    font-size: 24px;
    max-width: 400px;
    margin-bottom: 12px;
}

.post__item.post__item_col .post__image {
    margin-bottom: 18px;
    height: 300px;
}

.post__item.post__item_col .post__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.post__item.post__item_col .post__info {
    justify-content: space-between;
    margin-bottom: 18px;
}

/*Post Inline*/
.post__item.post__item_inline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.post__item.post__item_inline .post__image {
    flex: 0 0 210px;
    height: 176px;
}

.post__item.post__item_inline .post__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.post__item.post__item_inline .post__meta {
    margin-left: 20px;
}

.post__item.post__item_inline .post__content {
    align-content: center;
}

/*Post Cards*/
.posts_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post__item.post__item_card {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 390px 20px 20px 20px;
}

.post__item.post__item_card .post__content {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    max-width: 380px;
}


.post__item.post__item_card .post__meta {
    margin-left: 20px;
}

.categories-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.categories-slider__list {
    display: flex;
    gap: 38px;
    padding: 10px 20px;
    user-select: none;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: space-between;
}

.categories-slider__list::-webkit-scrollbar {
    display: none;
}

.categories-slider__list:active {
    cursor: grabbing;
}

.categories-slider__item {
    flex: 0 0 126px;
    width: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories-slider__item-image {
    padding: 6px;
    border: 4px solid transparent;
}

.categories-slider__item-image-container {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background-color: #eaeaea;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.categories-slider__item-name {
    text-align: center;
    margin-top: 20px;
}

.categories-slider__item:hover .categories-slider__item-image {
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}

.custom-scrollbar {
    position: relative;
    margin: 60px auto 0 auto;
    display: block;
    border-radius: 3px;
    background: rgba(234, 234, 234, 1);
    overflow: hidden;
    width: 440px;
    height: 10px;
    border-radius: 20px;
    
}

.scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 100px;
    background: var(--primary-color);
    border-radius: 3px;
    cursor: grab;
    transition: width 0.2s;
}

.scrollbar-thumb:active {
    cursor: grabbing;
    background: #555;
}

.page-heading {
    margin-bottom: 80px;
}



.posts-count {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: none;
    margin-left: 20px;
    font-weight: 500;
}

.categories-tabs {
    margin-bottom: 80px;
}

.categories-tabs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.categories-tabs__item {
    color: #9F9F9F;
    border: 1px solid #9F9F9F;
    border-radius: 5px;
    padding: 14px 12px;
    font-weight: 500;
    transition: all .22s ease-in-out;
}

.categories-tabs__item:hover {
    color: var(--black-color);
    border-color: var(--black-color);
}

.categories-tabs__item.active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.sort {
    display: flex;
    margin-left: auto;
    position: relative;

}

.sort__text {
    font-weight: 500;
    color: #8F8F8F;
}

.sort__type {
    margin-left: 12px;
    font-weight: 500;
    cursor: pointer;
}

.sort__dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 17px);
    background-color: var(--white-color);
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}

.sort__dropdown.active {
    display: block;
}

.sort__dropdown-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sort__dropdown-item {
    cursor: pointer;
    font-weight: 500;
}

.sort__dropdown-item.active {
    color: var(--primary-color);
}

.sort__dropdown-item:not(:last-child) {
    margin-bottom: 22px;
}

.posts__more {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}


.posts__more-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px 32px;
}

.breadcrumbs {
    margin-bottom: 50px;
    color: #9F9F9F;
}

.breadcrumbs span {
    font-weight: 500;
    color: #9F9F9F;
}


.breadcrumbs .breadcrumb_last span {
    color: var(--black-color);
}

.bx-breadcrumb > div {
    display: inline-block;
}

.article__head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 30px;
    margin-bottom: 50px;
}

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


.article__nav {
    display: flex;
    align-items: center;
    color: #8F8F8F;
    font-size: 20px;
    gap: 10px;
}

.article__arrow {
    max-width: 250px;
    width: 100%;
}

.article__next {
    display: flex;
    justify-content: flex-end;
}

.article__title {
    max-width: 670px;
    text-align: center;
}

.article__cover {
    height: 375px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin-bottom: 50px;
}


.article__content {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 230px 1fr 230px;
    gap: 20px 80px; 
}

.article__content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article__content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: 50px
}

.article__content h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    margin-top: 40px
}

.article__content h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 30px
}

.article__content img {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.article__content br {
    margin-bottom: 10px;
    display: block;
}

.article__widget-heading {
    font-weight: 500;
    color: #8f8f8f;
    margin-bottom: 10px;
}

.article__widgets .ya-share2__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article__widgets .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
    margin: 0;
}

.article__widgets .ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
    width: 40px;
    height: 40px;
    background-size: 40px;
}

.article__socials {
    margin-bottom: 40px;
}

.article__detail {
    margin-bottom: 100px;
}

.article__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article__bottom-category {
    background-color: var(--primary-color);
    border-radius: 5px;
    color: var(--white-color);
    margin-left: auto;
}

.article__author-label {
    color: #8F8F8F;
    font-weight: 500;
    margin-bottom: 12px;
}

.article__author-name {
    font-size: 32px;
    font-weight: 500;
}

.contacts__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.contacts__item {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 226px;
    align-items: flex-start;
}

.contacts__item_white {
    background-color: var(--white-color);
    border: 2px solid #EAEAEA;
}

.contacts__item-label {
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight:500;
    padding: 7px 10px;
    background-color: var(--white-color);
    margin-bottom: auto;
}

.contacts__item_white .contacts__item-label {
    
    color: var(--primary-color);
}

.contacts__item-info {
    padding-top: 10px;
    
    color: var(--white-color);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

.contacts__item_white .contacts__item-info {
    color: var(--black-color);
}

.contacts__item-phone:not(:last-child) {
    margin-bottom: 20px;
}

.contacts__item-phone-link {
    line-height: 1;
}

.contacts__item-phone-label {
    font-size: 16px;
    color: #8F8F8F;
    line-height: 1;
    margin-top: 5px;
}

.contacts__item {
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.contacts__item_gray {
    background-color: #f7f7f7;
}

.contacts__data {
    margin-top: 60px;
}

.contacts__data-heading {
    max-width: 600px;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #8F8F8F;
}

.contacts__data-table {
    overflow: auto;
}

.contacts__data-table table {
    width: 1360px;

}


.contacts__data-table table th {
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    padding-bottom: 20px;
}

.contacts__data-table table td {
    padding: 18px 0 18px 0;
    border-bottom: 1px solid #e9e9e9;
    font-size: 18px;
}







.footer {
    background-color: var(--black-color);
    padding: 40px 0;
    color: var(--white-color);
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__brand, .brand {
    max-width: 144px;
}

.footer__logo, .brand_white .logo {
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.4px;
    color: var(--white-color);
}

.footer__copy, .brand_white .copyright {
    font-size: 10px;
    margin-top: 10px;
    color: var(--white-color);
}

.footer__links, .mobile-menu__links {
    display: flex;
    gap: 24px;
}

.footer__link, .mobile-menu__link {
    font-size: 13px;
    font-weight: 600;
    color: #FFF;
}

.footer__link:first-child, .mobile-menu__link {
    text-decoration: underline;
}

.footer__search-container.search-area__container {
    background-color: var(--white-color);
    width: 216px;
}

.footer__search-input.search-area__input  {
    font-size: 13px;
}

.footer__search-container.search-area__container path {
    stroke: var(--black-color);
}

/* End */


/* Start:/local/templates/iamik_main/assets/css/responsive.css?17494625908232*/






@media screen and (max-width: 1400px) {
    
    .container {
        max-width: 966px;
    }

    .button {
        font-size: 16px;
    }

    .dropdown {
        left: 0;
        padding-top: 50px;
    }

    .sub-menu {
        width: 180px;
    }

    .header__search-container {
        width: 216px;
    }

    .nav__link {
        font-size: 13px;
    }

    .header__search-input {
        font-size: 13px;
    }

    .section {
        margin-bottom: 100px;
    }

    .section__title, .page-title {
        font-size: 32px;
    }

    .post__category {
        font-size: 13px;
    }

    .post__title {
        font-size: 16px;
    }

    .post__excerpt {
        font-size: 13px;
    }

    .post__meta {
        font-size: 13px;
    }

    .post__item.post__item_xl .post__title {
        font-size: 24px;
        max-width: 375px;
    }

    .post__item.post__item_xl .post__title {
        margin-bottom: 18px;
    }

    .post__item.post__item_col .post__image  {
        height: 200px;
    }


    .post__item.post__item_col .post__title {
        font-size: 16px;
    }

    .post__item.post__item_col.post__item_sm .post__image  {
        height: 150px;
    }
    
    .post__item.post__item_inline {
        gap: 15px;
    }

    .post__item.post__item_inline .post__meta {
        margin-left: 10px;
    }

    .post__item.post__item_card  {
        padding-top: 230px;
    }

    .post__item.post__item_card .post__content {
        padding: 24px;
    }

    .post__item.post__item_card .post__info {
        justify-content: space-between;
        margin-bottom: 30px;
    }
    
    .posts_type_2 .post__item .post__info {
        flex-direction: column;
        align-items: flex-start;
    }

    .posts_type_2 .post__item .post__meta {
        order: 1;
    }

    .posts_type_2 .post__item .post__categories {
        order: 2;
        margin-top: 10px;
    }

    .posts_type_2 .post__item.post__item_col.post__item_xl .post__image {
        height: 220px;
    }


    .posts_type_2 .post__item.post__item_col.post__item_xl .post__title {
        font-size: 16px;
    }


    .sort {
        flex: 1 0 100%;
        margin-top: 20px;
    }

    .article__content {
        grid-template-columns: 195px 1fr 195px;
        gap: 20px 10px;
    }
    
    .article__widgets .ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
        width: 32px;
        height: 32px;
        background-size: 32px 32px;
    }

    .sort__dropdown {
        right: auto;
        left: 100px;
    }
}

@media (max-width: 991px) {
    .header__menu {
        display: none;
    }

    .header__row {
        gap: 0 40px;
    }

    .header__search, .header__search-container {
        width: 100%;
    }

    .header__burger, .header__close {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .header__burger span, .header__close span {
        width: 40px;
        height: 2px;
        background-color: var(--primary-color);
        border: 10px;
    }

    .header__burger.active {
        position: relative;
       
    }

    .header__close span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .header__close span:nth-child(2) {
        opacity: 0;
    }

    .header__close span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .mobile-menu.active {
        display: block;
        position: fixed;
        left:0;
        top:0;
        background-color: var(--black-color);
        width: 100%;
        height: 100%;
        background-color: var(--black-color);
        z-index: 100;
    }

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

    .mobile-menu__row {
        display: flex;
        padding-top: 40px;
        align-items: center;
        gap: 0 40px;
        justify-content: space-between;
    }

    .mobile-menu__search {
        
        max-width: 651px;
        width: 100%;
    }

    .mobile-menu__search .search-area__container {
        width: 100%;    
    }

    .mobile-menu__menu {
        margin: 20px 0;
        height: 60%;
        overflow: auto;
    }

    

    .mobile-menu__menu .nav__list {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__menu .nav__link {
        color: #FFF;
        padding: 20px 0;
        border-bottom: 1px solid #282828;
        font-size: 20px;
        display: block;
    }

    .mobile-menu__links {
        margin-top: auto;
        margin-bottom: 20px;
    }


    .posts__list.posts_type_1 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .posts_type_1 .post__item:first-child,
    .posts_type_1 .post__item:nth-child(2),
    .posts_type_1 .post__item:nth-child(3),
    .posts_type_1 .post__item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .posts_cards {
        grid-template-columns: 1fr;
    }

    .section__heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .posts__list.posts_type_2, .posts__list.default {
        grid-template-columns: 1fr;
        gap: 60px 0;
    }

    .posts_type_2 .post__item.post__item_col .post__image {
        height: 220px;
    }

    .posts_type_2 .post__item .post__info {
        flex-direction: row;
        align-items: center;
    }

    .posts_type_2 .post__item .post__categories {
        margin-top: 0;
        order: 1;   
    }

    .posts_type_2 .post__item .post__meta {
        order: 2;
    }

    .bx-breadcrumb {
        flex-wrap: wrap;
        gap: 5px;
    }

    .article__arrow {
        display: none;
    }

    .article__title {
        max-width: 100%;
    }

    .article__content {
        grid-template-columns: 1fr;
    }

    .article__widgets {
        order: 2;
        margin-top: 40px;
    }

    .article__socials {
        margin-bottom: 20px;
    }

    .contacts__items {
        grid-template-columns: 1fr;
    }
}



@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .page-heading {
        margin-bottom: 40px;
    }

    .post__item.post__item_col.post__item_xl .post__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px 0;
    }

    .footer__links {
        order: 3;
    }

    .footer__search {
        order: 2;
    }

    .header__row {
        flex-wrap: wrap;
    }

    .header__brand {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .header__brand-description {
        margin-top: 0;
        margin-left: 10px;
        max-width: 100px;
    }

    .header__search {
        order: 3;
        margin-top: 20px;
    }
    
}


@media screen and (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .post__info {
        margin-bottom: 7.5px;
    }

    .post__item.post__item_col.post__item_xl .post__title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .post__item.post__item_inline .post__image {
        flex: 0 0 70px;
        height: 90px;
    }

    .page-title {
        display: flex;
        flex-direction: column;
    }

    .posts-count {
        margin-left: 0;
        margin-top: 10px;
    }

    .article__detail {
        margin-bottom: 40px;
    }

    .article__bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        
    }
    .article__bottom-category {
        margin-top: 20px;
        margin-left: 0;
    }

    .footer__search, .footer__search-container.search-area__container {
        width: 100%;
    }

    .mobile-menu__row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .mobile-menu__search {
        order: 3;
        width: 100%;
        margin-top: 30px;  
    }
    
}


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

    .post__item.post__item_card {
        padding-top: 100px;
    }
    .post__item.post__item_col.post__item_xl .post__image {
        height: 220px;
    }
}

@media screen and (max-width:340px) {
    .header__brand-description {
        display: none;
    }
} 
/* End */


/* Start:/local/templates/iamik_main/components/bitrix/menu/header/style.min.css?1748933741490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/iamik_main/components/bitrix/menu/header/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/iamik_main/components/bitrix/menu/mobile/style.min.css?1749460910490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/iamik_main/components/bitrix/menu/mobile/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/iamik_main/components/bitrix/breadcrumb/iamik/style.min.css?1749410066467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */
/* /local/templates/iamik_main/assets/css/theme.css?17494364983522 */
/* /local/templates/iamik_main/assets/css/main.css?174946419316490 */
/* /local/templates/iamik_main/assets/css/responsive.css?17494625908232 */
/* /local/templates/iamik_main/components/bitrix/menu/header/style.min.css?1748933741490 */
/* /local/templates/iamik_main/components/bitrix/menu/mobile/style.min.css?1749460910490 */
/* /local/templates/iamik_main/components/bitrix/breadcrumb/iamik/style.min.css?1749410066467 */
