:root {
    
    --color-y: #FFBB00;
    --color-black: #292929;
    --default-color: #292929;
    --color-grey: #EBEBEB;
    --color-white: #FFFFFF;
    --pw: 8px; /* 8px */
    --mw: -8px;
    --mt: -16px;
    --pt: 16px;
}
.bg-y {
    background: var(--color-y);
}
.bg-g {
    background: var(--color-grey);
}
.bg-b {
    background: var(--color-black);
}
.section-pt {
    padding-top: 40px;
}
.section-pb {
    padding-bottom: 40px;
}
.section-mb {
    margin-bottom: 40px;
}
.section-mt {
    margin-bottom: 40px;
}

/* HEADER >>> */
header {
    border-bottom: 3px solid var(--color-y);
}
.section-mob-header {
    padding-top: 13px;
    padding-bottom: 13px;
}
.section-desk-header {
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-top_left {
    display: flex;
    align-items: center;
}
.header-top_left img {
    margin-right: 32px;
}
.header-top_left p {
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 370px;
    height: 100%;
    line-height: 108%;
    padding-left: 9px;
}
.header-top_left p::before {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    height: 100%;
    width: 4px;
    background: var(--color-y);
}
.header-top_right {
    display: flex;
    align-items: center;
}
.header-top_right-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header-top_right-contacts a {
    text-decoration: underline;
    font-weight: 500;
    line-height: 115%;
    color: var(--color-black);
}
.header-top_right-contacts a:hover {
    opacity: .85;
}
.header-top_right-contacts a.phone {
    text-decoration: none;
    font-weight: 700;
}
.header-top_right-mess {
    border-radius: 6px;
    padding: 0px 10px;
    width: 42px;
    height: 42px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}
.header-top_right-mess img {
    transition: all .13s ease-in-out;
}
.header-top_right-mess:hover img {
    scale: 1.07;
}
.section-desk-header-menu {
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 500;
    
}
.section-desk-header-menu-els a {
    display: inline-block;
    margin-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    position: relative;
}
.section-desk-header-menu-els a span {
    position: relative;
    z-index: 3;
}
.section-desk-header-menu-els a::after {
    content: '';
    display: block;
    background: var(--color-white);
    width: 0%;
    height: 3px;
    position: absolute;
    top: calc(50% - 16px);
    left: 0;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.section-desk-header-menu-els a::before {
    content: '';
    display: block;
    background: var(--color-white);
    width: 0%;
    height: 3px;
    position: absolute;
    top: calc(50% + 10px);
    left: 0;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.section-desk-header-menu-els a:hover {
    color: var(--color-white);
    text-decoration: none;
}
.section-desk-header-menu-els a:hover::before {
    width: 100%;
}
.section-desk-header-menu-els a:last-child {
    margin-right: 0;
}
/* HEADER <<< */

.crumbs_wrap > * {
    margin-right: 10px;
    font-size: 14px;
}
.crumbs_wrap > *:last-child {
    margin-right: 0;
}

/* MAIN >>> */
main {
    overflow-x: hidden;
}
.section-main-top {
    background: var(--color-grey);
    /* background-image: url(images/jpg/main-mob.jpg); */
    /* background-repeat: no-repeat; */
    /* background-size: 390px; */
    /* background-position: center bottom; */
    text-transform: uppercase;
}
.section-main-top .main-mb {
    margin-bottom: 30px;
}
.section-main-top .pre-title {
    font-weight: 600;
    font-size: 16px;
}
.section-main-top .title {
    font-weight: 800;
    font-size: 28px;
}
.company-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company-name .decore-top, .company-name .decore-bottom {
    display: block;
    height: 10px;
    width: 200px;
    background: var(--color-y);
}
.company-name .decore-top { 
    margin-bottom: 10px;
}
.company-name .decore-bottom {
    margin-top: 10px;
}
.company-name .name {
    font-weight: 900;
    font-size: 66px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 8px;
    width: 310px;
    height: 64px;
    background: var(--color-black);
    transition: all .2s ease-in-out;
}
.btn:hover {
    color: var(--color-white);
}
.btn svg {
    margin-left: 10px;
    transition: all .2s ease-in-out;
}
.btn:hover svg {
    transform: translate(7px, 0);
}
.main-top-img-mob {
    /* height: 320px; */
}
.main-top-img-mob img {
    width: 100%;
    min-height: 334px;
    object-fit: cover;
}
.section-main-features-1 {
    padding: 34px 0;
    border-bottom: 3px solid var(--color-black);
}
.section-main-features-1 .row {
    margin-bottom: -30px;
}
.section-main-features-1-el {
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    width: 328px;
}
.section-main-features-1-el span {
    display: block;
    margin-left: 10px;
    /* max-width: 258px; */
}

.section-main-features-2 .row {
    margin-bottom: -20px;
}
.section-main-features-2-el {
    font-weight: 500;
    margin-bottom: 20px;
}
.section-main-features-2-el img {
    margin-right: 10px;
}
.section-main-features-2-el .text1 {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-main-item-img {
    background-image: url(images/jpg/item-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.section-main-item-img-decore {
    width: 100%;
    height: 3px;
    background: var(--color-black);
}
.section-main-item-img-block {
    position: relative;
    object-fit: contain;
    width: 100%;
    height: 100%;
    min-height: 244px;
}
.section-main-item-img .container {
    position: relative;
    width: 100%;
    height: calc((100vw - 15px) * 0.612);
    min-height: 244px;
    max-height: 1420px;
}

.section-main-item-img-title {
    margin-bottom: -5px;
    position: absolute;
    right: 16px;
    top: 18px;
}
.section-main-item-img-title div {
    margin-bottom: 5px;
    line-height: 106%;
}
.section-main-item-img-title .text1 {
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
}
.section-main-item-img-title .text2 {
    font-weight: 900;
    font-size: 21px;
    text-transform: uppercase;
}
.section-main-item-img-title .text3 {
    font-weight: 800;
    font-size: 16px;
}
.section-main-item-img-title .text3 sp {
    display: none;
}
.section-main-item-img-title .section-main-item-img-title-decore {
    width: 213px;
    height: 4px;
    background: var(--color-y);
}
.section-main-item-img-price {
    background: linear-gradient(to right, var(--color-grey) 50%, var(--color-y) 50%);
}
.section-main-item-img-price .container {
    display: flex;
}
.section-main-item-img-price .container div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}
.section-main-item-img-price-left {
    background: var(--color-grey);
    width: 41.4%;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.section-main-item-img-price-right {
    width: 58.6%;
    background: var(--color-y);
    font-weight: 900;
    font-size: 26px;
}
.section-main-item-img-price-abs {
    position: absolute;
    right: 16px;
    bottom: 0;
}
.section-main-item-img .section-main-item-img-price-abs div {
    height: 80px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-main-item-img-price-abs .section-main-item-img-price-left {
    font-size: 22px;
    padding-left: 30px;
    padding-right: 30px;
}
.section-main-item-img-price-abs .section-main-item-img-price-right {
    font-size: 30px;
    padding-left: 30px;
    position: relative;
}
.section-main-item-img-price-abs .section-main-item-img-price-right span {
    position: relative;
    z-index: 5;
}
.section-main-item-img-price-abs .section-main-item-img-price-right::before {
    content: '';
    height: 100%;
    width: 9999%;
    background: var(--color-y);
    position: absolute;
    left: 0;
    z-index: 0;
}
.title-section {
    display: flex;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.section-main-title-decore {
    width: 55px;
    height: 10px;
    background: var(--color-y);
    margin-top: 15px;
}
.pre-title-section {
    font-weight: 600;
    text-align: center;
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    text-transform: none;
}
.item-el-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase; 
}
.item-decore {
    margin-top: 10px;
    margin-bottom: 16px;
    height: 4px;
    width: 100%;
    background: var(--color-y);
}
.item-property-els {
    margin-bottom: -10px;
}
.item-property-el {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.item-property-el .name {
    font-weight: 400;
    font-size: 14px;
}
.item-property-el .value {
    font-weight: 600;
}

/* owl >>> */
.owl-dots {
    margin-top: 40px;
    text-align: center;
}
.owl-carousel button.owl-dot {
    width: 6px;
    height: 6px;
    background: var(--color-black);
    border-radius: 100%;
    margin-right: 4px;
}
.owl-carousel button.owl-dot.active {
    border: 3px solid var(--color-y);
    background: var(--color-white);
    width: 12px;
    height: 12px;
}
.custom-controls {
    position: relative;
    top: -27px;
    z-index: 999;
    text-align: center;
    cursor: pointer;
}
.e_arr.e_arr-l {
    transform: rotate(180deg);
    position: absolute;
    left: calc(50% - 107px);
}
.e_arr.e_arr-r {
    position: absolute;
    right: calc(50% - 107px);
}

/* owl <<< */
.section-main-items .row {
    margin-bottom: -60px;
}
.section-main-items .row .item-el {
    margin-bottom: 60px;
}

.section-main-items-desc {
    background: linear-gradient(to right, var(--color-black) 50%, var(--color-y) 50%);
    font-weight: 500;
}
.section-main-items-desc .container div {
    height: 60px;
}
.section-main-items-desc-r {
    width: 100%;
    background: var(--color-y);
    display: flex;
    align-items: center;
}
.section-main-items-desc-r span {
    display: block;
    margin-left: 5px;
}
.section-main-items-desc-r img {
    margin-right: 8px;
}
.section-main-items-desc-l {
    height: 100%;
    /* width: 0; */
    background: var(--color-black);
    align-items: center;
}
.section-main-items-desc-l img {
    width: 34px;
    height: 34px;
    margin-right: 13px;
}

.section-main-item-example-desc {
    font-weight: 400;
    font-size: 14px;
}
.section-main-item-example .title-section {
    margin-bottom: 40px;
    position: relative;
}
.section-main-item-example-img img {
    width: 100%;
    object-fit: cover;
}
.section-main-item-example-desc {
    margin-top: 40px;
    margin-bottom: 40px;
}
.section-main-item-example-features-els {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -20px;
}
.section-main-item-example-features-el {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}
.section-main-item-example-features-el img {
    margin-right: 10px;
}

.section-main-item-work {
    background: #090e12;
    color: var(--color-white);
}
.section-main-item-work-img {
    width: 80%;
    object-fit: cover;
    margin-top: 15px;
}
.section-main-item-work .title-section {
    padding-top: 15px;
}
footer {
    overflow-x: hidden;
}
.section-footer-top {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
}
.section-footer-top a {
    color: var(--color-black);
    text-decoration: underline;
}
.section-footer-top a:not(.logo):hover {
    opacity: .85;
}
.section-footer-top .title {
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
}
.footer-top-mb {
    margin-bottom: 30px;
}
.section-footer-top-title-decore {
    height: 4px;
    background-color: var(--color-black);
    width: 100%;
    max-width: 728px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.section-footer-top .desc div {
    margin-bottom: 15px;
}
.section-footer-top .desc div:first-child {
    font-weight: 600;
}
.section-footer-top .desc div:last-child {
    margin-bottom: 0;
}
.section-footer-top .link {
    display: flex;
    flex-direction: column;
}
.section-footer-top .link a {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
}
.section-footer-top .link a:last-child {
    margin-bottom: 0;
}
.section-footer-top .inn {
    font-size: 14px;
}
.footer-logo-decore {
    position: absolute;
    right: calc(-343px / 4);
    bottom: 20px;
}
.section-footer-bottom-1, .section-footer-bottom-2 {
    padding-top: 16px;
    padding-bottom: 16px;
    color: var(--color-grey);
    font-size: 12px;
    line-height: 150%;
}
.section-footer-bottom-1 {
    border-bottom: 1px solid var(--color-grey);
}
.section-footer-bottom-2 a {
    color: var(--color-grey);
    text-decoration: underline;
}
.section-footer-bottom-2 a:hover {
    opacity: .85;
}
.section-footer-bottom-2 p {
    margin-bottom: 10px;
}
.section-main-top-lg-desc {
    text-transform: none;
    font-weight: 600;
    max-width: 350px;
}
.section-main-top-text {
    position: relative;
    z-index: 5;
}


/* CONTACTS >>> */
#ymap {
	min-height: 540px;
}
.cont_wrap {
	position: relative;
    font-weight: 300;
    line-height: 125%;
}
.cont_wrap, .cont_wrap a {
	color: var(--color-grey);
}
.cont_wrap .in {
	position: absolute;
	width: 320px;
	height: calc(100% - 200px);
	margin: auto;
	top: 0;
	bottom: 0;
	left: 15px;
	padding-left: 30px;
	padding-right: 30px;
	background: var(--color-black);
    border-bottom: 3px solid var(--color-y);
    border-radius: 5px;
}

.cont_wrap_xs {
	padding-bottom: 30px;
}
.cont_wrap .ico {
    display: flex;
}
.cont_wrap .text .telto {
    font-weight: 600;
}
.cont-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 36px;
    line-height: 100%;
    text-transform: uppercase;
}
.h_decore span {
    display: block;
    width: max-content;
}
.h_decore span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-y);
    margin-top: 10px;
}
.ymap_wrap {
	position: relative;
}
.ymap_wrap .container {
	position: absolute;
	height: 100%;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
}
.ymap_wrap .h_decore::after {
	margin: 0;
}

.cont_wrap .telto .ico {
	width: 20px;
	min-width: 20px;
	height: 20px;
}
.cont_wrap .telto img {
	vertical-align: top;
}

.page_cont .panel {
	padding: 20px;
	background: var(--color-black);
    border-bottom: 3px solid var(--color-y);
}
.ico_wa img {
    transition: all .15s ease-in-out;
}
.ico_wa img:hover {
    scale: 1.07;
}
/* CONTACTS <<< */




/* animation >>> */
.item-el_favorite:hover svg {
    /* height: 25px;
    width: 25px; */
    /* animation: none; */
    animation: animate_heart 0.7s 1;
}
.footer-social a:hover svg {
    animation: animate_heart 0.5s 1;
}
a.item_favorite_btn:hover svg {
    animation: animate_heart_6 0.7s 1;
}

/* animation <<< */

/* page menu >>> */

.page__menu {
    overflow: hidden;
    overflow-y: auto;
    left: -100%;
    top: 0;
    height: 100%;
    width: 340px;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    z-index: 1500;
    position: fixed;
    background: #ffffff;
    font-size: 16px;
}
.page__menu.opened {
    left: 0;
}
.page__menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f4f3;
    border-bottom: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
}
.page__menu .group_menu_item {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #707A84;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
}
.page__menu .group_menu_item::after {
    content: '';
    width: 7px;
    background: url(images/svg/page_menu-arrow.svg) no-repeat;
    height: 13px;
}
.page__menu  .structure_menu {
    display: flex;
    flex-direction: column;
}

.page__menu  .structure_menu a {
    display: block;
}

.js_overlay, .js_overlay_op {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    background-color: #000;
    z-index: 1007;
}
/* page menu <<< */

/* media hover >>> */
/* для desktop */
@media (hover: hover) {
            
}



@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #ffffff; }
}

@keyframes animate_heart {
	0% {
		padding: 2px;
	}
	50% {
		padding: 0px;
	}
	100% {
		padding: 2px;
	}
}
@keyframes animate_heart_6 {
	0% {
		padding: 6px;
	}
	50% {
		padding: 0px;
	}
	100% {
		padding: 6px;
	}
}
@keyframes animate_btn {
	0% {
        opacity: 0;
        left: 0%;
	}
	50% {
		opacity: 1;
        /* left: 50%; */
	}
    /* 95% {
        opacity: 0;
    } */
	100% {
		opacity: 0;
        left: 95%;
	}
}


/* для mobile */
@media (hover: none) {

}
/* media hover <<<  */

/* sm */
@media (min-width: 576px) {
    .section-main-items-desc-r span {
        margin-left: 15px;
    }
    .section-main-items-desc-l img {
        margin-right: 15px;
    }
}

/* md */
@media (min-width: 768px) {
    :root {
        --pw: 16px;
        --mw: -16px;
    }
    img.logo {
        width: 284px;
    }
    .section-main-top .title {
        font-size: 30px;
    }
    .company-name .name {
        font-size: 88px;
    }
    .section-footer-top img.logo {
        width: 328px;
    }
    .section-main-item-img-title .text1 {
       font-size: 44px;
    }
    .section-main-item-img-title .text2 {
       font-size: 25px;
    }
    .section-main-item-img-title .text3 {
       font-size: 20px;
       margin-top: 16px;
    }
    .section-main-item-img-title .section-main-item-img-title-decore {
        width: 999%;
        height: 6px;
        position: absolute;
        margin-bottom: 0;
    }

    .section-main-items-desc {
        background: linear-gradient(to right, var(--color-black) 50%, var(--color-y) 50%);
        font-weight: 600;
    }
    .section-main-items-desc .container div {
        height: 90px;
    }
    .section-main-items-desc-r {
        width: 68.5%;
        background: var(--color-y);
        display: flex;
        align-items: center;
    }
    .section-main-items-desc-r img {
        margin-right: 17px;
        margin-left: 34px;
        width: 46px;
        height: 43px;
    }
    .section-main-items-desc-l img {
        width: 52px;
        height: 52px;
    }
    .section-main-items-desc-l {
        height: 100%;
        width: 31.5%;
        background: var(--color-black);
    }
    .section-main-item-work {
        background-image: url(images/jpg/section-main-item-work-img.jpg);
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: center;
    }
    .section-main-item-work .container {
        width: 100%;
        height: calc((100vw - 15px) * 0.633);
        min-height: 244px;
        max-height: 1420px;
    }
    .section-main-item-work .title-section {
        padding-top: 40px;
    }
    .section-footer-top {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-footer-top .link a {
        margin-bottom: 10px;
    }
    .section-footer-top .link a:last-child {
        margin-bottom: 0;
    }
    .section-footer-top .inn {
        margin-top: 10px;
    }
}

/* lg */
@media (min-width: 992px) {
    .section-main-top-text {
        max-width: 506px;
    }
    .main-top-img-mob {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        text-align: right;
        width: 51%;
    }
    .section-main-top .pre-title {
        font-weight: 600;
        font-size: 18px;
    }
    .section-main-top .title {
        font-size: 30px;
    }
    .company-name .decore-top, .company-name .decore-bottom {
        height: 15px;
        width: 124px;
        position: absolute;
    }
    .company-name .decore-top {
        right: 5px;
        top: 33px;
    }
    .company-name .decore-bottom {
        bottom: -49px;
        left: calc(-132px - 76%);
        width: 99%;
    }
    .section-main-top .main-mb {
        margin-bottom: 30px;
    }
    .company-name .name {
        font-weight: 900;
        font-size: 88px;
    }
    .section-main-top {
        padding-bottom: 50px;
        padding-top: 50px;
    }
    .title-section {
        margin-bottom: 50px;
    }
    .section-main-features-2 .row {
        margin-bottom: -50px;
    }
    .section-main-features-2-el {
        margin-bottom: 50px;
    }
    .section-main-features-2-el .text1 {
        margin-bottom: 20px;
    }

    .section-main-item-img-title {
        top: 95px;
    }
    .section-main-item-img-title .text1, .section-main-item-img-title .text2 span {
       font-size: 54px;
    }
    .section-main-item-img-title .text2 {
       font-size: 26px;
    }
    .section-main-item-img-title .text3 {
        font-size: 19px;
        margin-top: 30px;
        text-align: right;
    }
    .section-main-item-img-title .text3 sp {
        display: inline-block;
    }
    .section-main-item-img-title .text3 span {
        display: inline-block;
    }
    .section-main-item-img-title .text3 span:first-child {
        width: 258px;
    }
    .section-main-item-img-title .text3 span:last-child {
        margin-left: 20px;
        font-weight: 900;
        font-size: 45px;
    }
    .section-main-item-img-title .section-main-item-img-title-decore {
        height: 15px;
    }
    .section-main-item-img-decore {
        height: 15px;
    }
    .title-section {
        font-size: 30px;
    }
    .section-main-items {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-main-item-example-img img {
        width: 60%;
    }
    .section-main-item-example-text {
        width: 675px;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .section-main-item-example-desc span {
        max-width: 347px;
        display: inline-block;
    }
    .section-main-item-example-features-els {
        max-width: 600px;
        position: relative;
    }
    .section-main-item-example-features-el span {
        max-width: 263px;
        /* display: inline-block; */
    }
    .section-main-item-example .title-section {
       margin-bottom: 10px;
    }
    .section-footer-top {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .footer-top-mb {
        margin-bottom: 40px;
    }
    .section-footer-top .title {
        font-size: 24px;
    }
    .section-footer-top-title-decore {
        height: 6px;
    }
}

/* xl */
@media (min-width: 1200px) {
    img.logo, .section-footer-top img.logo {
        width: 347px;
    }
    .section-main-features-1-el {
        font-size: 18px;
    }
    .section-main-item-img-title {
        top: 144px;
    }
    .section-main-item-img-title .text1, .section-main-item-img-title .text2 span {
       font-size: 64px;
    }
    .section-main-item-img-title .text2 {
       font-size: 30px;
    }
    .section-main-item-img-title .text3 {
        font-size: 19px;
        margin-top: 30px;
    }
    .section-main-item-img-title .text3 span:last-child {
        font-size: 50px;
    }
    .section-main-item-img-price-abs .section-main-item-img-price-left {
        font-size: 30px;
    }
    .section-main-item-img-price-abs .section-main-item-img-price-right {
        font-size: 50px;
    }
    .item-el-title {
        font-size: 28px;
    }
    .section-main-item-example .title-section {
        margin-bottom: -44px;
    }
    .section-main-item-example-features-els {
        max-width: 572px;
        margin-bottom: -40px;
        right: 13px;
    }
    .section-main-item-example-features-el {
        margin-bottom: 40px;
    }
    .section-main-item-work .title-section {
        padding-top: 60px;
    }
}