/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
	padding: 0px;
	margin: 0px;
    font-family: 'Poppins', sans-serif;
	color: #444444;
	font-size: 16px;
	line-height: 22px;
	background-color: #F2F2F2;
}

/** header ********************************************************************/

.header {
	padding: 10px 15px;
	background-color: #fff;
    border-bottom: 1px solid #EEEEEE;
}

.header-inner {
    max-width: 1170px;
    margin: auto;
}

.header-logo img{
    max-height: 55px;
}

.header-top {
    padding: 10px 15px;
    background-color: #FFF;
    font-size: 13px;
    border-bottom: 1px solid #EEEEEE;
}

.header-contact-box {
    display: inline-block;
    padding-right: 30px;
    position: relative;
}

.header-contact-box .icon{
    color: #ED1C24;
    font-size: 20px;
    position: absolute;
    left:0;
}

.header-contact-box .text{
    padding-left: 25px;
    color: #858585;
}

.header-contact-box .text b{
    font-weight: 600;
    color: #444444;
}

.header-language-box{
    display: inline-block;
    border-left: 1px solid #EEEEEE;
    padding-left: 15px;
}

.header-language-box img{
    max-height: 16px;
    padding-left: 3px;
    opacity: 0.5;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}

.header-language-box img:hover{
    opacity: 1;
}

.header-language-box .active{
    opacity: 1;
}

.header-box-table{
    display: table;
    font-size: 14px;
    font-weight: 500;
}

.header-box-table-col{
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.header-box-table-col-content{
    padding-left: 40px
}

.header-box-table-col .divider{
    margin: 0 20px;
    width: 1px;
    height: 30px; 
    background-color: #EEEEEE;  
}

.header .btn {
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 7px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.header .btn:hover {
    background-color: #C9101A;
}

.header .btn .lnr{
    font-size: 16px;
    padding-left: 5px;
}

/* navigation desktop */
.header-navigation-desktop{
    text-transform: uppercase;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.header-navigation-desktop .link{
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    color: #333 !important;
    margin-left: 15px;
    font-weight: 600;
    line-height: 20px;
    border-top: 3px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
}

.header-navigation-desktop .link:hover{
    border-bottom: 1px solid #ED1C24;
}

.header-navigation-desktop .link-active{
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    color: #ED1C24 !important;
    margin-left: 15px;
    padding: 0px;
    font-weight: 600;
    line-height: 20px;
    border-top: 3px solid transparent;
    border-bottom: 1px solid #ED1C24;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
}

.header-navigation-desktop .link-active:hover{
    border-bottom: 1px solid #ED1C24;
}
/* end navigation descktop */

/* navigation mobile */
.header-navigation-mobile {
    display: none;
}

.header-navigation-mobile .menu-tab {
    width: 90px;
    height: 70px;
    position: absolute; /*fixed;*/
    z-index: 100;
    top: -30px;
    right: 0px;
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /*end of div*/
}
.header-navigation-mobile .menu-tab div {
    width: 30px;
    height: 3px;
    background-color: #6D6E70;
    display: block;
    margin: 6px 28px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.header-navigation-mobile .menu-tab div:nth-child(1) {
    margin-top: 20px;
}

.header-navigation-mobile .menu-tab.active {
    right: 250px;
    -webkit-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    z-index: 5005;
    /*background-color: #333 /*rgba(255, 255, 255, 0.2);*/
}
.header-navigation-mobile .menu-tab.active #one {
    -webkit-transform: translateY(9px) rotate(-135deg);
    transform: translateY(9px) rotate(-135deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #ED1C24;
}
.header-navigation-mobile .menu-tab.active #two {
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}
.header-navigation-mobile .menu-tab.active #three {
    -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #ED1C24;
}

.header-navigation-mobile .menu-hide {
    width: 260px;
    right: -260px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    top: 0px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    padding-top: 30px;
    /*end of nav*/
}
.header-navigation-mobile .menu-hide nav {
    /*end of ul*/
}
.header-navigation-mobile .menu-hide nav ul {
    /*end of li*/
    margin-left: -40px;
}
.header-navigation-mobile .menu-hide nav ul li {
    height: 35px;
    list-style-type: none;
    text-align: left;
    line-height: 35px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.header-navigation-mobile .menu-hide nav ul li:hover {
    background-color: transparent;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.header-navigation-mobile .menu-hide nav ul li a {
    padding: 0 30px;
    text-decoration: none;
    color: #f1f1f1;
    font-size: 20px;
    font-family: "Poppins", Arial; 
    text-transform: uppercase;
    display: block;
}

.header-navigation-mobile .menu-hide nav ul li a:link {
    color: #eee !important;
}

.header-navigation-mobile .menu-hide.show {
    right: 0px;
    background-color: #ED1C24;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    z-index: 5004;
}

.header-navigation-mobile .overflow-y-hidden{
    overflow-y: hidden;
}

.header-navigation-mobile .menu_border {
    border-top: 1px solid #ffffff;
    height: 10px !important;
}

.header-navigation-background {
    z-index: 1003;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .9);
    overflow: hidden;
    text-align: center;
    display: none;
    /*-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;*/
}

.header-navigation-background-show {
    display: block !important;
}
/* end navigation mobile */

/** content *******************************************************************/

.content {
    padding: 0 15px;
    background-color: #FFFFFF;
}

.content-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 15px;
}

.content-shadow {
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.15);
}

.page-title {
    color: #2C2C2C;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-title-divider {
    background-color: #ED1C24;
    height: 3px;
    width: 60px;
    margin: 15px 0 30px 0;
}

.page-title-divider-center {
    width: 60px;
    height: 3px;
    background-color: #ED1C24;
    margin: 10px auto 30px auto;
}

.page-text {
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}

.btn-default {
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 10px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.btn-default:hover {
    background-color: #C9101A;
}

.home-img{
    -webkit-box-shadow: -20px 20px 0px 0px rgba(242,242,242,1);
    -moz-box-shadow: -20px 20px 0px 0px rgba(242,242,242,1);
    box-shadow: -20px 20px 0px 0px rgba(242,242,242,1);
}

.content-services-home{
    background-color: #F2F2F2;
    background-image: url(../images/bg-services-home.png);
    background-position: center;
}

/* content grey */
.content-grey{
    background-color: #F2F2F2;
    background-position: center;
}

.content-grey .content-inner-left {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.content-grey .content-inner-right {
    float: left;
    width: 100%;
    max-width: 615px;
    padding: 45px;    
}

.content-grey .content-inner-left div{
    padding-top: 50%;
}

/* actuely */
.slider-services-box{
    position: relative;
}

.slider-services-box .arrow-left{
    position: absolute; 
    top: 30px; 
    left:-40px;
    z-index: 99;
}
.slider-services-box .arrow-left img{
    max-height: 50px;
    cursor: pointer;
}

.slider-services-box .arrow-right{
    position: absolute; 
    top: 30px; 
    right:-40px;
    z-index: 99;
}
.slider-services-box .arrow-right img{
    max-height: 50px;
    cursor: pointer;
}

.slider-services .service-box{
    background-color: #fff; 
    text-align: center;
    min-height: 382px;
}

.slider-services .image{
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: cover;  
    padding-top: 62%;   
}

.slider-services .content{
    background-color: #fff;
    padding: 30px 20px; 
}

.slider-services .title{
    color: #2C3134;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 15px;
}

.slider-services .more{
    position: absolute; 
    bottom: 30px;
    width: 100%;
    padding: 0 20px;
}

/* end actuely */


/** slider main  **/
.slider-main {
    height: 100% !important;
    overflow: hidden;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);*/
    background-color: #fff;
}

.slider-main .item {
    height: 600px;
    background-color: #fff;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider-main .item .text-box {
    margin: 0 auto; 
    max-width: 1170px; 
    padding: 0 15px;
    position: absolute;
    left:0; 
    right: 0; 
    bottom: 10%;
    text-align: center;
}

.slider-main .item .text-box .title {
    display: inline-block;
    background-color: rgb(0,0,0,0.5);
    padding: 12px 20px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.slider-main .item .text-box .description {
    display: inline-block;
    background-color: rgba(0,0,0, 0.5);
    padding: 8px 20px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #FFD211;
    text-transform: uppercase;
}

.slider-main-box{
    position: relative;
}

.slider-main-box:hover .arrow-left, .slider-main-box:hover .arrow-right{
    visibility: visible;
    opacity: 1;
}

.slider-main-box .arrow-left{
    position: absolute;
    top: 265px;
    left: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;  
}
.slider-main-box .arrow-left img{
    max-height: 70px;
    cursor: pointer;
}

.slider-main-box .arrow-right{
    position: absolute;
    top: 265px;
    right: 30px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
}
.slider-main-box .arrow-right img{
    max-height: 70px;
    cursor: pointer;
}

.slider-main-box .btn {
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    text-transform: uppercase; 
    padding: 10px 25px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.slider-main-box .btn:hover {
    background-color: #C9101A;
}
/** end slider main **/

/* Working machines home */
.working-machines-home-box{
}

.working-machines-home-box .image-box{
    overflow: hidden;
    position: relative; 
}

.working-machines-home-box .image-box .image{
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: cover;  
    padding-top: 63%; 
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out; 
    cursor: pointer; 
}

.working-machines-home-box .image-box .image:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden;  
}

.working-machines-home-box .title{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    padding-top: 10px;
} 

.working-machines-home-box .description{
    text-transform: uppercase;
    font-weight: 400; 
    color: #878787;
    font-size: 14px;
    line-height: 16px;
}
/* end Working machines home */

/* video box */
.content-video-home{
    background-color: #F2F2F2;
    background-image: url(../images/bg-services-home.png);;
    background-position: center;
}

.content-video-home .content-inner-left {
    float: right;
    width: 100%;
    max-width: 615px;
    padding: 80px 45px;
}

.content-video-home .content-inner-right {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.content-video-home .content-inner-right div{
    padding-top: 60%;
}

.content-video-home .content-inner-right .btn-play{
   position:absolute;
   top: calc(50% - 63px); 
   left: calc(50% - 63px); 
   border-radius: 50%;
   box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
   transform: scale(1);
   animation: btn-play-pulse 1s infinite;
}

@keyframes btn-play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(255,255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* end video box */

.content-clients-home{
    border-bottom: 1px solid #EEEEEE;
    min-height: 125px;
}

.content-clients-home .content-inner {
    padding: 30px 0;
}

/* news */
.news{
    margin-bottom: 30px;
}

.news .news-box{
    background-color: #fff; 
    position: relative;
    border: 1px solid #EEEEEE;
}

.news .image{
    background-repeat: no-repeat !important; 
    background-position: center center; 
    background-size: cover;  
    padding-top: 62%;
    cursor: pointer; 
    position: relative;
    border-bottom: 3px solid #FDB900;  
}

.news .image .badge{
    position: absolute;
    bottom: -15px;
    right: 25px;
    padding: 8px 10px;
    background-color: #FDB900;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0; 
    font-weight: 400;
}

.news .content{
    background-color: #fff;
    padding: 25px;
    
    border-top: 0px;
}

.news .title{
    padding-bottom: 15px;
    cursor: pointer; 
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.news .text{
    color: #666;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.news .date-divider {
    height: 1px;
    background-color: #EEEEEE;
    margin: 15px 0;
}

.news .more{
    position: absolute; 
    bottom: 15px;
    width: 100%;
    padding: 0 25px;
}

.news .date, .date-news-view{
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.news .date i, .date-news-view i{
    padding-right: 5px;
}

.news .btn-more-news{
    color: #ED1C24;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600; 
    text-decoration: none; 
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s; 
    cursor: pointer;  
}

.news .btn-more-news:hover{
    color: #222;   
}

.btn-more-news-view{
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 3px 10px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
}

.btn-more-news-view:hover{
    background-color: #C9101A;
}

.news-view-image {
    max-width: 500px;
    float: left;
    padding: 0 30px 10px 0;
}

.news-view-text{
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    text-align: justify;    
}

a.news-view-all:link    { color: #ED1C24; text-decoration: underline; font-size: 14px; font-family: 'Poppins', Arial; padding-left: 25px; text-transform: none;}
a.news-view-all:visited { color: #ED1C24; text-decoration: underline; font-size: 14px; font-family: 'Poppins', Arial; padding-left: 25px; text-transform: none;}
a.news-view-all:hover   { color: #ED1C24; text-decoration: underline; font-size: 14px; font-family: 'Poppins', Arial; padding-left: 25px; text-transform: none;}
a.news-view-all:active  { color: #ED1C24; text-decoration: underline; font-size: 14px; font-family: 'Poppins', Arial; padding-left: 25px; text-transform: none;}


/* image hover */ 
.gallery-hover{
    padding: 0 15px;
}
.gallery-hover .image-hover {
    position:relative;
    font-size: 20px;
    line-height: 22px;
    color:#fff; 
    transition: .5s ease;
    cursor: pointer; 
}
.gallery-hover .image-hover-content {
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 70%
}
.gallery-hover .image-hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 25px;
    opacity:0;
    background: rgba( 0, 0, 0, .5 );
    color:#fff;
    transition: .5s ease; 
    
}
.gallery-hover .image-hover:hover .image-hover-overlay{
    opacity:1;
    transition: .5s ease; 
}

.gallery-hover .image-hover-overlay-btn{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 46px;
    border: 1px solid #fff;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.gallery-hover .col-padding{
    padding-right: 1px;
    padding-left: 0;
    padding-bottom: 1px;
}
/* end image hover */

/* reference box */
.content-reference-box{
    background-color: #fdb900; 
    padding: 50px; 
    color: #000000; 
}
.content-reference-box .title{
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 40px;
    padding-bottom: 15px;
}
/* end reference box */            

/* contact page */
.contact-info{
    padding-left: 40px;
    position: relative;
    padding-bottom: 30px;
}

.contact-info .title{
    font-weight: 600;
    color: #323232;
    padding-bottom: 5px;
}

.contact-info .text{
    color: #777;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;   
}

.contact-info .icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    text-align: center;
}

.contact-info .icon i{
    font-size: 26px;
    color: #cecfd0;
}

.contact-info a{
    color: #777 !important;
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 300 !important;  
}

.contact-info a:hover{
    color: #ED1C24 !important; 
}

.contact-form {
    box-shadow: 0 14px 35px rgba(49, 49, 49, 0.08);
    background: #fff;
    padding: 45px 45px 30px 45px;
}

.contact-form .alert-error {
    background-color: #EB1923;
    color: #fff;
    padding: 10px 15px !important;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form .form-control-custom {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    background-color: #F7F7F7;
    background-clip: padding-box;
    border: 0px solid #ced4da; 
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    min-height: 50px !important;
    padding-left: 20px;
}
.contact-form .form-btn-send{
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 7px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
    border: none;
}

.contact-form .form-btn-send:hover { 
    background-color: #C9101A;
}

.contact-form .form-btn-send:focus {
    background-color: #C9101A;
}

.contact-form .form-help-block {
    color: #EB1923;
    display: block;
    font-size: 12px;
    padding-top: 5px;   
}

.contact-form .modal-content {
    border-width: 0 !important;
    border-radius: 0 !important;
    max-width: 600px;
}

.contact-form .modal-header{
    /*background-color: #ED1C24;
    border-radius: 0;
    color: #fff;*/
}

.contact-form .modal-header h5 {
    font-size: 20px;
    font-family: 'Montserrat', Arial;
    text-transform: uppercase;
}

.contact-form .modal-header .close {
    color: #fff;
    text-shadow: none;
}

.contact-form .modal-text-success{
    line-height: 24px;
    font-size: 16px;
    padding-bottom: 20px;
    font-weight: 300;
}

.contact-form .btn-close-modal {
    background-color: #ED1C24;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 7px 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    border-radius: 25px;
    border: none;
}
.contact-form .btn-close-modal:hover { 
    background-color: #C9101A;
}

.contact-form .btn-close-modal:focus {
    background-color: #C9101A;
}

.contact-map{
    border-bottom: 1px solid #999;
    border-bottom: 1px solid #fff;
}

.contact-map .box{
    background-color: #eee;
    height: 400px;
}

.contact-map .box .bubbleclass{
    font-size: 14px !important;
    /*background: #E9242C;*/
    fill: #E9242C !important;
}

.contact-map .box .bubbleclass .H_ib_body{
    background-color: rgba(0,0,0,.8) !important; 
    padding: 10px 20px 10px 10px !important;
    min-width: 250px !important;
    line-height: 20px !important;
}
/* end contact page */

#CON_all_rect_box {
    left: 30px;
}

/** footer ********************************************************************/

.footer {
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    line-height: 22px;
    background-color: #F2F2F2;
    font-weight: 300;
}

.footer-inner {
    max-width: 1170px;
    margin: auto;
    padding: 80px 15px 0 15px;
}

.footer-inner .title{
    color: #333;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}

.footer-inner .logo{
    max-width: 200px;
}

.footer-navigation {
    padding-bottom: 8px;
}

.footer-navigation i {
    font-size: 13px;
    padding-right: 5px;
    color: #ccc;
}

.footer-contact {
    padding-bottom: 8px;
}

.footer-contact i {
    color: #006BAA;
    font-size: 18px;
    padding-right: 5px;
}

.footer-contact b {
    font-weight: 500;
    color: #333;
}

.footer-social {
    display: inline-block;
    color: #fff;
    background-color: #ED1D24;
    border-radius: 4px;
    font-size: 16px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.footer-social:hover {
    background-color: #C9101A;
}

.footer-copyright {
    padding: 15px 0;
    font-size: 13px;
    border-top: 1px solid #DEDFE0;
}

a.link-footer:link    { color: #333; text-decoration: none; font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer:visited { color: #333; text-decoration: none; font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer:hover   { color: #ED1C24; text-decoration: none; font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer:active  { color: #ED1C24; text-decoration: none; font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 500;}

a.link-footer-navigation:link    { color: #333; text-decoration: none; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer-navigation:visited { color: #333; text-decoration: none; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer-navigation:hover   { color: #ED1C24; text-decoration: none; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 500;}
a.link-footer-navigation:active  { color: #ED1C24; text-decoration: none; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 500;}

/** end footer ****************************************************************/

/** max 1280  *****************************************************************/
@media screen and (max-width: 1280px){
    .slider-services-box .arrow-right{
        right: -15px;
    }
    .slider-services-box .arrow-left{
        left: -15px;
    }
}

/** max 1200  *****************************************************************/
@media screen and (max-width: 1200px){
    .content-slider-main-inner {
        padding: 0;
    }
}

/** max 1100  *****************************************************************/
@media screen and (max-width: 1100px){
    #download-catalog-text {
        display: none;
    }
}

/** max 992 *******************************************************************/
@media screen and (max-width: 992px){
    .header-navigation-mobile {
        display: block;
    }
    
    .slider-main .item .text-box .title {
        padding: 10px 15px;
        font-size: 30px;
        line-height: 30px;
    }

    .slider-main .item .text-box .description {
        padding: 5px 15px;
        font-size: 18px;
        line-height: 18px;
    }
    
    .news-view-image {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }
    
    .page-title{
        font-size: 36px;
        line-height: 46px;
    }
    
    .content-video-home .content-inner-left {
        padding: 40px 15px;
    }
    
    .content-grey .content-inner-right {
        padding: 15px;
    }
}


/** max 768 *******************************************************************/
@media screen and (max-width: 768px){
    
    .content-inner {
        padding: 50px 15px;
    }
    
    .slider-main .item .text-box .title {
        padding: 10px 15px;
        font-size: 18px;
        line-height: 18px;
    }

    .slider-main .item .text-box .description {
        padding: 5px 15px;
        font-size: 14px;
        line-height: 14px;
    }
}

/** max 560 *******************************************************************/
@media screen and (max-width: 574px){}