/*==BEGIN: ABOUT==*/
.top-about {    
    margin-bottom: 60px
}
.top-about .col:first-child {    
    background-color: #e4312c;    
    position: relative;
}
.vnt-about .triangle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -120px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #e4322c;
}
.vnt-about .line {  
    position: absolute;
    bottom: -22px;
    right: -52px;
    z-index: 2;
    width: 3px;
    height: 66%;
    transform: rotate(37deg);
    -webkit-transform: rotate(37deg);
    -moz-transform: rotate(37deg);
    -o-transform: rotate(37deg);
    -ms-transform: rotate(37deg);
    background-color: #FFFFFF;
}
.vnt-about .name-company {        
    color: #FFFFFF;           
    border-left: 5px solid rgba(255,255,255,.8);
    padding-left: 25px
}

.vnt-about .name-company .t1 {
font-size: 30px;
line-height: 40px;
font-weight: 700;
text-transform: uppercase;
}
.vnt-about .name-company .t2 {
    font-size: 28px;
line-height: 40px;
    position: relative;       
}
.top-about .big-logo {
    text-align: center;
    padding-right: calc((100% - 1170px)/2);
}
.top-about .big-logo img {
    max-height: 286px
}
.vnt-about .row-grid { 
    margin-bottom: 50px;
    background-color: #f2f2f2;    
}
.vnt-about .row-grid .the-content {
    position: relative;
    padding: 20px 0
}
.vnt-about .quote { 
    position: absolute;    
    line-height: 26px;
    color: #f1dede;
    font-weight: bold;
    font-style: normal;
}
.vnt-about .the-content .content {
    font-size: 18px;
    line-height: 26px;
    color: #666666;
    font-weight: 300;
    text-align: justify;    
}
.vnt-about .row-grid .img {
    position: relative;
}
.polygon-clip-pentagon1, .vnt-about .row-grid:nth-child(2n+1) .img:before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 7% 11%, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 7% 11%, 0 0);
    -webkit-clip-path: url(#polygon-clip-pentagon1);
    clip-path: url(#polygon-clip-pentagon1);
}
.polygon-clip-pentagon2, .vnt-about .row-grid:nth-child(2n) .img:before {
    -webkit-clip-path: polygon(0 0, 100% 0, 93% 11%, 93% 100%, 0 100%, 0 11%, 0 0);
    clip-path: polygon(0 0, 100% 0, 93% 11%, 93% 100%, 0 100%, 0 11%, 0 0);
    -webkit-clip-path: url(#polygon-clip-pentagon2);
    clip-path: url(#polygon-clip-pentagon2);
}
.vnt-about .row-grid .img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 1;
    background-color: rgba(0,0,0,.1);  
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;  
}
.vnt-about .row-grid .img img {
    width: 100%;
    -moz-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vnt-about .row-grid .img:hover img {
    -moz-filter: grayscale(0);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);    
}
.vnt-about .row-grid .img:hover:before {
    opacity: 0;
}
.clip-svg {
    width: 0;
    height: 0;
}
/*=========GALLERY========*/
.grid {
  text-align: center;
  max-width: 100vw;
  margin: 0 -15px 25px;
}
/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}
.grid-item {
    display: block;
    float: left;
    padding: 15px;
    width: 33.33333333%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}
.grid a,
.grid img {
    outline: none;
    border: none;
    display: block;
    width: 100%;
}
@-webkit-keyframes fadeInFlip {
    0% {
        opacity: 0;
        -moz-transform: rotateX(-80deg);
        -ms-transform: rotateX(-80deg);
        -webkit-transition: rotateX(-80deg);
        -o-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
    }
    100% { 
        opacity: 1;
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -webkit-transition: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}

@keyframes fadeInFlip {
    0% {
        opacity: 0;
        -moz-transform: rotateX(-80deg);
        -ms-transform: rotateX(-80deg);
        -webkit-transform: rotateX(-80deg);
        -o-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
    }
    100% { 
        opacity: 1;
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}
.fadeInFlip {
    -webkit-animation: fadeInFlip .8s ease-in-out forwards;
    animation: fadeInFlip .8s ease-in-out forwards;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards
}
.vnt-gallery .gallery {
    position: relative;
    overflow: hidden;
}
.vnt-gallery .gallery .tend {
    padding: 9px 20px;
    background-color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 23px;
    color: #e4312c;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}
.vnt-gallery .gallery .tend span {
    position: relative;
    z-index: 1;
}
.vnt-gallery .gallery .tend:before {
    position: absolute;
    top: 0;
    right: 100%;
    left: 0;
    bottom: 0;
    content: '';
    background-color: rgba(228,49,44,.7);
    -moz-transform: all 0.3s linear;
    -ms-transform: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vnt-gallery .gallery:hover .tend:before {
    right: 0
}
.vnt-gallery .gallery:hover .tend {
    color: #FFFFFF
}
/*-------------GALLERY DETAIL-------------*/
.vnt-gallery .topTitle {
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 20px
}
.vnt-gallery .topTitle .ds_date {
    color: #8d8c8c;
}
.vnt-gallery .boxSelect {
    width: 300px
}
.vnt-gallery .boxSelect select {
    height: 40px;
    border: 1px solid #cdcdcd;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
}
.vnt-gallery .boxSelect select option {
    padding: 5px 0
}
.grid-detail .gallery {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}
.vnt-gallery .gallery a {
    display: block;
    position: relative;
    overflow: hidden;
}
#grid-detail .gallery a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;    
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
#grid-detail .gallery a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: FontAwesome;
    content: "\f065";    
    color: #FFFFFF;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
#grid-detail .gallery:hover a:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}    
#grid-detail .gallery:hover a:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
/*-------------CATALOGUE-------------*/
.vnt-catalogue .row-grid {
    position: relative;
    border: 1px solid #dddddd;  
    margin-bottom: 40px  
}
.vnt-catalogue .row-grid:nth-child(2n) {
    flex-direction: row-reverse;
}
.vnt-catalogue .row-grid .img {
    background-color: #f5f5f5;
    text-align: center;
}
.vnt-catalogue .catalogue {
    padding: 50px 60px
}
.vnt-catalogue .row-grid .img {
    position: relative;
}
.vnt-catalogue .catalogue .tend {
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
}
.vnt-catalogue .catalogue .att {
    margin: 15px 0 30px;
    font-size: 18px;
    line-height: 24px;
}
.vnt-catalogue .catalogue .att p {
    padding: 0
}
.vnt-catalogue .catalogue .des {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 70px
}
.vnt-catalogue .catalogue .link a {
    display: inline-block;
    line-height: 24px;
    background: #bbbbbb;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 60px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.vnt-catalogue .catalogue .link a:hover {
    background-color: #e3312b
}
.catalogue-list .i-catalogue {
    text-align: center;
    margin-bottom: 40px
 }
.i-catalogue .img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f5f5f5
}
.i-catalogue .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 100%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.i-catalogue .img:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}
.i-catalogue .tend {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    height: 48px;
    margin: 12px 0
}
.i-catalogue .link {
    padding-top: 15px;
    border-top: 1px solid #dbdbdb;   
}
.i-catalogue .link a {
    font-weight: 700;
    text-transform: uppercase;;
    color: #ed1c24
}
#popup-catalogue {
    width: 650px;
    padding:25px 70px 50px;
    margin: auto;
}
#popup-catalogue .img {
    text-align: center;
}
#popup-catalogue img {
    max-height: 53px;
}
#popup-catalogue .title {
    font-size: 22px;
    line-height: 24px;
    margin: 25px 0 35px;
    text-align: center;
    text-transform: uppercase;
}
#popup-catalogue .form-control {
    width: 100%;
    height: 50px;
    font-size: 16px;
    border-color: #999999
}
#popup-catalogue .send-btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: none;
    background-color: #e4312c;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500
}
#popup-catalogue .send-btn span {
    position: relative;
    z-index: 1;
    padding-right: 40px
}
#popup-catalogue .send-btn span:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/download-icon.svg) 0 0 no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*==========================================================================*/
/*============================RESPONSIVE====================================*/
/*==========================================================================*/
@media all and (min-width: 1200px) { 
    .top-about .col:first-child {
        padding-left: calc((100% - 1170px)/2);        
    }
    .vnt-about .row-grid:nth-child(2n+1) .the-content {
        margin-left: calc((100% - 1170px)/2);        
    }
    .vnt-about .row-grid:nth-child(2n) .the-content {
        padding-right: calc((100% - 1170px)/2);
    }    
}
@media all and (min-width: 992px) {    
    .top-about .col:first-child {
        width: 50.75%;
        height: 320px;        
    }
    .vnt-about .triangle {        
        border-width: 160px 0 160px 120px;    
    }
    .top-about .big-logo {
        width: 49.25%;
        padding-left: 120px
    }        
    .vnt-about .row-grid:nth-child(2n) {
        flex-direction: row-reverse;
    }
    .vnt-about .the-content {
        width: 53%;
    }
    .vnt-about .row-grid:nth-child(2n+1) .the-content {
        padding-right: 60px
    }
    .vnt-about .row-grid:nth-child(2n) .the-content {
        padding-left: 60px
    }
    .vnt-about .grid .img {
        width: 47%;
    }
    .vnt-about .quote {       
        top: 25px;
        font-size: 200px;
        letter-spacing: -12px;
    }
    .vnt-about .row-grid .quote {
        left: -90px;
    }
    .vnt-about .row-grid:nth-child(2n) .quote {
        left: -30px;
    }
    .vnt-gallery .gallery .tend {
        position: absolute;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    .vnt-catalogue .row-grid .img {
        width: 40.17094%
    }
    .vnt-catalogue .row-grid .catalogue {
        width: 59.82906%
    }
    .vnt-catalogue .row-grid:before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        content: '';
        width: 40.17094%;
        background-color: #f5f5f5;
        z-index: -1
    }
    .vnt-catalogue .row-grid:nth-child(2n):before {
        left: auto;
        right: 0
    }
    .vnt-catalogue .row-grid:nth-child(2n) .catalogue {
        text-align: right;
    }
}
@media all and (max-width: 1199px) {
    .top-about .col:first-child, .vnt-about .row-grid:nth-child(2n+1) .the-content {
        padding-left: 20px
    }
    .top-about .big-logo {
        padding-right: 20px
    }
    .vnt-about .row-grid:nth-child(2n) .the-content {
        padding-right: 20px
    }
    .vnt-about .quote {                
        font-size: 100px;
        letter-spacing: -6px;
    }    
}
@media all and (max-width: 991px) {
    .top-about, .vnt-about .row-grid {
        display: block;
    }
    .top-about {
        margin-bottom: 35px;
    }
   .top-about .col:first-child {
        height: 150px;
        margin-right: 80px;
        margin-bottom: 30px
   }
   .vnt-about .triangle {
        right: -60px;      
        border-width: 75px 0 75px 60px;    
    }
    .vnt-about .line {
        bottom: -13px;
        right: -25px;
        z-index: 2;
        width: 3px;
        height: 72%;
        transform: rotate(39deg);
        -webkit-transform: rotate(39deg);
        -moz-transform: rotate(39deg);
        -o-transform: rotate(39deg);
        -ms-transform: rotate(39deg);        
    }
    .vnt-about .name-company .t1 {
        font-size: 22px;
        line-height: 30px;
    }
    .vnt-about .name-company .t2 {
        font-size: 20px;
    }
    .top-about .big-logo {
        padding: 0;
    }
    .top-about .big-logo img {
        max-height: 247px;
    }
    .vnt-about .row-grid {
        margin-bottom: 40px
    }
    .vnt-about .row-grid .the-content {
        padding: 55px 20px 15px 20px;
    }
    .vnt-about .quote {
        top: 35px;
        left: 15px
    }
    .vnt-about .the-content .content {
        font-size: 16px;
        line-height: 26px;
        position: relative;
    }
    .vnt-about .row-grid .img img, .vnt-about .row-grid .img:before {
        -webkit-clip-path: 0 0, 7% 11%, 100% 11%, 100% 100%, 7% 100%, 0 100%)!important;
        clip-path: polygon(0 0, 7% 11%, 100% 11%, 100% 100%, 7% 100%, 0 100%)!important;
        -webkit-clip-path: url(#polygon-clip-pentagon3)!important;
        clip-path: url(#polygon-clip-pentagon3)!important;
    }
    .grid-item {
        width: 50%;
        padding: 0 15px
    }
    .vnt-gallery .gallery .tend {
        position: relative;
        padding: 10px 15px;
        text-align: center;
    }
    .the-title {
        margin-bottom: 10px;
    }
    #grid-detail .grid-item {
        padding: 15px;
    }
    .vnt-catalogue .row-grid {
        display: block;
    }
}
@media all and (max-width: 767px) {
    .grid {
        margin: 2.5vw -5px;
    }
    .grid-item {
        padding: 0 5px
    }
    .vnt-gallery .topTitle {
        display: block;
    }
    .vnt-gallery .boxSelect {
        padding-top: 15px;
        width: 100%
    }
    #grid-detail .grid-item {
        padding: 5px;
    }
}
@media all and (min-width: 992px) and (max-width: 1199px) {    
    .vnt-about .row-grid:nth-child(2n+1) {
        padding: 15px 0
    }
    .vnt-about .row-grid:nth-child(2n+1) .the-content {
        padding-left: 65px
    }
    .vnt-about .row-grid:nth-child(2n+1) .quote {
        left: 15px;
    }
    .vnt-about .row-grid:nth-child(2n) .quote {
        left: 10px;
    }
}