*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
}

html, body{
    height: 100%;
}

body{
    width: 100%;
    max-width: 100vw;
    font-family: 'Roboto';
    font-size: 16px;
    line-height: 140%; 
    color: #000000;
}

ul{
    list-style: none;
}

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

a{
    color: #000000;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

.wrapper{
    
}

.bold{
    font-weight: 700;
}

h4{
    font-size: 24px;
    line-height: 28px;
    color: #32323C;
}

header{
    transition: all 0.3s;
    z-index: 10;
    padding: 0px;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    background-image: url(../images/top-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

header.stickytop{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s;
}

header.stickytop ~ .wrapper{
    margin-top: 112px;
}

.logo{
    padding-top: 35px;
}

.logo a{
    color: #970D0D;
    text-decoration: none;
}

.logo a p{
    font-size: 16px;
    line-height: 19px;
}

.logo a p.top-logo{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 5px;
}

.top-contacts{
    padding-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.top-contacts .item a{
    font-size: 16px;
    line-height: 32px;
    color: #000000;
    text-decoration: none;
}

.top-contacts .item a:hover{
    text-decoration: underline;
}

.top-contacts .item span{
    margin-right: 15px;
}

.btn-primary{
    display: block;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.085em;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    background: linear-gradient(0deg, #6ACBA8 -8.11%, #DDFCE0 141.89%);
    box-shadow: 0px 2px 0px #58C6A1;
    border-radius: 10px;
    padding: 24px 0;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover{
    color: #6ACBA8;
    background: #ffffff;
}

.top-menu{
    background: #3581DA;
    color: #ffffff;
    margin-bottom: 65px;
    position: relative;
}

.top-menu a{
    color: #ffffff;
    text-decoration: none;
}

.top-menu ul.menu{
    display: flex;
}

.top-menu ul.menu .parent .child-menu{
    overflow: hidden;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #3581DA;
    transition: all 0.3s;
}

.top-menu ul.menu .parent .child-menu ul.nav-child{
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    margin: 0 auto;
}

.top-menu ul.menu .parent .child-menu ul.nav-child>li{
    width: 25%;
    margin-bottom: 30px;
}

.top-menu ul.menu .parent .child-menu ul.nav-child>li a:hover{
    text-decoration: underline;
}

.top-menu ul.menu>li{
    border-right: 1px solid #FFFFFF;
}

.top-menu ul.menu>li:last-child{
    border-right: none;
}

.top-menu ul.menu>li:first-child>span{
    padding-left: 0;
}

.top-menu ul.menu>li:last-child>span{
    padding-right: 25px;
}

.top-menu ul.menu>li>a, .top-menu ul.menu>li>span{
    display: block;
    padding: 18px 54px;
    cursor: pointer;
    transition: all 0.3s;
}

.top-menu ul.menu>li>a:hover, .top-menu ul.menu>li>span:hover{
    text-decoration: underline;
}

.top-menu ul.menu li.parent span{
    background-image: url(../images/menu-more.svg);
    background-repeat: no-repeat;
    background-position: top 25px right 30px;
}

.top-menu ul.menu li.parent:last-child span{
    background-position: top 25px right 0;
}

.top-menu ul.menu li.parent span:hover ~ .child-menu, .top-menu ul.menu .parent .child-menu:hover{
    height: 144px;
}

h3{
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    color: #161720;
    margin-bottom: 45px;
}

.main-functions .strong{
    font-weight: 500;
}

.main-functions{
    color: #353616;
}

.main-functions p{
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
}

.more a{
    display: inline-block;
    color: #970D0D;
    text-decoration: none;
    transition: all 0.3s;
    padding-right: 24px;
    background-image: url(../images/more.svg);
    background-repeat: no-repeat;
    background-position: top 6px right 0;
    font-size: 18px;
    line-height: 24px;
}

.more a:hover{
    background-position: top 6px right 5px;
}

.main-text{
    margin-bottom: 85px;
}

.main-news h4{
    font-size: 24px;
    line-height: 28px;
    color: #32323C;
    margin-bottom: 45px;
}

.news-list .item{
    margin-bottom: 25px;
    border-bottom: 1px solid #E1E1E7;
    padding-bottom: 25px;
}

.news-list .item .date, .news-page .date{
    color: #717291;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

.news-list .item .name a{
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
}

.news-list .item .name a:hover{
    text-decoration: underline;
}

.main-activity .inner, .info-line .inner{
    margin-bottom: 60px;
}

.main-activity .inner .img, .info-line .inner .img{
    margin-bottom: 15px;
}

.main-activity .inner img, .info-line .inner img, .report .img-block img{
    border-radius: 24px 0 0 0;
}

.main-activity .inner .name, .info-line .inner .name{
    font-size: 18px;
    line-height: 24px;
}

.links-line .name{
    margin-bottom: 25px;
}

.bottom-block{
    margin-top: 100px;
}

.bottom-block h3{
    margin-bottom: 35px;
}

.bottom-block .text{
    font-size: 16px;
    line-height: 24px;
    color: #353616;
    margin-bottom: 25px;
}

h1{
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    color: #161720;
}

.inner-page h1{
    margin-bottom: 30px;
}

ul.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 44px;
    color: #A9B0B6;
    font-size: 14px;
    line-height: 24px;
}

ul.breadcrumb li:first-child span.divider{
    padding: 0;
}

ul.breadcrumb span.divider{
    padding: 0 15px;
}

ul.breadcrumb a{
    color: #A9B0B6;
}

.documents-list .row{
    align-items: stretch;
}

.documents-list .item{
    margin-bottom: 25px;
}

.documents-list .item .inner{
    border: 1px solid #D2D2E3;
    border-radius: 8px;
    padding: 8px 24px;
    height: 100%;
}

.documents-list .item .inner a:hover{
    text-decoration: none;
}

.documents-list .item .inner .name{
    font-size: 18px;
    line-height: 28px;
    color: #161720;
}

.documents-list .item .inner .format{
    color: #9E9EAC;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.documents-list .item .inner .format svg{
    margin-left: 8px;
}

.inner-page .after-img{
    margin-top: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #C4D3DB;
    margin-bottom: 40px;
}

.structure{
    font-size: 16px;
    line-height: 24px;
    color: #353616;
}

.inner-page h4{
    margin-bottom: 25px;
}

.creation-text{
    padding-bottom: 50px;
    border-bottom: 1px solid #C4D3DB;
    margin-bottom: 50px;
}

.inner-page .list{
    padding-bottom: 65px;
    border-bottom: 1px solid #C4D3DB;
    margin-bottom: 40px;
}

.inner-page .list li{
    margin-bottom: 30px;
}

.inner-page .list li:last-child, .inner-page ul:not(.list) li:last-child, .inner-page.item-page ol li:last-child{
    margin-bottom: 0;
}

.inner-page .list li span{
    font-weight: bold;
}

.inner-page ul:not(.list){
    list-style: disc outside;
    padding-left: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid #C4D3DB;
}

.inner-page.item-page ul:not(.list){
    border-bottom: none;
    padding-bottom: 40px;
}

.inner-page ul:not(.list) li, .inner-page.item-page ol li{
    margin-bottom: 30px;
}

.inner-page.item-page{
    font-size: 16px;
    line-height: 24px;
    color: #353616;
}

.inner-page.item-page p{
    margin-bottom: 30px;
}

.inner-page.item-page ol{
    margin-bottom: 45px;
    list-style-position: outside;
    padding-left: 20px;
}

.inner-page.item-page .item-image img{
    border-radius: 24px 0 0 0;
}

.inner-page.item-page .item-image{
    margin-bottom: 50px;
}

.report .img-block{
    margin-bottom: 50px;
}

.report a{
    color: #353616;
}

.news-page .news-list .item{
    padding-bottom: 0;
    border-bottom: none;
}

.news-page .news-list .item .inner{
    border-bottom: 1px solid #E1E1E7;
    padding-bottom: 25px;
}

.news-page .text{
    margin-top: 50px;
    color: #353616;
}

.news-page .text p{
    margin-bottom: 30px;
}

.news-page .text p:last-child{
    margin-bottom: 0;
}

.news-page .back{
    margin-top: 55px;
}

.news-page .back a{
    font-size: 18px;
    line-height: 24px;
    color: #970D0D;
    transition: all 0.3s;
}

.news-page .back a span{
    padding-right: 15px;
    transition: all 0.3s;
}

.news-page .back a:hover{
    text-decoration: none;
}

.news-page .back a:hover span{
    padding-right: 7px;
    padding-left: 8px;
}

.contacts-page .full-name{
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 54px;
}

.contacts-page p{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #353616;
}

.contact-item{
    margin-bottom: 55px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item>a{
    margin-right: 85px;
    color: #353616;
}

.contact-item>a:last-child{
    margin: 0;
}

.contacts-block{
    padding-bottom: 50px;
    border-bottom: 1px solid #C2C9D5;
}

.personal-list{
   margin-top: 55px; 
}

.personal-list .item{
    margin-bottom: 80px;
    font-size: 22px;
    line-height: 24px;
}

.personal-list .item .name{
    font-weight: bold;
    margin-bottom: 20px;
}

.form-block{
    margin-top: 55px;
}

.form-block .field{
    margin-bottom: 25px;
}

.form-block .field .caption{
    font-size: 14px;
    line-height: 24px;
    color: #353616;
}

.form-block .field .form-field input, .form-block .form-field select, .form-block .form-field textarea{
    width: 100%;
    box-sizing: border-box;
    height: 54px;
    padding: 0 20px;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    font-size: 18px;
}

.form-block p{
    color: #353616;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}

.form-block .btn-block button[type="submit"]{
    width: 280px;
    height: 60px;
    background: #970D0D;
    border: 1px solid #970D0D;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all 0.3s;
    color: #ffffff;
    box-shadow: none;
    text-shadow: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.form-block .btn-block button[type="submit"]:hover{
    color: #970D0D;
    background: #ffffff;
}

.work-list .item{
    padding: 0;
}

.documents .after-title{
    margin-bottom: 50px;
}

.form-block .form-field textarea{
    height: 180px;
    padding: 10px 20px;
}

.form-block .upload{
    margin-bottom: 50px;
}

.form-block .upload .note{
    font-size: 14px;
    line-height: 24px;
    color: #A9B0B6;
    margin-top: 23px;
}

.form-block .upload .form-field input[type="file"]{
    width: 0;
    height: 0;
    overflow: hidden;
}

.form-block .upload .form-field label{
    display: block;
    padding: 8px;
    width: 100%;
    height: 106px;
    border: 1px dashed #CDC7C7;
    box-sizing: border-box;
    border-radius: 8px;
}

.form-block .upload .form-field label div{
    width: 100%;
    height: 100%;
    background: #FBFCFD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-block .upload .form-field label div span{
    color: #353616;
    font-size: 16px;
    line-height: 24px;
    padding-left: 30px;
    position: relative;
}

.form-block .upload .form-field label div span::before{
    content: '+';
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #970D0D;
    position: absolute;
    top: 2px;
    left: 0;
}

.form-block .btn-block{
    margin-top: 20px;
}

.agreed label{
    display: flex;
    align-items: center;
}

.agreed label a{
    color: #970D0D;
    margin-left: 5px;
}

.special{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.special svg{
    width: 20px;
    margin-right: 5px;
}

/*-----------------footer---------------*/


footer{
    margin-top: 110px;
    background: #3581DA; 
    color: #ffffff;
    position: relative;
    padding: 50px 0 30px;
}

footer a{
    color: #ffffff;
}

.footer-logo a{
    text-decoration: none;
}

.footer-logo a p{
    font-size: 16px;
    line-height: 19px;
}

.footer-logo a p.top-logo{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 5px;
}

.footer-text{
    padding-top: 30px;
    font-size: 13px;
    line-height: 15px;
}

.space-between{
    justify-content: space-between;
}

.top-footer{
    display: flex;
    justify-content: space-between;
}

.top-footer .item{
    font-size: 20px;
    line-height: 23px;
}

.top-footer .item .email{
    margin-bottom: 10px;
}

.top-footer .item span{
    padding-right: 15px;
}

.top-footer .item .location span{
    padding-right: 10px;
}

.top-footer .item a, .bottom-footer a{
    text-decoration: none;
}

.top-footer .item a:hover, .bottom-footer a:hover{
    text-decoration: underline;
}

.bottom-footer{
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    line-height: 15px;
}

.order-btn a{
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.order-btn a:hover{
    text-decoration: none;
    color: #970D0D;
}

.order-btn a span{
    width: 20px;
    height: 20px;
    background: #970D0D;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin-left: 7px;
}

.form-block p a{
    color: #970D0D;
}

/*-----------------forms---------------*/

.popupblock{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.popupblock .close{
    width: 42px;
    height: 42px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transform: rotate(45deg);
}

.popupblock .close:before, .popupblock .close:after{
    content: '';
    position: absolute;
    height: 42px;
    width: 5px;
    border-radius: 3px;
    background: #000000;
    left: 20px;
}

.popupblock .close:before{
    transform: rotate(90deg);
}

.popupblock .inner{
    background: #FCFCFC;
    box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.162);
    border-radius: 0px;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.popupblock .inner .text{
    padding: 50px 30px;
}

.popup__title{
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.popupblock .inner .text p{
    line-height: 20px;
    margin-bottom: 20px;
}

/*-----------------zavod---------------*/

.zavod {
    background: #2C2C34;
    padding: 10px 0;
}

.zavod a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}
th, td {
  border: 1px solid;
}