:root {
  --font-family: "Open Sans", sans-serif;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-scrollbar-button {
    background-image:url('');
    background-repeat:no-repeat;
    width:10px;
    height:0px;
}
::-webkit-scrollbar-track {
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #fbba00;
}
::-webkit-scrollbar-thumb:hover{
    
}
::-webkit-resizer{
    background-image:url('');
    background-repeat:no-repeat;
    width:10px;
    height:0px;
}
::-webkit-scrollbar{
    width: 10px;
    height: 3px;
}
html{
    height:100%;
    position: relative;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body{
    position: relative;
    margin: 0;
    font-family: var(--font-family);
    font-size:16px;
    color:#000;
    font-weight: 400;
    background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin:0;
}
img{
    display: block;
}
ul{
    padding:0;
    margin:0;
}
ul li{
    list-style: none;
}
.container {
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width:100%;
    max-width: 950px;
    padding:0;
    box-sizing: border-box;
    display: block;
}
.container.small{
    padding: 0 25px;
}
.d-flex{
    display: flex;
    flex-wrap:wrap;
}
.nowrap{
    flex-wrap: nowrap;
}
.j-between{
    justify-content: space-between;
}
.j-center{
    justify-content: center;
}
.j-end{
    justify-content: flex-end;
}
.a-center{
    align-items: center;
}
.a-start{
    align-items: flex-start;
}
.a-end{
    align-items: flex-end;
}
.dir-column{
    flex-direction: column;
}
.text-right{
    text-align: right;
}
.row { 
    display: flex; 
    flex-wrap: wrap; 
    margin:0 -8px;
}
a.btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 { flex: 0 0 100%; padding:0 8px; }
@media (min-width: 576px) {
    .col-11 { flex: 0 0 calc(100% / 12 * 11); }
    .col-10 { flex: 0 0 calc(100% / 12 * 10); }
    .col-9 { flex: 0 0 calc(100% / 12 * 9); }
    .col-8 { flex: 0 0 calc(100% / 12 * 8); }
    .col-7 { flex: 0 0 calc(100% / 12 * 7); }
    .col-6 { flex: 0 0 calc(100% / 12 * 6); }
    .col-5 { flex: 0 0 calc(100% / 12 * 5); }
    .col-4 { flex: 0 0 calc(100% / 12 * 4); }
    .col-3 { flex: 0 0 calc(100% / 12 * 3); }
    .col-2 { flex: 0 0 calc(100% / 12 * 2); }
    .col-1 { flex: 0 0 calc(100% / 12); }
}
.page-main{
   background: url('../images/bg-egg.png') no-repeat left top,url('../images/bg-egg-right.png') no-repeat right top 1850px;
}
header{
    width: 100%;
    margin:0 auto;
    position: relative;
}
header .logo{
    position: absolute;
    left:25px;
    top:0;
    z-index: 1;
}
.header__contacts{
    padding: 20px 0 0 185px;
    display: flex;
    flex-direction: column;
}
.phones{
    margin:0;
    padding: 3px 0 3px 24px;
    background: url('../images/iconPhone.png') no-repeat;
}
.phones a{
    display: inline-block;
    text-decoration: none;
    color:#ff9900;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px 0 0;
}
.header__contacts a:hover{
    text-decoration: underline;
}
.header__contacts .email{
    margin:0 0 0 25px;
    padding: 0 0 0 25px;
    display: inline-block;
    color:#ff9900;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    background: url('../images/iconMail.png') no-repeat left center;
}
.header__contacts ul{
    padding: 10px 0 0 0;
    margin:0;
    font-size: 0;
}
.header__contacts ul li{
    margin:0 0 0 13px;
    padding: 0 13px 0 0;
    position: relative;
    display: inline-block;
}
.header__contacts ul > li:after{
    content:'';
    width: 2px;
    height: 25px;
    position: absolute;
    right:0;
    top:0;
    background: #006666;
}
.header__contacts ul > li:first-child{
    margin:0;
}
.header__contacts ul li:hover ul{
    display: block;
}
.header__contacts ul > li:last-child:after{
    display: none;
}
.header__contacts ul li a{
    text-decoration: none;
    color:#006666;
    font-size: 24px;
    font-weight: 500;
    padding: 0 0 15px 0;
    display: inline-block;
    line-height: 100%;
}
.header__contacts ul li ul{
    position: absolute;
    left:-20px;
    width: 300px;
    z-index: 1;
    background: #fbba00;
    top:100%;
    display: none;
    padding: 5px 25px 40px 35px;
}
.header__contacts ul li ul li,
.header__contacts ul li ul li:first-child{
    margin: 13px 0 0 0;
    padding: 0;
}
.header__contacts ul li ul li:after{
    display: none;
}
.header__contacts ul li ul li a{
    color:#000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    padding: 0;
}
.header__contacts ul li ul li a:hover{
    color:#034949;
    text-decoration: underline;
}
.banner{
    width: 100%;
    padding: 175px 0 0 0;
    min-height: 426px;
    background: url('../images/banner.jpg') no-repeat top center;
}
.banner h1{
    margin:0;
    color:#fff;
    font-size: 45px;
    font-weight: 700;
}
.sec-about{
    padding: 37px 0 76px 0;
}
.sec-about-block div{
    max-width: 532px;
}
.sec-about p{
    margin:0 0 22px 0;
    color:#006666;
    font-weight: 400;
    font-size: 22px;
    text-align: justify;
    line-height: 150%;
}
.sec-about p + p{
    padding: 0 0 0 40px;
    margin:0;
}
.sec-about p span{
    font-weight: 800;
}
.sec-about ul{
    padding: 0 0 0 40px;
    margin:0;
}
.sec-about ul li{
    margin:10px 0 0 0;
    color:#006666;
    font-weight: 400;
    font-size: 20px;
}
.sec-preims{
    padding: 21px 0 63px 0;
    width: 100%;
    background: rgba(241,180,117,0.7);
}
.sec-preims h2{
    color:#006666;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin:0;
}
.sec-preims h2 span{
    font-size: 46px;
    display: block;
}
.preims_info{
    flex:1;
    padding: 0 0 0 25px;
    background: url('../images/image-egg.png') no-repeat bottom right;
}
.preims_item{
    display: flex;
    align-items: center;
    margin: 27px 0 0 0;
    max-width: 442px;
}
.preims_item figure{
    min-width: 83px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex:1;
}
.preims_item p{
    margin:0;
    font-size: 16px;
    color:#006666;
    text-align: justify;
    padding: 0 0 0 10px;
}
.sec-telem{
    padding: 45px 0 0 0;
}
.telem-top{

}
.telem-top h2{
    margin:0;
    font-size: 34px;
    color:#006666;
    font-weight: 700;
    padding: 0 75px 0 0;
    text-transform: uppercase;
}
.telem-top h2 span{
    font-size: 44px;
    display: block;
    text-transform: uppercase;
}
.telem-top h2 span span{
    font-size: 32px;
}
.sec-telem p{
    margin:0;
    color:#000;
    font-weight: 300;
    font-size: 20px;
    text-align: left;
    flex:1;
    padding: 0 25px;
    text-indent: 20px;
}
.telem-top p{
    margin:0;
    color:#000;
    font-weight: 300;
    font-size: 20px;
    text-align: justify;
    flex:1;
    padding: 0 30px 0 0;
    text-indent: 26px;
}
.telem__list{
    padding: 8px 0 106px 0;
    display: flex;
    position: relative;
    justify-content: space-between;
}
.telem__list .item:nth-child(2){
    position: absolute;
    width: 260px;
    left:0;
    right:0;
    margin: auto;
    top:70px;
}
.telem__list .item p.name{
    margin:20px 0 9px 0;
    text-transform: uppercase; 
    font-size: 20px;
    font-weight: 700;
    font-style: inherit;
}
.telem__list .item p{
    margin:0;
    font-size: 18px;
    font-style: italic;
    color:#000;
    padding: 0;
    text-align: center;
    text-indent: 0;
}
.telem__list .item img{
    margin: 0 auto;
    display: block;
}
.service-item{
    margin: 0 0 13px 0;
    width: 100%;
    border-radius: 160px;
    display: flex;
    min-height: 325px;
}
.service-item:nth-child(1){
    background: #fae1c8;
}
.service-item:nth-child(2){
    background: #fad4c8;
}
.service-item:nth-child(3){
    background: #fac8c8;
}
.service-item .circle{
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 325px;
    height: 325px;
}
.service-item:nth-child(1) .circle{
    border:20px solid #f9bd83;
    background: #f4f4f4;  
}
.service-item:nth-child(2) .circle{
    border:20px solid #f99983;
    background: #fff;  
}
.service-item:nth-child(3) .circle{
    border:20px solid #fb6464;
    background: #fff;  
}
.service-item .circle p{
    margin: 10px 0 0 0;
    font-size:24px;
    font-weight: 700;
    color:#006666;
    text-align: center;
    text-indent: 0;
    flex:none;
}
.service-info{
    flex:1;
    padding: 2px 65px 0 37px;
}
.service-info p{
    margin: 10px 0 0 0;
    font-weight: 500;
    color:#000;
    font-size:16px;
    text-indent: 0;
    padding: 0;
}
.service-info p span{
    display: block;
    font-weight: 700;
}
.sec-avtomat{
    padding: 42px 0 0 0;
}
.sec-avtomat h2{
    margin: 0;
    font-size: 30px;
    color:#006666;
    text-transform: uppercase;
    font-weight: 700;
}
.sec-avtomat h2 span{
    font-size: 28px;
    display: block;
}
.avtomat__list{
    padding: 0 25px 0 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
}
.avtomat__list .item{
    margin: 50px 0 40px 0;
    width: calc(50% - 16px);
    display: inline-block;
}
.avtomat__list .item span{
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color:#006666;
    letter-spacing: .5px;
}
.avtomat__list .item p{
    padding: 0 0 0 32px;
    margin: 24px 0 0 0;
    min-height: 150px;
    overflow: hidden;
    font-size: 22px;
    font-weight: 300;
    color:#006666;
    border-left: 12px solid #9bbbbb;
}
.avtomat__list .item p span{
    font-style: italic;
    font-weight: 500;
}
.sec-integr{
    padding: 15px 0 45px 0;
    background: url('../images/bg-integr.jpg') no-repeat top center;
}
.sec-integr h2{
    margin: 0;
    font-size: 43px;
    color:#610606;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 120%;
}
.sec-integr h2 span{
    font-size: 40px;
    display: block;
    font-weight: 700;
}
.integr__list{
    display: flex;
    padding: 25px 0 30px 0;
}
.integr__list .item{
    width: 25%;
}
.integr__list .item p{
    margin:20px 0 0 0;
    text-indent: 20px;
    color:#fff;
    padding: 0 10px 0 0;
    line-height: 130%;
    font-size: 18px;
    min-height: 117px;
}
.integr__list .item span{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-transform: uppercase;
    color:#fff;
    width: calc(100% + 7px);
    height: 49px;
    margin: 0 0 0 -7px;
    font-weight: 700;
    letter-spacing: .5px;
}
.integr__list .item:nth-child(1) span{
    background: url('../images/tab-1.png') no-repeat
}
.integr__list .item:nth-child(2) span{
    background: url('../images/tab-2.png') no-repeat
}
.integr__list .item:nth-child(3) span{
    background: url('../images/tab-3.png') no-repeat
}
.integr__list .item:nth-child(4) span{
    background: url('../images/tab-4.png') no-repeat
}
.integr__list .item img{
    margin: 33px auto 0;
    display: block;
}
.sec-integr p{
    margin: 0;
    font-size:20px;
    text-indent: 20px;
    line-height: 130%;
    color:#000;
    text-align: justify;
}
footer{
    width: 100%;
    padding: 15px 0 13px 0;
    background: url('../images/bg-footer.jpg') no-repeat top center;
}
footer .logo{
    width: 50%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
footer img{
    margin-right: 80px;
}
.footer_contacts{
    width: 50%;
}
.footer_contacts p{
    margin:0 0 15px 0;
    font-size: 20px;
    color:#fdfdfd;
    line-height: 100%;
}
.footer_contacts p a{
    font-size: 20px;
    color:#fdfdfd;
    line-height: 100%;
    text-decoration: none;
}
.footer_contacts p a:hover{
    text-decoration: underline;
}
.footer_contacts p a.download{
    font-weight: 900;
    text-transform: uppercase;
}
.overlay{
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 2;
    position: fixed;
    display: none;
}
.popup{
    padding: 50px 133px;
    border-radius: 10px;
    width: 100%;
    max-width: 897px;
    background: var(--white);
    position: fixed;
    left:0;
    top:50%;
    right:0;
    margin: -250px auto 0;
    z-index: 3;
    display: none;
}
.popup .close{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top:20px;
    cursor: pointer;
    background: url('../images/close-popup.svg') no-repeat;
}
.popup p{
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
    margin:0;
}
.popup form{
    padding: 20px 0 0 0;
}
.popup input{
    width: 100%;
    margin: 10px 0 0 0;
    outline: none;
    border-radius: 5px;
    height: 50px;
    background: #f5f5f5;
    padding: 0 0 0 16px;
    border:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #000;
}
.popup input.error{
    background: #eb1d1d;
}
.popup textarea{
    border-radius: 5px;
    width: 100%;
    height: 108px;
    resize: none;
    outline: none;
    background: #f5f5f5;
    padding: 16px 0 0 16px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #000;
    border:none;
    margin: 10px 0 0 0;
}
.popup input::-webkit-input-placeholder { 
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #c1c1c1;
}
.popup input::-moz-placeholder { 
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #c1c1c1;
}
.popup textarea::-webkit-input-placeholder { 
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #c1c1c1;
}
.popup textarea::-moz-placeholder { 
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #c1c1c1;
}
.popup button{
    border-radius: 10px;
    width: 100%;
    height: 50px;
    background: var(--krasnyy);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.04em;
    color: var(--white);
    position: relative;
    cursor: pointer;
    border:none;
    margin: 20px 0 0 0;
}
.popup button:after{
    content:'';
    border-radius: 8px;
    width:45px;
    height:44px;
    position: absolute;
    right:3px;
    top:3px;
    transition: .3s;
    background: var(--white) url('../images/icon-btn.svg') no-repeat center center;
}
.popup label{
    margin: 10px 0 0 0;
    padding: 0 0 0 26px;
    position: relative;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #000;
    display: inline-block;
}
.popup label a{
    text-decoration: underline;
    color: #979797;
}
.popup label::before{
    content:'';
    width: 18px;
    height: 18px;
    border: 1px solid #c4c4c4;
    position: absolute;
    left:0;
}
.popup input[type="checkbox"]{
    position: absolute;
    left: -9999px;
}
.popup input[type="checkbox"]:checked + label::after{
    content:'';
    width: 8px;
    height: 8px;
    position: absolute;
    left:5px;
    top:5px;
    background: var(--krasnyy);
}
.mobile-menu,
.burger,
.show-mob{
    display: none;
}
/* SiteUpper block*/
.preims_item p {
    text-indent: 26px;
}
.telem__list .item p {
    font-weight: 400;
}
.telem__list .item p.name {
    font-weight: 600;
}
.avtomat__list .item p {
    padding: 0 0 0 24px;
    hyphens: auto;
}
.sec-integr p {
    text-align: left;
    hyphens: auto;
}
.integr__list .item p {
	padding-left: 18px;
    padding-right: 18px;
    text-indent: 10px;
}
.integr__list .item:first-child p{
	padding-left: 30px;
	padding-right: 26px;
}
.sec-integr p.long{
	letter-spacing: 1px;
    max-width: 900px;
    text-align: justify;
    hyphens: none;
}
.sec-integr p.long:last-child{
	letter-spacing: 0.3px;
}
.banner .logo{
	display: none;
}
.banner .j-end {
    justify-content: flex-start;
}
.integr__list .item img.show-mob {
	display: none;
}



@media (max-width:800px){
    .container,
    .container.small{
        padding: 0 50px;
    }
    .show-mob{
        display: block;
    }
    header{
        display:none;
    }
    .page-main{
        background: none;
    }
    .burger{
        position: absolute;
        left:50px;
        top:33px;
        width: 48px;
        height: 32px;
        display: block;
        background: none;
        border:none;
        padding: 0;
        font-size: 0;
    }
    .burger span{
        display: inline-block;
        width: 100%;
        height: 6px;
        margin-bottom: 7px;
        background: #fff;
    }
    .banner .d-flex{
        width: 100%;
    }
    .banner img{
        margin-right: 17px;
    }
    .banner h1{
        font-size: 23px;
    }
    .banner{
        background: url('../images/banner-mobile.jpg') no-repeat top center;
        padding:0;
        min-height: auto;
        position: relative;
    }
    .mobile-menu{
        left:-1000px;
        width: 100%;
        top:196px;
        max-width: 260px;
        background: linear-gradient(#fbba00, #fbba00), url('../images/bg-mobile-left.png') left top 35px no-repeat, url('../images/bg-mobile-right.png') right top 400px no-repeat;
        transition: .4s;
        position: absolute;
        padding: 100px 0 0 33px;
        width: 100%;
        height: calc(100% - 197px);
        z-index: 1;
        display: block;
    }
    .mobile-menu.active {
        left: 0;
    }
    .mobile-menu .btn{
        margin:70px 0 0 0;
        border-radius: 10px;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -0.08em;
        color: var(--black);
        width: 100%;
        max-width: 388px;
        height: 40px;
        background: var(--white);
        text-decoration: none;
    }
    .mobile-menu ul{
        padding: 0;
        margin:0;
    }
    .mobile-menu ul li{
        margin:35px 0 0 0;
    }
    .mobile-menu ul li a{
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        color: #000;
        text-decoration: none;
    }
    .mobile-menu ul li ul{
        padding:0 0 0 20px;
    }
    .mobile-menu ul li ul li{
        margin:15px 0 0 0;
    }
    .mobile-menu ul li ul li a{
        color:#000;
        font-size: 18px;
        font-weight: 500;
    }
    .mobile-menu ul li.active a{
        font-weight: 700;
    }
    .sec-about{
        padding: 66px 0 90px 0;
        background: url('../images/bg-egg-about-left.png') no-repeat left -50px top,
        url('../images/bg-egg-about-right.png') no-repeat right bottom;
    }
    .sec-about div{
        max-width: 100%;
        justify-content: center;
    }
    .sec-about img{
        display: none;
    }
    .sec-about img.show-mob{
        display: block;
        margin-bottom: 35px;
    }
    .sec-about p{
        margin: 0 0 50px 0;
    }
    .sec-about p + p{
        padding: 0;
    }
    .sec-about ul{
        padding: 25px 0 0 0;
    }
    .sec-preims{
        padding: 20px 70px 385px 70px;
        background: url('../images/egg.png') no-repeat bottom center;
    }
    .sec-preims h2{
        text-align: right;
        font-size: 22px;
    }
    .sec-preims h2 span{
        font-size: 36px;
    }
    .preims_info{
        background: none;
    }
    .preims_item figure {
        min-width: 75px;
        height: 75px;
    }
    .preims_item figure img{
        max-width: 75px;
        max-height: 75px;
    }
    .preims_item p {
        font-size: 18px;
        padding: 0 0 0 25px;
    }
    .preims_item{
        max-width: 100%;
        margin: 20px 0 0 0;
    }
    .sec-telem{
        padding: 12px 0;
    }
    .telem-top {
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 70px;
    }
    .telem-top h2{
        padding: 0;
    }
    .telem-top p{
        margin: 10px 0 0 0;
        padding: 0;
    }
    .telem-top + p{
        text-indent: 0;
        padding: 0 70px;
    }
    .telem__list .item p,
    .telem__list .item p.name{
        font-size: 10px;
        color:#006666;
    }
    .telem__list .item:nth-child(2) {
        position: relative; 
        width: auto;
        top: 0; 
    }
    .telem__list {
        padding: 10px 70px 25px 70px;
    }
    .telem__list .item img{
        max-height: 45px;
    }
    .service-item .circle p{
        font-size: 11px;
    }
    .service-item .circle {
        width: 155px;
        height: 155px;
    }
    .service-info p{
        font-size: 10px;
        margin: 4px 0 0 0;
        font-style: italic;
    }
    .service-info p span{
        font-style: normal;
    }
    .service-info p br{
        display: none;
    }
    .service-item{
        min-height: auto;
    }
    .service-item .circle img{
        max-width: 35px;
    }
    .service-info {
        flex: 1;
        padding: 2px 25px 0 10px;
    }
    .sec-avtomat h2{
        text-align: right;
        font-size: 26px;
    }
    .sec-avtomat h2 span{
        font-size: 24px;
    }
    .avtomat__list{
        padding:0;
        column-gap: 16px;
    }
    .avtomat__list .item span{
        font-size: 18px;
        color:#000;
    }
    .avtomat__list .item p span{
        color:#006666;
    }
    .avtomat__list .item p{
        text-indent: 5px;
        font-size: 16px;
        min-height: 111px;
    }
    .sec-integr{
        padding: 0 70px 42px 70px;
        background: url('../images/bg-integr-mobile.jpg') no-repeat bottom center;
    }
    .sec-integr h2{
        text-align: right;
        font-size: 25px;
        color:#ce4f02;
    }
    .sec-integr h2 span{
        font-size: 22px;
        line-height: 130%;
    }
    .integr__list{
        flex-wrap: wrap;
    }
    .integr__list .item{
        width: 50%;
        margin: 0 0 15px 0;
    }
    .integr__list .item p{
        font-weight: 500;
        color:#000;
        text-align: center;
        padding: 0;
    }
    .integr__list .item span{
        margin: 0 auto;   
    }
    .integr__list .item:nth-child(1) span,
    .integr__list .item:nth-child(2) span,
    .integr__list .item:nth-child(3) span,
    .integr__list .item:nth-child(4) span {
        background-position: top center;
    }
    .sec-integr p{
        font-size: 12px;
    }
    .integr__list .item img{
        display: none;
    }
    .integr__list .item img.show-mob{
        display: block;
        margin: 5px auto 0;
		margin-bottom: 10px;
    }
    .footer_contacts{
        padding: 30px 0 0 0;
    }
    .footer_contacts p,
    .footer_contacts p a{
        font-size: 15px;
    }
	/*SiteUpper*/
	.banner .j-end {
		justify-content: flex-end;
	}
	.banner .logo {
		display: flex;
	}
	footer {		
		bottom: 0;
		position: fixed;
		left: 0;
		right: 0;
		background-size: cover;
		padding-top: 8px;
		padding-bottom: 0px;
	}
	footer img {
		width: auto;
		height: 112px;
	}
	.footer_contacts p {
        margin-bottom: 10px;
    }
	.sec-preims {
        padding: 20px 20px 385px 20px;
    }
	.telem-top p {
		font-size: 14px;
		text-indent: 12px;
	}
    .telem__list .item p,
	.telem__list .item p.name {
        font-size: 9px;
        margin-bottom: 4px;
    }
	.service-info p {
        font-size: 9px;
    }
	.sec-integr {
        padding-bottom: 150px;
        padding-left: 30px;
        padding-right: 30px;
    }
	.footer_contacts p a {
		word-break: keep-all;
	}
	.sec-about p {
		font-size: 18px;
	}
	.sec-about ul li {
		font-size: 18px;
		margin-top: 0px;
	}
	.preims_item p{
		font-size: 14px;
        padding: 0 0 0 25px;
        text-indent: 18px;
	}
	.avtomat__list .item {
		width: calc(50% - 8px);
		margin-bottom: 10px;
		margin-top: 10px;
	}
	.avtomat__list .item span {
        font-size: 15px;
    }
	.avtomat__list .item p {
        text-indent: 5px;
        font-size: 12px;
        border-left: 6px solid #9bbbbb;
        padding: 0 0 0 12px;
        min-height: 0;
    }
	.integr__list .item:nth-child(1) span {
		background: url(../images/tab-1.png) no-repeat center center;
		background-size: contain;
	}
	.integr__list .item:nth-child(2) span {
		background: url(../images/tab-2.png) no-repeat center center;
		background-size: contain;
	}
	.integr__list .item:nth-child(3) span {
		background: url(../images/tab-3.png) no-repeat center center;
		background-size: contain;
	}
	.integr__list .item:nth-child(4) span {
		background: url(../images/tab-4.png) no-repeat center center;
		background-size: contain;
	}
	.integr__list .item span {
		font-size: 14px;
		width: calc(100% + 0px);
		height: 36px;
	}
	.integr__list .item p {
		text-indent: 12px;
		font-size: 15px;
		hyphens: none;
		min-height: 0;
	}
	.sec-integr p {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
	/*SiteUpper*/
	.burger {
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
    }
	.burger span {
        height: 3px;
    }
	.banner img {
        width: 62px;
    }
	.banner h1 {
        font-size: 18px;
    }
	.mobile-menu {
        top: 99px;
		padding: 30px 0 0 33px;
    }
	.mobile-menu ul li a {
        font-size: 17px;
    }
	.mobile-menu ul li {
        margin: 15px 0 0 0;
    }
	.mobile-menu ul li ul li a {
        font-size: 13px;
    }
	.mobile-menu ul li ul {
        padding: 0 0 0 5px;
    }
}
@media (max-width: 450px) {
    .container, .container.small {
        padding: 0 10px;
    }
    /*.burger {
        right: 10px;
        left: auto;
        top: 10px;
        width: 40px;
        height: 30px;
    }*/
    .sec-about {
        padding: 60px 0;
        background: url(../images/bg-egg-about-left.png) no-repeat left -50px top;
    }
    .sec-about p{
        text-align: left;
        font-size: 20px;
    }
    .preims_info{
        padding: 0;
    }
    .telem-top + p,
    .telem-top{
        padding: 0;
    }
    .telem-top p{
        text-align: left;
    }
    .banner h1 {
        font-size: 15px;
    }
    .sec-preims {
        padding: 20px 10px 385px 10px;
    }
    .sec-preims h2,
    .sec-preims h2 span{
        font-size: 22px;
        text-align: center;
    }
    .sec-about{
        padding: 30px 0;
    }
    .sec-about p{
        font-size: 15px;
        margin: 0 0 25px 0;
    }
    .sec-about img.show-mob{
        max-width: 160px;
    }
    .sec-about ul li{
        font-size: 15px;
    }
    .preims_item p{
        font-size: 15px;
    }
    .telem-top h2{
        font-size: 22px;
        text-align: center;
        width: 100%;
    }
    .telem-top h2 span,
    .telem-top h2 span span{
        font-size: 22px;
    }
    .telem__list{
        padding: 10px 0;
        flex-wrap: wrap;
    }
    .telem__list .item:nth-child(2),
    .telem__list .item{
        width: 100%;
        margin: 20px 0 0 0;
    }
    .telem-top p,
    .telem-top + p{
        font-size: 14px;
    }
    .telem__list .item p, 
    .telem__list .item p.name{
        font-size: 12px;
    }
    .service-item{
        flex-direction: column;
        align-items: center;
    }
    .service-item:nth-child(1),
    .service-item:nth-child(2),
    .service-item:nth-child(3){
        background: none;
    }
    .service-info{
        background: #fae1c8;
        margin: 20px 0 0 0;
        border-radius: 15px;
        padding: 15px;
    }
    .avtomat__list .item{
        width: 100%;
        margin: 20px 0 0 0;
    }
    .sec-integr{
        padding: 40px 0;
    }
    .integr__list .item span{
        font-size: 16px;
    }
    .integr__list .item p{
        font-size: 14px;
        text-indent: 0px;
    }
    .sec-avtomat h2{
        font-size: 22px;
        text-align: center;
    }
    .sec-integr h2{
        text-align: center;
    }
    .sec-integr h2 span br{
        display: none;s
    }
    footer .logo{
        width: 30%;
    }
    footer .logo img{
        max-height: 100%;
    }
    .footer_contacts{
        width: 70%;
        padding: 30px 0 0 15px;
    }
    .footer_contacts p, 
    .footer_contacts p a{
        font-size: 13px;
    }
    footer img{
        margin: 0;
    }	
	/*SiteUpper*/
	.sec-integr {
	    padding-bottom: 140px;
	}
	.preims_item p {
        font-size: 12px;
    }
	.service-info p {
        font-size: 10px;
    } 
	.integr__list .item span {
        font-size: 13px;
    }
	.integr__list .item:first-child p {
		padding-left: 10px;
		padding-right: 10px;
	}
	.integr__list .item p {
        font-size: 13px;
        padding-left: 4px;
        padding-right: 4px;
    }
	.burger {
        left: 10px;
    }
	
}