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

html {
    box-sizing: border-box;
}

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

dd,
dl,
figure,
blockquote {
    margin: 0;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

blockquote,
q {
    quotes: none;
}

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

p {
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: inherit;
}

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

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

svg {
    display: block;
}

:disabled {
    cursor: not-allowed;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

:root {
    --font-family: "Inter", sans-serif;
    --clr-orange: #ee4f1c;
}

.btn-reset {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-reset {
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    white-space: nowrap !important;
    clip: rect(0, 0, 0, 0) !important;
}

.lock {
    overflow: hidden !important;
}

[hidden] {
    display: none;
}

body {
    font: 400 1rem/1.4 var(--font-family);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #667685;
    background-color: #e4f2fa;
}

.app {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1244px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 60px;
}
@media (max-width: 400px) {
    .app {
        border-radius: 20px;
    }
}
.main {
    flex-grow: 1;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1130px;
    width: 100%;
}
.container--full {
    max-width: 100%;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #101828;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.58);
    transition: opacity 240ms ease-in-out, visibility 240ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.burger {
    display: none;
    position: relative;
    z-index: 10;
    width: 30px;
    height: 30px;
    text-align: left;
    pointer-events: initial;
    cursor: pointer;
}

.burger.active span {
    background-color: transparent;
    transition: background-color 0.2s ease-out;
    top: -20px;
}

.burger.active span::before,
.burger.active span::after {
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
    background-color: #000;
}

.burger.active span::before {
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg);
}

.burger.active span::after {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
}

.burger span {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 13px);
    display: block;
    height: 2px;
    width: 26px;
    background-color: #000;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 26px;
    background-color: #000;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
}

.burger span::before {
    top: 7px;
}

.burger span::after {
    top: -7px;
}

.btn {
    border: 2px solid var(--clr-orange);
    border-radius: 54px;
    background-color: #fff;
    padding: 14px 40px;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: -0.02em;
    color: var(--clr-orange);
}

.btn:active {
    scale: 0.97;
    background-color: var(--clr-orange);
    color: #fff;
}

.btn-secondary {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.04em;
    color: #fff;
    border: 2px solid var(--clr-orange);
    background-color: var(--clr-orange);
    padding: 25px 68px;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
    border-radius: 46px;
}

.btn-secondary:active {
    scale: 0.97;
    background-color: var(--clr-orange);
    color: var(--clr-orange);
}

.btn-search {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #32de8a;
    transition: background-color 150ms ease-in-out;
}

.btn-search:active {
    scale: 0.97;
    background-color: #0f9754;
}

.header {
    padding-top: 40px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: block;
}

.logo__img {
    width: 60px;
    height: 60px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #424242;
    transition: color 150ms ease-in-out;
}

.menu-item a:active {
    color: var(--clr-orange);
}

.menu-item-has-children {
    padding-right: 18px;
    position: relative;
    cursor: pointer;
}

.menu-item-has-children::after {
    content: "";
    position: absolute;
    display: block;
    top: 9px;
    right: 0;
    width: 6px;
    height: 6px;
    background-image: url("../img/svg/arrow_bottom.svg");
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    min-width: 160px;
    width: 100%;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background-color: #063f73;
    border-radius: 14px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 100ms ease-in-out;
    transition-delay: 500ms;
    list-style: none;
}

.menu-item-has-children .sub-menu .menu-item a {
    border-bottom: 1px solid currentColor;
    color: #fff;
}

.menu-item-has-children .sub-menu .menu-item a:active {
    color: var(--clr-orange);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: 100ms ease-in-out;
    transition-delay: 0ms;
}

.hero {
    padding-top: 76px;
}

.hero__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

.hero__title {
    margin-bottom: 32px;
}

.hero__info {
    grid-column: 6 span;
}

.hero__img {
    grid-column: 6 span;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.benefits-wrapper {
    padding-top: 78px;
}

.benefits {
    padding: 40px 20px;
    background-color: rgba(8, 53, 106, 0.73);
    background-image: url("../img/benefits.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 60px;
}

.benefits__inner {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.benefits__top {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #97cfff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.benefits__item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.benefits__content {
    text-align: center;
    color: #fff;
}

.benefits__content p + p {
    margin-top: 20px;
}

.footer__inner {
    padding: 56px 68px;
    border-radius: 60px;
    background: #063f73;
}

.footer__top {
    margin-bottom: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #4e93d2;
}

.footer__bottom {
    display: flex;
    gap: 40px;
}

.footer__item {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #a0c6e8;
}

.footer__subtitle {
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.footer__copy {
    padding: 22px 0;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #667685;
}

.footer .menu {
    gap: 15px 56px;
    flex-wrap: wrap;
}

.footer .menu .menu-item a {
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer .menu .menu-item a:active {
    color: var(--clr-orange);
}

.products {
    padding-top: 78px;
}

.products__container {
    max-width: 910px;
}

.products__top {
    margin-bottom: 40px;
    padding: 0 48px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.products__row {
    display: flex;
    gap: 40px;
}

.products__btn {
    flex-shrink: 0;
}
.post-cards {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.post-card {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}
.search:not(body) {
    position: relative;
    max-width: 530px;
    width: 100%;
    min-width: 200px;
    border: 2px solid #32de8a;
    border-radius: 46px;
    overflow: hidden;
}

.search__input {
    width: 100%;
    padding: 25px 32px;
    padding-right: 74px;
}

.search__btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.product {
    padding: 20px 0;
    border-bottom: 1px solid #e7eaec;
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.product__link-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product__link {
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #003c82;
}

.product__link ~ svg {
    opacity: 0;
    transition: opacity 120ms ease;
}

.product__price {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -0.06em;
    text-align: right;
    color: #101828;
}

.badge {
    padding: 4px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    /* line-height: 18px; */
    line-height: 1.4;
    letter-spacing: -0.02em;
    width: -moz-max-content;
    width: max-content;
    transition: all 0.2s;
}

.badge--orange {
    color: var(--clr-orange);
    border: 1px solid var(--clr-orange);
    border-radius: 55px;
}
.badge--orange:hover {
    background-color: var(--clr-orange);
    color: #fff;
}

.badge--blue {
    color: #0d3e69;
    border: 1px solid #0d3e69;
    border-radius: 55px;
}
.badge--blue:hover {
    background-color: #0d3e69;
    color: #fff;
}
.badge--green {
    color: #32de8a;
    border: 1px solid #32de8a;
    border-radius: 55px;
}
.badge--green:hover {
    background-color: #32de8a;
    color: #fff;
}
.article--space {
    padding-top: 48px;
    padding-bottom: 62px;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    margin-top: 0;
    margin-bottom: 32px;
}

.article h1:not(:first-child),
.article h2:not(:first-child),
.article h3:not(:first-child),
.article h4:not(:first-child),
.article h5:not(:first-child),
.article h6:not(:first-child) {
    margin-top: 40px;
}

.article p {
    margin: 0;
}

.article p + p, .article ul + p, .article ol + p {
    margin-top: 20px;
}

.article a {
    text-decoration: underline;
    font-weight: 700;
    color: #1677d1;
}

.article a:active {
    color: #ee4f1c;
}

.article ol {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: counter;
    margin-top: 32px;
}

.article ol li {
    padding-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.article ol li::before {
    content: counter(counter) ".";
    counter-increment: counter;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    /* line-height: 21px; */
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #1e6fcd;
}

.article ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 32px;
}

.article ul li {
    padding-bottom: 20px;
    /*border-bottom: 1px solid #e7eaec;*/
    position: relative;
    padding-left: 24px;
}

.article ul li::before {
    content: "";
    position: absolute;
    top: 15px;
    transform: translateY(-100%);
    left: 0;
    width: 8px;
    height: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    background-color: #ff3e00;
    border-radius: 50%;
    /* line-height: 21px; */
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #1e6fcd;
}

.page__article {
    padding-top: 84px;
    padding-bottom: 70px;
}

.box {
    padding-top: 37px;
}

.box__inner {
    padding: 82px 68px;
    background: linear-gradient(132deg, #1e6fcd 0%, #b7e5ff 100%);
}

.box h1 {
    color: #fff;
}
.footer__top.footer__top-no-border {
  border: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    .btn {
        padding: 14px 25px;
    }

    .btn-secondary {
        padding: 14px 25px;
    }

    .btn-search {
        width: 32px;
        height: 32px;
    }

    .btn-search svg {
        width: 16px;
        height: 16px;
    }

    .header {
        padding-top: 20px;
    }

    .header__burger {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        z-index: 10;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 320px;
        background-color: #c3d2e0;
        padding-top: 20px;
        overflow-y: auto;
        padding-bottom: 20px;
        transform: translateX(100%);
        transition: transform 240ms ease-in-out;
    }

    .mobile-menu .menu {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 10px;
    }
    .menu-item-has-children .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 15px 0;
        padding: 14px;
        gap: 9px;
    }
    .menu-item a {
        font-size: 1rem;
    }
    .mobile-menu.active {
        transform: translateX(0);
    }

    .footer__inner {
        border-radius: 0px;
        padding: 30px 15px;
    }

    .footer__top {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .products {
        padding-top: 30px;
    }

    .products__top {
        flex-direction: column;
        padding: 0;
        gap: 20px;
    }

    .products__row {
        flex-direction: column;
        gap: 20px;
    }

    .search:not(body) {
        border-radius: 26px;
    }

    .search__input {
        padding-right: 50px;
        padding-left: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .product {
        grid-template-columns: minmax(0, 1fr) 1fr 1fr;
    }

    .product__link-wrapper {
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding-top: 30px;
    }

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

    .hero__title {
        margin-bottom: 18px;
    }

    .benefits {
        border-radius: 0px;
    }

    .benefits__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 24px;
    }
}

@media screen and (max-width: 600px) {
    .hero__img {
        height: 200px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (any-hover: hover) and (pointer: fine) {
    .btn:hover {
        background-color: var(--clr-orange);
        color: #fff;
    }

    .btn-secondary:hover {
        background-color: #fff;
        color: var(--clr-orange);
    }

    .btn-search:hover {
        background-color: #0f9754;
    }

    .menu-item a:hover {
        color: var(--clr-orange);
    }

    .menu-item-has-children .sub-menu .menu-item a:hover {
        color: var(--clr-orange);
    }

    .footer .menu .menu-item a:hover {
        color: var(--clr-orange);
    }

    .product__link:hover {
        text-decoration: underline;
    }

    .product__link:hover ~ svg {
        opacity: 1;
    }

    .article a:hover {
        color: #ee4f1c;
    }
}
.text-right {
text-align:right
}
.row{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 1 auto;-moz-box-flex:0;-moz-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}
.middle-xs {
-webkit-box-align:center;
-ms-flex-align:center;
-webkit-align-items:center;
-moz-align-items:center;
align-items:center
}
.first-xs {
order:-1
}

.last-xs {
order:1
}
.col-md-3,.col-md-4 {
box-sizing:border-box;
-webkit-box-flex:0;
padding-right:15px;
padding-left:15px
}

.col-md-3 {
-webkit-flex-grow:0;
-moz-flex-grow:0;
-ms-flex-positive:0;
flex-grow:0;
-webkit-flex-shrink:0;
-moz-flex-shrink:0;
-ms-flex-negative:0;
flex-shrink:0;
-webkit-flex-basis:25%;
-moz-flex-basis:25%;
-ms-flex-preferred-size:25%;
flex-basis:25%;
max-width:25%
}
.col-xs-5,.col-xs-6 {
box-sizing:border-box;
-webkit-box-flex:0;
padding-right:15px;
padding-left:15px
}

.col-xs-5 {
-webkit-flex-grow:0;
-moz-flex-grow:0;
-ms-flex-positive:0;
flex-grow:0;
-webkit-flex-shrink:0;
-moz-flex-shrink:0;
-ms-flex-negative:0;
flex-shrink:0;
-webkit-flex-basis:41.66667%;
-moz-flex-basis:41.66667%;
-ms-flex-preferred-size:41.66667%;
flex-basis:41.66667%;
max-width:41.66667%
}
.col-xs-7,.col-xs-8 {
box-sizing:border-box;
-webkit-box-flex:0;
padding-right:15px;
padding-left:15px
}

.col-xs-7 {
-webkit-flex-grow:0;
-moz-flex-grow:0;
-ms-flex-positive:0;
flex-grow:0;
-webkit-flex-shrink:0;
-moz-flex-shrink:0;
-ms-flex-negative:0;
flex-shrink:0;
-webkit-flex-basis:58.33333%;
-moz-flex-basis:58.33333%;
-ms-flex-preferred-size:58.33333%;
flex-basis:58.33333%;
max-width:58.33333%
}
@media only screen and (min-width: 768px) {
.first-sm {
order:-1
}

.last-sm {
order:1
}
}
@media only screen and (min-width:1024px) {
.first-md {
order:-1
}

.last-md {
order:1
}
}
@media screen and (min-width: 1200px) {
.first-lg {
order:-1
}

.last-lg {
order:1
}
}
@media only screen and (max-width: 991px) {
    .col-md-3 {
        -webkit-flex-basis:100%;
        -moz-flex-basis:100%;
        -ms-flex-preferred-size:100%;
        flex-basis:100%;
        max-width:100%
    }
}
.offerGeneral .nameProd {
font-size:20px;
font-weight:700;
text-transform:uppercase;
display:block
}

.offerImage,.offerGeneral {
display:inline-block;
vertical-align:middle
}

.offerImage {
width:70px;
max-width:100%
}

.offerGeneral {
width:calc(100% - 75px)
}

.offerGeneral .activeElement {
font-size:14px;
color:#777;
line-height:.001
}

.wrapOffersItem {
box-shadow:0 0 13px 0 rgba(1,7,42,0.04);
color:#2d2d2d;
margin:30px 0 60px
}

.wrapOffersItem:first-child {
margin-top:18px
}

.linkOffers.innerView {
border-radius:15px 15px 0 0;
box-shadow:none
}

.linkOffers.innerView + .linkOffers.innerView {
border-radius:0 0 15px 15px;
background:#fff9ed
}

.linkOffers.innerView .butOrange {
text-transform:uppercase;
font-size:18px;
border-radius:10px;
background-image:-moz-linear-gradient(90deg,#f97723 0%,#ffad00 100%);
background-image:-webkit-linear-gradient(90deg,#f97723 0%,#ffad00 100%);
background-image:-ms-linear-gradient(90deg,#f97723 0%,#ffad00 100%);
padding:17px 0;
height:unset;
text-decoration: none;
color: #fff;
width: 100%;
display: block;
text-align: center;
}

.linkOffers.innerView .nameInfo {
font-size:14px;
color:#777;
display:block
}

.linkOffers.innerView .valueInfo {
font-size:18px
}

.linkOffers.innerView .icoInfo {
display:inline-block;
text-align:center;
width:50px;
height:50px;
border-radius:50%;
background:#f5fafd;
line-height:4.25rem
}
.linkOffers.innerView .icoInfo img {
display: inline-block;
}
.linkOffers.innerView + .linkOffers.innerView .icoInfo {
background:#fff;
line-height:4rem
}

.linkOffers.innerView + .linkOffers.innerView .valueInfo {
color:#ff7e29;
font-weight:700
}

.linkOffers.innerView + .linkOffers.innerView .nameInfo {
font-size:18px;
color:#2d2d2d;
text-transform:uppercase
}

.linkOffers.innerView + .linkOffers.innerView .nameInfo span {
font-size:14px;
color:#777
}

.wrapOffersItem .linkOffers.innerView {
padding:16px
}

@media (max-width: 1023px) {
.text-center-md {
text-align:center
}

.offerImage {
width:37.26667%;
text-align:right
}
.offerImage img{
display: inline-block;
}

.offerGeneral {
width:57.83333%;
text-align:left;
padding-left:3.3%
}

.linkOffers.innerView .col-md-3:not(:last-child) {
margin-bottom:20px
}

.linkOffers.innerView .col-md-3.last-xs {
margin-bottom:0
}

.linkOffers.innerView a.but.butOrange {
margin-top:20px
}

.linkOffers.innerView .icoInfo {
line-height:5.25rem
}

.linkOffers.innerView + .linkOffers.innerView .icoInfo {
line-height:4.6rem
}
}

@media (max-width: 450px) {
.offerImage {
display:none
}

.offerGeneral {
text-align:center;
width:100%;
padding-left:0
}

.linkOffers {
padding:15px
}

.linkOffers.innerView .col-md-3:not(:last-child) {
margin-bottom:10px
}

.nameOffer {
font-size:12px;
line-height:1
}
}

.welcome-hero .welcome-hero-text {
font-size:14px;
color:#fff;
margin-left:367px;
max-width:570px
}

.item-good-block-top {
background-color:#fff;
box-shadow:0 10px 57px 0 rgba(4,34,142,0.08);
padding:25px 30px;
}

.item-good-block-middle {
background:#f5fdf7;
padding:40px 30px 35px;
}

.item-good-block-middle ul {
list-style:none;
margin-left:0
}

.item-good-block-middle ul li {
position:relative;
padding-left:38px;
margin-bottom:20px
}

.item-good-block-middle ul li:before {
content:'';
width:21px;
height:21px;
position:absolute;
left:0;
top:2px;
background:url(../img/green-check.png)
}

.item-good-name {
text-transform:uppercase;
font-weight:700;
color:#3c424f;
margin-bottom:15px
}

.item-good-block-middle .btn-link {
border:2px solid #97ea9d;
display:block;
text-align:center;
color:#3c424f;
font-weight:500;
padding:11px 10px;
background:#fff;
border-radius:15px;
text-decoration:none
}

.item-good-price {
color:#016fb9;
font-size:15px;
font-weight:700
}

.item-good-price span {
font-size:24px
}

.items-good-block {
padding:0 15px;
margin:80px 0
}

@media (min-width: 1250px) {
.items-good-block {
min-height:414px
}
}

.best-good {
background:#fc7753;
color:#fff;
text-transform:uppercase;
padding:5px;
text-align:center;
margin:0 15px;
font-weight:700;
display:none
}

.wrapOffersItem.theme2 .linkOffers {
padding:30px 15px
}

.wrapOffersItem.theme2 .linkOffers.innerView:first-child {
border-radius:18px 18px 0 0;
box-shadow:0 0 20px #D9E6E9
}

.wrapOffersItem.theme2 .linkOffers.innerView:last-child {
border-radius:0 0 18px 18px;
box-shadow:0 0 20px #D9E6E9
}

.wrapOffersItem.theme2 .offerGeneral .nameProd {
font-size:15px;
line-height:18px
}

.wrapOffersItem.theme2 .linkOffers .row .row {
margin-left:-10px;
margin-right:-10px
}

.wrapOffersItem.theme2 .linkOffers .row .row > * {
padding-left:10px;
padding-right:10px
}

.wrapOffersItem.theme2 .linkOffers.innerView .icoInfo img {
max-height:25px
}

.wrapOffersItem.theme2 .linkOffers.innerView .icoInfo {
width:40px;
height:40px;
line-height:3.25rem
}

.wrapOffersItem.theme2 .linkOffers.innerView .nameInfo {
font-size:11px;
line-height:14px
}

.wrapOffersItem.theme2 .linkOffers.innerView .valueInfo {
font-size:16px;
line-height:19px
}

.wrapOffersItem.theme2 .linkOffers.innerView .butOrange {
font-size:15px;
line-height:18px
}

.wrapOffersItem.theme2 .linkOffers.innerView:last-child .icoInfo {
line-height:2.95rem
}

.wrapOffersItem.theme2 .linkOffers.innerView:last-child .icoInfo img {
max-height:18px
}

.wrapOffersItem.theme2 .linkOffers.innerView + .linkOffers.innerView .nameInfo {
font-size:14px;
line-height:19px;
color:#000
}

.wrapOffersItem.theme2 .linkOffers.innerView + .linkOffers.innerView .nameInfo span {
color:#777;
font-size:12px;
line-height:14px
}
.aligncenter,.alignleft,.alignright {
    display: block;
    padding: 0;
}

.aligncenter {
    float: none;
    margin: .5em auto 1em;
}

.alignright {
    float: right;
    margin: .5em 0 1em 1em;
}

.alignleft {
    float: left;
    margin: .5em 1em 1em 0;
}
.blog  .article.article--space {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.post-list-item {
  flex-basis: calc(50% - 16px);
}
.post-title {
    font-size: 21px;
    margin: 8px 0 !important;
}
.post-title a {
    color: #101828;
    text-decoration: none;
}
.post-meta.small {
    margin-bottom: 16px;
    font-size: 13px;
}

.article .post-excerpt a {
    text-decoration: none;
    color: #424242;
    display: block;
    margin-top: 8px;
}
.wp-pagenavi {
    display: flex;
    justify-content: center;
    flex-basis: 100%;
    height: auto;
}
.wp-pagenavi a, .wp-pagenavi .current {
  display: inline-block;
  width: 38px;
  text-align: center;
  padding: 7px 0 9px;
  background: #063f73;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  margin: 0 3px;
}
.wp-pagenavi .current {
  color: #ee4f1c;
}