: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 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{
    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;
}

@media (max-width:768px){
    .container{
        padding: 0 15px;
    }
    .mobile-menu{
        left:-1000px;
        width: 100%;
        max-width: 768px;
        background: var(--black);
        top: 0;
        transition: .4s;
        position: fixed;
        padding: 180px 20px 50px 20px;
        width: 100%;
        height: 100%;
        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:0 0 30px 0;
    }
    .mobile-menu ul li a{
        font-family: var(--second-family);
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--white);
        text-decoration: none;
    }
}