@charset "utf-8";
/* CSS Document */

/******************************

/*********************************
6. Home
*********************************/

.home {
    width: 100%;
    height: 130px;
    background: #f2f4f5;
    border-bottom: solid 1px #edeff0;
}

.breadcrumbs_container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 4px;
    padding-left: 3px;
}

.breadcrumbs ul li {
    display: inline-block;
    position: relative;
}

.breadcrumbs ul li:not(:last-child)::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 7px;
    margin-right: 4px;
    color: #384158;
}

.breadcrumbs ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #384158;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.breadcrumbs ul li a:hover {
    color: #14bdee;
}

.section_title {
    color: #FF6347;
    font-size: 1.5rem;
    font-family: "Times";
    font-style: italic;
}

.section_subtitle p {
    color: #28a745;
    font-weight: 700;
    font-size: 1.0rem;
    margin: 0px 30px 0px 30px;
}

/*********************************
7. About
*********************************/

.about {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #FFFFFF;
}

.about_row {
    margin-top: 30px;
}

.about_col_left {
    padding-right: 25px;
}

.about_col_right {
    padding-left: 25px;
}

.about_col_middle {
    padding-left: 20px;
    padding-right: 20px;
}

.about_item_image {
    width: 100%;
    overflow: hidden;
}

.about_item_image img {
    max-width: 100%;
    -webkit-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    transition: all 2000ms ease;
}

.about_item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    border: 1px solid rgba(150, 0, 50, .125);
    border-radius: .25rem;
    box-shadow: 0px 1px 1px #1bd846;
    transition-timing-function: linear;
}

.about_item:hover {
    box-shadow: 0px 2px 2px #1bd846;
    transform: scale(1.1);
    z-index: 2;
}

.about_item:hover .about_item_image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.about_item_title {
    margin-top: 15px;
    padding: 0px 20px 0px 20px;
}

.about_item_title a {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #14bdee;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.about_item_title a:hover {
    color: #28a745;
}

.about_item_text {
    margin-top: 12px;
    line-height: 1.6;
    padding: 0px 20px 20px 20px;
    color: #2B333F;
    font-size: 1.0rem;
}

.about_item_text:hover {
    color: #28a745;
}

/*********************************
8. Feature
*********************************/

.feature_about {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.feature_about .card{
    box-shadow: 0px 1px 1px #1bd846;
}
.feature_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.feature_row {
    margin-top: 20px;
    padding: 4px;
}

.feature_content {
    padding-right: 54px;
}

.elements_accordions {

}

.accordion_container {
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 4px;
}

.accordion_container:not(:last-child) {
    margin-bottom: 5px;
}

.accordion {
    width: 100%;
    padding-left: 27px;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.accordion div {
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Times New Roman";
    font-size: 1.1rem;
    font-weight: bold;
    color: #005cbf;
}

.accordion::before {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1px;
    left: 0;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 1.2rem;
    color: #005cbf;
    /*font-weight: 400;*/
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.accordion.active::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    color: #14bdee;
}

.accordion_panel {
    padding-right: 8px;
    padding-left: 30px;
    padding-top: 9px;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion.active + .accordion_panel {
    margin-bottom: 20px;
}

.accordion_panel p {
    font-size: 1.0rem;
    font-weight: 400;
    color: #2B333F;
    line-height: 1.8;
}

.feature_video {
    width: calc(100% + 15px);
    left: -15px;
    height: 300px;
    margin-top: -4px;
}

.feature_video_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
}

.feature_video_button {
    display: block;
    width: 60px;
    height: 60px;
    z-index: 10;
    outline: none;
}

/*********************************
11. Partners
*********************************/

.partners {
    width: 100%;
    background: #FFFFFF;
}

.partners_slider_container {
    width: calc(100% + 100px);
    left: -50px;
}

.partners_slider {
    height: 132px;
}

.partner_item {
    height: 100%;
    cursor: pointer;
}

.partner_item img {
    position: relative;
    width: 110px !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.partner_item:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.team_row {
    margin-top: 20px;
}

