/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #353535;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #ffffff;
    background-repeat: repeat-x;
    text-align: justify;
    text-justify: inter-word;
}

@media (min-width: 992px) {
    body {
        background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05)), url(../images/header_iagm.jpg);
    }
}

a {
    /*color: #28a745;*/
    color: #007700;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.brand {
    font-family: Arial;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 35px -12px 0;
    position: absolute;
    color: green;
}
  
.brand-ministry {
    font-size: 18px;
    font-weight: 200;
    line-height: 22px;
    text-transform: uppercase;
    margin: 5px -12px 20px;
    position: absolute;
    color: #363636;
}
a:hover,
a:active,
a:focus {
    color: #353535;
    outline: none;
    text-decoration: none;
}

p {
    color: #353535;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #353535;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #353535;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
    border: 1px solid green;
}

.back-to-top:hover {
    background: #28a745;
    border: 1px solid #777;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}

.table-borderless > tbody > tr:nth-child(2n+1) > td, .table-borderless > tbody > tr:nth-child(2n+1) > th {
   background-color: rgba(0, 255, 0, 0.1);
}

.table-borderless th {
    font-weight: normal;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
}

.table-borderless caption {
    color: #757575;
    letter-spacing: 1px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}

.table-borderless tr:hover {
    font-weight: 500;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    color: 0px 1px 1px rgba(0, 255, 0, 0.3);
    text-decoration-line: underline;
}

.tag-line {
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
    border-left: 1px solid #333;
    font-weight: 400;
    position: relative;
    font-size: 14px;
    top: -2px;
}

.tag-line a {
    /*color: green;*/
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
}

.tag-line a:hover {
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    transition: color 0.5s;
}
/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.custom-select {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #353535;
    border-radius: 0;
    margin-bottom: 15px
}

.form-control:focus,
.custom-select:focus {
    box-shadow: none;
    border-color: #28a745;
}

.custom-radio,
.custom-checkbox {
    margin-bottom: 15px;
}

.custom-radio .custom-control-label::before,
.custom-checkbox .custom-control-label::before {
    border-color: #353535;
    border-radius: 0;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    color: #ffffff;
    background: #28a745;
}

button.btn {
    color: #353535;
    background: #ffffff;
    border: 1px solid #353535;
    border-radius: 0;
}

button.btn:hover {
    color: #ffffff;
    background: #28a745;
    border-color: #28a745;
}


/**********************************/
/********* Top Header CSS *********/
/**********************************/
.top-header {
    padding: 20px 0;
    /*background: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/header_iag.jpg);*/
}

.top-header .logo {
    text-align: left;
    overflow: hidden;
    margin-top: -11px;
    background: none;
}

.top-header .logo a img {
    max-width: 100%;
    max-height: 60px;
}

.top-header .social {
    width: 100%;
    height: 40px;
    overflow: hidden;
    text-align: right;
    margin-top: -10px;
}

.top-header .ministry {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    text-align: left;
    text-shadow: 0px 1px 1px #c0c0c0;
    padding: 12px !important;
    margin-top: -10px;
}

.top-header .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 1px 0;
    text-align: center;
    font-size: 22px;
    border: 1px solid #353535;
    background: #ffffff;
    text-shadow: 0px 1px 1px #333333;
}

.top-header .social a:hover {
    background: #28a745;
    border: 1px solid #28a745;
}

.top-header .social a i {
    color: #353535;
}

.top-header .social a:hover i {
    color: #ffffff;
}

@media (min-width: 768px) {
    .top-header {
        max-height: 100px;
    }

}

@media (max-width: 767.98px) {
    .top-header .logo,
    .top-header .search,
    .top-header .social {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .top-header .social {
        margin-bottom: 0;
    }

}
/**********************************/
/********* Tooltip CSS *********/
/**********************************/
.tooltip-inner {
    background-color: darkgreen;
}
.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: darkgreen !important;
}
.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: darkgreen !important;
}
.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: darkgreen !important;
}
.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: darkgreen !important;
}

/**********************************/
/********* Header Nav CSS *********/
/**********************************/
.header {
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    top:15px;
}

.header.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header .navbar {
    height: 100%;
    padding: 0;
}

.navbar-top{
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, .7);

}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 7px 8px 7px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    // background: rgba(228, 122, 46, .2);
    background: rgba(46, 228, 66, 0.2);
    border-bottom: 2px solid #28a745;
    text-shadow: 0px 2px 2px #000;
    transition: none;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.header .dropdown-item:hover{
    //border-bottom: 1px solid #28a745;
    background: #e7e7e7;
    box-shadow: 0px 1px 0px #28a745;
    text-shadow: 0px 1px 1px #c0c0c0;
    border-radius: 2px;
}


@media (min-width: 768px) {
    .header,
    .header .navbar {
        background: #353535;
        border: none;
        background-image: linear-gradient(45deg, rgba(255,255,255, .2), rgba(0,255,0, .2)), url(../images/menu.jpg);
        background-repeat: repeat-x;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        font-weight: bold;
        text-shadow: 0px 2px 2px darkgreen;
        text-transform: uppercase;
    }
    
}

@media (max-width: 768px) {   
    .header,
    .header .navbar {
        // background: #333333 !important;
        border: none;
        background-image: url(../images/menu.jpg);
        background-repeat: repeat-x;
    }
    
    .header a.nav-link {
        padding: 5px;
    }

    .header .search {
        margin-left: -5px;
        margin-right: 5px;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }
}


/**********************************/
/********** Top News CSS **********/
/**********************************/
.top-news {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
}

.top-news .col-md-6 {
    margin-bottom: 30px;
}

.top-news .tn-img {
    position: relative;
    overflow: hidden;
}

.top-news .tn-img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.top-news .tn-img:hover img {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.top-news .tn-content {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .6), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.top-news .tn-content a.tn-date{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
    letter-spacing: 1px;
}

.top-news .tn-content a.tn-date i {
    margin-right: 5px;
}

.top-news .tn-content a.tn-date:hover {
    text-decoration: underline;
}

.top-news .tn-content a.tn-title {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.top-news .tn-left .tn-content a.tn-title {
    font-size: 35px;
    font-weight: 700;
}

.top-news .tn-content a.tn-title:hover {
    // color: #28a745;
    color: #45e86b;
    font-weight: bold;
    text-shadow: 0px 1px 1px #000;

}

.top-news h2 {
    color: #353535;
    font-size: 35px;
    font-weight: 700;
    margin-left: 40px;
}

.top-news h2 i {
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 28px;
}

/**********************************/
/******* Category News CSS ********/
/**********************************/
.cat-news {
    position: relative;
    width: 100%;
    padding: 0;
}

.cat-news .col-md-6 {
    margin-bottom: 30px;
}

.cat-news h2 {
    color: #353535;
    font-size: 30px;
    font-weight: 700;
    margin-left: 30px;
    margin-top: 10px;
}

.cat-news h2 i {
    position: absolute;
    color: green;
    top: 16px;
    left: 15px;
    font-size: 24px;
}

.cat-news .cn-img {
    position: relative;
    overflow: hidden;
}

/* aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa */
.cat-news .cn-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(25%);
}

.cat-news .cn-img:hover img {
    /*filter: blur(1px);
    -webkit-filter: blur(1px);*/
    transform: scale(1.1);
    filter: grayscale(0%);
}

.cat-news .cn-content {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.cat-news .cn-content a.cn-date {
    display: block;
    width: 100%;
    font-style: italic;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, .7);
}

.cat-news .cn-content a.cn-date i {
    margin-right: 5px;
    padding-left: 5px;
}

.cat-news .cn-content a.cn-date:hover {
    text-decoration: underline;
}

.cat-news .cn-content a.cn-title {
    display: block;
    width: 100%;
    color: #45e86b;
    /* color: #45e86b; */
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
    background: rgba(0, 0, 0, .7);
    text-justify: 100%;
    text-shadow: 0px 2px 2px #000;
    padding-left: 5px;
}

.cat-news .cn-content a.cn-title:hover {
    /* color: #28a745; */
    color: #45e86b;
    font-weight: bold;
    text-shadow: 0px 2px 2px #000;
}

.cat-news .cn-content a {
    position: relative;
    color: #45e86b;
    /*padding-left: 10px;*/
}

.cat-news .cn-content a:hover {
    text-shadow: 0px 1px 1px #ccc;
}

.cat-news p {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
    text-shadow: 0px 2px 2px #000;
    background: rgba(0, 0, 0, .7);
    padding-left: 5px;
    padding-right: 5px;
}

.cat-news .slick-prev,
.cat-news .slick-next {
    top: -30px;
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #353535;
}

.cat-news .slick-prev {
    left: calc(100% - 85px);
}

.cat-news .slick-next {
    right: 14px;
}

.cat-news .slick-prev:hover,
.cat-news .slick-prev:focus,
.cat-news .slick-next:hover,
.cat-news .slick-next:focus {
    color: #ffffff;
    background: #28a745;
}

.cat-news .slick-prev::before,
.cat-news .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.cat-news .slick-prev::before {
    content: "\f104";
}

.cat-news .slick-next::before {
    content: "\f105";
}


/**********************************/
/********** Main News CSS *********/
/**********************************/
.main-news {
    position: relative;
    width: 100%;
    padding: 0;
}

.main-news .col-md-6,
.main-news .col-md-12 {
    margin-bottom: 30px;
}

.main-news h2 {
    color: #353535;
    font-size: 30px;
    font-weight: 700;
    margin-left: 30px;
    margin-top: 10px;
}

.main-news h2 i {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 24px;
    color: green;
}

.main-news .mn-img {
    position: relative;
    overflow: hidden;
}

.main-news .mn-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.main-news .mn-content {
    position: relative;
    width: 100%;
    padding: 15px 0 0 0;
}

.main-news .mn-content a.mn-title {
    display: block;
    width: 100%;
    color: #353535;
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.main-news .mn-content a.mn-title:hover {
    color: green;
    font-weight: bold;
    text-shadow: 0px 1px 1px #c0c0c0;
}

.main-news .mn-content a.mn-date {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: #5e5e5e;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    transition: .3s;
    letter-spacing: 1px;
}

.main-news .mn-content a.mn-date i {
    margin-right: 5px;
}

.main-news .mn-content a.mn-date:hover {
    text-decoration: underline;
}

.main-news .mn-content p {
    margin: 0;
}

.main-news .mn-list {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.main-news .mn-list .mn-img {
    position: relative;
    width: 100px;
    margin-right: 15px;
    float: left;
    overflow: hidden;
}

.main-news .mn-list .mn-img img {
    height: 72px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.main-news .mn-list .mn-content {
    position: relative;
    float: left;
    width: calc(100% - 115px);
    padding: 0;
}

.main-news .mn-list .mn-content a.mn-title {
    display: block;
    width: 100%;
    color: #353535;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 5px;
}

.main-news .mn-list .mn-content a.mn-title:hover {
    color: green;
}

.main-news .mn-list .mn-content a.mn-date {
    display: block;
    width: 100%;
    margin-bottom: 0;
    color: #757575;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    transition: .3s;
    letter-spacing: 1px;
}

.main-news .mn-list .mn-content a.mn-date i {
    margin-right: 5px;
}

.main-news .mn-list .mn-content a.mn-date:hover {
    text-decoration: underline;
}

.main-news .search {
    width: 100%;
    margin-top: 12px;
}

.main-news .search input[type=text] {
    width: 100%;
    height: 32px;
    padding: 15px;
    color: #000;
    border: 1px solid #353535;
}

.main-news .search input[type=text]:focus {
    border-color: green;
}

.main-news .search button {
    position: absolute;
    width: 32px;
    height: 30px;
    top: 1px;
    right: 16px;
    border: none;
    background: none;
    color: #353535;
    margin-top: 12px;
}

.main-news .search button:hover {
    background: #28a745;
    color: #ffffff;
}
/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

.sidebar .sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget h2 {
  color: #353535;
  font-size: 30px;
  font-weight: 700;
  margin-left: 30px;
  margin-top: 10px;
}

.sidebar .sidebar-widget h2 i {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 24px;
    color: green;
}

.sidebar .sidebar-widget .category {
    position: relative;
}

.sidebar .sidebar-widget .category .fa-ul {
    margin-left: 23px;
}

.sidebar .sidebar-widget .category .fa-ul li {
    margin-bottom: 10px;
}

.sidebar .sidebar-widget .category .fa-ul li i {
    color: green;
}

.sidebar .sidebar-widget .category .fa-ul li a {
    color: #353535;
}

.sidebar .sidebar-widget .category .fa-ul li a:hover {
    color: green;
    text-shadow: 0px 1px 1px #c0c0c0;
}

.sidebar .sidebar-widget .tags {
    position: relative;
}

.sidebar .sidebar-widget .tags a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #353535;
    background: #ffffff;
    border: 1px solid #353535;
}

.sidebar .sidebar-widget .tags a:hover {
    color: #ffffff;
    background: #28a745;
    border: 1px solid green;
    box-shadow: 0px 1px 1px #c0c0c0;
}

.sidebar .sidebar-widget .image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .sidebar-widget .image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .sidebar-widget .image img:hover {
    transform: scale(1.1);
    filter: blur(1px);
    -webkit-filter: blur(1px);
}


/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.breadcrumb-wrap .breadcrumb {
    /*margin: 25px 0 0 0;*/
    padding: 0;
    background: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #353535;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: #353535;
}


/**********************************/
/********* Video Modal CSS ********/
/**********************************/
.modal-body {
    position:relative;
    padding:5px;
}

.modal-dialog {
    position: relative;
    max-width: 800px;
}

.close {
    position:absolute;
    right:-30px;
    top:0;
    z-index:999;
    font-size:2rem;
    font-weight: normal;
    color:#fff;
    opacity:1;
    background: green 100% !important;
    border: 2px solid darkgreen !important;
    text-shadow: 0px 2px 2px #000;
    width: 50px;
    height: 50px;
    left: 101% !important;
}

.close:hover {
    text-shadow: 0px 2px 2px #777;
    color: #fff;
    transform: scale(0.9, 0.9);
}

/**********************************/
/********* Single News CSS ********/
/**********************************/
.single-news {
    position: relative;
    width: 100%;
    padding: 25px 0 0 0;
}

.single-news .dn-img {
    position: relative;
    overflow: hidden;
}

.single-news .dn-img img {
    width: 100%;
}

.single-news .sn-content {
    position: relative;
    width: 100%;
    padding: 30px 0 30px 0;
}

.single-news .sn-content a.sn-title {
    display: block;
    width: 100%;
    color: #353535;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.single-news .sn-content a.sn-title:hover {
    color: green;
    font-weight: bold;
    text-shadow: 0px 2px 2px #c0c0c0;
}

.single-news .sn-content a.sn-date {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
    letter-spacing: 1px;
}
.single-news .sn-content .sn-filesize {
    margin-bottom: 15px;
    color: #757575;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.single-news .sn-content a.sn-date i {
    margin-right: 5px;
}

.single-news .sn-content a.sn-date:hover {
    text-decoration: underline;
}

.single-news .sn-img {
    position: relative;
    overflow: hidden;
}

/* aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa */
.single-news .sn-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    transition: transform 1s;
}

.single-news .sn-img img:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.single-news .slick-prev,
.single-news .slick-next {
    top: -30px;
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #353535;
}

.single-news .slick-prev {
    left: calc(100% - 85px);
}

.single-news .slick-next {
    right: 14px;
}

.single-news .slick-prev:hover,
.single-news .slick-prev:focus,
.single-news .slick-next:hover,
.single-news .slick-next:focus {
    color: #ffffff;
    background: green;
}

.single-news .slick-prev::before,
.single-news .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.single-news .slick-prev::before {
    content: "\f104";
}

.single-news .slick-next::before {
    content: "\f105";
}

/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 25px 0 45px 0;
}

.contact .map {
    position: relative;
    width: 100%;
}

.contact .map iframe {
    width: 100%;
    height: 300px;
}

.contact .contact-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.contact .contact-info h4 i {
    color: #353535;
    margin-right: 5px;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 1px solid #353535;
}

.contact .social a i {
    color: #353535;
}

.contact .social a:hover {
    background: #28a745;
    border-color: #28a745;
}

.contact .social a:hover i {
    color: #ffffff;
}

.contact .form {
    color: #666666;
}

@media (max-width: 767.98px) {
    .contact .form {
        margin-bottom: 30px;
    }
}


/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    /*background: #353535;*/
    position: relative;
    background: #545454;
    margin-top: 15px;
    padding: 60px 0 0 0;
    color: #CCCCCC;
    text-shadow: 0px 1px 1px #333333;
    background-image: url(../img/bottom.png);
    background-position:100% 100%;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .footer .container-fluid {
        max-width: 95%;
    }
}

.footer .footer-widget,
.footer .footer-widget-leaf {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.footer .footer-widget h1,
.footer .footer-widget-leaf h1 {
    color: #ffffff;
    margin-bottom: 18px; 
}

.footer .footer-widget .title,
.footer .footer-widget-leaf .title {
    color: #ffffff;
    white-space: nowrap;
}

.footer .footer-widget p,
.footer .footer-widget-leaf p {
    color: #ffffff;
}

.footer .footer-widget ul,
.footer .footer-widget-leaf ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li,
.footer .footer-widget-leaf ul li {
    margin-bottom: 12px; 
}

.footer .footer-widget ul li:last-child,
.footer .footer-widget-leaf ul li:last-child {
    margin-bottom: 0; 
}

.footer .footer-widget ul li a,
.footer .footer-widget-leaf ul li a {
    color: #ffffff;
    /*white-space: nowrap;*/
    display: block;
    line-height: 20px;
}

.footer .footer-widget ul li a::before,
.footer .footer-widget-leaf ul li a::before {
    font-weight: 600;
    padding-right: 5px;
}

.footer .footer-widget-leaf ul li a::before {
    content: '\f06c';
    font-family: 'Font Awesome 5 Free';
}

.footer .footer-widget .accordionContent ul li a::before,
.footer .footer-widget-leaf .accordionContent ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
}


.footer .footer-widget ul li a:hover,
.footer .footer-widget-leaf ul li a:hover {
    padding-left: 10px; 
}

.footer .footer-widget .accordionContent,
.footer .footer-widget .accordionContent1,
.footer .footer-widget-leaf .accordionContent,
.footer .footer-widget-leaf .accordionContent1 {
    display: none; 
}

.footer .footer-widget .accordionContent ul,
.footer .footer-widget .accordionContent1 ul,
.footer .footer-widget-leaf .accordionContent ul,
.footer .footer-widget-leaf .accordionContent1 ul {
    margin-left:16px ;
    margin-top:10px ;
}

.footer .contact-info p {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
}

.footer .contact-info p i {
    color: #ffffff;
    margin-right: 5px;
}

.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 2px 0;
    text-align: center;
    font-size: 18px;
    background: #353535;
    border: 1px solid #ffffff;
}

.footer .social a i {
    color: #ffffff;
}

.footer .social a:hover {
    background: #28a745;
    border: 1px solid #28a745;
}

.footer .newsletter {
    position: relative;
    width: 100%;
}

.footer .newsletter form {
    position: relative;
    width: 100%;
}

.footer .newsletter input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ffffff;
}

.footer .newsletter .btn {
    position: absolute;
    width: 80px;
    height: 40px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #353535;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.footer .newsletter .btn:hover {
    background: #28a745;
}

.footer .newsletter input:focus,
.footer .newsletter .btn:focus {
    box-shadow: none;
}
/* ==========================================================
! Accordion
========================================================== */
.accordion-toggle {
    font-size: 14px;
    font-weight: 200;
    padding: 20px;
    text-transform: uppercase;
}
.accordion-group {
    border: none;
    border-bottom: 1px solid #eee;
}

/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
    position: relative;
    padding: 25px 0;
    background: #111111;
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .template-by {
    text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    color: #47d367;
    font-weight: 600;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
    color: #ffffff;
}

@media (max-width: 768.98px) {
    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center; 
    } 
}

#lightboxOverlay {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
}

#lightbox {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.lightbox .lb-caption {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0px 2px 2px #000;
    color: #fff;
}