@charset "utf-8";
/*
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
*/
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #444444;
    font-weight: 300;
    line-height: 1.6;
}
:selection {
  background: #db9224;
  color: #fff;
}
::selection {
  background: #db9224;
  color: #fff;
}
::-moz-selection {
  background: #db9224;
  color: #fff;
}

h1,
.title-h1,
h2,
.title-h2{
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}
h3,
.title-h3{
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}
h4,
.title-h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}
h5,
.title-h5,
h6,
.title-h6{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}
.content{
    font-weight: 400;
}

@media(max-width: 991px){
    h1,
    .title-h1,
    h2,
    .title-h2{
        font-size: 30px;
    }
    h3,
    .title-h3{
        font-size: 25px;
    }
    h4,
    .title-h4 {
        font-size: 14px;
    }
    h5,
    .title-h5,
    h6,
    .title-h6{
        font-size: 16px;
    }
}

@media(max-width: 767px){
    h1,
    .title-h1,
    h2,
    .title-h2{
        font-size: 25px;
    }
    h3,
    .title-h3{
        font-size: 22px;
    }
    h4,
    .title-h4 {
        font-size: 13px;
    }
    h5,
    .title-h5,
    h6,
    .title-h6{
        font-size: 15px;
    }
}

a {
    color: #DE9C38;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #DE9C38;
}

.btn{
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0 25px;
    border: none;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #db9224;
    text-align: center;
    transition: all 300ms ease-out;
}
.btn-brown{
    background: #db9224/*#7A1012*/;
}
.btn:hover {
    background: #444444;
    color: #fff;
}
.btn-min{
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
}
.btn-transparent{
    background: transparent;
    border: 1px solid #444444;
    color: #444444;
}
.btn-transparent:hover{
    background: #444;
    color: #fff;
}
.btn-transparent-white{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-transparent-white:hover{
    background: #444;
    color: #fff;
    border-color: #444;
}
/* Header */
.header-top{
    background: #474C5C;
    color: #fff;
}
.header-top-inner{
    height: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-top-inner .col2{
    width: 270px;
    text-align: right;
}
.header-top-inner .col1{
    width: calc(100% - 270px);
    padding-right: 20px;
}
.header .social-links{
    position: relative;
    bottom: -2px;
}
.social-links a{
    margin-right: 7px;
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: flex-end;
}
.social-links a:hover{
    color: #DE9C38;
}
.social-links a:last-of-type{
    margin-right: 0;
}
.social-links img{
    width: 14px;
    margin-right: 4px;
}
.social-links .vk-link img{
    width: 17px;
    position: relative;
    bottom: -2px;
}
.header-middle{
    background: #fff;
}

@media(min-width: 768px){
    .header-middle.fixed{
        position: fixed;
        left: 0;
        right: 0;
        top: -84px;
        z-index: 700;
        transform: translateY(84px);
        box-shadow: 0 1px 5px rgb(0 0 0 / 14%);
        transition: all ease-out 300ms;
    }
    .header-middle.fixed + .header-middle-push{
        height: 76px;
    }
}
@media(min-width: 992px){
    .header-middle.fixed + .header-middle-push{
        height: 80px;
    }
}

.header-middle-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    height: 80px;
}
.header-logo{
    width: 220px;
}
.top-menu{
    width: calc(100% - 220px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.top-menu > ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.top-menu > ul > li{
    position: relative;
    margin-left: 35px;
    height: 100%;
}
.top-menu > ul > li > a{
    text-transform: uppercase;
    font-size: 13px;
    color: #222;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
}
.top-menu > ul > li:hover > a,
.top-menu > ul > li.active > a{
    color: #DE9C38;
}
.top-menu ul ul{
    display: none;
    width: 220px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    padding: 20px 20px 10px;
    z-index: 300;
    box-shadow: 0 0 0 1px #E5E5E5;
}
.top-menu > ul > li > ul:before{
    content: "";
    height: 10px;
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
}
.top-menu ul li:hover > ul{
    display: block;
}
.top-menu ul ul li{
    margin-bottom: 10px;
}
.top-menu ul ul a{
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
    line-height: 1.4;
    display: inline-block;
    font-size: 12px;
}
.top-menu ul ul li.active > a,
.top-menu ul ul li:hover > a{
    color: #DE9C38;
}

.header-bottom{
    background: #fff;
    height: 60px;
}
.header-bottom-inner{
    height: 100px;
    background: #272746/*#7A1012*/;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}
.header-bottom-inner .col{
    width: 33.3333%;
    padding-left: 20px;
    padding-right: 20px;
}
.header-bottom-inner .item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
}
.header-bottom-inner .item-icon{
    width: 80px;
    padding-right: 20px;
}
.header-bottom-inner .item-body{
    width: calc(100% - 80px);
}
.header-bottom-inner .item a{
    color: #fff;
}
.header-bottom-inner .item a:hover{
    color: #ffd008;
}
.header-bottom-inner .item-title{
    color: #A3A6AE;
    font-weight: 300;
}
.header-bottom-inner .item-content{
    font-size: 17px;
    font-weight: 500;
}
@media(max-width: 1099px){
    .header-top-inner .col1{
        font-size: 13px;
    }
    .social-links a{
        font-size: 13px;
    }
    .header-top-inner .col2{
        width: 250px;
    }
    .header-top-inner .col1{
        width: calc(100% - 250px);
    }
    .top-menu > ul > li{
        margin-left: 25px;
    }
}
@media(max-width: 991px){
    .top-menu > ul > li{
        margin-left: 15px;
    }
    .top-menu > ul > li > a{
        font-size: 10px;
    }
    .header-top-inner .col1{
        font-size: 12px;
        line-height: 1.2;
    }
    .header-middle-inner{
        padding: 5px 0;
        height: 76px;
    }
    .header-bottom{
        height: 40px;
    }
    .header-bottom-inner{
        height: 70px;
    }
    .header-bottom-inner .item-content{
        font-size: 13px;
    }
    .header-bottom-inner .item-title{
        font-size: 12px;
    }
    .header-bottom-inner .item-icon {
        width: 55px;
        padding-right: 15px;
    }
}
@media(max-width: 767px){
    .header-bottom{
        display: none;
    }
    .top-menu{
        display: none;
    }
    .header-top-inner .col1{
        width: 100%;
        padding-right: 0;
    }
    .header-top-inner .col2{
        width: 100%;
        text-align: left;
        margin-top: 5px;
    }
    .header-top-inner{
        height: auto;
        padding: 8px 0;
    }
    .header-middle-inner {
        padding: 0 15px;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 2px rgba(0,0,0,.1);
    }
    .header{
        padding-top: 60px;
    }
    .header-top-inner .col1{
        font-size: 10px;
    }
}
/* /. Header */


/* top slider */
.top-slider-wrapper{
    position: relative;
}
.top-slider > div:not(:first-of-type){
    display: none;
}
.top-slider .slick-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }
.top-slider .item{
    position: relative;
    z-index: 1;
}
.top-slider .item img{
    width: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
}
.top-slider .item.slick-active img{
    transform: scale(1);
}
.top-slider .item-inner{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 115px 30px 60px;
}
.top-slider .item-content{
    width: 650px;
    color: #fff;
}
.top-slider .item-content-body{
    border-left: 17px solid #DB9224;
    padding-left: 25px;
}
.top-slider .item-title{
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    font-family: Roboto;
    background-color: rgba(2, 2, 2, 0.4);
    padding: 11px;
}
.top-slider .item-title + .item-text{
    margin-top: 40px;
    background-color: rgba(2, 2, 2, 0.4);
    padding: 11px;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
}
.top-slider .item-content-more{
    margin-top: 70px;
    padding-left: 42px;
}
.slider-more-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(2, 2, 2, 0.4);
    color: #fff;
    font-weight: 700;
    height: 54px;
    padding: 0 45px;
    border: 2px solid #DB9224;
    letter-spacing: 3px;
    font-size: 15px;
    text-transform: uppercase;
}
.slider-more-btn:hover{
    color: #000;
    background: #ffd008;
    border-color: #ffd008;
}
.slider-more-btn span:after{
    content:"";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    margin-left: 5px;
    position: relative;
    top: -1px;
    transition: all ease-out 300ms;
}
.slider-more-btn:hover span:after{
    border-color: #000;
}
.top-slider .slick-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
}
.top-slider-nav{
    position: absolute;
    right: 50px;
    bottom: 110px;
    width: 350px;
    z-index: 10;
}
.top-slider-nav .item{
    margin-bottom: 32px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity ease-out 300ms;
    padding-right: 2px;
}
.top-slider-nav .item:hover,
.top-slider-nav .item.slick-current{
    opacity: 1;
}
.top-slider-nav .item-title{
    position: relative;
    color: #fff;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-slider-nav .item-title:after{
    content:"";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(45deg);
    margin-left: 5px;
    position: relative;
    top: 2px;
}
.top-slider-nav .item-subtitle{
    color: #ffd008;
    font-size: 17px;
    font-weight: 500;
    font-family: "Roboto";
}

@media(max-width: 1799px){
    .top-slider-nav{
        bottom: 60px;
    }
    .top-slider-nav .item{
        margin-bottom: 20px;
    }
    .top-slider-nav .item-title{
        margin-bottom: 0;
    }
    .top-slider .slick-dots{
        bottom: 15px;
    }
}
@media(max-width: 1499px){
    .top-slider-nav{
        right: 20px;
    }
    .top-slider .item-inner {
        padding: 100px 0 60px 20px;
    }
    .top-slider .item-title{
        font-size: 50px;
    }
    .top-slider .item-title + .item-text {
        margin-top: 20px;
        font-size: 18px;
    }
    .top-slider .item-content-more{
        margin-top: 40px;
    }
}
@media(max-width: 1199px){
    .top-slider .item-content{
        width: 500px;
    }
    .top-slider-nav{
        width: 250px;
        right: 15px;
    }
    .top-slider-nav .item-title{
        font-size: 15px;
    }
    .top-slider-nav .item-subtitle{
        font-size: 14px;
    }
    .top-slider .item-content-body {
        border-left-width: 5px;
        padding-left: 15px;
    }
    .top-slider .item-inner {
        padding: 80px 0 60px 15px;
    }
    .top-slider .item-title{
        font-size: 40px;
    }
    .top-slider .item-content-more{
        padding-left: 20px;
        margin-top: 35px;
    }
    .slider-more-btn {
        height: 48px;
        padding: 0 25px;
        letter-spacing: 2px;
        font-size: 13px;
    }
}
@media(max-width: 991px){
    .top-slider-nav{
        display: none;
    }
    .top-slider .item{
        height: 400px;
    }
    .top-slider .item img{
        height: 100%;
        object-fit: cover;
    }
}
@media(max-width: 767px){
    .top-slider .item-content{
        max-width: 100%;
    }
    .top-slider .item-inner {
        padding: 50px 0 60px 0;
    }
    .top-slider .item-title{
        font-size: 30px;
    }
    .top-slider .item-title + .item-text{
        font-size: 14px;
        line-height: 1.5;
        font-weight: normal;
        margin-top: 5px;
    }
    .top-slider .item-content-more{
        margin-top: 20px;
    }
    .mobile-menu .header-bottom-inner{
        height: auto;
        background: transparent;
        padding: 15px 0 0;
    }
    .mobile-menu .header-bottom-inner .col{
        width: 100%;
        margin-bottom: 15px;
    }
    .header-bottom-inner .item-icon{
        width: 37px;
        padding-right: 10px;
        position: relative;
        bottom: -4px;
    }
    .header-bottom-inner .item{
        align-items: flex-start;
    }
}
/* /. top slider */

/* about-section */
.about-section{
    padding: 95px 0 350px;
    background: url(../images/about-bg.png) left 0 bottom 0 / 100% auto no-repeat;
}
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
}
.as-col1{
    width: calc(100% - 400px);
    padding: 35px 35px 50px;
    border: 1px solid #eee;
    background: rgba(255,255,255,.1);
}
.as-col2{
    width: 400px;
    padding-left: 20px;
}
.about-section-inner .item-buttons{
    display: flex;
    flex-wrap: wrap;
}
.about-section-inner .item-buttons .col{
    width: 50%;
    padding-right: 20px;
}
.as-col2 .item{
    margin-bottom: 40px;
}
.as-col2 .item-title{
    color: #DB9224;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 5px;
}
@media(max-width: 991px){
    .as-col1{
        width: 60%;
        padding: 20px 20px 35px;
    }
    .as-col2{
        width: 40%;
    }
    .about-section {
        padding: 45px 0 300px;
    }
}
@media(max-width: 767px){
    .as-col1{
        width: 100%;
        padding: 0;
        border: none;
    }
    .as-col2{
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }
    .about-section {
        padding: 45px 0 25vw;
    }
}
@media(max-width: 399px){
    .about-section-inner .item-buttons .col{
        width: 100%;
        padding-right: 0;
    }
    .about-section-inner .item-buttons .col + .col{
        margin-top: 20px;
    }
    .about-section-inner .item-buttons .col .btn{
        width: 100%;
    }
}


/* manufacture section */
.manufacture-section{
    padding: 80px 0;
}
.manufacture-section-columns{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.manufacture-section-col1{
    width: 66%;
    display: flex;
    flex-wrap: wrap;
}
.manufacture-section-col2{
    width: 34%;
}
.manufacture-section-col1 .col{
    width: 50%;
    padding-right: 20px;
}
.manufacture-section-col1 .item{
    position: relative;
    padding: 20px 20px 100px;
    border: 1px solid #E5E5E5;
    height: 100%;
    display: block;
    color: #444;
    background: #fff;
}
.manufacture-section-col1 .item-img{
    margin-bottom: 20px;
}
.manufacture-section-col1 .item-img img{
    width: 100%;
}
.manufacture-section-col1 .item-more{
    position: absolute;
    left: 20px;
    bottom: 30px;
}
.manufacture-section-col1 .item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.manufacture-section-col2 .item{
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    color: #444;
}
.manufacture-section-col2 .item:last-child{
    margin-bottom: 0;
}
.manufacture-section-col2 .item-img{
    width: 148px;
}
.manufacture-section-col2 .item-body{
    width: calc(100% - 148px);
    padding-left: 20px;
}
.manufacture-section-col2 .item-description{
    margin-bottom: 15px;
}
.manufacture-section-col2 .item-more span{
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.manufacture-section-col2 .item:hover .item-more span{
    color: #DB9224;
}
@media(max-width: 1199px){
    .manufacture-section-col2 .item-img {
        width: 100px;
    }
    .manufacture-section-col2 .item-body{
        width: calc(100% - 100px);
        padding-left: 15px;
    }
    .manufacture-section-col2 .item-title{
        font-size: 14px;
        margin-bottom: 7px;
    }
    .manufacture-section-col2 .item-more span {
        font-weight: 500;
        font-size: 13px;
    }
    .manufacture-section-col2 .item-description{
        margin-bottom: 5px;
    }
}
@media(max-width: 991px){
    .manufacture-section-col1{
        width: 100%;
        margin-bottom: 50px;
        justify-content: space-between;
    }
    .manufacture-section-col2{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
    .manufacture-section-col1 .col{
        padding-right: 0;
        width: calc(50% - 10px);
    }
    .manufacture-section-col2 .item{
        width: 33.3333%;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
    .manufacture-section-col2 .item-title{
        font-size: 12px;
    }
    .manufacture-section-col2 .item-more span{
        font-size: 11px;
    }
    .manufacture-section-col2 .item-img{
        width: 80px;
    }
    .manufacture-section-col2 .item-body{
        width: calc(100% - 80px);
    }
}
@media(max-width: 767px){
    .manufacture-section-col2{
        margin-left: 0;
        margin-right: 0;
    }
    .manufacture-section-col2 .item{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        font-size: 14px;
    }
    .manufacture-section-col2 .item-title{
        font-size: 14px;
    }
    .manufacture-section-col2 .item-more span{
        font-size: 13px;
    }
    .manufacture-section-col2 .item-img{
        width: 110px;
    }
    .manufacture-section-col2 .item-body{
        width: calc(100% - 110px);
    }
    .manufacture-section-col1{
        margin-bottom: 20px;
    }
    .manufacture-section-col1 .col{
        width: 100%;
        margin-bottom: 30px;
    }
}
/* /. manufacture section */


/* questionnaires-section */
.questionnaires-section{
    padding: 80px 0 50px;
    background: url(../images/pa.jpg) 50% / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}
.questionnaires-section-inner{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.questionnaires-section-inner .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.questionnaires-section-inner .item{
    height: 100%;
    padding: 15px 15px 90px;
    border: 1px solid #fff;
    position: relative;
}
.questionnaires-section-inner .item .btn{
    position: absolute;
    bottom: 25px;
    left: 15px;
}
.questionnaires-section-inner .item-title{
    font-size: 20px;
    font-weight: 700;
}
@media(max-width: 767px){
    .questionnaires-section-inner{
        margin-left: 0;
        margin-right: 0;
    }
    .questionnaires-section-inner .col{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
/* /. questionnaires-section */


/* partners-section */
.partners-section{
    padding: 20px 0;
}
.partners-section .container-fluid{
    width: 1560px;
    margin: auto;
    max-width: 100%;
}

.logotypes-carousel-type1 .item-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logotypes-carousel-type1{
    margin-left: -15px;
    margin-right: -15px;
}
.logotypes-carousel-type1 > div{
    display: none;
}
.logotypes-carousel-type1.slick-slider > div{
    display: block;
}
.logotypes-carousel-type1 .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.logotypes-carousel-type1 .slick-slide {
    height: inherit;
}
.logotypes-carousel-type1 .item{
    margin: 0 15px;
}
.logotypes-carousel-type1 .slick-prev{
    left: -60px;
}
.logotypes-carousel-type1 .slick-next{
    right: -60px;
}
.logotypes-carousel-type1 a:hover{
    -webkit-filter: brightness(125%);
    filter: brightness(125%);
}
.logotypes-carousel-type1 .slick-dots li {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin: 0 8px 0;
    background: #BFBFBF;
}
.logotypes-carousel-type1 .slick-dots li.slick-active{
    background: #333;
}
/* /. partners-section */

/* index gallery */
.index-gallery{
    display: grid;
    grid-gap: 1px;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #fff;
}
.index-gallery .item{
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #2B2E3F;
}
.index-gallery .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-out 300ms;
}
.index-gallery .item:hover img{
    transform: scale(0.8);
}

@media(min-width: 768px){
    .index-gallery{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media(min-width: 992px){
    .index-gallery .col1{
        grid-area: ig-col1;
    }
    .index-gallery .col2{
        grid-area: ig-col2;
    }
    .index-gallery .col3{
        grid-area: ig-col3;
    }
    .index-gallery .col4{
        grid-area: ig-col4;
    }
    .index-gallery .col5{
        grid-area: ig-col5;
    }
    .index-gallery .col6{
        grid-area: ig-col6;
        height: 18.8vw;
    }
    .index-gallery .col7{
        grid-area: ig-col7;
        height: 18.8vw;
    }
    .index-gallery .col8{
        grid-area: ig-col8;
        height: 18.8vw;
    }
    .index-gallery{
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
            "ig-col1 ig-col2 ig-col2 ig-col3"
            "ig-col4 ig-col2 ig-col2 ig-col5"
            "ig-col6 ig-col7 ig-col7 ig-col8";
    }
}

.index-gallery .item-body{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 15px;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
    opacity: 0;
    transition: all ease-out 300ms;
    transform: scale(0);
}
.index-gallery .item-icons{
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-gallery .item-icons a{
    margin: 0 20px;
}
.index-gallery .item-icons-link{
    position: relative;
    top: -1px;
}
.index-gallery .item-icons-link svg{
    transform: rotate(90deg);
}
.index-gallery .item-title{
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0px 0px 0px;
    padding: 5px 10px 5px 10px;
    background: rgba(255,255,255,0.15);
    text-transform: uppercase;
    text-align: center;
}
.index-gallery .item:hover .item-body{
    transform: scale(1.0);
    opacity: 1;
}
.index-gallery .item-icons a:hover{
    transform: scale(1.1);
}
@media(max-width: 991px){
    .index-gallery .item-body{
        padding: 10px;
    }
    .index-gallery .item-title{
        font-size: 11px;
        font-weight: 500;
        margin: 12px 0px 0px 0px;
        padding: 3px 7px 3px 7px;
    }
    .index-gallery .item-icons a{
        margin: 0 15px;
    }
}
@media(max-width: 499px){
    .index-gallery .item-body{
        padding: 8px;
    }
    .index-gallery .item-title{
        font-size: 10px;
        line-height: 1.2;
        text-transform: none;
        margin: 5px 0px 0px 0px;
        padding: 0 3px 0 3px;
    }
    .index-gallery .item-icons a{
        margin: 0 10px;
    }
    .index-gallery .item-icons a:first-of-type svg{
        width: 20px;
        height: 20px;
    }
    .index-gallery .item-icons a:last-of-type svg{
        width: 16px;
        height: 16px;
    }
}
/* /. index gallery */


/* footer */
.footer {
    background: #2B2E3F;
    color: #9f9f9f;
}
.footer a{
    color: #9f9f9f;
}
.footer a:hover{
    color: #DE9C38;
}
.footer-top{
    padding: 30px 0;
}
.footer-top-inner{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.footer-top-inner .col{
    padding-left: 15px;
    padding-right: 15px;
    width: 33.3333%;
}
.footer-top-inner .item-title{
    color: #fff;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 20px;
}
.footer-top-inner .item-title:after{
    content:"";
    width: 50px;
    height: 3px;
    background: #DE9C38;
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer-text{
    margin-bottom: 20px;
}
.footer-contacts-item-element{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.footer-contacts-item-title{
    margin-bottom: 10px;
    text-transform: uppercase;
}
.footer-contacts-item-element .item-icon{
    width: 20px;
    position: relative;
    top: -2px;
}
.footer-contacts-item-element .item-body{
    width: calc(100% - 20px);
    padding-left: 15px;
}
.footer-contacts-item{
    margin-bottom: 20px;
}
.footer-top-inner .content ul>li:after{
    background: #9f9f9f;
}

.footer-bottom{
    background: #212330;
    padding: 20px 0;
}
.footer-bottom-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .social-buttons a{
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #2B2E3F;
    margin-left: 20px;
    padding: 10px;
}
.footer .social-buttons a:hover{
    background: #3B3F56;
}
@media(max-width: 991px){
    .footer{
        font-size: 13px;
    }
    .footer-top-inner{
        margin-left: -10px;
        margin-right: -10px;
    }
    .footer-top-inner .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer-top-inner .item-title{
        font-size: 18px;
    }
}
@media(max-width: 767px){
    .footer-top-inner{
        margin-left: 0;
        margin-right: 0;
    }
    .footer-top-inner .col{
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-top-inner .col:last-child{
        margin-bottom: 0;
    }
    .footer-bottom-inner{
        flex-wrap: wrap;
    }
    .copyright{
        width: 100%;
        margin-bottom: 20px;
    }
    .footer .social-buttons a:first-of-type{
        margin-left: 0;
    }
}
/* /. footer */

.base-template .main-content{
    padding-bottom: 60px;
}
.base-template-header{
    background: #EDEDED;
    padding: 90px 0 60px;
    margin-bottom: 70px;
}
.base-template-header h1{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}
@media(max-width: 767px){
    .base-template-header{
        padding: 30px 0;
        margin-bottom: 50px;
    }
    .base-template-header h1{
        font-size: 22px;
    }
}

/* Breadcrumbs */
.breadcrumb{
    font-size: 15px;
}
.breadcrumb > li {
    display: inline;
    color: #DE9C38;
    white-space: nowrap;
    text-transform: uppercase;
}
.breadcrumb > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #000;
}
.breadcrumb > li > a:after{
    content: '/';
    display: inline-block;
    text-align: center;
    margin-left: 4px;
    width: 20px;
    height: 20px;
    font-size: 18px;
    position: relative;
    top: -4px;
}
.breadcrumb > li > a:hover{
    color: #000;
}
.breadcrumb span,
.breadcrumb a{
    display: inline-block;
}
.breadcrumb span:first-letter,
.breadcrumb a:first-letter{
    text-transform: capitalize;
}
@media(max-width: 991px){
    .breadcrumb{
        display: flex;
        overflow: auto;
    }
}
@media(max-width: 767px){
    .breadcrumb{
        font-size: 13px;
    }
    .breadcrumb > li {
        text-transform: none;
    }
}
/* /. Breadcrumbs */ 

/* news-list */
.news-list .item{
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
}
.news-list .item .btn-min{
    height: 36px;
}
.news-list .item-introtext{
    margin-bottom: 20px;
}
.news-list .item-category-link{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news-list .item-date{
    color: #B4B4B4;
    margin-bottom: 10px;
    font-weight: 600;
}
.news-list .item h2{
    text-transform: uppercase;
    font-weight: 600;
}
.news-list .item h2 a{
    color: #444;
}
.news-list .item h2 a:hover{
    color: #DE9C38;
}
@media(max-width: 767px){
    .news-list .item h2{
        font-size: 18px;
    }
}
/* /. news-list */

/* srvices */
.srvices{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.srvices .col{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.srvices .item{
    position: relative;
}
.srvices .item:after{
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%);
}
.srvices .item-img{
    height: 440px;
    background: #444;
}
.srvices .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.srvices .item-title{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    z-index: 5;
}
.srvices .item-title > span{
    display: block;
    position: relative;
    padding: 5px 15px;
    width: 100%;
}
.srvices .item-title > span:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: #E33A0C;
    transition: all ease-out 300ms;
}
.srvices .item:hover .item-title > span:after{
    height: 100%;
}
.srvices .item-title span span{
    position: relative;
    z-index: 5;
    display: block;
}
@media(max-width: 1229px){
    .srvices .item-img{
        height: 36vw;
    }
    .srvices .item-title{
        font-size: 2.9vw;
    }
}
@media(max-width: 991px){
    .srvices{
        margin-left: -10px;
        margin-right: -10px;
    }
    .srvices .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width: 499px){
    .srvices .item-title > span {
        padding: 1vw;
    }
    .srvices .item-title{
        font-size: 3.2vw;
    }
    .srvices .item-title > span:after{
        height: 2vw;
    }
    .srvices{
        margin-left: -6px;
        margin-right: -6px;
    }
    .srvices .col{
        padding-left: 3px;
        padding-right: 3px;
        margin-bottom: 6px;
    }
}
/* /. srvices */

/* gallery */
.gallery{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.gallery .col{
    padding-left: 5px;
    padding-right: 5px;
    width: 25%;
    margin-bottom: 10px;
}
.gallery .item{
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.cert-gallery .item{
    box-shadow: 0 0 0 1px #ccc;
}
.gallery .item img{
    width: 100%;
}
.gallery .item-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(122,16,18,.4);
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: all ease-out 300ms;
}
.gallery .item-title{
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
    font-size: 16px;
}
.gallery .item:hover .item-content{
    opacity: 1;
}
.cert-gallery .col{
    width: 20%;
}
.cert-gallery .item:hover{
    transform: scale(1.05);
}
@media(max-width: 1229px){
    .gallery .item-content{
        padding: 1.5vw;
    }
    .gallery .item-title{
        font-size: 1.5vw;
    }
}
@media(max-width: 991px){
    .gallery .col{
        width: 33.33333%;
    }
    .gallery .item-content{
        padding: 2vw;
    }
    .gallery .item-title{
        font-size: 2vw;
    }
}
@media(max-width: 499px){
    .gallery .col{
        width: 50%;
    }
    .gallery .item-content{
        padding: 3vw;
    }
    .gallery .item-title{
        font-size: 3vw;
    }
}
/* /. gallery */

/* questionnaire-lists */
.questionnaire-list .item{
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
}
.questionnaire-list .item:last-child{
    margin-bottom: 0;
}
.questionnaire-list .item-icon{
    width: 150px;
}
.questionnaire-list .item-body{
    width: calc(100% - 150px);
    padding-left: 30px;
}
.questionnaire-list .item-title{
    position: relative;
    color: #808080;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.questionnaire-list .item-title:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 8px;
    background: #444444;
}
.questionnaire-list .item-description{
    font-weight: normal;
    margin-bottom: 30px;
    font-size: 16px;
}
@media(max-width: 767px){
    .questionnaire-list .item{
        margin-bottom: 60px;
    }
    .questionnaire-list .item-icon{
        width: 100px;
    }
    .questionnaire-list .item-body{
        width: calc(100% - 100px);
        padding-left: 10px;
    }
    .questionnaire-list .item-title{
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .questionnaire-list .item-title:after{
        width: 70px;
        height: 5px;
    }
    .questionnaire-list .item-description{
        margin-bottom: 20px;
        font-size: 14px;
    }
    .questionnaire-list .item-more .btn{
        height: 42px;
        font-size: 14px;
    }
}
@media(max-width: 499px){
    .questionnaire-list .item-icon{
        width: 70px;
    }
    .questionnaire-list .item-body{
        width: calc(100% - 70px);
    }
    .questionnaire-list .item-title{
        font-size: 17px;
    }
    .questionnaire-list .item-title:after{
        width: 60px;
        height: 4px;
    }
    .questionnaire-list .item-description{
        font-size: 13px;
    }
}
/* /. questionnaire-lists */

/** contacts page **/
.contacts-container{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 30px;
}
.contacts-container .col{
    padding-left: 15px;
    padding-right: 15px;
    width: 33.3333%;
    margin-bottom: 30px;
}
.contacts-container .item-title{
    text-transform: uppercase;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 16px;
}
.contacts-item-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 7px;
}
.contacts-container .item-icon{
    width: 20px;
    position: relative;
    top: -1px;
}
.contacts-container .item-body{
    width: calc(100% - 20px);
    padding-left: 10px;
    font-weight: normal;
}

.feedback-form form{
    background: #444444;
    padding: 30px;
}
.feedback-form .agreement{
    color: #fff;
}
.feedback-form-title{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}
.feedback-form-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.feedback-form-row .col{
    padding-left: 5px;
    padding-right: 5px;
    width: 33.3333%;
}
.feedback-form a{
    color: #fff;
}
.feedback-form a:hover{
    color: #fff;
    text-decoration: none;
}
.feedback-form .btn:hover{
    background: #444444/*#7A1012*/;
    border: 1px solid #fff; /*отсутствует*/
}

@media(max-width: 767px){
    .contacts-container{
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .contacts-container .col{
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .feedback-form-row{
        margin-left: 0;
        margin-right: 0;
    }
    .feedback-form-row .col{
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
}

/* file upload */
.file-input-container{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.825rem 1.65rem;
}
.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

/* style 2 */
.inputfile-2 + label {
    color: #fff;
    border: 2px solid currentColor;
}
.inputfile-2:focus + label,
.inputfile-2.has-focus + label,
.inputfile-2 + label:hover {
    color: #ccc;
}

/* /. file upload */

/** /. contacts page **/


/* news | services page */
.page-date{
    margin-bottom: 30px;
    font-weight: bold;
    color: #B4B4B4;
    font-size: 16px;
}
.page-section-top{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 30px;
}
.page-section-top .col{
    padding-left: 15px;
    padding-right: 15px;
}
.page-section-top .col1,
.page-section-top .col + .col{
    width: 50%;
}
.content-slider .item img{
    width: 100%;
}
.content-slider .slick-dots{
    margin-top: 20px;
}
.content-slider .slick-dots li:not(.slick-active){
    background: #ccc;
}

.infoblock{
    margin: 20px 0;
    background: #F0F0F0;
    border-bottom: 5px solid #D4D4D4;
    border-radius: 5px;
    padding: 30px;
    color: #666666;
}
.infoblock h2{
    font-size: 27px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
}
.infoblock h4{
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 30px;
}
.infoblock .btn{
    margin-top: 30px;
    font-weight: 300;
    font-size: 15px;
    text-transform: none;
    border-radius: 5px;
    background: #F7BE68;
    box-shadow: 0 5px 0 #f4a733;
}
.infoblock .btn:hover{
    box-shadow: 0 2px 0 #f4a733;
    transform: translateY(3px);
}

@media(max-width: 991px){
    .page-section-top{
        margin-left: 0;
        margin-right: 0;
    }
    .page-section-top .col1,
    .page-section-top .col + .col{
        width: 100%;
    }
    .page-section-top .col{
        padding-left: 0;
        padding-right: 0;
    }
    .page-section-top .col1{
        margin-bottom: 30px;
    }
    .infoblock{
        padding: 20px;
    }
    .infoblock h2{
        font-size: 22px;
    }
    .infoblock h4{
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 20px;
    }
    .infoblock .btn{
        margin-top: 20px;
    }
}
/* /. news | services page */

/* features-section */
.features-section-inner{
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-right: 15px;
}
.features-section-inner .col{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.features{
    padding-left: 40px;
    position: relative;
}
.features:before{
    content:"";
    width: 3px;
    background: #E5E5E5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
}
.features .item{
    margin-bottom: 5px;
    border: 1px solid #E5E5E5;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: default;
}
.features .item:before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: -7px;
    margin-top: -7px;
    transform: rotate(45deg);
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-left: 1px solid rgba(0,0,0, 0.1);
    border-bottom: 1px solid rgba(0,0,0, 0.1);
}
.features .item:after{
    content:"";
    width: 18px;
    height: 18px;
    border: 3px solid rgba(0,0,0, 0.1);
    position: absolute;
    left: -41px;
    top: calc(50% - 9px);
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 0 0 5px #fff;
    transition: all 0.3s ease-in-out;
}
.features .item:hover{
    transform: translateX(-7px);
    border-color: #DE9C38;
}
.features .item:hover:after{
    transform: translateX(7px);
    background: #DE9C38;
    border-color: #CD810E;
}
.features .item:hover:before{
    border-color: #DE9C38;
}
@media(max-width: 767px){
    .features-section-inner{
        margin-left: 0;
        margin-right: 0;
    }
    .features-section-inner .col{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
}
/* /. features-section*/

/* q-list inner page*/
.q-page-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.q-page-row .col{
    width: 45%;
}
.q-page-row-title{
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid;
}
.q-page-row .form-control{
    background: #F8F8F8;
}
.form-groups-title{
    margin-bottom: 30px;
    margin-top: 40px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}


.checkbox label{
    padding-left: 25px;
    position: relative;
    height: 16px;
    line-height: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
}
.checkbox label input{
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
.checkbox label > div{
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    display: block;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.25);
    transition: 300ms all;
    border-radius: 2px;
}
.checkbox label:hover > div{
    border-color: #C0C0C0;
}
.checkbox label > div.radio{
    border-radius: 100%;
}
.checkbox label > div.radio:before{
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    content: '';
    display: block;
    background-color: #595959;
    border-radius: 100px;
    opacity: 0;
    transform: scale(0);
    transition: 300ms all;
    border: 4px solid #F8F8F8;
}
.checkbox input:checked + .radio{
    border-color: #C0C0C0;
    background-color: #C0C0C0;
}
.radio{
    min-height: 1px;
}
.checkbox input:checked + .radio:before{
    opacity: 1;
    transform: scale(0.95);
}

.radio-inputs-group-title{
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
}
.radio-inputs-group{
    display: flex;
    flex-wrap: wrap;
}
.radio-inputs-group .checkbox{
    margin-right: 20px;
}
.download-pdf{
    font-weight: normal;
    font-size: 14px;
}
.download-pdf svg{
    margin-right: 10px;
}

.q-page-row .inputfile-2 + label{
    color: #444;
}
.q-page-row .inputfile-2:hover + label{
    color: #db9224/*#7A1012*/;
}
.q-page-row .file-input-container {
    justify-content: flex-start;
}

@media(max-width: 991px){
    .q-page-row .col{
        width: calc(50% - 15px);
    }
}
@media(max-width: 767px){
    .q-page-row .col{
        width: 100%;
    }
    .q-page-row .col1{
        order: 2;
    }
    .q-page-row .col2{
        order: 1;
        margin-bottom: 40px;
    }
    .download-pdf{
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
    .download-pdf svg{
        width: 50px;
        margin-right: 5px;
    }
}
/* /. q-list inner page*/








