.news {
    padding: 0!important;
    margin-bottom: 30px;
}
.news .news-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -11px;
}
.news .news-grid .news-block {
    display: block;
    padding: 15px 11px;
}

.news .news-grid .news-block.even {
    width: 66.666%;
}
.news .news-grid .news-block.odd {
    width: 33.333%;
}
.news .news-grid .news-block.hidden {
    display: none;
}
.news .news-grid .news-block .news-block-inner {
    border-radius: 30px;
    border: 1px solid #D2D2D2;
    display: flex;
    height: 424px;
    cursor: pointer;
}
.news .news-grid .news-block.even .news-block-inner > div {
    width: 50%;
}
.news .news-grid .news-block.odd .news-block-inner > div {
    width: 100%;
}
.news .news-grid .news-block .news-block-inner .news-text-column {
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.news .news-grid .news-block .news-block-inner .news-text-column .n-title {
    color: #171A1E;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 20px;
}
.news .news-grid .news-block .news-block-inner .news-text-column .n-description {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    flex-grow: 1;
}
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link {
    display: flex;
    align-items: end;
}
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .date {
    color: #767676;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    flex-grow: 1;
}
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link {
    width: 63px;
    height: 40px;
    border-radius: 12px 0px;
    border: 2px solid #BCBCBC;
    position: relative;
}
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link:after {
    background: linear-gradient(90deg, rgba(73,195,196,1) 0%, rgba(91,247,220,1) 100%);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    margin: -2px;
    border-radius: 12px 0px;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link > span {
    display: block;
    height: 100%;
    background-color: #BCBCBC;
    -webkit-mask: url('/local/templates/inno-2025/images/icons/news-link.svg') no-repeat center;
    mask: url('/local/templates/inno-2025/images/icons/news-link.svg') no-repeat center;
    z-index: 3;
    position: relative;
}
.news .news-grid .news-block .news-block-inner .news-image-column {
    border-radius: 30px;
    background-size: auto 100%;
    background-position: center;
}
.news .news-grid .news-block.odd .news-block-inner .news-image-column {
    display: none;
}
.news .news-grid .news-block .news-block-inner .news-text-column .n-title,
.news .news-grid .news-block .news-block-inner .news-image-column,
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link,
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link:after,
.news .news-grid .news-block .news-block-inner .news-text-column .date-and-link .link > span,
.news .news-grid .news-block .news-block-inner:hover .news-text-column .n-title,
.news .news-grid .news-block .news-block-inner:hover .news-image-column,
.news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link
.news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link:after,
.news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link > span {
    transition: all 0.5s;
}

.news .news-show-more {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #D2D2D2;
    transition: all 0.5s;
    text-align: center;
    cursor: pointer;
    color: black;
}
.news .news-show-more:hover {
    border: 1px solid #000;
    transition: all 0.5s;
    color: black;
}


@media (min-width: 1201px) {
    .news .news-grid .news-block .news-block-inner:hover .news-text-column .n-title {
        color: #1cb4b5;
    }
    .news .news-grid .news-block .news-block-inner:hover .news-image-column {
        background-size: auto 105%;
    }
    .news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link {
        border-color: #02acad;
        background: #02acad;
    }
    .news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link:hover:after {
        opacity: 1;
    }
    .news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link:after {
    }
    .news .news-grid .news-block .news-block-inner:hover .news-text-column .date-and-link .link > span {
        background: #FFF;
    }
}

@media (max-width: 1200px) {
    .news .container {
        max-width: none;
        padding: 10px;
    }
    .news .news-grid {
        margin: 0 -11px;
    }
    .news .news-grid .news-block.even,
    .news .news-grid .news-block.odd {
        width: 100%;
    }
    .news .news-grid .news-block.even .news-block-inner > div {
        width: 100%;
    }
    .news .news-grid .news-block.even .news-block-inner .news-image-column {
        display: none;
    }
    .news .news-grid .news-block.mobile-hidden {
        display: none;
    }
}






.body-contacts {
    margin-bottom: 80px;
}


.body-contacts .transition-gradient-hover-button {
    margin: 18px 0;
    width: 100%;
    height: 65px;
}

.body-contacts .contacts-subscribe {
    display: flex;
    padding: 30px 32px 40px 32px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 40px 40px 40px 3px;
    background: #1CB4B5;
    color: #FFF;
    margin-bottom: 70px;
}

.body-contacts .contacts-subscribe .cs-header,
.body-contacts .contacts-subscribe .cs-form {
    flex: 0 0 350px;
}

.body-contacts .contacts-subscribe .cs-header {
    font-size: 43px;
    font-weight: 600;
    line-height: normal;
}

.body-contacts .contacts-subscribe .cs-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.body-contacts .contacts-subscribe .cs-form-result {
    display: none;
    flex: 0 0 350px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 45px 0;
}
.body-contacts .contacts-subscribe .cs-form-result .sent-icon {
    background: #FFF;
    height: 74px;
    width: 74px;
    -webkit-mask: url('../images/icons/sent.svg') no-repeat center;
    mask: url('../images/icons/sent.svg') no-repeat center;
}
.body-contacts .contacts-subscribe .cs-form-result .sent-message {
    color: #FFF;
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.body-contacts .contacts-subscribe .cs-form-result .sent-description {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.body-contacts .contacts-info {
    border: 1px solid #BCBCBC;
    border-radius: 50px;
}
.body-contacts .contacts-info .contacts-info-header {
    display: flex;
    padding: 40px 20px 40px 20px;
    align-items: center;
    gap: 36px;
    align-self: stretch;
    border-radius: 30px;
    background: #1CB4B5;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.16px;
}
.body-contacts .contacts-info .contacts-info-header > div {
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    align-items: center;
}
.body-contacts .contacts-info .contacts-info-header > div > div {
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
}
.body-contacts .contacts-info .contacts-info-header > div a,
.body-contacts .contacts-info .contacts-info-header > div a:visited {
    color: #FFF;
}
.body-contacts .contacts-info .contacts-info-header > div > .info-icon {
    flex-grow: 0;
    flex-basis: 40px;
    height: 60px;
    background-color: #098485;
    margin-right: 16px;
}
.body-contacts .contacts-info .contacts-info-header > div > .info-icon-location {
    -webkit-mask: url('../images/icons/contacts-location.svg') no-repeat center;
    mask: url('../images/icons/contacts-location.svg') no-repeat center;
}
.body-contacts .contacts-info .contacts-info-header > div > .info-icon-clock {
    -webkit-mask: url('../images/icons/contacts-clock.svg') no-repeat center;
    mask: url('../images/icons/contacts-clock.svg') no-repeat center;
}
.body-contacts .contacts-info .contacts-info-header > div > .info-icon-phone {
    -webkit-mask: url('../images/icons/contacts-phone.svg') no-repeat center;
    mask: url('../images/icons/contacts-phone.svg') no-repeat center;
}
.body-contacts .contacts-info .contacts-info-header > div > .info-icon-email {
    -webkit-mask: url('../images/icons/contacts-email.svg') no-repeat center;
    mask: url('../images/icons/contacts-email.svg') no-repeat center;
}

.body-contacts .contacts-info .contacts-info-header > div > .info-icon,
.body-contacts .contacts-info .contacts-info-header > div:hover > .info-icon {
    border: 1px solid #000;
    transition: all 0.5s;
}
.body-contacts .contacts-info .contacts-info-map {
    padding: 0 40px;
    margin: 40px 0;
    display: flex;
}
.body-contacts .contacts-info .contacts-info-map > div {
    flex-grow: 1;
    flex-basis: 50%;
    margin: 30px 20px 40px 20px;
}
.body-contacts .contacts-info .contacts-info-map .m-title {
    color: #171A1E;
    font-family: Inter;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}
.body-contacts .contacts-info .contacts-info-map .m-description {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 0 30px 0;
    display: none;
}
.body-contacts .contacts-info .contacts-info-map .m-label {
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-top: 10px;
    display: none;
}
.body-contacts .contacts-info .contacts-info-map input,
.body-contacts .contacts-info .contacts-info-map textarea {
    margin: 9px 0;
}
.body-contacts .contacts-info .contacts-info-map textarea {
    height: 100px;
    resize: none;
}
.body-contacts .contacts-info .contacts-info-map .m-notice {
    color: #171A1E;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: -0.012px;
}
.body-contacts .contacts-info .contacts-info-map .m-form-result {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}
.body-contacts .contacts-info .contacts-info-map .m-form-result .sent-icon {
    background: #5AC9C9;
    height: 74px;
    width: 74px;
    -webkit-mask: url('../images/icons/sent.svg') no-repeat center;
    mask: url('../images/icons/sent.svg') no-repeat center;
}
.body-contacts .contacts-info .contacts-info-map .m-form-result .sent-message {
    color: #000;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
.body-contacts .contacts-info .contacts-info-map .m-form-result .sent-description {
    color: #666;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}
.body-contacts .contacts-info .contacts-info-map > div > a> img {
    max-height: 479px;
    max-width: 559px;
    border-radius: 30px 30px 30px 0px;
}

@media (max-width: 1200px) {
    .body-contacts .contacts-info .contacts-info-map > div:last-child {
        display: none;
    }
    .news .news-grid .news-block .news-block-inner {
        height: auto;
    }
}

@media (max-width: 1200px) and (min-width: 623px) {
    .body-contacts .contacts-subscribe {
        flex-direction: column;
    }
    .body-contacts .contacts-subscribe .cs-header {
        flex: auto;
    }
    .body-contacts .contacts-subscribe .cs-description {
        display: none;
    }
    .body-contacts .contacts-subscribe .cs-input-block {
        display: flex;
        height: 65px;
        gap: 24px;
    }
    .body-contacts .contacts-subscribe .cs-form {
        flex: auto;
    }

    .body-contacts .contacts-subscribe .cs-input-block > * {
        margin: 0;
    }
    .body-contacts .contacts-subscribe .cs-input-email-notice {
        margin-top: 20px;
        text-align: center;
    }
    .body-contacts .contacts-info .contacts-info-header {
        flex-wrap: wrap;
        gap: unset;
        padding: 15px;
    }
    .body-contacts .contacts-info .contacts-info-header > *:first-child {
        flex-basis: 100%;
    }
    .m-name-and-phone {
        display: flex;
        gap: 18px;
    }
    .body-contacts .contacts-info .contacts-info-map > div {
        margin: 0;
    }
}

@media (max-width: 622px) {
    .body-contacts .contacts-info .contacts-info-header {
        flex-direction: column;
        gap: 36px;
        align-items: start;
    }
    .body-contacts .contacts-info .contacts-info-header > div {
        width: 100%;
    }
    .body-contacts .contacts-info .contacts-info-header > div > .info-icon {
        height: 35px;
    }
    .body-contacts .contacts-subscribe input {
        font-size: 14px;
    }
    .body-contacts .container {
        max-width: none;
        padding: 10px;
    }
    .body-contacts .contacts-subscribe {
        display: none;
    }
    .body-contacts .contacts-info {
        border: 0;
    }
    .body-contacts .contacts-info .contacts-info-map {
        border-radius: 40px 40px 40px 3px;
        background: #1CB4B5;
        padding: 0;
    }
    .body-contacts .contacts-info .contacts-info-map .m-title {
        color: #FFF;
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 10px;
    }
    .body-contacts .contacts-info .contacts-info-map .m-description,
    .body-contacts .contacts-info .contacts-info-map .m-label {
        display: block;
    }
    .body-contacts .contacts-info .contacts-info-map .m-notice {
        color: #FFF;
    }
    .body-contacts .contacts-info .contacts-info-map .m-notice a,
    .body-contacts .contacts-info .contacts-info-map .m-notice a:visited {
        color: #171A1E;
    }
    .body-contacts .contacts-info .contacts-info-map .m-form-result .sent-icon {
        background: #FFF;
    }
    .body-contacts .contacts-info .contacts-info-map .m-form-result .sent-message,
    .body-contacts .contacts-info .contacts-info-map .m-form-result .sent-description {
        color: #FFF;
    }
    .body-contacts {
        margin-bottom: 0px;
    }
}

@media (min-width: 623px) {
    .body-contacts .contacts-info .contacts-info-header > div:hover > .info-icon {
        margin-top: -15px;
        background-color: #2DE6E7;
    }
}
