/*--- Checkbox Styles ---*/
.checkbox{
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
}
.checkbox input[type="checkbox"] {
    display: none;
}

.checkbox label {
    position: relative;
    font-weight: 600;
    font-size: 13px;
    display: inline-block !important;
    padding-left: 35px;
    padding-top: 6px;
}

.checkbox label::before,
.checkbox label::after {
    position: absolute;
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/*Outer box of the fake checkbox*/
.checkbox label::before{
    height: 27px;
    width: 27px;
    border: 1px solid;
    border-radius: 5px;
    left: 0px;
    top: 3px;
    color: #ccc;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
    height: 7px;
    width: 13px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 7px;
    top: 11px;
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after {
    content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
    color: #fff;
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
    outline: none;
}

.checkbox input[type="checkbox"]:checked + label::before {
    background-color: #006A4A;
    color: #006A4A;
}









/** SideNavi **/

.sideNaviContainer {
    position: fixed;
    right: 0;
    height: 100%;
    z-index: 9999;
    width: 0px;
}

.sideNavi {
    width: 200px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -120px;
    transition: right 0.5s;
}

.sideNavi:hover {
    right: 0;
}

.sideNavi ul li {
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
    background-color: #006A4A;
    transition: background-color 0.3s;
    list-style-type: none;
}

.sideNavi ul li:first-child {
    border-top-left-radius: 10px;
}

.sideNavi ul li:last-child {
    border-bottom-left-radius: 10px;
}

.sideNavi ul li:hover {
    background-color: black;
    cursor: pointer;
}

.sideNavi ul li a {
    color: #fff;
}

.sideNavi ul li i {
    width: 50px;
    height: 50px;
    text-align: center;
}


.color-gray-sm{
    color: white;
}
@media(max-width:992px){
    .color-gray-sm{
        color: #787878;
    }
}

.parallax.ls:after {
    opacity: 0.4;
}

.vertical-item {
    overflow: hidden;
}

.vertical-item.content-padding:hover .item-content {
    transform: translateY(0);
}

.vertical-item.content-padding .item-content {
    padding: 16px 35px;
    transform: translateY(33px);
    transition: transform 200ms ease-in-out;
}

.vertical-item.content-padding .item-content p {
    margin: 0;
    margin-bottom: 13px;
}

.grayscale img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    transition: filter 200ms ease-in;
}

.grayscale:hover img {
    filter: none;
    -webkit-filter: grayscale(0%);
}

.main_bg_color.transparent_bg {
    background-color: rgba(0, 106, 74, 0.7);
}

.color_bg_1 .bg_overlay {
    background-color: rgba(0, 106, 74, 0.8);
}

.theme_button.color2:hover {
    background-color: #fff;
    color: #006A4A;
}

.startSection {
    padding: 150px 0;
    background-position-y: 150px !important;
    background-size: cover;
}

.breadcrumb {
    margin-top: 7px;
}

.breadcrumb li {
    padding: 0 10px;
    position: relative;
}

.breadcrumb li a:hover {
    cursor: pointer;
}

.breadcrumb li:after {
    content: ' / ';
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    position: absolute;
    right: -5px;
}

.breadcrumb li:last-child:after {
    display: none;
}

@media(max-width: 767px){
    .section_header{
        font-size: 25px;
    }
}