.dropdown-menu .dropdown-item {
    font-size: 13px;
    font-weight: 500;
}
.gradient-after:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    /* background: #ffffff; Old browsers
    background: -moz-linear-gradient(left, transparent 27%, #000 100%); FF3.6-15
    background: -webkit-linear-gradient(left, transparent 27%,#000 100%); Chrome10-25,Safari5.1-6
    background: linear-gradient(to right, transparent 27%,#000 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='transparent', endColorstr='#000',GradientType=1 ); IE6-9 */
    background: #d6cc70; /* Old browsers */
    background: -moz-linear-gradient(left, #000 1%, transparent 86%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000 1%,transparent 86%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000 1%,transparent 86%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='transparent',GradientType=1 ); /* IE6-9 */
}
.z-index-3 {
    z-index: 3!important;    
}
.site-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
}
.site-banner:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.validation-message {
    color: red!important;
    font-weight: 500;
}
.site-banner .banner-slogan {
    z-index:10;    
}
.site-banner .banner-slogan .breadcrumb {
    background-color: transparent!important;
    margin-bottom: 0;
    padding-right: 0;
}
.site-banner .banner-slogan .breadcrumb .breadcrumb-item {
    font-size: 14px;    
}
.site-banner .banner-slogan .breadcrumb .breadcrumb-item.active {
    font-weight: 600;    
}
.site-banner .banner-slogan .breadcrumb .breadcrumb-item,
.site-banner .banner-slogan .breadcrumb .breadcrumb-item.active,
.site-banner .banner-slogan .breadcrumb .breadcrumb-item a {
    color: #fff!important;
    text-decoration: none;
}
.site-banner .banner-slogan .breadcrumb .breadcrumb-item a{
    transition: color .3s ease-in-out;    
}
.site-banner .banner-slogan .breadcrumb .breadcrumb-item:hover a {
    color: #d6cc70!important;    
}

/* page banner */
.page-banner {
   position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;     
}
.page-banner:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* page banner */
/* faq section */
.faq-section .card {
    border: none;    
}
.faq-section .card .card-header {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0!important;
}
.faq-section .card .card-header h5 {
    padding: .75rem 50px .75rem 30px!important;
    transition: .3s;
    position: relative;
    z-index: 2;
}
.faq-section .card .card-header h5:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transition: .5s;
    width: 10px;
    height: 100%;
    background-color: #d6cc70;
    z-index: -1;
}
.faq-section .card .card-header h5:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 25px;
}
    
.faq-section .card .card-header h5:hover:before {
    width: 100%;
}
.faq-section .card .card-header h5 span {
    font-size: 15px;
    transition: 0.3s;
    font-weight: bold;
    cursor: pointer;
}
.faq-section .card .card-header h5 span:hover {
    text-decoration: none!important;
}
.faq-section .card .card-header h5[aria-expanded="true"]:after {
    content: "-";
    font-size: 30px;
}
.faq-section .card .card-body {
    font-size: 14px;
    padding: 1rem 30px 0.80rem 30px;
}
/* faq section */

/* news-page */
.search-form {
    position: relative    
}
.input-search {
    width: 100%;
    height: 40px;
    border: none;
    padding: 5px 45px 5px 15px;
}
.btn-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #d6cc70;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.btn-search:hover {
    background-color: #3f5254;    
}
.btn-search:before {
    content: "\f002";
    position: absolute;
    color: #333;
    left: 12px;
    top: 10px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    transition: color .3s ease-in-out;
}
.btn-search:hover:before {
    color: #fff;    
}
.filter .nav-link {
    position: relative;
    color: #fff;
    transition: color .3s ease-in-out;
    padding: 3px 0px 3px 1rem;
}
.filter .nav-link:hover {
    color: #d6cc70;     
}
.filter .nav-link:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #d6cc70;
    border-radius: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.font-weight-600 {
    font-weight: 600;
}
.sidebar-wrapper .news-img {
     max-height: 150px;   
}
.pagination {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    margin-bottom: 0!important;
}
.pagination li a,
.pagination li span {
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    margin-right: 10px;
    color: #333;
    /* background-color: #333b3c; */
}
.pagination li span {
    color: #d6cc70;    
}
.news-img-small {
    width: 70px;
    height: 50px;
}
/* news-page */

/* Usluga Single Page */

.service-banner {
    width: 100%;
}
.service-banner-img {
    border-bottom: 2px solid #d6cc70;
}
.service-preview ul li {
    list-style: none;
    position: relative;
}

.service-preview ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -15px;
    border-radius: 50%;
    background-color: #d6cc70;
}
.side-option-wrapper {
    padding: 25px 10px;
    background-color: #d6cc70;
}
.side-option-wrapper .side-option-icon
{
    width: 70px;
    height: 100%;
}
.service-contact .social-icon {
    width: 20px;
    height: 20px;
}
.side-option-icon img {
    width: 50px;
    height: 50px;
}
.service-sidebar .side-option-wrapper .side-option{
    position: relative;
}
.service-sidebar .side-option-wrapper .side-option:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
}
.service-preview .service-content h6 {
    margin-top: 30px;
    color: #d6cc70;
}

/*sistem single page*/
.option-pl {
    padding-left: 90px;
}
.sidebar-option .option-wrapper{
    position: relative;
}
.sidebar-option .option-certificate:before{
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/iso.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    
}
.sidebar-option .option-certificate:after, 
.sidebar-option .option-systems:after, 
.sidebar-option .option-offers:after, 
.sidebar-option .option-contact:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 66px;
    height: 100%;
    background-color: #333b3c;
    
}
.sidebar-option .option-systems:before{
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/uslugi-side.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    
}
.sidebar-option .option-offers:before{
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/hand.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.sidebar-option .option-contact:before{
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/contact.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.option-wrapper{
    transition: .3s;
}
.certificate-link:not(:first-child) .option-wrapper:hover {
    background-color: #333b3c;
    color: #d6cc70;
}
.border-right-sm {
    border-right: 1px solid rgb(51, 59, 60)!important;
}
.border-bottom-sm {
    border-bottom: 1px solid rgb(51, 59, 60)!important;
}
.iso-img {
    width: 50px;
}
/*sistem single page*/
/* .service-preview-icon {
    height: 50px;
    width: 50px;
} */
/* Usluga Single Page */