@charset "utf-8";
/*******************************************************
    COMPONENT [COM_2]
*******************************************************/
.com_2 {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-weight: inherit;
    line-height: 1.5;
    color: inherit;
    /* background-image: url("images/intro_background.svg"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-color: rgba(255, 255, 255, 0);
    /** TRANSITION **/
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.com_2 .component-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
}
/* -------------------------------------------------- */
.com_2 .component-wrapper .block-item {
    position: relative;
    margin: 0px;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
    /** FLEX **/
    display: -webkit-flex;
    display: flex;
    /* -webkit-flex-direction: row;
    flex-direction: row; */
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
}
.com_2 .component-wrapper .block-item:before,
.com_2 .component-wrapper .block-item:after {
    display: table;
    content: " ";
}
.com_2 .component-wrapper .block-item:after {
    clear: both;
}
.com_2 .component-wrapper .block-item .block-data {
    position: relative;
    width: 100%;
    flex-basis: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
/* -------------------------------------------------- */
.com_2 .component-wrapper .block-item .item-data {
    width: 100%;
    flex-basis: 100%;
    max-width: 620px;
    overflow: hidden;
    cursor: pointer;
}
.com_2 .component-wrapper .block-item .item-data .item-image {
    position: relative;
    margin: 0px;
    padding: 0px;
    height: 45vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    /** TRANSFORM **/
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /** TRANSITION **/
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.com_2 .component-wrapper .block-item .item-data:hover .item-image {
    /** TRANSFORM **/
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.com_2 .component-wrapper .block-item .item-data .item-image img {
    display: block;
    width: 100%;
}
.com_2 .component-wrapper .block-item .item-data .item-head {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0px;
    padding: 15px;
    font-size: 22px;
    line-height: 1.3em;
    border-top: 2px solid rgba(237, 209, 29, 1);
    /** TRANSITION **/
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.com_2 .component-wrapper .block-item .item-data .item-head .item-category {
    margin-bottom: 0.3em;
    font-size: 15px;
    line-height: 1.3em;
    text-transform: uppercase;
}
/* -------------------------------------------------- */
.com_2 .component-wrapper .block-item .item-content {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    font-size: 40px; /*36*/
    line-height: 1.5em;
    /* text-align: center; */
}
.com_2 .component-wrapper .block-item .item-content p {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    font-size: 2.5vw; /*36*/
    line-height: 1.3em;
    /* text-align: center; */
}
/*******************************************************
    BLOCK [LEFT]
*******************************************************/
.com_2 .component-wrapper .block-item[data-direction="left"] {
    /** FLEX **/
    -webkit-flex-direction: row;
    flex-direction: row;
}
/*******************************************************
    BLOCK [RIGHT]
*******************************************************/
.com_2 .component-wrapper .block-item[data-direction="right"] {
    /** FLEX **/
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
/*******************************************************
    BLOCK [CLEAR]
*******************************************************/
.com_2 .component-wrapper .block-item[data-aspect="clear"] {
    font-weight: 400;
    color: rgba(34, 34, 34, 1);
    background: rgba(255, 255, 255, 1);
}
.com_2 .component-wrapper .block-item[data-aspect="clear"] .item-data .item-head {
    background-color: rgba(255, 255, 255, 0.8);
}
.com_2 .component-wrapper .block-item[data-aspect="clear"] .item-data:hover .item-head {
    background-color: rgba(255, 255, 255, 1);
}
/*******************************************************
    BLOCK [DARK]
*******************************************************/
.com_2 .component-wrapper .block-item[data-aspect="dark"] {
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    background: rgba(50, 50, 50, 1);
}
.com_2 .component-wrapper .block-item[data-aspect="dark"] p {
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    background: rgba(50, 50, 50, 1);
}
.com_2 .component-wrapper .block-item[data-aspect="dark"] .item-data .item-head {
    background-color: rgba(50, 50, 50, 0.8);
}
.com_2 .component-wrapper .block-item[data-aspect="dark"] .item-data:hover .item-head {
    background-color: rgba(50, 50, 50, 1);
}
/*******************************************************
    MEDIA [QUERIES]
*******************************************************/
@media (max-width: 1199px) {
    .com_2 .component-wrapper .block-item .item-content {
        font-size: 35px; /*32*/
        line-height: 1.5em;
    }
}
@media (max-width: 991px) {
    .com_2 .component-wrapper .block-item .item-content {
        font-size: 30px; /*28*/
        line-height: 1.5em;
    }
}
@media (max-width: 767px) {
    .com_2 .component-wrapper .block-item .item-content {
        font-size: 25px; /*24*/
        line-height: 1.5em;
    }
}
@media (max-width: 695px) {
    .com_2 .component-wrapper .block-item .item-content {
        font-size: 20px; /* 24 */
        line-height: 1.5em;
    }
}
/* -------------------------------------------------- */