/*Media template*/

	/*
	Bootstrap-5 standards: 
	X-Small devices (portrait phones, less than 576px)
	No media query for `xs` since this is the default in Bootstrap
	*/

	/*Small devices (landscape phones, 576px and up)*/
	@media (min-width: 576px) {}

	/*Medium devices (tablets, 768px and up)*/
	@media (min-width: 768px) {}

	/*Large devices (desktops, 992px and up)*/
	@media (min-width: 992px) {}

	/*X-Large devices (large desktops, 1200px and up)*/
	@media (min-width: 1200px) {}

	/*XX-Large devices (larger desktops, 1400px and up)*/
	@media (min-width: 1400px) {}
/*/Media template*/


/*Fonts*/

	/*@font-face {
	 font-family: "Open Sans";
	 font-display: auto;
	 src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
	 font-style: normal;
	 font-weight: 400;
	 font-display: swap;
	}*/

	.font-small {
		line-height: initial;
	}
	.font-medium {
		line-height: initial;
	}
	.font-big {
		line-height: initial;
	}
/*/Fonts*/


/*Common styles*/
	
	/*Selectors*/
		*::-webkit-input-placeholder {
				color: #666;
				opacity: 1;
		}
		*:-moz-placeholder {
			color: #666;
			opacity: 1;
		}
		*::-moz-placeholder {
			color: #666;
			opacity: 1;
		}
		*:-ms-input-placeholder {
			color: #666;
			opacity: 1;
		}

		html { 
			font-size: 16px; 
		}

		body {
			background-color: #9ebbd2;
			font-family: system-ui, sans-serif;
			font-family: 'Open Sans', sans-serif;
			font-display: swap;
		}

		body input:focus:required:invalid,
		body textarea:focus:required:invalid {}

		body input:required:valid,
		body textarea:required:valid {}

		section {}

		a {}
		a:hover {}

		hr {}

		img { max-width: 100%; height: auto; }
	/*/Selectors*/

	.block { display: block; }
	.inline-block { display: inline-block; }
	.position-relative { position: relative; }
	.overflow-hidden { overflow: hidden; }
	.comfort-reading { max-width: 900px; }
	.font-centered {text-align: center;}
	.subheader { font-size: 80%; }

	.text-center { text-align: center; }
	.text-left { text-align: left; }
	.text-right { text-align: right; }

	.width-full { width: 100%; }


	/*Colors*/
		.light-gray {}
		.gray {}
		.dark-gray {}
		.white { color: white; }
		.red {}
		.dark-red {}
		.green {}
		.light-green {}
		.dark-green {}
		.blue {}
		.dark-blue {}

		.bkg-gray {}
		.bkg-white { background-color: white; }
		.bkg-red {}
		.bkg-dark-red {}
		.bkg-green {}
		.bkg-dark-green {}
		.bkg-blue {}
		.bkg-dark-blue {}
	/*/Colors*/


	/*Custom Indents*/
		.indent--single {
			margin-bottom: 10px !important;
			margin-top: 10px !important;
		}
		.indent--double {
			margin-bottom: 20px !important;
			margin-top: 20px !important;
		}
		.indent--quad {
			margin-bottom: 40px !important;
			margin-top: 40px !important;
		}
		.indent-top--single {
			margin-top: 10px !important;
		}
		.indent-top--double {
			margin-top: 20px !important;
		}
		.indent-bottom--quad {
			margin-bottom: 40px !important;
		}
		.indent-bottom--single {
			margin-bottom: 10px !important;
		}
		.indent-bottom--double {
			margin-bottom: 20px !important;
		}
		.indent-bottom--quad {
			margin-bottom: 40px !important;
		}
		.no-indent {
			margin-top: 0px !important;
			margin-bottom: 0px !important;
		}
		.no-indent--top {
			margin-top: 0px !important;
		}
		.no-indent--bottom {
			margin-bottom: 0px !important;
		}
	/*/Custom Indents*/


	/*Aspect Image*/
		.aspect-image-frame {
			width: 100%;
			position: relative;
		}
		.aspect-image-ratio {}
		.aspect-image-image {
			position: absolute;
			top: 0px;
			left: 0px;
			width: 100%;
			height: 100%;
			object-position: center;
			object-fit: cover;
			overflow: hidden;
		}
		.aspect-image-ratio-square,
		.aspect-image-ratio {
			padding-top: 100%; 
		}
		.aspect-image-ratio-3to4 {
			padding-top: 75%; 
		}
		.aspect-image-ratio-16to9 {
			padding-top: 56.25%; 
		}
		.aspect-image-ratio-long {
			padding-top: 40%; 
		}
	/*/Aspect Image*/


	/*Headers*/
		h1, h2, h3, h4, h5, h6 {
			font-weight: 400;
			margin-bottom: 0.5em;
		}
		h1, .header-h1 {
			font-size: 2.6rem;
		}
		h2, .header-h2 {
			font-size: 2.2rem;
		}
		h3, .header-h3 {
			font-size: 1.5rem;
		}
		h4, .header-h4 {}
		h5, .header-h5 {}
		h6, .header-h6 {}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {}
			@media (min-width: 992px) {
				h2, .header-h2 {
					font-size: 3rem;
				}
			}
			@media (min-width: 1200px) {}
			@media (min-width: 1400px) {
				h1, h2, h3, h4, h5, h6 {}
				h1, .header-h1 {}
				h2, .header-h2 {}
				h3, .header-h3 {}
				h4, .header-h4 {}
				h5, .header-h5 {}
				h6, .header-h6 {}
			}
		/*/Media*/
	/*/Headers*/


	/*Links and Buttons*/
		a {}
		a:visited {}
		a:hover {}
		a:active {}
		a:focus {}

		.btn {
			font-weight: 600;
			padding: 0.9em 1.9em;
			display: inline-block;
			border-radius: 0px;
			border: 2px solid #000;
			background-color: transparent;
			transition: all ease 0.3s;
		}
		.btn:hover {
			background-color: rgba(255, 255, 255, 0.3);
		}
		.btn:active {}
		.btn:focus {}
		.btn-fixed-min-140 {}
	/*/Links and Buttons*/


	/*Lists*/
		ul, ol {
			padding-left: 1em;
			margin-bottom: 3em;
		}	

		ul ul, ol ol, ul ol, ol ul {
			margin-bottom: 1em;
		}
		li {}
	/*/Lists*/


	/*Tables*/
	/*/Tables*/


	/*Forms*/
	/*/Forms*/


	/*Layout*/
		.section {
			padding: 60px 0px;
		}
		.page-content {
			background-color: #bbd2e4;
		}
		.section--bottom-skew {
		  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 20px), 0% 100%);
		}
		.section--top-skew {
		  clip-path: polygon(0 20px, 100% 0%, 100% 100%, 0% 100%);
		  margin-top: -21px;
		}
		.section--double-skew {
		  clip-path: polygon(0 20px, 100% 0%, 100% calc(100% - 20px), 0% 100%);
		  margin-top: -21px;
		}
		.column {}
		.block {}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {
				.section {
					padding: 80px 0px;
				}
				.section--bottom-skew {
				  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 40px), 0% 100%);
				}
				.section--top-skew {
				  clip-path: polygon(0 40px, 100% 0%, 100% 100%, 0% 100%);
				  margin-top: -41px;
				}
				.section--double-skew {
				  clip-path: polygon(0 40px, 100% 0%, 100% calc(100% - 40px), 0% 100%);
				  margin-top: -41px;
				}
			}
			@media (min-width: 992px) {}
			@media (min-width: 1200px) {}
			@media (min-width: 1400px) {
				.section {
					padding: 100px 0px;
				}
				.section--bottom-skew {
				  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 50px), 0% 100%);
				}
				.section--top-skew {
				  clip-path: polygon(0 50px, 100% 0%, 100% 100%, 0% 100%);
				  margin-top: -51px;
				}
				.section--double-skew {
				  clip-path: polygon(0 50px, 100% 0%, 100% calc(100% - 50px), 0% 100%);
				  margin-top: -51px;
				}
			}
		/*/Media*/
	/*/Layout*/

	/**/
/*/Common styles*/


/*Header*/
	.header {
		background-color: white;
	}
	.header__wrapper {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0px;
	}
	.header__logo {
		width: 50%;
		z-index: 2;
	}
	.header__logo-img {
		max-width: 200px;
	}

	.header__burger {
		font-size: 2.3rem;
		border: none;
		background-color: transparent;
		margin-right: 0px;
		margin-left: auto;
		z-index: 3;
		cursor: pointer;
		width: 50px;
		border-radius: 3px;
	}
	.header__burger.active {
		background-color: black;
		color: white;
	}
	.header__burger-icon {}
	.header__nav {
		display: block;
		position: absolute;
		left: 0px;
		right: 0px;
		top: 0px;
		height: 0px;
		overflow: hidden;
		transition: all ease 0.3s;

		padding: 0px 20px;
		text-align: center;
		font-size: 2rem;
	}
	.header__nav.active {
		padding-top: 120px;
		z-index: 2;
		height: 100%;
	}
	.header__nav ul {
		list-style: none;
		padding: 0px;
		margin: 0px;
	}
	.header__nav ul a {
		text-decoration: none;
		color: #222;
	}
	.header__overlay {
		z-index: -1;
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 0px;
		transition: all ease 0.3s;
		background-color: rgba(255, 255, 255, 0.10);
	}
	.header__overlay.active {
		z-index: 1;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.90);
	}
	/*Media*/
		@media (min-width: 576px) {}
		@media (min-width: 768px) {}
		@media (min-width: 992px) {}
		@media (min-width: 1200px) {}
		@media (min-width: 1400px) {
			.header {}
			.header__wrapper {}
			.header__logo {}
			.header__logo-img {}
			.header__burger {}
			.header__burger.active {}
			.header__burger-icon {}
			.header__nav {}
			.header__nav.active {}
			.header__overlay {}
			.header__overlay.active {}  
		}
	/*/Media*/
/*/Header*/


/*Header Nav*/
	.header__nav {}
	.nav {}
	.nav__list {
		margin: 0px;
	}
	.nav__item {
		margin: 0.5em 0px;
	}
	.nav__link {
		transition: all ease 0.3s;
	}
	.nav__link:hover {
		opacity: 0.8;
	}
/*/Header Nav*/


/*Footer*/
	.footer {
		text-align: center;
	}
	.footer__content {
		padding: 40px 0px 20px 0px;
	}
	.footer__logo {
		margin-bottom: 1em;
	}
	.footer__logo-img {
		max-width: 200px;
	}
	.footer__copyright {
		font-size: 0.8rem;
	}
	/*Media*/
		@media (min-width: 576px) {}
		@media (min-width: 768px) {}
		@media (min-width: 992px) {}
		@media (min-width: 1200px) {}
		@media (min-width: 1400px) {
			.footer {}
			.footer__content {}
			.footer__logo {}
			.footer__logo-img {}
			.footer__copyright {}
		}
	/*/Media*/
/*/Footer*/


/*Standard WP Menu*/
	.menu {}
	.menu-item {}
	.current-menu-item {}
	.menu-item-has-children {}
	.menu-item a {}
	.menu-item a:hover {}
	.sub-menu {}
	.sub-menu .menu-item {}
	.sub-menu a {}
	.navigation-bar {}
	.menu-toggle {}
	.menu-mobile {}
/*/Standard WP Menu*/


/*Standard WP Pagination*/
	.pagination {}
	.page-numbers {}
	.current {}
	.next {}
	.prev {}
	.dots {}
	.disabled {}
	.nav-links {}
	.screen-reader-text {}
/*/Standard WP Pagination*/


/*==================================*/


/*Content Blocks*/

	/*Hero*/
		.hero {
			background-image: url("../img/bkg-01.jpg");
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			text-align: center;
			padding: 120px 0px;
		}
		.hero__content {
			padding: 60px 40px;
			margin: 0px 20px;
			border: 1px solid black;
		}
		.hero__title {
			margin-bottom: 0.6em;
		}
		.hero__description {
			margin-bottom: 2em;
		}
		.hero__btn {}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {}
			@media (min-width: 992px) {
				.hero {
					text-align: left;

				}
				.hero__content {
					margin: 0px;
					max-width: 80%;
					border: 0px;
					padding: 0px;
				}
				.hero__title {
					font-size: 3.6rem;
					font-weight: 600;
					max-width: 26ch;
				}
				.hero__description {
					max-width: 50ch;
				}
				.hero__btn {}
			}
			@media (min-width: 1200px) {
				.hero {
					padding: 140px 0px;
				}
				.hero__title {
					font-size: 4.2rem;
					font-weight: 600;
					max-width: 26ch;
				}
			}
			@media (min-width: 1400px) {
				.hero {
					padding: 180px 0px;
				}
				.hero__content {}
				.hero__title {}
				.hero__description {}
				.hero__btn {}
			}
		/*/Media*/
	/*/Hero*/

	/*About*/
		.about {
			padding: 120px 0px;
			background-image: url("../img/bkg-02.jpg");
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			color: white;
		}
		.about__content {
			text-align: center;
			max-width: 440px;
			margin: 0px auto;
			text-wrap: pretty;
		}
		.about__title {}
		.about__description {}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {
				.about__content {
					max-width: 640px;
				}
			}
			@media (min-width: 992px) {
				.about {
					padding: 160px 0px;
				}
			}
			@media (min-width: 1200px) {
				.about {
					padding: 180px 0px;
				}
			}
			@media (min-width: 1400px) {
				.about__content {}
				.about__title {}
				.about__description {}
			}
		/*/Media*/
	/*/About*/

	/*Services*/
		.services {}
		.services__content {}
		.services__title {}
		.services__list {
			list-style: none;
			padding: 0px;
		}
		.services__item {
			padding: 2em;
			margin: 2em 0px;
			color: white;
			background-color: #215;
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			position: relative;
			z-index: 1;
		}
		.services__item::before {
			background-color: rgba(0, 0, 0, 0.8);
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			content: "";
			transition: all ease 0.3s;
		}
		.services__item:hover:before {
			background-color: rgba(0, 0, 0, 0.95);
		}
		.services__item > * {
			position: relative;
			z-index: 2;
		}

		.services__item--ftl {
			background-image: url("../img/service-01.jpeg");
		}
		.services__item--ltl {
			background-image: url("../img/service-02.jpeg");
		}
		.services__item--reefer {
			background-image: url("../img/service-03.webp");
		}
		.services__item--flatbed {
			background-image: url("../img/service-04.jpeg");
		}
		.services__item--hazard {
			background-image: url("../img/service-05.jpeg");
		}
		.services__item--global {
			background-image: url("../img/service-06.webp");
		}
		.services__item--logistics {
			background-image: url("../img/service-07.jpeg");
		}
		.service__title {
			font-size: 1.6rem;
			margin-bottom: 1.4em;
			font-weight: 700;
		}
		.service__description {
			text-wrap: pretty;
		}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {}
			@media (min-width: 992px) {
				.services {}
				.services__content {}
				.services__title {}
				.services__list {
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					justify-content: flex-start;
				}
				.services__item {
					max-width: 49%;
					margin-right: 1%;
					margin-bottom: 0.5em;
				}
				.services__item--ftl {}
				.services__item--ltl {}
				.services__item--reefer {}
				.services__item--hazard {}
				.services__item--global {}
				.services__item--logistics {}
				.service__title {}
				.service__description {}
			}
			@media (min-width: 1200px) {
				.services__list {}
				.services__item {
					max-width: 32%;
				}
			}
			@media (min-width: 1400px) {
				.services {}
				.services__content {}
				.services__title {}
				.services__list {}
				.services__item {}
				.services__item--ftl {}
				.services__item--ltl {}
				.services__item--reefer {}
				.services__item--hazard {}
				.services__item--global {}
				.services__item--logistics {}
				.service__title {}
				.service__description {}
			}
		/*/Media*/
	/*/Services*/

	/*Location*/
		.location {
			position: relative;
			min-height: 600px;
		}
		.location__wrapper {
			
		}
		.location__map-container {
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0px;
			left: 0px;
			z-index: 1;
		}
		.location__map {
			width: 100%;
			height: 100%;
		}
		.location__content {
			position: relative;
			z-index: 2;
			margin-top: 0px;
			margin-left: auto;
			margin-right: auto;
			max-width: 360px;
			background-color: #9bd;
			padding: 20px 20px;
			text-align: center;
		}
		.location__title {}
		.location__address {
			margin-bottom: 20px;
		}
		.location__cta {}
		.location__btn {}
		/*Media*/
			@media (min-width: 576px) {}
			@media (min-width: 768px) {}
			@media (min-width: 992px) {
				.location__content {
					max-width: 560px;
				}
			}
			@media (min-width: 1200px) {}
			@media (min-width: 1400px) {
				.location {}
				.location__wrapper {}
				.location__map-container {}
				.location__map {}
				.location__content {}
				.location__title {}
				.location__address {}
				.location__cta {}
				.location__btn {}
			}
		/*/Media*/
	/*/Location*/

/*/Content Blocks