/** Column Divisions */
.column.columns-5 {
    width: 20%;
    padding: 5px 0.5%;
}

.column.columns-3 {
    width: 33%;
    padding: 5px 0.5%;
}

@media (max-width: 1000px) {
    .column.columns-5 {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .column.columns-5 {
        width: 33%;
    }

    .column.columns-3 {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .column.columns-5 {
        width: 100%;
    }

    .column.columns-3 {
        width: 100%;
    }
}

/** Box with Image + Description and Hover Effect */
.box-image-desc-hover .column {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    margin-bottom: 10px;
    float: left;
}

.box-image-desc-hover a:hover {
    text-transform: none;
    text-decoration: none;
}

.box-image-desc-hover .column .image {
    text-align: center;
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
}

.box-image-desc-hover .column h2,
.box-image-desc-hover .column p,
.box-image-desc-hover .column .read_more a,
.box-image-desc-hover .column .image img {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.box-image-desc-hover .column .image img {
    width: 98%;
    margin-bottom: 20px;
    opacity: 0.85;
    max-width: 200px;
    max-height: 200px;
}

.box-image-desc-hover .column:hover {
    box-shadow: 0 0 8px #ddd;
}

.box-image-desc-hover .column:hover .image img {
    transform: scale(1.2) rotate(2deg);
    opacity: 1;
}

.box-image-desc-hover .column h2 {
    margin-top: 5px;
    font-size: 1.3em;
    color: #666666;
    font-weight: 400;
}

.box-image-desc-hover .column .read_more a {
    color: #666666;
}

.box-image-desc-hover .column p {
    color: #666666;
    margin-top: 10px;
}

.box-image-desc-hover .column:hover p {
    color: #222222;
}

.box-image-desc-hover .column:hover h2,
.box-image-desc-hover .column:hover .read_more a {
    color: #76bd1d;
}

.box-image-desc-hover .column.text-align-0 h2,
.box-image-desc-hover .column.text-align-0 p,
.box-image-desc-hover .column.text-align-0 .read_more {
    text-align: left;
}

.box-image-desc-hover .column.text-align-1 h2,
.box-image-desc-hover .column.text-align-1 p,
.box-image-desc-hover .column.text-align-1 .read_more {
    text-align: center;
}

.box-image-desc-hover .column.text-align-2 h2,
.box-image-desc-hover .column.text-align-2 p,
.box-image-desc-hover .column.text-align-2 .read_more {
    text-align: right;
}

/** Box with Icon on the side and Description */
.box-image-desc-side .column {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    margin-bottom: 10px;
    float: left;
}

.box-image-desc-side .column .image i {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    padding-top: 10px;
    font-size: 62px;
    color: #72c02c;
}

@media (max-width: 768px) {
    .box-image-desc-side a:nth-child(3n) .column.columns-3 {
        clear: left;
    }
}

@media (max-width: 1200px) {
    .box-image-desc-side .column .image i {
        font-size: 50px;
    }
}

.box-image-desc-side a:hover {
    text-transform: none;
    text-decoration: none;
}

.box-image-desc-side .column .image {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 25%;
    float: left;
}

.box-image-desc-side .column:hover .image i {
    color: #656565;
}

.box-image-desc-side .column .description {
    width: 75%;
    float: left;
}

.box-image-desc-side .column h2,
.box-image-desc-side .column p,
.box-image-desc-side .column .read_more a,
.box-image-desc-side .column .image img {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.box-image-desc-side .column .image img {
    width: 90%;
    margin-bottom: 20px;
    opacity: 0.85;
}

.box-image-desc-side .column:hover {
    box-shadow: 0 0 8px #ddd;
    background-color: #fcfcfc;
}

.box-image-desc-side .column:hover .image img {
    transform: scale(1.2) rotate(2deg);
    opacity: 1;
}

.box-image-desc-side .column h2 {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 1.3em;
    color: #666666;
    font-weight: 400;
}

.box-image-desc-side .column .read_more a {
    color: #666666;
}

.box-image-desc-side .column p {
    color: #666666;
    margin-top: 10px;
    font-size: 0.9em;
}

.box-image-desc-side .column:hover p {
    color: #222222;
}

.box-image-desc-side .column:hover h2,
.box-image-desc-side .column:hover .read_more a {
    color: #76bd1d;
}

.box-image-desc-side .column.text-align-0 h2,
.box-image-desc-side .column.text-align-0 p,
.box-image-desc-side .column.text-align-0 .read_more {
    text-align: left;
}

.box-image-desc-side .column.text-align-1 h2,
.box-image-desc-side .column.text-align-1 p,
.box-image-desc-side .column.text-align-1 .read_more {
    text-align: center;
}

.box-image-desc-side .column.text-align-2 h2,
.box-image-desc-side .column.text-align-2 p,
.box-image-desc-side .column.text-align-2 .read_more {
    text-align: right;
}

/** Collaborators */
.multi-item-carousel .carousel-inner > .item {
    -webkit-transition: 500ms ease-in-out left;
    transition: 500ms ease-in-out left;
}

.multi-item-carousel .carousel-inner .active.left {
    left: -16.6%;
}

.multi-item-carousel .carousel-inner .active.right {
    left: 16.6%;
}

.multi-item-carousel .carousel-inner .next {
    left: 16.6%;
}

.multi-item-carousel .carousel-inner .prev {
    left: -16.6%;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .multi-item-carousel .carousel-inner > .item {
        -webkit-transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out left;
        -webkit-transition: 500ms ease-in-out all;
        transition: 500ms ease-in-out all;
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-transform: none !important;
        transform: none !important;
    }
}

.multi-item-carousel .carouse-control.left,
.multi-item-carousel .carouse-control.right {
    background-image: none;
}

.section_collaborators img {
    filter: grayscale(100%);
}

.section_collaborators .item div:hover img {
    filter: none;
}

/* Bottom text icon with hover color effect */
.bottom_text_icon a {
    color: #333333;
    font-weight: 500;
}

.bottom_text_icon a:hover {
    text-decoration: none;
}

.bottom_text_icon > div a .icon img {
    transition: all 0.5s;
}

.bottom_text_icon > div a:hover .icon img {
    filter: grayscale(0%);
}

.bottom_text_icon > div .title {
    font-size: 18px;
    padding: 10px 5px;
    transition: all 0.5s;
}

.bottom_text_icon > div a:hover .title {
    background-color: #77BD1E;
    color: white;
}

/* Accordion Pages */
.accordion_pages .panel-heading a {
    color: #333333;
    text-decoration: none;
}

/* Social Icons */
.soial_links_section a {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    float: left;
}

.soial_links_section a + a {
    margin-left: 5px;
}

.soial_links_section a i {
    width: 30px;
    height: 28px;
    line-height: 28px;
    background-color: rgb(88, 95, 105);
}

.soial_links_section a i.fa-facebook {
    background-color: #3b5998;
}

.soial_links_section a i.fa-twitter {
    background-color: #55acee;
}

.soial_links_section a i.fa-pinterest-square {
    background-color: #bd081c;
}

.soial_links_section a i.fa-google-plus {
    background-color: #dc4e41;
}

/* Box Image title and description */
.box_image_title_description h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.box_image_title_description img {
    max-width: 80%;
}

.box_image_title_description p {
    min-height: 100px;
}

/* Dynamic Form */
.section_dynamic_form label {
    font-weight: 300;
}

.section_dynamic_form input,
.section_dynamic_form textarea,
.section_dynamic_form select {
    border-radius: 0;
}

/* Colored Icon with hover color effect */
.section_icon_side_color_effect {
    margin-top: 20px;
}

.section_icon_side_color_effect > a > div {
    margin-bottom: 30px;
}

.section_icon_side_color_effect div .description {
    width: 100%;
    padding-left: 60px;
}

.section_icon_side_color_effect div .description h2 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 18px;
    transition: all ease 1s;
}

.section_icon_side_color_effect div .image {
    width: 45px;
    float: left;
}

.section_icon_side_color_effect div .image i {
    text-align: center;
    border: 1px #333333;
    background-color: #333333;
    box-sizing: content-box;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 21px;
    transition: all ease 1s;
}

.section_icon_side_color_effect div p {
    transition: all ease 1s;
}

/* Direct Menu Childs */
.section_direct_childs_menu ul {
    list-style: none;
    border: 1px solid #333333;
    padding: 0;
}

.section_direct_childs_menu ul li a {
    width: 100%;
    display: block;
    padding: 10px 7px 10px 28px;
    text-decoration: none;
    color: #333;
    transition: all ease 1s;
}

.section_direct_childs_menu ul li a:hover {
    color: #0b0b0b;
}

.section_direct_childs_menu ul li {
    border-bottom: 1px solid #333333;
    font-size: 0.9em;
    transition: all ease 1s;
    font-weight: 500;
}

.section_direct_childs_menu ul li:first-child {
    font-size: 1.2em;
}

.section_direct_childs_menu ul li:last-child {
    border-bottom: 0;
}

.section_direct_childs_menu ul li:first-child {
    background-color: #c3c2c2;
    padding: 10px 7px 10px 10px;
}

.section_direct_childs_menu ul li a:before {
    position: absolute;
    font-family: FontAwesome !important;
    content: '\f0c9' !important;
    margin-left: -15px;
    font-weight: lighter;
    font-size: 10px;
    margin-top: 2px;
}

/* Tabbed Pages */
.section_tabbed_pages .nav-tabs {
    border-color: #72c02c;
}

.section_tabbed_pages .nav-tabs li a {
    border-radius: 0;
    padding: 0;
    margin-right: 1px;
}

.section_tabbed_pages .nav-tabs li.active a {
    border-color: #72c02c;
    background: #72c02c;
}

.section_tabbed_pages .nav-tabs li.active a h4 {
    color: white;
}

.section_tabbed_pages .nav-tabs li a h4 {
    padding: 7px 15px;
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    transition: all ease 1s;
}

.section_tabbed_pages .nav-tabs li:hover a,
.section_tabbed_pages .nav-tabs li:hover a h4 {
    border-color: #72c02c;
    background: #72c02c;
    color: white;
    transition: all ease 1s;
}

.section_tabbed_pages .tab-content {
    padding: 15px;
}

.panel .panel-body.panel-no-padding {
    padding: 0 !important;
}

.panel .panel-body .list-group.list-group-fill {
    margin-bottom: 0 !important;
}

.panel .panel-body .list-group.list-group-fill .list-group-item {
    border: 1px solid #ddd;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-left: 8px !important;
}

.input-group-btn > button {
    margin: 0;
}