html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
	-webkit-appearance: none;
}

:root {
  --color-1: #000000;
  --color-2: #FFFFFF;
  --color-3: #17234c;
  --color-medium: #F6F7F9;
  --color-grey: #CDCDCF;
  
  --filter-white: brightness(0) invert(1);
	--filter-blue: brightness(0) saturate(100%) invert(11%) sepia(59%) saturate(1428%) hue-rotate(202deg) brightness(93%) contrast(95%);
}
body {
	position: relative;
	max-width: 100vw;
	min-height: 100vh;
	font-size: 16px;
  background-color: var(--color-2);
  font-weight: 300
}
img { pointer-events: none; }
a, input, button {
  text-decoration: none;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
h1, h2, h3, h4, h5, h6, label, ul, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Poppins',"Poppins Fallback";
}
h1, h2, h3, h4, h5, h6, label, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #000;
}
h1, h2, h3, h4, h5, h6, ul, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-left: 0;
  margin-right: 0;
}
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-weight: 700;
  font-style: normal;
  text-decoration: none
}
h5, h6, .h5, .h6 {
  font-weight: 400;
}
#language, #menu {
	border: unset;
	background-color: transparent;
}
.center { text-align: center; }
.strong { font-weight: bolder; }
.show{display: block!important;}
.invert {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.red { color: red; }
.green { color: green; }
.form-control { border-radius: unset; }
/*
font-family: Poppins, "Poppins Fallback";
*/
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .parallax {
    background-attachment: scroll;
    min-height: 400px;
  }
}
.header .col-sm-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .link {
    display: flex;
    align-items: center;
}
.header li a, .nav-dropbtn {
  display: block;
  color: var(--color-1);
  text-align: center;
	padding: 0.5em 0.75em;
  text-decoration: none;
}
.nav-dropbtn {
  cursor: default;
}
.nav-dropdown:hover .nav-dropbtn {
	background-color: var(--color-light);
	color: var(--color-blue);
}
li.nav-dropdown {
  display: inline-block;
	z-index: 12;
}
li.nav-dropdown-list {
  display: inline-block;
	z-index: 12;
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-blue);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 11;
}
.nav-dropdown-content a {
	padding: 0.5em 0.75em;
  text-decoration: none;
  display: block;
  text-align: left;
  background: var(--color-2);
}
.nav-dropdown-content a:hover {
	background-color: var(--color-grey);
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-dropdown-content a .icon {
	height: 1em;
	width: 1.5em;
	float: left;
	margin: 0.25em 0.25em 0.25em 0;
}
.nav-dropdown-content a:hover {
	background-color: var(--color-grey);
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-dropdown-content a .icon {
	height: 1em;
	width: 1.5em;
	float: left;
	margin: 0.25em 0.25em 0.25em 0;
}
.header .nav-dropbtn:hover { cursor: pointer; }
.header li {margin: 0 1em;}
.header .nav-dropbtn {
	width: 3em;
	padding: 0;
	height: 3em;
	object-fit: cover;
	overflow: hidden;
	border-radius: 3em;
}
.header .link ul {
	margin:0;
	height: 3em;
}
.header .icon {height: inherit;}
.lang-en { background: url('images/language/en.svg'); }
.lang-nl { background: url('images/language/nl.svg'); }
.lang-lt { background: url('images/language/lt.svg'); }
.lang-en, .lang-nl, .lang-lt {
	background-position: center;
	background-size: cover;
}
/* manu */
.nav {
  position: sticky;
  top: 0;
  height: 2.625rem;
  background-color: var(--color-3);
  z-index: 10;
}
.nav-logo {
  display: none;
  width: auto;
  position: absolute;
  padding: 0 5rem;
}
.nav .nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
}
.nav-menu .nav-link {
  color: var(--color-2);
  padding: 0.3rem 1.575rem;
}
.nav-menu .nav-link::before,
.nav-menu .nav-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  border: 0 solid transparent;
  transform-origin: left;
  transition: transform .2s ease-out, opacity .2s ease-out;
  opacity: 0;
  transform: scaleX(0);
}
.nav-menu .nav-link::before{
  margin-bottom: 2.8px;
  border-top: 2px solid transparent;
}
.nav-menu .nav-link::after {
  margin-top: 2.8px;
  border-top: 6px solid var(--color-2);
}
.nav-menu .nav-link.active::before,
.nav-menu .nav-link.active::after,
.nav-menu .nav-link:hover::before,
.nav-menu .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-mob { display: none; }
@media (max-width: 1199px) {
  .nav .nav-menu { justify-content: flex-end; }
  .nav-menu .nav-link { padding: 0.3rem 1rem; }
}
@media (max-width: 767px) {
  .nav-logo { padding: 0 1rem; }
  .nav-menu .nav-link { padding: 0.3rem 0.75rem; }
	.nav-mob { display: block !important; }
	.button-mob { display: none !important; }
}
/**/
.overlay-05 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-1);
  opacity: 0.5;
  z-index: 5;
}
.parallax-container, 
.slider-container {
  position: relative;
  padding: 1rem 0;
  margin: 0;
  width: auto ;
  max-width: 100%;
  min-width: 0;
  background-position: 50% 50%;
  background-image: none;
}
.parallax-container { height: 550px; }
.slider-container { height: 725px; }
.parallax-container .carousel,
.slider-container .carousel {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.parallax-container .carousel-inner,
.slider-container .carousel-inner {
  height: inherit;
}
.slider-container .carousel-item {
  height: inherit;
}
.slider-container .carousel-item img {
  object-position: bottom;
  object-fit: cover;
  height: inherit;
}
.parallax-container .over-title {
  margin: auto;
  display: flex;
  justify-content: center;
  height: inherit;
  align-items: center;
}
.over-title {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  margin: 2rem auto;
  z-index: 6;
}
.over-title h1,
.over-title h2,
.over-title h3,
.over-title h4 {
  color: var(--color-2);
  line-height: 1;
  margin-top: 1rem;
}
.over-title h1 span, .over-title h2 span { font-size: 6rem; }
.parallax-container .over-title h1, .parallax-container .over-title h2  { 
  font-size: 4rem;
  margin: 0;
}
.key-providers {
  position: relative;
  height: 10rem;
  justify-content: center;
  z-index: 7;
}
.key-providers .key-box {
  position: absolute;
  width: inherit;
  height: 14rem;
  top: -5rem;
  background-color: var(--color-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.key-box .key-icon {
  display: flex;
  height: 6rem;
  width: 6rem;
  margin: 2rem;
  padding: 0.5rem;
}
.key-box h4 {
  color: var(--color-2);
  font-weight: 600;
}
.content { margin: 2.5rem 0 3.5rem 0; }
.content h2 { font-size: 2.5rem; }
.content p { font-size: 1.5rem; }
.key-providers .col-3 { padding: 0; }
@media (max-width: 767px) {
  .key-providers { height: 5rem; }
  .key-providers .key-box {
    height: 9rem;
    top: -5rem;
  }
  .key-box .key-icon {
    height: 5rem;
    width: 5rem;
    margin: 1rem auto;
    padding: 0.5rem;
  }
  .key-box h4 {
    font-weight: 500;
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  .key-box .key-icon {
    height: 4rem;
    width: 4rem;
    padding: 1rem;
  }
}

.parallax-container .carousel-item div {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
}
#services { border-top: 1rem solid var(--color-3); }
.parallax-container .carousel-item div { z-index: -5; }
#services .parallax-container .carousel-item:nth-child(1) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-15.png);
}
#services .parallax-container .carousel-item:nth-child(2) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-16.png);
}
#services .parallax-container .carousel-item:nth-child(3) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-17.png);
}
#services > .container { margin: 4rem auto; }
.service {
  height: 30rem;
  margin: 1rem;
}
.service .service-image .img { width: 100%; }
.service h3, .service h4 {
  font-size: 2rem;
  margin: 1rem 0.25rem 0 0.25rem;
}
.service p {
  font-size: 1.25rem;
  margin: 0.5rem 0.25rem 0 0.25rem;
}
/*.service .text-out { display: none; }*/
.service .text-in { display: block; }
.service .text-in h4 { font-size: 1.5rem; }
.service .text-in p { font-size: 1rem; }
/*.service:hover .text-out { display: none; }
.service:hover .text-in { display: block; }*/
.service:hover { box-shadow: 0px 0px 3px 0px #000; }
.service {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.link-button {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  color: var(--color-2);
  background-color: var(--color-1);
  text-decoration: none;
  margin: 1.5rem;
  border: 0.2rem solid var(--color-1);
  border-radius: 3rem;
  box-shadow: 0px 0px 2px 1px var(--color-1);
  font-weight: 400;
}
.link-button:hover {
  color: var(--color-2);
  background-color: var(--color-3);
  border: 0.2rem solid var(--color-3);
}
#about { border-top: 1rem solid var(--color-3); }
#about .parallax-container .carousel-item:nth-child(1) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Solutions-IM-Worx-1.webp);
}
#about .parallax-container .carousel-item:nth-child(2) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-2.webp);
}
#about .parallax-container .carousel-item:nth-child(3) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-18.webp);
}
.img-team {
  width: 100%;
  padding: 1.5rem;
}
.about { margin: 2rem auto; }
.about h3,
.about h5 { margin: 1.5rem 0.75rem; }
.about p {
  font-size: 1.25rem;
  margin: 1.5rem 0.75rem;
}
/*
  Meet ICM Team
*/
#team { border-top: 1rem solid var(--color-3); }
#team .parallax-container .carousel-item:nth-child(1) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-16.png);
}
#team .parallax-container .carousel-item:nth-child(2) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-15.png);
}
#team .parallax-container .carousel-item:nth-child(3) div {
  background-image: url(../assets/images/Facebook-postai-ICM-Transport-11.png);
}
.team { margin: 2rem auto; }
.team > .team-card {
  display: flex;
  justify-content: space-evenly;
  row-gap: 2rem;
  column-gap: 1rem;
}
@media (min-width:1400px) {
	.team > .team-card { 
		column-gap: 1rem; 
		/*column-gap: 2rem; */
	}
}
.team .card {
  width: 15rem;
  border-radius: unset;
  padding: 0;
}
.team .card-img-top { border-radius: unset; height: 80%; object-fit: cover;}
h4.card-text { font-size: 1.25rem; }
.team-icon { height: 3rem; }
.team-icon svg { height: 100%; }
.team .col-6 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 3rem auto 2rem auto;
  row-gap: 1rem;
}
.team .col-6 h4 { margin: 0; }
/*
  Contact
*/
#contact { border-top: 1rem solid var(--color-3); }
#contact .parallax-container .carousel-item:nth-child(1) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-2.webp);
}
#contact .parallax-container .carousel-item:nth-child(2) div {
  background-image: url(../assets/images/carousel/Facebook-postai-ICM-Transport-18.webp);
}
.contact-row { margin: 3rem auto; }
.contact-row ul {
  list-style: none;
  padding: 0;
}
.button-center {
  display: flex;
  justify-content: center;
}
.contact-input,
.contact-text { padding-top: 1rem; }
/*
* Footer
*/
.footer {
	font-style: italic;
  background-color: var(--color-1);
  color: var(--color-2);
  font-weight: 400;
}
.footer h1 {
	font-size: 3.4em;
	margin: 0.5em 0;
}
.footer ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer .footer-loc { flex-direction: column; }
.footer .contact {
	display: flex;
	align-items: center;
	background: var(--color-3);
	color: var(--color-2);
	padding: 1em 0;
} 
.footer .contact .row { align-items: center; }
.contact .footer-contact {
	display: flex;
	justify-content: center;
	margin: 0;
}
.contact .footer-contact ul {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
.footer .footer-media a {
	font-size: 1.5rem;
	color: var(--color-2);
}
.footer .footer-media a:hover { color: var(--color-grey); }
.contact .footer-menu {justify-content: space-evenly;}
.contact .footer-social .icon {margin: 2em 1em;}
.contact .footer-social a:hover .icon {filter: var(--filter-dark);}
.footer .copyright {
	display: flex;
	align-items: center;
	min-height: 4em;
	text-align: center;
	padding: 0.5em;
} 
.footer-contact li { margin: 0 0 0.5em; }
.copyright a {color: var(--color-light);}
.copyright a:hover {color: var(--color-grey);}
.copyright .col-lg-6:first-child {text-align: left;}
.copyright .col-lg-6:last-child {text-align: right;}
.mobile-open, .nav-mobile { display: none; }
.nav-mobile .icon {
  height: 18px;
  width: 18px;
  margin: 0 0.25em;
  filter: var(--filter-white);
}
@media (max-width:991px) {
	.copyright .col-lg-6:first-child {text-align: center;}
	.copyright .col-lg-6:last-child {text-align: center;}
	.contact-row { gap: 2rem; }
	.footer .footer-loc li { font-size: 0.75rem; }
}
@media (max-width: 767px) { 
	.nav-mobile {
		display: block;
		text-align: right;
		padding: 0.5rem 1rem;
    color: #FFF;
	}
	.mobile { display: none !important; }
	.nav .nav-menu {
    flex-direction: column;
		background-color: var(--color-3);
	}
	.nav-dropdown-content { right: 0; }
	.footer .footer-loc { margin: 0.75rem auto; }
	.footer .footer-loc li { font-size: 1rem; }
}
@media (max-width: 559px) { 
	.over-title h1 span,.over-title h2 span { font-size: 4rem; }
	.parallax-container .over-title h1, .parallax-container .over-title h2  { font-size: 3rem; }
	.key-box h4 { font-weight: 500; font-size: 0.9rem; }
	.key-box .key-icon { margin: .4rem auto; }
}
.grecaptcha-badge { z-index: 15; }
/* cookie consent */
.cookie-consent {
	position: fixed;
	width: 100%;
	max-width: 400px;
	min-height: 100px;
	border-radius: 10px;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 15px rgba(0,0,0,.2);
	box-shadow: 0 2px 15px rgba(0,0,0,.2);
	z-index: 9999;
	font-family: sans-serif;
	bottom: 10px;
	left: 10px;
}
.cookie-consent.show {
	-webkit-animation-name: popInBottom;
	animation-name: popInBottom;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: cubic-bezier(.19,1,.22,1);
	animation-timing-function: cubic-bezier(.19,1,.22,1);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.cookie-consent.hide, .hide{ display: none; }
.cookie-consent .cc-wrapper {
	position: relative;
	display: inline-block;
	padding: 15px
}
.cookie-consent .cc-wrapper .cc-row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: left
}
.cookie-consent .cc-wrapper .cc-row .cc-row-content .cc-message {
	position: relative;
	width: 100%;
	display: inline-block;
	color: #000;
	font-size: 16px;
	margin-top: 0
}
.cookie-consent .cc-wrapper .cc-row .cc-row-content .cc-controls {
	position: relative;
	width: 100%;
	float: left;
	margin-top: 10px
}
.cookie-consent .agreement-btn, .cookie-consent .cookie-policy-btn {
	margin: 0 10px 0 0;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 14px;
	border: none;
	cursor: pointer;
	float: left;
}
.cookie-consent .agreement-btn {
	color: #fff;
	background-color: rgb(23, 35, 76);
	opacity: 1;
	text-transform: uppercase;
	font-weight: 600;
}
.cookie-consent .agreement-btn:hover {
	background-color: #000;
}
.cookie-consent .cookie-policy-btn {
	color: #000;
	opacity: .9;
	font-weight: 400;
}
.cookie-consent .cookie-policy-btn:hover {
	opacity: 1;
	text-decoration: underline
}
@-webkit-keyframes popInBottom {
	0% {
		-webkit-transform: translateY(120%);
		transform: translateY(120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}
@keyframes popInBottom {
	0% {
		-webkit-transform: translateY(120%);
		transform: translateY(120%)
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (max-width: 420px) {
	.cookieConsent {
		border-radius:0;
		max-width: inherit;
		left: 0!important;
		bottom: 0!important;
	}
}