
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins');

/* VARIABLES */
:root {
	--primary-font: "Barlow", sans-serif;
	--secondary-font: 'Poppins', sans-serif;
	--primary-color: #002257;
	--secondary-color: #feb900;
	--secondary-color-hover: #ffc732;
	--btn-bg-color: #173971;
	--btn-bg-color-hover: #014d8b;
	--btn-border-color: #173971;
	--btn-border-color-hover: #014d8b;
	--link-color: #262626;
	--link-color-hover: #014d8b;
}

/* GENERAL */
body{
	font-family: var(--primary-font);
	line-height: 1.7;
	color: #516171
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: #092032;
}

a {
	color: var(--link-color);
	text-decoration: none;
	transition: all 0.4s ease;
	font-weight: 500;
}
a:hover {
	color: var(--link-color-hover);
}

img {
	width: 100%;
}

section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.bg-cover {
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat;
}

.intro {
	margin-bottom: 40px;
}

.intro h6 {
	font-weight: 400;
	color: var(--secondary-color);
	text-transform: uppercase;
}

.intro p {
	/*max-width: 500px;*/
	margin: auto;
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* BACK TO TOP */
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--secondary-color);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}
.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}
.back-to-top:hover {
	background: var(--secondary-color-hover);
	color: #fff;
}
.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--primary-color) transparent var(--primary-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* NAVBAR */
.top-nav {
	background: var(--primary-color);
	padding-top: 10px;
	padding-bottom: 10px;
}

.top-nav p {
	display: inline-block;
	margin-bottom: 0px;
	color: #fff;
	font-size: 13px;
	padding: 0 12px;
	cursor: default;
}
.top-nav p span,
.top-nav p i {
	opacity: 0.6;
}
.top-nav p:nth-of-type(2) {
	border-left: 1px solid #41414a;
}
.top-nav p:nth-of-type(3) {
	border-left: 1px solid #41414a;
}

.top-nav i {
	font-size: 22px;
	margin-right: 10px;
}

.top-nav i, 
.top-nav span {
	vertical-align: middle;
}

.top-nav-action {
	position: relative;
}
.top-nav-action .action-search {
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    border: 1px solid #41414a;
    border-radius: 3px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    padding-right: 35px;
    background: transparent;
    outline: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 250px;
}
.top-nav-action .action-btn {
    position: absolute;
    left: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 40px;
    right: 0;
    color: #ffffff;
    font-size: 16px;
    border: none;
    padding-right: 15px;
    padding-left: 5px;
    background: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
	min-height: 100px;
}

@media (min-width: 992px) {
	.navbar .navbar-nav li {
		margin-left: 20px;
	}
	.navbar .navbar-nav a.nav-link {
		/*line-height: 100px;*/
	}
}

.navbar .navbar-nav a.nav-link {
	font-family: var(--primary-font);
	font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
	color: #666666;
}
.navbar .navbar-nav a.nav-link:hover,
.navbar .navbar-nav a.nav-link.active {
	color: var(--link-color-hover);
}

.navbar-brand img {
	height: 60px;
	width: auto;
}


/* BTN */
.btn {
	padding: 9px 24px;
	font-weight: 500;
}

.btn-brand {
	background: var(--btn-bg-color);
	color: #fff;
	border-color: var(--btn-border-color);
}
.btn-brand:hover {
	background: var(--btn-bg-color-hover);
	color: #fff;
	border-color: var(--btn-border-color-hover);
}
.btn-brand i {
	font-size: 18px;
	vertical-align: middle;
}


/* SLIDER */
#hero-slider {}

#hero-slider h1 {
	font-weight: 700 !important;
}

.slide {
	height: calc(100vh - 160px);
}

.slide1 {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slides/slide-001.jpg);
}
.slide2 {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slides/slide-002.jpg);
}
.slide3 {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/slides/slide-003.jpg);
}

/* OWL CAROUSEL */
.owl-nav img {
	width: 32px;
	height: 32px;
}
.owl-prev,
.owl-next {
	position: absolute;
	top: 50%;
	width: 60px !important;
	height: 60px !important;
	display: grid;
	/*place-items: center;*/
	align-items: center;
	justify-items: center;
	background-color: rgba(255, 255, 255, .2) !important;
	color: #fff !important;
	font-weight: 700 !important;
	margin-top: -30px !important;
	font-size: 12px !important;
	border-radius: 100px !important;
}
.owl-prev {
	left: 5px;
}
.owl-next {
	right: 10px;
}
.owl-prev:hover,
.owl-next:hover {
	background-color: var(--secondary-color) !important;
}


/* ABOUT */
#about h1 {
	margin-bottom: 0;
}

.since {
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding-right: 20px;
	color: #484848;
	display: inline-block;
	position: relative;
	font-size: 18px;
}
.since::after {
	background-color: var(--secondary-color);
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 110px;
}


/* ATICLES */
#articles > .articles-bg {
	background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/bg_section.jpg), #082032;
	padding-top: 110px;
	padding-bottom: 130px;
}

#articles .intro h6,
#articles .intro h1 {
	color: #fff;
}

.articles-boxes {
	margin-top: -150px;
	position: relative;
    z-index: 100;
}

.article-box {
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
	text-align: center;
	background-color: #fff;
	transition: all .4s ease;
	position: relative;
	text-align: center;
	overflow: hidden;
}

.article-thumb img {
	padding: 35px;
}

.article-box figure {
	margin: 0;
}

.article-box .service-txt {
    background-color: #f8f9fc;
    padding: 25px 0;
}

.article-box .article-content {
	background-color: rgba(8,11,26,.90);
	/*background-color: rgba(0, 34, 87, 0.702);*/
    color: #fff;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 15px 30px;
    position: absolute;
    transition: .4s;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    /*pointer-events: none;*/
}
.article-box:hover .article-content {
    left: 0;
}

.article-box .article-content h5 {
	color: #fff;
}


/* GALLERIES */
.gallery {
	position: relative;
}

.gallery .overlay {
	background: linear-gradient(to bottom, rgba(9, 32, 50, 0.0), rgba(9, 32, 50, 0.8));
	/*background: green;*/
	position: absolute;
	width: 100%;
	height: 240px;
	bottom: 0;
	left: 0;
}

.gallery .content {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 32px;
}

.gallery h1,
.gallery h6 {
	color: #fff;
}

.gallery h6 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gallery h6::before {
	content: '';
	height: 2px;
	width: 24px;
	background: var(--secondary-color);
	display: inline-block;
	vertical-align: middle;
	margin-right: 12px;
}


/* BLOG POST */
.blog-post {
	position: relative;
}

.blog-post .tag {
	padding: 4px 12px;
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: var(--secondary-color);
	color: #fff;
	border-radius: 100px;
}

.blog-post a {
	font-weight: 700;
}

.blog-post img {
	margin-bottom: 12px;
	border: 7px solid #f5f5f5; 
}

.blog-post h4 {
	margin-top: 12px;
	margin-bottom: 12px;
}

.blog-post small {
	color: var(--secondary-color);
	text-decoration: underline;
	text-transform: uppercase;
}


/* PARTNER LOGOS */
#partner-logos {
	padding-bottom: 160px;
}

#partner-logos .owl-carousel .owl-item img {
	width: 200px;
	height: 60px;
	margin: auto;
}

.partner-logo p {
	margin: 15px;
	padding: 20px;
	box-shadow: 0 0px 20px 0 rgb(0 0 0 / 10%);
    text-align: center;
}

.partner-logo img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  transition: all 1s ease;
}
.partner-logo img:hover {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    transition: all 1.8s ease;
}


/* FOOTER */
footer {
	padding-top: 80px;
	padding-bottom: 40px;
	color: #fff;
	background: linear-gradient(rgba(9, 32, 50, .9), rgba(9, 32, 50, .9)), url(../img/bg_section.jpg);
}

footer i.block-icon {
    margin-right: 15px;
    font-size: 24px;
}

footer h4 {
	font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

.footer-top {
	margin-bottom: 40px;
}

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


footer .social-links a {
	margin-left: 5px;
	margin: 5px;
}
.social-links a {
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, .3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	border-radius: 100%;
}
.social-links a:hover {
	background: #fff;
	color: var(--secondary-color);
}



/* PAGE */
.page {
	
}

/* PAGE CONTENT */
.page-details {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-bottom: 30px;
}

.page .page-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.page .page-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.page .page-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.page .page-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.page .page-details .meta-top ul li+li {
  padding-left: 20px;
}

.page .page-details .meta-top i {
  font-size: 24px;
  margin-right: 8px;
  line-height: 0;
  color: var(--secondary-color);
}

.page .page-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.page .page-details .meta-top a:hover {
  color: var(--secondary-color-hover);
}

.page .page-details .content {
	margin-top: 20px;
}

/* PAGE SIDEBAR */
.page .sidebar {
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.page .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.page .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.page .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.page .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.page .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.page .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.page .sidebar .search-form form button i {
  line-height: 0;
}

.page .sidebar .search-form form button:hover {
  background: var(--secondary-color);
}

.page .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.page .sidebar .categories ul li+li {
  padding-top: 10px;
}

.page .sidebar .categories ul a {
  color: #444444;
  transition: 0.3s;
}

.page .sidebar .categories ul a:hover {
  color: #86db9f;
}

.page .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.page .sidebar .links ul {
  list-style: none;
  padding: 0;
}

.page .sidebar .links ul li {
  display: flex;
}

.page .sidebar .links ul i {
  font-size: 18px;
  padding-top: 2px;
  padding-right: 7px;
}

.page .sidebar .links ul li+li {
  padding-top: 10px;
}

.page .sidebar .links ul a {
  color: #52565e;
  font-size: 15px;
  transition: 0.3s;
}

.page .sidebar .links ul a:hover {
  color: #86db9f;
}


/* PAGE CONTACT */
.contact {
  padding-top: 5px;
}
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: var(--secondary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--secondary-color);
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5fcf80;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #5fcf80;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3ac162;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* SINGLE */



/* SINGLE ASORTIMAN */
.single-asortiman-image {
	max-width: 500px;
	margin: 0 auto;
}

/* SINGLE BLOG */
