@charset "utf-8";
/*******************************************************
    COMPONENT [COM_1]
*******************************************************/
.com_1 {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 80px 60px;
    /* 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_1 .component-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px;
    font-weight: 300;
    line-height: 1.5;
    /* color: rgba(255, 255, 255, 1);
    background: rgba(50, 50, 50, 0.8); */
}
/* -------------------------------------------------- */
.com_1 .component-wrapper .component-content {
    position: relative;
    width: 100%;
    height: 520px;
    margin: 0px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    /** FLEX **/
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    /* -webkit-align-items: center; */
    /* align-items: center; */
}
.com_1 .component-wrapper .component-content .content-item {
    position: relative;
    max-height: 460px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    /** TRANSITION **/
    -webkit-transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -ms-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}
.com_1 .component-wrapper .component-content .content-item[data-hidden="false"] {
    visibility: visible;
    opacity: 1;
    height: auto !important;
    min-height: auto;
}
.com_1 .component-wrapper .component-content .content-item[data-hidden="true"] {
    visibility: hidden;
    opacity: 0;
    height: 0 !important;
    min-height: none;
}
.com_1 .component-wrapper .component-content .content-item .item-category {
    margin-top: 0px;
    margin-bottom: 2.4em;
    text-transform: uppercase;
}
.com_1 .component-wrapper .component-content .content-item .item-name {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 28px;
    line-height: 1.3em;
    color: rgba(255, 255, 255, 1);
}
.com_1 .component-wrapper .component-content .content-item .item-content {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    line-height: 1.5em;
}
.com_1 .component-wrapper .component-content .content-item .item-link {
    margin-bottom: 0px;
}
/* -------------------------------------------------- */
.com_1 .component-wrapper .component-nav {
    position: relative;
    width: 100%;
    min-height: 80px;
    margin: 0px;
    padding: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    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: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.com_1 .component-wrapper .component-nav .nav-item {
    position: relative;
    width: 100%;
    height: 80px;
    margin: 0px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    /** TRANSITION **/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /** 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_1 .component-wrapper .component-nav .nav-item:last-of-type {
    border-right: none;
}
.com_1 .component-wrapper .component-nav .nav-item:hover {
    background-color: rgba(50, 50, 50, 1);
}
.com_1 .component-wrapper .component-nav .nav-item.active {
    background-color: rgba(0, 0, 0, 1);
}
.com_1 .component-wrapper .component-nav .nav-item .item-image {
    width: 60px;
    max-height: 60px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    /** TRANSITION **/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.com_1 .component-wrapper .component-nav .nav-item .item-name {
    width: calc(100% - 60px);
    max-height: 60px;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    color: #fff;
    /** TRANSITION **/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1023px) {
    .com_1 .component-wrapper .component-nav .nav-item {
        width: 18px;
        height: 18px;
        margin: 0px 16px;
        padding: 0px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }
    .com_1 .component-wrapper .component-nav .nav-item:hover {
        /* background-color: rgba(237, 209, 29, 1); */
    }
    .com_1 .component-wrapper .component-nav .nav-item.active {
        border-color: rgba(237, 209, 29, 1) !important;
        background-color: rgba(237, 209, 29, 1);
    }
    .com_1 .component-wrapper .component-nav .nav-item .item-image {
        width: 0px;
        max-height: 0px;
    }
    .com_1 .component-wrapper .component-nav .nav-item .item-name {
        /* width: 0px; */
        max-height: 0px;
    }
}
/* -------------------------------------------------- */
hr.separator {
    display: block;
    width: 60px;
    height: 3px;
    margin: 1.5em auto;
    padding: 0px;
    border: none;
    background-color: #FCD657;
}