
.spl-title{
    font-family: interregular;
    font-size: 16px;
    color: #f2f3f3;
    text-align: center;
    font-weight: normal;
}

body{
    overflow-y: scroll;
    border:none;
    padding:0px;
    margin:0px;
    -webkit-tap-highlight-color: transparent;
}

.page_cont{
    width: 100%;
    height: auto;
    float: left;
    overflow-x: hidden;
    position: relative;
}

.pageup{
    width: 46px;
    height: 46px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0A52E;
    position: fixed;
    right:50px;
    bottom: 100px;
    z-index: 1000;
    transform: rotate(-90deg);
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    opacity: 0;
}

.pageup svg{
    width: 24px;
    height: 24px;
    float: left;
    stroke: #32373b;
    stroke-width: 2.5px;
}

.header{
    width: 100%;
    height: 120px;
    float: left;
    background: #32373B;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1100;
}

.header .inner{
    width: calc(1600px - 100px);
    height: inherit;
    float: left;
    display: flex;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}

.header .inner .logo{
    width: auto;
    height: 46px;
    float: left;
}

.header .inner .logo svg{
    width: auto;
    height: 100%;
    float: left;
}

.header .inner .box{
    width: auto;
    height: auto;
    float: left;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header .inner .box .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373B;
    background: #F0A52E;
    border: 2px solid #F0A52E;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    margin-right: 40px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.header .inner .box .button:hover{
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #32373B;
}

.header .inner .box .button:last-child{
    margin-right: 0;
}

.header .inner .box .button.light{
    background: none;
    border: 2px solid #F0A52E;
    color: #F0A52E;
}

.header .inner .box .button.light:hover{
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.header .inner .box .burger{
    width: 46px;
    height: auto;
    float: left;
    cursor: pointer;
}

.header .inner .box .burger .item{
    width: 100%;
    height: 3px;
    float: left;
    background: #F0A52E;
    margin-bottom: 12px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.header .inner .box .burger .item:last-child{
    margin-bottom: 0;
}

.header .inner .box .burger .item:nth-child(2){
    width: calc(100% - 10px);
    margin-left: 5px;
}

.header .inner .box .burger.open .item:nth-child(1),
.header .inner .box .burger.open .item:nth-child(3){
    width: calc(100% - 20px);
    margin-left: 10px;
}

.header .inner .box .burger.open .item:nth-child(2){
    width: 100%;
    margin-left: 0;
}

.menu{
    width: auto;
    max-width: 100%;
    max-width: 500px;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    background: #464b4e;
    z-index: 1000;
    transition: ease-out 350ms;
    -webkit-transition: ease-out 350ms;
    -moz-transition: ease-out 350ms;
}

.menu .inner{
    width: calc(100% - 100px);
    height: auto;
    float: left;
    margin-top: 120px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.menu .inner .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-decoration: none;
}

.menu .inner .line:nth-child(1){
    margin-top: 0;
}

.menu .inner .contact_box{
    width: auto;
    height: auto;
    float: left;
    border-top: 1px solid #F0A52E;
    margin-top: 20px;
    padding-top: 20px;
    display: none;
}

.menu .inner .contact_box .contact{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    clear: left;
    margin-bottom: 15px;
    text-decoration: none;
}

.menu .inner .contact_box .contact:last-child{
    margin-bottom: 0;
}

.menu .inner .contact_box .phone .icon,
.menu .inner .contact_box .email .icon{
    width: 26px;
    height: 26px;
    float: left;
}

.menu .inner .contact_box .phone .icon svg,
.menu .inner .contact_box .email .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #F0A52E;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.menu .inner .contact_box .phone .text,
.menu .inner .contact_box .email .text{
    width: calc(100% - 26px - 20px);
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    color: #FFFFFF;
    margin-left: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    white-space: nowrap;
}

.menu .inner .contact_box .phone:hover .text,
.menu .inner .contact_box .email:hover .text{
    color: #F0A52E;
}

.menu .inner .line .icon{
    width: 30px;
    height: 30px;
    float: left;
}

.menu .inner .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #F0A52E;
    stroke-width: 2.5px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.menu .inner .line:hover .icon svg{
    transform: translateX(10px);
}

.menu .inner .line .text{
    width: calc(100% - 30px - 20px);
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 30px;
    color: #FFFFFF;
    margin-left: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    line-height: 1.3;
}

.menu .inner .line:hover .text{
    color: #F0A52E;
}

.block1{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.block1 .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.block1 .inner .panel{
    width: 50%;
    height: auto;
    float: left;
}

.block1 .inner .panel:nth-child(1) {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.block1 .inner .panel .photo1,
.block1 .inner .panel .photo2{
    width: calc(100% - 200px);
    height: auto;
    float: left;
    padding-top: calc(((100% - 200px) / 16) * 10);
    position: relative;
    -webkit-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    -moz-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    margin-left: -50px;
    overflow: hidden;
}

.block1 .inner .panel .photo2{
    margin-top: -50px;
    margin-left: 50px;
}

.block1 .inner .panel .photo1 img,
.block1 .inner .panel .photo2 img {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.block1 .inner .panel:nth-child(2){
    width: calc(50% - 100px);
    margin-left: 100px;
}

.block1 .inner .panel h1.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin: 0;
    font-family: interextrabold;
    font-size: 50px;
    color: #F0A52E;
    font-weight: normal;
}

.block1 .inner .panel .introduction{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 20px;
    color: #5a5e62;
    line-height: 1.5;
    margin: 0;
    margin-top: 30px;
}

.block1 .inner .panel .introduction strong{
    font-weight: normal;
    font-family: interbold;
    color: #32373b;
}

.block1 .inner .panel .services{
    width: auto;
    height: auto;
    float: left;
    clear: left;
}

.block1 .inner .panel .services .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 30px;
    color: #F0A52E;
    margin: 0;
    margin-top: 50px;
    font-weight: normal;
}

.block1 .inner .panel .services .divider{
    width: 150px;
    height: 10px;
    float: left;
    clear: left;
    background: #eaebeb;
    margin-top: 20px;
}

.block1 .inner .panel .services .line{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.block1 .inner .panel .services .line:nth-child(3){
    margin-top: 20px;
}

.block1 .inner .panel .services .line .icon{
    width: 28px;
    height: 28px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.block1 .inner .panel .services .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #F0A52E;
    stroke-width: 2px;
}

.block1 .inner .panel .services .line .text{
    width: auto;
    height: auto;
    float: left;
    margin-left: 15px;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62; 
    line-height: 1.3;
}

.block1 .inner .panel .services .line .text strong{
    font-weight: normal;
    font-family: interbold;
    color: #32373b;
}

.block1 .inner .panel h2.head{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 30px;
    color: #F0A52E;
    margin: 0;
    margin-top: 50px;
    font-weight: normal;
}

.block1 .inner .panel .divider{
    width: 150px;
    height: 10px;
    float: left;
    clear: left;
    background: #eaebeb;
    margin-top: 20px;
}

.block1 .inner .panel .box{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.block1 .inner .panel .box .item{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
}

.block1 .inner .panel .box .item .question{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
}

.block1 .inner .panel .box .item .question .icon{
    width: 28px;
    height: 28px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block1 .inner .panel .box .item .question .icon.rotate{
    transform: rotate(90deg);
}

.block1 .inner .panel .box .item .question .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke-width: 2px;
    stroke: #F0A52E;
    transform: rotate(90deg);
}

.block1 .inner .panel .box .item .question .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373b;
    margin-left: 10px;
    line-height: 1.3;
}

.block1 .inner .panel .box .item .answer{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 16px;
    color: #828283;
    line-height: 1.5;
    display: none;
    margin-left: calc(28px + 10px);
    margin-top: 5px;
    flex-direction: column;
}

.block1 .inner .panel .box .item .answer .row{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.block1 .inner .panel .box .item .answer .row .icon{
    width: 22px;
    height: 22px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.block1 .inner .panel .box .item .answer .row .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke-width: 2px;
    stroke: #F0A52E;
}

.block1 .inner .panel .box .item .answer .row .text{
    width: auto;
    height: auto;
    float: left;
    margin: 0;
    margin-left: 10px;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62;
    line-height: 1.3;
}


.block1 .inner .panel .box .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
    clear: left;
    text-decoration: none;
}

.block1 .inner .panel .box .line:first-child{
    margin-top: 0;
}

.block1 .inner .panel .box .line .icon{
    width: 28px;
    height: 28px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block1 .inner .panel .box .line:hover .icon{
    transform: translateX(5px);
}

.block1 .inner .panel .box .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke-width: 2px;
    stroke: #F0A52E;
    transform: rotate(90deg);
}

.block1 .inner .panel .box .line .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373b;
    margin-left: 10px;
    line-height: 1.3;
}

.block1 .inner .panel .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373B;
    background: #F0A52E;
    border: 2px solid #F0A52E;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    margin-top: 50px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block1 .inner .panel .button:hover{
    color: #F0A52E;
    background: #32373B;
    border: 2px solid #32373B;
}


.block2{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #f2f3f3;
}

.block2 .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.block2 .inner .head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 36px;
    color: #F0A52E;
    margin: 0;
    text-align: center;
    font-weight: normal;
}

.block2 .inner .logos{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 20px;
}

.block2 .inner .logos .logo{
    width: calc(100% / 5);
    height: 48px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    padding-left: 0;
    padding-right: 0;
}

.block2 .inner .logos .logo svg{
    width: auto;
    max-width: 100%;
    height: 36px;
    float: left;
    fill: #adafb0;
    flex-shrink: 0;
    flex-grow: 0;
    overflow: visible;
}

.block2 .inner .logos .logo.dhl svg,
.block2 .inner .logos .logo.fabory svg,
.block2 .inner .logos .logo.commscope svg{
    height: 32px;
}

.block2 .inner .logos .logo.abb svg{
    height: 44px;
}

.block2 .inner .logos .logo.eaton svg{
    height: 40px;
}

.block2 .inner .logos .logo.ctp svg{
    height: 48px;
}

.block2 .inner .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373B;
    background: #F0A52E;
    border: 2px solid #F0A52E;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    margin-top: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block2 .inner .button:hover{
    color: #F0A52E;
    background: #32373B;
    border: 2px solid #32373B;
}

.block3{
    width: 100%;
    height: auto;
    float: left;
    background: #f2f3f3;
    display: flex;
    justify-content: center;
}

.block3 .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.block3 .inner h2.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 40px;
    color: #F0A52E;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
}

.block3 .inner .content{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
}

.block3 .inner .content .block{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    margin-left: 100px;
}

.block3 .inner .content .block:first-child{
    margin-left: 0;
}

.block3 .inner .content .block h3.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 30px;
    color: #32373b;
    margin: 0;
    margin-top: 30px;
    font-weight: normal;
}

.block3 .inner .content .block h3.head:first-child{
    margin-top: 0;
}

.block3 .inner .content .block .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.block3 .inner .content .block .text strong{
    font-weight: normal;
    font-family: interbold;
    color: #32373b;
}

.block3 .inner .content .block .box{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin-top: 20px;
}

.block3 .inner .content .block .box .line{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.block3 .inner .content .block .box .line:first-child{
    margin-top: 0;
}

.block3 .inner .content .block .box .line .icon{
    width: 24px;
    height: 24px;
    float: left;
    clear: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.block3 .inner .content .block .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #F0A52E;
    stroke-width: 2px;
}

.block3 .inner .content .block .box .line .text{
    width: auto;
    height: auto;
    float: left;
    margin: 0;
    margin-left: 10px;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62;
    line-height: 1.3;
}

.block3 .inner .gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 50px;
}

.block3 .inner .gallery .item{
    width: calc((100% - 150px) / 6);
    aspect-ratio: 4 / 3;
    margin-right: 30px;
    margin-top: 30px;
    position: relative;
}

.block3 .inner .gallery .item:last-child{
    margin-right: 0;
}

.block3 .inner .gallery .item:nth-child(6n){
    margin-right: 0;
}

.block3 .inner .gallery .item:nth-child(-n+6){
    margin-top: 0;
}

.block3 .inner .gallery .item:nth-child(-n+6):first-child {
    margin-left: auto;
}
.block3 .inner .gallery .item:nth-child(-n+6):last-child {
    margin-right: auto;
}

.block3 .inner .gallery .item img{
    width: 100%;
    height: 100%;
    float: left;
    object-fit: cover;
}

.block3 .inner .gallery .item .overlay{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 800;
    background: rgba(255,255,255,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block3 .inner .gallery .item:hover .overlay{
    background: rgba(255,255,255,0.6);
}

.block3 .inner .gallery .item .overlay .zoom{
    width: 46px;
    height: 46px;
    float: left;
    background: #F0A52E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    opacity: 0;
}

.block3 .inner .gallery .item:hover .overlay .zoom{
    opacity: 1
}

.block3 .inner .gallery .item .overlay .zoom:hover{
    background: #32373b;
}

.block3 .inner .gallery .item .overlay .zoom svg{
    width: 26px;
    height: 26px;
    float: left;
    stroke: #32373b;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block3 .inner .gallery .item .overlay .zoom:hover svg{
    stroke: #F0A52E;
}

.block4{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.block4.grey{
    background: #f2f3f3;
}

.block4 .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.block4 .inner h2.head,
.block4 .inner h1.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 40px;
    color: #F0A52E;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1.3;
    font-weight: normal;
}

.block4 .inner h2.head .text{
    width: auto;
    height: auto;
    float: left;
    text-align: center;
}

.block4 .inner h2.head .text:nth-child(2){
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-size: 26px;
    font-family: interbold;
    text-align: center;
}

.block4 .inner .content{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
}

.block4 .inner .content .block{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    margin-left: 100px;
}

.block4 .inner .content .block:first-child{
    margin-left: 0;
}

.block4 .inner .content .block h3.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 30px;
    color: #32373b;
    margin: 0;
    margin-top: 30px;
    line-height: 1.3;
    font-weight: normal;
}

.block4 .inner .content .block h3.head:first-child{
    margin-top: 0;
}

.block4 .inner .content .block .text{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.block4 .inner .content .block .text:first-child{
    margin-top: 0;
}

.block4 .inner .content .block .text strong{
    font-weight: normal;
    font-family: interbold;
    color: #32373b;
}

.block4 .inner .content .block .box{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin-top: 20px;
}

.block4 .inner .content .block .box.mikropilots{
    display: flex;
    flex-direction: column;
}

.block4 .inner .content .block .box .sub{
    width: auto;
    height: auto;
    float: left;
    margin-top: 10px;
}

.block4 .inner .content .block .box .sub:nth-child(1){
    margin-top: 0;
}

.block4 .inner .content .block .box:first-child{
    margin-top: 0;
}

.block4 .inner .content .block .box .line,
.block4 .inner .content .block .box .sub .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
    clear: left;
}

.block4 .inner .content .block .box .line:first-child,
.block4 .inner .content .block .box .sub .line:first-child{
    margin-top: 0;
}

.block4 .inner .content .block .box .line .icon,
.block4 .inner .content .block .box .sub .line .icon{
    width: 24px;
    height: 24px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.block4 .inner .content .block .box .line .icon svg,
.block4 .inner .content .block .box .sub .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #F0A52E;
    stroke-width: 2px;
}

.block4 .inner .content .block .box .line .num,
.block4 .inner .content .block .box .sub .line .num{
    width: 30px;
    height: 30px;
    float: left;
    background: #F0A52E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.block4 .inner .content .block .box .line .num .number,
.block4 .inner .content .block .box .sub .line .num .number{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 16px;
    color: #32373B;
    line-height: 1.3;
}

.block4 .inner .content .block .box .line .text,
.block4 .inner .content .block .box .sub .line .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #5a5e62;
    margin: 0;
    margin-left: 15px;
    line-height: 1.3;
}

.block4 .inner .content .block .box .line .text strong{
    font-weight: normal;
    font-family: interbold;
    color: #32373b;
}

.block4 .inner .content .block .image{
    width: 100%;
    height: auto;
    float: left;
}

.block4 .inner .content .block .image img{
    width: 100%;
    height: auto;
    float: left;
    object-fit: contain;
}

.block4 .inner .gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 50px;
}

.block4 .inner .gallery .item{
    width: calc((100% - 150px) / 6);
    aspect-ratio: 4 / 3;
    margin-right: 30px;
    margin-top: 30px;
    position: relative;
}

.block4 .inner .gallery .item:last-child{
    margin-right: 0;
}

.block4 .inner .gallery .item:nth-child(6n){
    margin-right: 0;
}

.block4 .inner .gallery .item:nth-child(-n+6){
    margin-top: 0;
}

.block4 .inner .gallery .item:nth-child(-n+6):first-child {
    margin-left: auto;
}
.block4 .inner .gallery .item:nth-child(-n+6):last-child {
    margin-right: auto;
}

.block4 .inner .gallery .item img{
    width: 100%;
    height: 100%;
    float: left;
    object-fit: cover;
}

.block4 .inner .gallery .item .overlay{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 800;
    background: rgba(255,255,255,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block4 .inner .gallery .item:hover .overlay{
    background: rgba(255,255,255,0.6);
}

.block4 .inner .gallery .item .overlay .zoom{
    width: 46px;
    height: 46px;
    float: left;
    background: #F0A52E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    opacity: 0;
}

.block4 .inner .gallery .item:hover .overlay .zoom{
    opacity: 1
}

.block4 .inner .gallery .item .overlay .zoom:hover{
    background: #32373b;
}

.block4 .inner .gallery .item .overlay .zoom svg{
    width: 26px;
    height: 26px;
    float: left;
    stroke: #32373b;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block4 .inner .gallery .item .overlay .zoom:hover svg{
    stroke: #F0A52E;
}

.block4 .inner .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373B;
    background: #F0A52E;
    border: 2px solid #F0A52E;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    margin-top: 50px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block4 .inner .button:hover{
    color: #F0A52E;
    background: #32373B;
    border: 2px solid #32373B;
}

.block5{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    border-top: 5px solid #F0A52E;
}

.block5 .inner{
    width: calc(1400px - 100px);
    height: auto;
    padding: 50px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.block5 .inner .part{
    width: auto;
    height: auto;
    float: left;
}

.block5 .inner .part .line{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interbold;
    font-size: 22px;
    color: #848789;
}

.block5 .inner .part .line:nth-child(2){
    font-size: 30px;
    margin-top: 5px;
    color: #32373b;
    font-family: interextrabold;
    line-height: 1.3;
}

.block5 .inner .part:nth-child(2){
    width: auto;
    height: auto;
    float: left;
    margin-left: auto;
    margin-right: 0;
}

.block5 .inner .part .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #32373B;
    background: #F0A52E;
    border: 2px solid #F0A52E;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block5 .inner .part .button:hover{
    color: #F0A52E;
    background: #32373B;
    border: 2px solid #32373B;
}

.block6{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.block6 .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding: 50px;
}

.block6 .inner h3.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 50px;
    color: #F0A52E;
    margin: 0;
    font-weight: normal;
    line-height: 1.3;
}

.block6 .inner .text{
    width: auto;
    max-width: 75%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 20px;
    color: #5a5e62;
    line-height: 1.5;
    clear: left;
    margin: 0;
    margin-top: 30px;
}

.block6 .inner .references{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.block6 .inner .references .item{
    width: calc(((100% - 200px) / 5) - 60px);
    height: auto;
    float: left;
    margin-right: 50px;
    margin-top: 50px;
    background: #f2f3f3;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.block6 .inner .references .item:last-child{
    margin-right: 0;
}

.block6 .inner .references .item:nth-child(5n){
    margin-right: 0;
}

.block6 .inner .references .item:nth-child(-n+5){
    margin-top: 0;
}

.block6 .inner .references .item .logo{
    width: 100%;
    height: 46px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block6 .inner .references .item .logo img{
    width: auto;
    max-width: 100%;
    height: 100%;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    object-fit: contain;
}

.block6 .inner .references .item .logo .cn{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 24px;
    text-transform: uppercase;
    color: #32373b;
}

.block6 .inner .references .item .technology{
    width: 100%;
    height: auto;
    float: left;
    border-top: 1px solid #d6d7d7;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block6 .inner .references .item .technology .text{
    width: auto;
    max-width: unset;
    height: auto;
    float: left;
    line-height: 1.3;
    font-family: intermedium;
    font-size: 16px;
    color: #5a5e62;
    text-align: center;
    margin: 0;
}

.block6 .inner .references .item .additional{
    width: 100%;
    height: auto;
    float: left;
    border-top: 1px solid #d6d7d7;
    margin-top: 20px;
    padding-top: 20px;
}

.block6 .inner .references .item .additional .location,
.block6 .inner .references .item .additional .area,
.block6 .inner .references .item .additional .company{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    clear: left;
}

.block6 .inner .references .item .additional .location,
.block6 .inner .references .item .additional .area{
    margin-top: 10px;
}

.block6 .inner .references .item .additional .location .icon,
.block6 .inner .references .item .additional .area .icon,
.block6 .inner .references .item .additional .company .icon{
    width: 22px;
    height: 22px;
    float: left;
}

.block6 .inner .references .item .additional .location .icon svg,
.block6 .inner .references .item .additional .area .icon svg,
.block6 .inner .references .item .additional .company .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #d6d7d7;
    stroke-width: 2px;
}

.block6 .inner .references .item .additional .location .city,
.block6 .inner .references .item .additional .area .place,
.block6 .inner .references .item .additional .company .name{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #5a5e62;
    margin-left: 10px;
}

.block7{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.block7 .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.block7 .inner h1.head{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interextrabold;
    font-size: 50px;
    color: #F0A52E;
    margin: 0;
    font-weight: normal;
    line-height: 1.3;
}

.block7 .inner .text{
    width: auto;
    max-width: 75%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 20px;
    color: #5a5e62;
    line-height: 1.5;
    clear: left;
    margin: 0;
    margin-top: 30px;
}

.block7 .inner .references{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
}

.block7 .inner .references .item{
    width: calc(100% - 60px);
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.block7 .inner .references .item:nth-child(odd){
    background: #f2f3f3;
}

.block7 .inner .references .item .logo{
    width: auto;
    height: 36px;
    float: left;
    display: flex;
    flex-basis: 10%;
    justify-content: center;
    align-items: center;
}

.block7 .inner .references .item .logo img{
    width: auto;
    height: 100%;
    max-width: 100%;
    float: left;
    object-fit: contain;
}

.block7 .inner .references .item .logo .cn{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 20px;
    color: #32373b;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
}

.block7 .inner .references .item .box{
    width: 90%;
    height: auto;
    float: left;
    display: flex;
}

.block7 .inner .references .item .box .technology{
    width: auto;
    height: auto;
    float: left;
    font-family: intermedium;
    font-size: 16px;
    color: #5a5e62;
    flex-basis: calc(40% - 30px - 30px);
    margin-left: 30px;
    margin-right: auto;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.block7 .inner .references .item .box .additional{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
}

.block7 .inner .references .item .box .additional .part{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}

.block7 .inner .references .item .box .additional .part:first-child{
    flex-basis: calc(42% - 20px);
}

.block7 .inner .references .item .box .additional .part:nth-child(2){
    flex-basis: calc(35% - 20px);
}

.block7 .inner .references .item .box .additional .part:last-child{
    flex-basis: 23%;
    margin-right: 0;
}

.block7 .inner .references .item .box .additional .part .icon{
    width: 22px;
    height: 22px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.block7 .inner .references .item .box .additional .part .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #d6d7d7;
    stroke-width: 2px;
}

.block7 .inner .references .item .box .additional .part .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #5a5e62;
    white-space: nowrap;
    margin: 0;
    margin-left: 15px;
}


.contact{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.contact .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
}

.contact .inner .part:nth-child(1){
    width: calc((100% / 2) - 100px);
    height: auto;
    float: left;
    margin-left: 100px;
    margin-bottom: 100px;
    padding-top: 50px; /* padding and margin - because of position after smooth scroll */
    margin-top: 50px;
}

.contact .inner .part:nth-child(2){
    width: calc((100% / 2) - 200px - 100px);
    height: auto;
    float: left;
    background: #f2f3f3;
    margin-left: 100px;
    margin-bottom: 100px;
    margin-top: 100px;
    padding: 50px;
}

.contact .inner .part .head{
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
    font-family: interextrabold;
    font-size: 50px;
    color: #F0A52E;
    font-weight: normal;
}

.contact .inner .part .text{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: intersemibold;
    font-size: 20px;
    color: #848789;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.contact .inner .part .form{
    width: 100%;
    max-width: 300px;
    height: auto;
    float: left;
    clear: left;
    margin: 0;
    margin-top: 50px;
}

.contact .inner .part .form .line{
    width: 100%;
    height: auto;
    float: left;
    clear: left;
    margin-top: 30px;
}

.contact .inner .part .form .line:first-child{
    margin-top: 0;
}

.contact .inner .part .form .line:nth-child(2){
    display: none;
}

.contact .inner .part .form .line .label{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: intermedium;
    font-size: 16px;
    color: #848789;
    margin-left: 16px;
}

.contact .inner .part .form .line .label.error{
    color: #E54545;
}

.contact .inner .part .form .line .input{
    width: 100%;
    height: 40px;
    float: left;
    clear: left;
    margin-top: 5px;
    border: 1px solid #d6d7d7;
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: interregular;
    font-size: 16px;
    color: #32373B;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    border-radius: 0;
}

.contact .inner .part .form .line .input:-webkit-autofill,
.contact .inner .part .form .line .input:-webkit-autofill:hover, 
.contact .inner .part .form .line .input:-webkit-autofill:focus, 
.contact .inner .part .form .line .input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.contact .inner .part .form .line .input::placeholder{
    color: #d6d7d7;
}

.contact .inner .part .form .line .input.error{
    border: 1px solid #E54545;
}

.contact .inner .part .form .line .textarea{
    width: 100%;
    height: 200px;
    float: left;
    clear: left;
    margin-top: 5px;
    border: 1px solid #d6d7d7;
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: interregular;
    font-size: 16px;
    color: #32373B;
    line-height: 1.5;
    border-radius: 0px;
}

.contact .inner .part .form .line .textarea.error{
    border: 1px solid #E54545;
}

.contact .inner .part .form .button_wrapper{
    width: 300px;
    max-width: 100%;
    float: left;
    height: auto;
    position: relative;
    margin-top: 30px;
}

.contact .inner .part .form .button_wrapper .button{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    background: #F0A52E;
    color: #32373B;
    font-family: interbold;
    font-size: 18px;
    border: 1px solid #F0A52E;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    outline: none;
    cursor: pointer;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    z-index: 1100;
    position: relative;
    font-weight: normal;
}

.contact .inner .part .form .button:hover{
    background: #32373B;
    color: #F0A52E;
    border:1px solid #32373B;
}

.contact .inner .part .form .button_wrapper .button.hidden{
    opacity: 0;
    z-index: 1000;
}

.contact .inner .part .form .button_wrapper .loading{
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    float: left;
    background: rgba(55, 56, 56, 0.75);
    border: 1px solid #32373B;
    position: absolute;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .inner .part .form .button_wrapper .loading.hidden{
    display:none
}

.contact .inner .part .form .button_wrapper .loading .round{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact .inner .part .form .button_wrapper .message_alert{
    width: calc(100% - 12px - 2px);
    height: auto;
    opacity: 1;
    float: left;
    clear: both;
    text-align: center;
    padding: 10px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: interbold;
    font-size: 18px;
    color: #28a745;
    background: #d4edd9;
    border: 1px solid #a9dbb4;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1100;
}

.contact .inner .part .form .message_alert.hidden{
    opacity: 0;
    z-index: 1000;
}

.contact .inner .part .form .gdpr{
    width: 100%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #848789;
    margin-top: 20px;
    line-height: 1.3;
}

.contact .inner .part .form .gdpr a{
    font-family: interbold;
    text-decoration: none;
    color: inherit;
}

.contact .inner .part .form .gdpr a:hover{
    text-decoration: underline;
}

.contact .inner .part:nth-child(2) .block{
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 50px;
}

.contact .inner .part:nth-child(2) .block:last-child{
    margin-bottom: 0;
}

.contact .inner .part:nth-child(2) .block .head{
    width: 100%;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 30px;
    color: #F0A52E;
    margin: 0;
    font-weight: normal;
}

.contact .inner .part:nth-child(2) .block .item{
    width: auto;
    height: auto;
    float: left;
    margin: 0;
    font-family: interregular;
    font-size: 20px;
    color: #848789;
    margin-bottom: 5px;
    clear: left;
    text-decoration: none;
    line-height: 1.3;
}

.contact .inner .part:nth-child(2) .block .item:last-child{
    margin-bottom: 0;
}

.contact .inner .part:nth-child(2) .block .item.main{
    font-family: interbold;
    color: #32373B;
}

.contact .inner .part:nth-child(2) .block .item:nth-child(2){
    margin-top: 10px;
}

.footer{
    width: 100%;
    height: auto;
    float: left;
    background: #282c2f;
    display: flex;
    justify-content: center;
}

.footer .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding: 50px;
}

.footer .inner .box{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    margin-right: 100px;
}

.footer .inner .box:nth-child(2){
    margin-right: 0;
}

.footer .inner .box .logo{
    width: auto;
    height: 40px;
    float: left;
    clear: left;
}

.footer .inner .box .logo svg{
    width: auto;
    height: 100%;
    float: left;
    fill: #848789;
}

.footer .inner .box .text{
    width: auto;
    height: auto;
    float: left;
    margin: 0;
    font-family: interregular;
    font-size: 18px;
    color: #848789;
    line-height: 1.5;
    margin-top: 30px;
}

.footer .inner .box .links{
    width: calc((100% - 50px) / 2);
    height: auto;
    float: left;
}

.footer .inner .box .links .line{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
    text-decoration: none;
}

.footer .inner .box .links .line:first-child{
    margin-top: 0;
}

.footer .inner .box .links .line .icon{
    width: 26px;
    height: 26px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.footer .inner .box .links .line:hover .icon{
    transform: translateX(5px);
}

.footer .inner .box .links .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    transform: rotate(90deg);
    stroke: #F0A52E;
    stroke-width: 2px;
}

.footer .inner .box .links .line .text{
    width: auto;
    height: auto;
    float: left;
    font-family: intermedium;
    font-size: 18px;
    color: #848789;
    margin-left: 10px;
    line-height: 1.3;
    margin-top: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.footer .inner .box .links .line:hover .text{
    color: #FFFFFF;
}

.footer .inner .box .contacts{
    width: calc((100% - 50px) / 2);
    height: auto;
    float: left;
    margin-left: 50px;
}

.footer .inner .box .contacts .line{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    display: flex;
    align-items: center;
    margin-top: 20px;
    text-decoration: none;
}

.footer .inner .box .contacts .line:first-child{
    margin-top: 0;
}

.footer .inner .box .contacts .line.address{
    align-items: flex-start;
}

.footer .inner .box .contacts .line .icon{
    width: 24px;
    height: 24px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
}

.footer .inner .box .contacts .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke-width: 2px;
    stroke: #F0A52E;
}

.footer .inner .box .contacts .line .text{
    width: auto;
    height: auto;
    float: left;
    color: #848789;
    font-size: 18px;
    line-height: 1.3;
    font-family: intermedium;
    margin-left: 10px;
    margin-top: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.footer .inner .box .contacts a.line:hover .text{
    color: #FFFFFF;
}

.footer .inner .box .contacts .line .text .multiline{
    width: auto;
    height: auto;
    float: left;
    clear: left;
}

.foot{
    width: 100%;
    height: 100px;
    float: left;
    background: #232629;
    display: flex;
    justify-content: center;
}

.foot .inner{
    width: calc(1600px - 100px);
    height: 100%;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    align-items: center;
}

.foot .inner .copy{
    width: auto;
    height: auto;
    float: left;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.foot .inner .copy .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 16px;
    color: #848789;
}

.foot .inner .copy .line{
    width: auto;
    height: auto;
    float: left;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.foot .inner .copy .line .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #6f7375;
}

.foot .inner .copy .line .text:nth-child(2){
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #6f7375;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.foot .inner .copy .line .logo{
    width: auto;
    height: 11px;
    float: left;
    margin-left: 7px;
}

.foot .inner .copy .line .logo svg{
    width: auto;
    height: 100%;
    float: left;
    fill: #6f7375;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.foot .inner .copy .line .logo:hover svg{
    fill: #ffe163;
}

.foot .inner .cookies{
    width: auto;
    height: auto;
    float: left;
    margin-left: auto;
    margin-right: 0;
    outline: none;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.foot .inner .cookies .icon{
    width: 32px;
    height: 32px;
    float: left;
}

.foot .inner .cookies .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #6f7375;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.foot .inner .cookies:hover .icon svg{
    stroke: #F0A52E;
}

.foot .inner .cookies .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 14px;
    color: #848789;
    margin-right: 10px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.foot .inner .cookies:hover .text{
    color: #F0A52E;
}

.terms{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.terms .inner{
    width: calc(1000px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.terms .inner .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 50px;
    color: #F0A52E;
    margin: 0;
    font-weight: normal;
}

.terms .inner .part{
    width: auto;
    height: auto;
    float: left;
    margin-top: 50px;
    clear: left;
}

.terms .inner .part .parthead{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 20px;
    color: #5a5e62;
    margin: 0;
    font-weight: normal;
    line-height: 1.3;
}

.terms .inner .part .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    margin-top: 15px;
}

.terms .inner .part .line .no{
    width: 30px;
    height: auto;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30px;
    font-family: interregular;
    font-size: 16px;
    color: #5a5e62;
    text-align: right;
    line-height: 1.5;
}

.terms .inner .part .line .content{
    width: auto;
    height: auto;
    float: left;
    margin-left: 20px;
}

.terms .inner .part .line .content .main{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interregular;
    font-size: 16px;
    color: #5a5e62;
    line-height: 1.5;
    margin: 0;
}

.terms .inner .part .line .content .sub{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin-left: 20px;
}

.terms .inner .part .line .content .sub .line2{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 5px;
    clear: left;
}

.terms .inner .part .line .content .sub .line2 .no{
    width: 5px;
    height: 5px;
    float: left;
    flex-basis: 5px;
    flex-grow: 0;
    flex-shrink: 0;
    background: #5a5e62;
}

.terms .inner .part .line .content .sub .line2 .content2{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interregular;
    font-size: 16px;
    color: #5a5e62;
    line-height: 1.5;
    margin: 0;
    margin-left: 15px;
}