/** 
 * main.css
 * 
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 * 6. Accessibility helpers
 * 
 */

/*********************************************************************
 * 1. General HTML tags
 *
 */

* {
	box-sizing: border-box; 
}

/*********************************************************************
 * 6. Accessibility helpers
 *
 */

/* Hide visually, but remain approachable for screenreader */

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	white-space: nowrap;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	border: 0;
}

/* Show bypass link on hover */

.element-focusable:focus {
	clip: auto;
	overflow: visible;
	height: auto;
}

/* Sample styling for bypass link */

.bypass-to-main:focus {
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #333;
	color: #fff;
}

/* Main CSS */

body {
	font-family: 'Titillium Web', sans-serif;
	color: #333;
	background-color: #FFF;
	font-size: 14px;
	padding-top: 90px;
}

h1 {
	font-weight: bold;
	font-size: 46px;
	color: #111c16;
}

h2 {
	font-weight: bold;
	font-size: 20px;
	color: #111c16;
}

.clear {
	clear: both;
}

.animate, .animate * {
	-ms-transition: all 0.5s ease!important;
	-ms-transition-delay: .1s!important;
	-moz-transition: all 0.5s ease!important;
	-moz-transition-delay: .1s!important;
	-webkit-transition: all 0.5s ease!important;
	-webkit-transition-delay: .1s!important;
	transition: all 0.5s ease!important;
	transition-delay: .1s!important;
}

.animate-hover:hover {
    -ms-transition: all 0.5s ease!important;
    -ms-transition-delay: .1s!important;
    -moz-transition: all 0.5s ease!important;
    -moz-transition-delay: .1s!important;
    -webkit-transition: all 0.5s ease!important;
    -webkit-transition-delay: .1s!important;
    transition: all 0.5s ease!important;
    transition-delay: .1s!important;
}

img {
	max-width: 100%;
	height: auto;
}

a:hover, a:focus {
    text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1170px;
	position: relative;
}

header {
	position: fixed;
	z-index: 999;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 90px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 8px 3px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 8px 3px rgba(0,0,0,0.2);
	padding-left: 60px;
	padding-right: 60px;
}

.header {
	position: relative;
}

.logo-img {
	height: 80px;
	width: auto;
	margin-top: 5px;
}

.navbar-inverse {
    background-color: transparent;
    border: none;
}

.topnav {
	display: inline-block;
	margin-bottom: 0px;
	vertical-align: top;
}

.main-menu {
	position: absolute;
	right: 145px;
	/* top: 14px; */
    top: 32px;
}

.main-menu li {
	list-style: none;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 8px;
	position: relative;
}

.main-menu li a {
	font-size: 16px;
	color: #2647a3;
	font-weight: bold;
    white-space: break-spaces;
}

.main-menu li a:hover {
	color: #111c16;
	text-decoration: none;
}

.sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    left: 15px;
    z-index: 100000;
    float: left;
    white-space: nowrap;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    background: #fff !important;
    padding: 22px 40px 20px 35px;
    border: none;
    border-radius: 5px;
    text-transform: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.main-menu li:hover .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.submenu-title {
    width: 120px;
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    font-size: 19px;
    font-weight: bold;
}

.submenu-links {
    width: 260px;
    display: inline-block;
    padding-left: 15px;
    border-left: 1px solid #ccc;
}

.sub-menu ul, .sub-menu li {
	padding-left: 0px;
}

.sub-menu li {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 0px;
}

.sub-menu a {
    font-size: 16px;
    font-weight: 600!important;
    color: #111c16!important;
    display: block;
    padding: 7px 0 !important;
    background-color: transparent !important;
    position: relative;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

.sub-menu a:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transition: all .2s ease .1s;
    transition: all .2s ease .1s;
    cursor: pointer;
}

.sub-menu a:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 1px;
    top: 50%;
    left: -20px;
    visibility: hidden;
    opacity: 0;
    background: #111c16;
    -webkit-transition: all .2s ease .1s;
    transition: all .2s ease .1s;
}

.sub-menu a:hover:before {
    left: -18px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

.search {
	display: inline-block;
	vertical-align: top;
	margin-top: -3px;
}

.search input {
	padding: 0px 0px 0px 30px;
	line-height: 30px;
	height: 30px;
	border: 0px;
	border-radius: 15px;
	background: #ededed url(https://www.mentorstvo.ba/site/templates/images/xsearch-icon.png.pagespeed.ic.29L62EphT1.png) no-repeat 6px 6px !important;
	width: 30px;
	cursor: pointer;
}

.search input:focus {
	padding: 0px 5px 0px 40px;
	width: 150px;
	border: 0px;
	outline: none;
	cursor: default;
}

.language {
	display: inline-block;
	vertical-align: top;
	padding-left: 10px;
	padding-right: 25px;
	border-left: 2px solid #2647a3
}

.language a {
	font-size: 16px;
    color: #2647a3;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    border-right: 2px solid #2647a3;
}

.language a:last-child {
	border-right: none;
}

.language a:hover {
    color: #111c16;
    text-decoration: none;
}

.donate-button {
	position: absolute;
	right: 0px;
	/* top: 5px; */
    top: 23px;
	display: block;
	background-color: #2647a3;
	color: #FFF;
	text-transform: uppercase;
	height: 40px;
	line-height: 38px;
	font-weight: bold;
	border: 1px solid #2647a3;
	padding: 0px 30px!important;
	width: auto;
	font-size: 16px;
    border-radius: 7px;
}

.donate-button:hover {
	background-color: #FFF;
	color: #2647a3;
	text-decoration: none;
}

.org-button, .vol-button {
	position: absolute;
	right: 0px;
	top: 52px;
	border: 1px solid #2647a3;
	height: 30px;
	padding: 0px 20px;
	color: #2647a3;
	background-color: #FFF;
	line-height: 28px;
	font-weight: bold;
	border-radius: 7px;
}

.org-button:hover, .vol-button:hover {
	background-color: #2647a3;
	color: #FFF;
	text-decoration: none;
}

.org-button {
	right: 180px;
}

.header-images-container {
	overflow: hidden;
	margin-bottom: 40px;
}

.header-images {
	border-bottom: 8px solid #2647a3;
	position: relative;
	overflow: hidden;
}

.template-news-item .header-text-container {
	display: none!important;
}

.image-header {
	position: relative;
	max-height: 400px;
	overflow: hidden;
}

.image-header img {
	object-fit: cover;
	height: 400px;
}

.sp-buttons {
	position: absolute;
	z-index: 99;
	bottom: 15px;
}

.sp-button {
	width: 15px;
	height: 15px;
	border: 0px;
	background-color: #FFF;
	box-shadow: 0px 0px 2px 0 rgba(5,5,5,0.3);
}

.sp-selected-button {
	background-color: #2647a3;
}

.sp-slide:after, .image-header:after {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: rgba(0,0,0,0.6);
	z-index: 0;   /*home page  blog slider button css change */
}
/*home page blog slider para css*/
h2#sliderpara {
    font-size: 35px;
    color: #fff;
}

.template-news-item .sp-slide:after {
	background: rgba(0,0,0,0.3);
}

.slider-two-items .sp-slide {
    position: relative;
    width: 50%;
    float: left;
    height: 470px;
    overflow: hidden;
}

.slider-two-items .sp-slide:first-child {
    padding-right: 5px;
}

.slider-two-items .sp-slide:last-child {
    padding-left: 5px;
}

.slider-two-items .sp-slide:last-child:after {
    left: 5px;
}

.slider-two-items .sp-slide:first-child:after {
    right: 5px;
}

.slider-two-items .sp-slide img {
    width: 100%!important;
    height: 470px;
    object-fit: cover;
}

/*
.template-news-item .sp-slide{
	transform: translateX(50%);
}
*/

.slider-text-container,
.header-text-container {
	position: absolute;
	z-index: 99;
	top: 50%;
	transform: translate(0, -50%);
	left: 80px;
	right: 70px;
	color: #FFF;
    display: none;
}

.slider-text-container p {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 24px;
	margin-bottom: 0px;
}

.slider-text-container h1 {
	margin-top: 0px;
	color: #FFF;
}

.slider-text-container a {
	background-color: #2647a3;
	color: #FFF;
	height: 44px;
	line-height: 40px;
	font-weight: bold;
	border: 1px solid #2647a3;
	padding: 0px 30px!important;
	width: auto;
	font-size: 16px;
    border-radius: 7px;
    font-family: 'Titillium Web', sans-serif;
    display: inline-block;
}

.slider-text-container a:hover {
	text-decoration: none;
	color: #2647a3;
	background-color: #FFF;
    -ms-transition: all 0.5s ease!important;
    -ms-transition-delay: .1s!important;
    -moz-transition: all 0.5s ease!important;
    -moz-transition-delay: .1s!important;
    -webkit-transition: all 0.5s ease!important;
    -webkit-transition-delay: .1s!important;
    transition: all 0.5s ease!important;
    transition-delay: .1s!important;
}

.header-text-container h1 {
	font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #FFF;
    margin-top: 0px;
    margin-bottom: 0px;
}

.header-text-container h2 {
    font-size: 26px;
    line-height: 28px;
    font-family: 'Covered By Your Grace', cursive;
    color: #e2e659 !important;
    text-align: center;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cols-container {
	margin-bottom: 60px;
}

.cols {
	color: #737373;
}

.cols:hover {
	text-decoration: none;
	color: #FFF;
}

.cols-image {
	overflow: hidden;
	border-radius: 3px;
	position: relative;
}

.cols-image img {
	object-fit: cover;
	height: 275px;
}

.cols-image:before {
    position: absolute;
    content: '';
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: rgba(0,0,0,.3);
    top: 15px;
    left: 15px;
    border-radius: 3px;
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4);
    -o-transform: scale(.4);
    transform: scale(.4);
    visibility: hidden;
    opacity: 0;
}

.cols:hover .cols-image:before {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease .2s;
    transition: all .3s ease .2s;
}

/*
.cols-image:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    top: 0;
    left: 0;
    border-radius: 3px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    visibility: visible;
    opacity: 1;
}

.cols:hover .cols-image:after {
	visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}
*/

.cols-text {
	background: #fff;
    padding: 20px 30px 40px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    border-radius: 3px;
    position: relative;
    z-index: 2;
    box-shadow: 3px 3px 7px 0px rgba(5,5,5,0.2);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    text-align: center;
    min-height: 165px;
}

.cols-text h2 {
	-webkit-transition: all .2s ease;
    transition: all .2s ease;
	color: #111c16;
}

.cols:hover h2 {
	color: #FFF;
}

.cols:hover .cols-text {
	background-color: #2647a3;
	color: #FFF;
}

.cols-text:after {
    display: block;
    content: "\f105";
    text-align: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: auto;
    bottom: -22px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(https://www.mentorstvo.ba/site/templates/images/01.png.pagespeed.ce.s8qzHNtcLj.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-size: 18px;
    line-height: 44px;
    color: #2647a3;
    font-family:'FontAwesome';
}

.cols:hover .cols-text:after {
    background: url(https://www.mentorstvo.ba/site/templates/images/x02.png.pagespeed.ic.d-j0h2QBYv.png);
    background-size: 100%;
    color: #FFF;
}

.news-container {
	min-height: 100px;
	background-color: #f8f9fb;
	padding-top: 40px;
	padding-bottom: 40px;
}

.news-container h2 {
	font-size: 40px;
    line-height: 40px;
    margin-bottom: 40px;
    margin-top: 0px;
    text-align: center;
}

.card-thumb .date {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 57px;
    height: 55px;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    z-index: 2;
}

.card-thumb .date p:first-of-type {
    font-size: 14px;
    line-height: 12px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 0px;
}

.card-thumb .date p:last-of-type {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
}

.card-thumb {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mb-15 {
    margin-bottom: 15px;
}

.card-thumb img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.news-card {
	margin-bottom: 40px;
}

.news-card:hover .card-thumb img {
    -webkit-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
}

.card-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-title a {
	color: #333;
}

.card-title a:hover {
    color: #2647a3;
    text-decoration: none;
}

.txt-normal {
    font-size: 16px;
    line-height: 20px;
    color: #737373;
}

.subtitle {
	font-size: 20px;
    line-height: 30px;
    color: #2647a3;
    font-family: 'Covered By Your Grace', cursive;
}

.subtitle + h1 {
	margin-top: 0px;
}

header + .container:not(.header-images-container) {
    padding-top: 30px;
}

.content-body h1 {
	font-size: 36px;
	margin-bottom: 30px;
}

.standard-content {
    font-size: 16px;
}

.standard-content h3 {
    font-size: 22px;
    line-height: 30px;
    text-transform: none;
    margin-bottom: 24px;
    font-weight: bold;
}

.sp-full-screen-button:before {
	color: #FFF;
}

.news-slider {
	margin-left: -10px;
	margin-right: -10px;
}

.news-slider .owl-item {
	padding-left: 10px;
	padding-right: 10px;
}

.news-slider .owl-item img {
	object-fit: cover; 
	width: 100%;
	height: 250px;
	border-radius: 4px;
}

.blog-text .date {
    width: 51px;
    height: 55px;
    text-align: center;
    color: #0d1511;
    border-radius: 3px;
    padding-top: 10px;
}

.bg3 {
    background: #e2e659 !important;
}

.blog-text .date > p:first-of-type {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0px;
}

.fw-6 {
    font-weight: 600;
}

.blog-text .date > p:last-of-type {
    font-size: 20px;
    line-height: 20px;
}

.fw-7 {
    font-weight: 700;
}

.blog-card {
    position: relative;
}

.blog-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    border-radius: 3px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 4px;
}

.blog-text .title {
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	display: inline-block;
}

.news-slider .next {
    position: absolute;
    right: -50px;
    top: 50%;
    margin-top: -30px;
    display: block;
    width: 40px;
    height: 90px;
    cursor: pointer;
    opacity: 0;
}

.news-slider .prev {
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: -30px;
    display: block;
    width: 40px;
    height: 90px;
    cursor: pointer;
    opacity: 0;
}

.news-slider .prev::before {
    background-color: #999;
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    top: 0px;
    left: 50%;
    -webkit-transform: skew(145deg,0deg);
    -ms-transform: skew(145deg,0deg);
    transform: skew(145deg,0deg);
}

.news-slider .prev::after {
    background-color: #999;
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: skew(-145deg,0deg);
    -ms-transform: skew(-145deg,0deg);
    transform: skew(-145deg,0deg);
}

.news-slider .next::before {
    background-color: #999;
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    top: 0px;
    left: 50%;
    -webkit-transform: skew(35deg,0deg);
    -ms-transform: skew(35deg,0deg);
    transform: skew(35deg,0deg);
}

.news-slider .next::after {
    background-color: #999;
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: skew(-35deg,0deg);
    -ms-transform: skew(-35deg,0deg);
    transform: skew(-35deg,0deg);
}

.news-slider:hover .prev, .news-slider:hover .next {
    opacity: 1;
}

.facts-area {
    background: #2647a3;
    padding-top: 20px;
    padding-bottom: 50px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #FFF;
}

.facts-area h3 {
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 0px;
	font-weight: bold;
}

.facts-area .numscroller {
	font-size: 60px;
	font-weight: bold;
    padding-top: 20px;
}

.txt-row {
    background-color: #f8f9fb;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hotline .section-header > h2 {
    font-size: 26px;
    line-height: 28px;
    color: #2647a3 !important;
    font-family: 'Covered By Your Grace', cursive;
    font-weight: normal;
}

.hotline .section-header > h3 {
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
}

.pos-s {
    position: static;
}

.pos-r {
    position: relative;
}

.vdo {
    position: absolute;
    bottom: 0;
    left: calc(50% + 15px);
    width: 100%;
}

.vdo, .vdo img {
    width: 570px;
    max-width: 100%;
    min-width: 1px;
    height: 560px;
    object-fit: cover;
    border-radius: 5px;
}

.play-button {
    width: 194px;
    height: 203px;
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.8);
    border-radius: 0 3px 0 0;
    position: absolute;
    bottom: calc(50% - 101px);
    left: calc(50% - 92px);
}

.play-button .fa {
    font-size: 40px;
    line-height: 203px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #111c16 !important;
}

.play-button:hover .fa, .play-button:focus .fa {
    color: #fff !important;
}

.play-button:hover, .play-button:focus {
    background: #2647a3 !important;
}

.hotline .contac-row .item {
    padding: 30px;
    border-radius: 3px;
    background: #2647a3;
}

.hotline .contac-row .icon-box {
    width: 92px;
    float: left;
    display: block;
}

.hotline .contac-row .txt-box {
    width: calc(100% - 92px);
    float: left;
    display: block;
    margin-top: 10px;
    padding-left: 20px;
}

.mt-60 {
    margin-top: 60px;
}

.hotline .contac-row .icon-box > span {
    width: 92px;
    height: 89px;
    display: block;
    text-align: center;
    background: url(https://www.mentorstvo.ba/site/templates/images/x02.png.pagespeed.ic.d-j0h2QBYv.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.hotline .contac-row .icon-box > span i {
    font-size: 40px;
    line-height: 90px;
    color: #fff;
}

.hotline .contac-row .txt-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #FFF;
    margin-top: 0px;
    margin-bottom: 0px;
}

.hotline .contac-row .txt-box a {
    color: #e2e659 !important;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
}

#cboxLoadedContent {
    padding: 0px!important;
}

.cboxIframe {
    background-color: #000;
}

.sidebar {
    border-radius: 3px;
    background: #f4f3f0;
    padding: 40px;
}

.sidebar h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111c16;
    text-transform: none;
    padding-bottom: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.sidebar-menu ul {
    margin: 0px;
    padding: 0px;
}

.sidebar-menu li {
    list-style: none;
}

.sidebar-menu a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #737373;
    padding-top: 11px;
    padding-bottom: 12px;
}

.sidebar-menu a:hover {
    color: #2647a3;
}

.sidebar-menu a i {
    float: right;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sidebar-menu li:first-of-type a {
    padding-top: 0;
}

.last-news {
    padding-bottom: 15px;
}

.last-news-item {
    margin-bottom: 15px;
}

.last-news-item .col-xs-6:last-child {
    padding-left: 0px;
    padding-right: 0px;
}

.last-news-item img {
    height: 75px;
    object-fit: cover;
    width: 100%;
}

.last-news-item .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #737373;
}

.contact-body {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f4f3f0;
}

.contact-body h2 {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 0px;
    font-weight: normal;
    color: #2647a3 !important;
}

.contact-body h1 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 0px;
}

.formular {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 50px;
}

.formular .error {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    color: red;
}

.formular .message {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.formular .form__item {
    width: 50%;
    float: left;
    padding: 0 15px 30px 15px;
}

.formular .form__item--interes, .formular .form__item--poruka, .formular .form__item--submitform {
    width: 100%;
    float: none;
}

.formular label {
    display: none;
}

.formular button {
    padding: 19px 40px;
    display: inline-block;
    border-radius: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #2647a3 !important;
    color: #FFF;
    outline: 0;
    border: 0px;
}

.formular .form__item--submitform {
    text-align: center;
}

.formular form input, .formular form textarea, .formular form select {
    width: 100%;
    background: #f4f3f0;
    padding: 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 3px;
    border: 0px;
}

.formular form select {
    padding: 10px;
}

.formular form input, .formular form select {
    height: 65px;
}

.formular form button:hover {
  background: #2647a3 !important;
  -webkit-box-shadow: 
      0 10px 10px -6px rgba(0,0,0,.3),
      inset 0 -8px 10px -6px rgba(0,0,0,.3);
  box-shadow: 
      0 10px 10px -6px rgba(0,0,0,.3),
      inset 0 -8px 10px -6px rgba(0,0,0,.3);
}

.formular form input:focus, .formular form textarea:focus, .formular form select:focus, .formular button:focus {
    border: 0px;
    outline: 0;
}

.formular input:focus::-webkit-input-placeholder,
.formular textarea:focus::-webkit-input-placeholder {
  color: #CCC;
  padding-left: 20px;
}

.body-2 {
    margin-top: 30px;
}

.people-list {
    
}

.people-item {
    border: 2px solid black;
    padding: 15px;
    margin-bottom: 30px;
}

.people-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.people {
   
}

.people-list-block {
    padding-top: 60px;
}

.people-image {
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.people-image:after {
    display: block;
    content: "";
    padding-top: 100%;
}

.people-list-subtitle {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    line-height: 28px;
    color: #2647a3 !important;
    text-align: center;
}

.people-list-title  {
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.people h3 {
    font-size: 18px;
    line-height: 26px;
    padding-top: 12px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: bold;
    text-align: center;
}

.people h4 {
    font-size: 14px;
    line-height: 30px;
    color: #737373;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.people-links {
    position: absolute;
    bottom: 10px;
    left: -5px;
    width: 100%;
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    text-align: center;
}

.people:hover .people-links {
    opacity: 1;
    left: 0px;
}

.people-link {
    width: 44px;
    height: 44px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    background: url(https://www.mentorstvo.ba/site/templates/images/09.png.pagespeed.ce.zw748J3Vbw.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    color: #000;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    margin: 0 3px;
}

.people-link:hover {
    color: #FFF;
    background: url(https://www.mentorstvo.ba/site/templates/images/03.png.pagespeed.ce.OyLg4ELZdY.png) no-repeat center center;
}

.partners-list-title {
    font-size: 26px;
    line-height: 28px;
    font-family: 'Covered By Your Grace', cursive;
    color: #2647a3 !important;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.partner {
    border: 2px solid rgba(0, 0, 0, 1);
    padding: 10px;
    min-height: 100%;
}

.partners-list {
    display: -webkit-flex;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.partners-list > div {
    padding-bottom: 30px;
}

.partner h3 {
    font-weight: bold;
    color: #000
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.partner:after {
    display: block;
    clear: both;
    content: "";
}

.partner .partner-image + h3 {
    font-weight: normal;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.partner-image {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 0px;
    padding-bottom: 0px;
}

.partner-link {
    font-size: 14px;
}

.partner-link a {
    color: #000;
    font-weight: bold;
}

.subpartners-list {
    width: 100%!important;
    padding-bottom: 0px!important;
    display: none;
}

.subpartners-list-content {
    display: -webkit-flex;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.subpartners-list-content > div {
    padding-bottom: 15px;
}

.subpartners-list-title {
    margin-left: 15px;
    margin-right: 15px;
    padding: 10px 15px!important;
    background-color: #f4f3f0;
    font-weight: 600;
    color: #737373;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.subpartners-list-title i {
    float: right;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 3px;
}

.covered {
    font-family: 'Covered By Your Grace', cursive;
    font-weight: normal;
    font-size: 26px;
    line-height: 28px;
    color: #2647a3 !important;
}

.content-body .button {
    padding: 19px 40px;
    display: inline-block;
    border-radius: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #FFF;
    background: #2647a3 !important;
    margin-top: 10px;
}

.search-body h2 {
    padding-left: 15px;
}

footer {
    background-color: #001144;
    margin-top: 60px;
}

.template-contact footer {
    margin-top: 0px;
}

.footer-top {
    padding-top: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid rgba(255,255,255,.1);
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    color: #b6bdb9;
    font-size: 16px;
    font-weight: 600;
}

.footer-contact h3 {
    font-size: 16px;
    line-height: 26px;
    color: #b6bdb9;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
}

.footer-contact ul {
    margin-bottom: 15px;
    padding-left: 0px;
    margin-left: 0px;
}

.footer-contact ul li {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    list-style: none;
}

.footer-top li:not(:last-of-type) {
    margin-right: 5px;
}

.footer-contact ul li i {
    font-size: 14px;
    color: #2647a3;
}

.footer-logo {
	width: 250px;
	margin-top: -10px;
	margin-bottom: -10px;
}

.footer-top li a {
    width: 44px;
    height: 44px;
    display: block;
    text-align: center;
    line-height: 48px;
    background: url(https://www.mentorstvo.ba/site/templates/images/07.png.pagespeed.ce.dCjWTp3Nf4.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.footer-top li a:hover {
    background: url(https://www.mentorstvo.ba/site/templates/images/x02.png.pagespeed.ic.d-j0h2QBYv.png) !important;
    background-size: 100px 100 !important;
}

.social-nav a:hover, .footer-top ul li a:hover {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.footer-top li a i {
    font-size: 16px;
    color: #111c16 !important;
}

.footer-top li a:hover .fa {
    color: #fff !important;
}

.news-footer {
    border-top: 2px solid #f4f3f0;
    padding-top: 64px;
}

.share-news {
   text-align: center;
}

.share-news li:not(:last-of-type) {
    margin-right: 5px;
}

.share-news a {
    width: 44px;
    height: 44px;
    text-align: center;
    display: block;
    background: url(https://www.mentorstvo.ba/site/templates/images/01.png.pagespeed.ce.s8qzHNtcLj.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.share-news a i {
    line-height: 44px;
    font-size: 16px;
    color: #111c16;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.share-news a:hover {
    background: url(https://www.mentorstvo.ba/site/templates/images/03.png.pagespeed.ce.OyLg4ELZdY.png) no-repeat center center;
}

.share-news a:hover i {
    color: #fff;
}

.back2Top {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    -webkit-box-shadow: 0 8px 12px -4px rgb(0 0 0 / 50%);
    box-shadow: 0 8px 12px -4px rgb(0 0 0 / 50%);
    line-height: 58px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    position: fixed;
    bottom: -60px;
    right: 20px;
    overflow: hidden;
    background: #2647a3;
    color: #FFF;
}

.totop {
    bottom: 20px;
}

/* Media */

@media screen and (max-width: 1280px) {
    .news-slider .next, .news-slider .prev {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .vdo {
        position: relative;
        left: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1000px) {
	/* nav colapse */
	.navbar-header {
	  float: none;
	  margin: 0px !important;
	}
	.navbar-left,
	.navbar-right {
	  float: none !important;
	}
	.navbar-toggle {
	  display: block;
	  margin-top: 3px;
	  margin-right: 5px;
	}
	.navbar-collapse {
	  border-top: 1px solid transparent;
	  box-shadow: none;
	  margin: 0px !important;
	}
	.navbar-fixed-top {
	  top: 0;
	  border-width: 0 0 1px;
	}
	.navbar-collapse.collapse {
	  display: none!important;
	}
	.navbar-nav {
	  float: none!important;
	  margin-top: 7.5px;
	}
	.navbar-nav>li {
	  float: none;
	}
	.navbar-nav>li>a {
	  padding-top: 10px;
	  padding-bottom: 10px;
	}
	.collapse.in {
	  display: block !important;
	}
    /* Custom */
    .navbar-header {
        position: absolute;
        right: 0px;
        left: 0px;
        top: 22px;
    }
    .navbar-inverse .navbar-toggle {
        border: 0px;
        padding: 0px;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background-color: #2647a3;
    }
    .footer-top .row {
        display: -webkit-flex;
        display: flex;
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-logo {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .footer-top .text-right {
        text-align: left;
    }
    .footer-contact {
        margin-bottom: 35px;
    }
    .txt-row {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .cols-image {
        margin-top: 20px;
    }
    .cols-image img {
        width: 100%;
    }
    .header-images-container {
        margin-bottom: 20px;
    }
    header {
        padding-left: 15px;
        padding-right: 15px;
        height: 70px;
        position: relative;
    }
    .logo-img {
        height: 60px;
    }
    body {
        padding-top: 0px;
    }
    .logo {
        position: relative;
        z-index: 999;
        display: inline-block;
    }
    .donate-button, .org-button, .vol-button, .main-menu {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .donate-button, .org-button, .vol-button {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
        display: block;
    }
    .topnav {
        display: block;
        position: relative;
        z-index: 9;
        margin-top: 15px;
    }
    .language {
        position: absolute;
        right: 0px;
        top: 5px;
        padding-right: 0px;
        z-index: 99;
    }
    .search input {
        padding: 0 0 0 40px;
        line-height: 30px;
        height: 40px;
        border: 0;
        border-radius: 20px;
        background: #ededed url(https://www.mentorstvo.ba/site/templates/images/xsearch-icon.png.pagespeed.ic.29L62EphT1.png) no-repeat 10px 10px !important;
        width: 40px;
        cursor: pointer;
    }
    .main-menu li {
        padding-bottom: 15px;
    }
    .sub-menu li {
        padding-bottom: 0px;
    }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }
    .navbar-inverse .navbar-toggle span {
        -ms-transition: all 0.5s ease!important;
        -moz-transition: all 0.5s ease!important;
        -webkit-transition: all 0.5s ease!important;
        transition: all 0.5s ease!important;
    }
    .navbar-inverse .navbar-toggle:not(.collapsed) span:nth-child(2) {
        transform: rotate(45deg) translate(0px, 5px);
    }
    .navbar-inverse .navbar-toggle:not(.collapsed) span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -5px);
    }
    .navbar-inverse .navbar-toggle:not(.collapsed) span:nth-child(4) {
        display: none;
    }
    .navbar-inverse {
        background-color: #FFF;
        border: 0px!important;
        -webkit-box-shadow: 0 4px 3px 3px rgb(0 0 0 / 20%);
        box-shadow: 0 4px 3px 3px rgb(0 0 0 / 20%);
        margin-top: 5px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        border: 0px!important;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .main-menu li {
        display: block;
        float: none;
        padding-left: 0px;
        padding-right: 0px;
    }
    .topnav {
        padding-left: 0px;
    }
    .sub-menu {
        width: 100%!important;
        left: 0px;
        position: relative;
        top: auto;
        padding: 0px;
        display: none;
        opacity: 1!important;
        visibility: visible!important;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .sub-menu a, .main-menu li a:hover {
        color: #2647a3!important;
    }
    .submenu-title {
        display: none;
    }
    .submenu-links {
        width: 100%;
    }
    .search {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .search input:focus {
        width: 100%;
    }
    .image-header {
    	max-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .header-images-container h1 {
        font-size: 28px;
    }
    .slider-text-container, .header-text-container {
        left: 30px;
        right: 30px;
        z-index:107!important;
    }
    .slider-text-container p {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .formular .form__item {
        width: 100%;
        float: none;
    }
    .hotline .section-header>h3 {
        font-size: 40px;
        line-height: 40px;
    }
    .hotline .section-header>h2 {
        font-size: 20px;
        line-height: 22px;
    }
    .hotline .contac-row .txt-box {
        width: calc(100% - 60px);
    }
    .hotline .contac-row .txt-box h2, .hotline .contac-row .txt-box a {
        font-size: 20px;
        line-height: 24px;
    }
    .hotline .contac-row .icon-box>span {
        width: 60px;
        height: 60px;
        background-size: 100% auto;
    }
    .hotline .contac-row .icon-box>span i {
        font-size: 30px;
        line-height: 64px;
    }
    .hotline .contac-row .icon-box {
        width: 52px;
    }
    .hotline .contac-row .item {
        padding: 15px;
    }
    footer {
        margin-top: 40px;
    }
    .vdo {
        margin-bottom: 40px;
    }
    .mt-60 {
        margin-top: 40px;
    }
    .image-header {
    	max-height: 200px;
    }
}

@media screen and (max-width: 500px) {
    .header-images-container h1 {
        font-size: 20px;
    }
    .slider-text-container p {
        font-size: 18px;
    }
    .slider-text-container a {
        font-size: 14px;
        height: 33px;
        line-height: 31px;
    }
    .sp-buttons {
        bottom: 0px;
    }

@media screen and (max-width: 414px) {
h2#sliderpara {
    font-size: 20px;
    color: #fff;
}}


/*new css*/

.back2Top + p {
    display: none!important;
}