@charset "UTF-8";

/* content better media queries */
@font-face {
	font-family: 'Roboto';
	src: local("Roboto-Light"), url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
	/* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: local("Roboto-Regular"), url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: local("Roboto-Medium"), url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: local("Roboto-Bold"), url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@media screen and (max-width: 1050px) {
	.main-wrapper {
		padding-top: 80px;
	}
}

.overlay-menu {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}

.overlay-menu.active {
	opacity: 1;
	visibility: visible;
}

#header {
	background-color: #1A237B;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 4;
}

#header.home-header {
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 4;
	-webkit-transition: background-color .25s ease;
	-o-transition: background-color .25s ease;
	transition: background-color .25s ease;
}

#header.home-header.header-color {
	background-color: #1A237B;
}

#header.home-header .container-content .main-menu>li>a.active {
	color: #fff;
}

#header.home-header .container-content .main-menu>li>a:hover {
	color: #fff !important;
}

#header.home-header .container-content .main-menu>li>a:before {
	background-color: #fff !important;
}

#header.home-header .get-quote a {
	background: #1A237B;
}

#header.home-header .get-quote a:hover {
	border-color: #fff !important;
	background: transparent !important;
}

#header .bg-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-color: #1A237B;
	display: none;
}

@media screen and (max-width: 1050px) {
	#header .bg-layer {
		display: block;
	}
}

@media screen and (max-width: 1050px) {
	#header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 5;
	}
}

#header .container-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
	-webkit-transition: height .5s ease;
	-o-transition: height .5s ease;
	transition: height .5s ease;
}

@media screen and (max-width: 1600px) {
	#header .container-content {
		height: 80px;
	}
}

@media screen and (min-width: 1600px) {
	#header .container-content.scrolled-nav {
		height: 70px !important;
	}
}

@media screen and (min-width: 1050px) and (max-width: 1600px) {
	#header .container-content.scrolled-nav {
		height: 60px !important;
	}
}

#header .container-content.header-bar {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#header .container-content .head-logo {
	max-width: 60px;
}

@media screen and (max-width: 1600px) {
	#header .container-content .head-logo {
		max-width: 140px;
	}
}

@media screen and (max-width: 1050px) {
	#header .container-content .head-logo {
		position: relative;
		z-index: 4;
	}
}

#header .container-content .head-logo>a {
	display: block;
}

#header .container-content .head-logo>a img {
	width: 100%;
}

@media screen and (max-width: 1050px) {
	#header .container-content .get-quote {
		margin: 0 auto;
		z-index: 8;
	}
}

#header .container-content .get-quote a {
	font-size: 12px;
	font-weight: 500;
	padding: 10px 25px;
	border-radius: 25px;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

#header .container-content .get-quote a:hover {
	border-color: #BD0034;
	background-color: #BD0034;
	color: #fff;
}

#header .container-content .main-menu {
	list-style-type: none;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 0;
}

@media screen and (max-width: 1050px) {
	#header .container-content .main-menu {
		margin-top: 0;
		background-color: #1A237B;
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 2;
		padding: 0;
		-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
		transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
		-o-transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
		transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
		transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateY(-100px);
		-ms-transform: translateY(-100px);
		transform: translateY(-100px);
	}

	#header .container-content .main-menu.active {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

#header .container-content .main-menu>li:first-child {
	margin-left: 0;
}

@media screen and (max-width: 1050px) {
	#header .container-content .main-menu>li {
		margin-left: 0;
		margin-right: 0;
		border-top: 1px solid #efefef;
	}
}

#header .container-content .main-menu>li>a {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	position: relative;
}

/*#header .container-content .main-menu>li>a:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 0;
	height: 2px;
	pointer-events: none;
	border-radius: 2px;
	background-color: #fff;
	/*test*/
}*/

@media screen and (max-width: 1050px) {
	#header .container-content .main-menu>li>a:before {
		display: none;
	}
}

@media screen and (max-width: 1050px) {
	#header .container-content .main-menu>li>a {
		font-size: 15px;
		padding: 12px 15px;
	}
}

#header .container-content .main-menu>li>a:hover {
	text-decoration: none;
	color: #fff;
	/*test*/
}

#header .container-content .main-menu>li>a:hover:before {
	-webkit-transition: width 0.25s ease;
	-o-transition: width 0.25s ease;
	transition: width 0.25s ease;
	width: 100%;
}

#header .container-content .main-menu>li>a.active {
	color: #fff;
	/*test*/
	font-weight: 900;
}

#header .container-content .main-menu>li>a.active:before {
	width: 100%;
}

.hamburger {
	cursor: pointer;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: 0.15s;
	-o-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	height: 25px;
	position: static;
	z-index: 4;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: none;
}

@media screen and (max-width: 1050px) {
	.hamburger {
		display: block;
	}
}

.hamburger:hover {
	opacity: 0.7;
}

.hamburger.is-active:hover {
	opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #fff;
}

.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.15s;
	-o-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

.hamburger--spin .hamburger-inner {
	-webkit-transition-duration: 0.22s;
	-o-transition-duration: 0.22s;
	transition-duration: 0.22s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
	-webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	-o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	-webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
	-webkit-transition-delay: 0.12s;
	-o-transition-delay: 0.12s;
	transition-delay: 0.12s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	-webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	-o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media screen and (max-width: 1050px) {
	.responsive-hide {
		display: none !important;
	}
}

@media screen and (min-width: 1050px) {
	.desktop-hide {
		display: none;
	}
}

.custom-dropdown {
	position: relative;
}

.custom-dropdown a svg {
	width: 10px;
	margin-left: 5px;
}

.custom-dropdown-menu {
	position: absolute;
	z-index: 8;
	right: auto !important;
	list-style: none;
	min-width: 10rem;
	margin: .125rem 0 0;
	background-clip: padding-box;
	border-radius: .25rem;
	display: none;
	background: #fff;
	border: 1px solid #f8f8f8;
	-webkit-filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.16));
	filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.16));
	width: 200px;
	top: 100% !important;
	text-align: left;
	padding: 10px 0;
	margin-top: 0;
}

@media screen and (max-width: 1050px) {
	.custom-dropdown-menu {
		right: 0;
		width: 100%;
		border: 0;
		height: 100%;
		position: relative;
		top: 100% !important;
		background: #1A237B;
		margin: 0;
		padding: 0;
		margin-top: 0;
	}
}

.custom-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}
.custom-dropdown-menu li {
	text-align: left;
	padding: 0 15px;
	border-top: 1px solid #efefef;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

@media screen and (min-width: 1050px) {
	.custom-dropdown-menu li:first-child {
		border-top: 0;
	}
}

@media screen and (max-width: 1050px) {
	.custom-dropdown-menu li {
		padding: 0;
	}
}

.custom-dropdown-menu li a {
	padding: 10px 0;
	font-weight: normal;
	font-size: 12px;
	color: #575757;
	text-align: left;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 1050px) {
	.custom-dropdown-menu li a {
		color: #fff;
		font-size: 15px;
		padding: 12px 15px;
		padding-left: 25px;
	}

	.custom-dropdown-menu li a svg {
		width: 15px;
		height: 15px;
	}

	.custom-dropdown-menu li a svg path {
		fill: #fff;
	}
}

.custom-dropdown-menu li a:hover {
	color: #BD0034;
}

.custom-dropdown-menu li a:hover svg path {
	fill: #BD0034;
}

.sub-dropdown {
	padding: 10px 0;
	position: absolute;
	z-index: 8;
	right: auto !important;
	list-style: none;
	left: 102%;
	background-clip: padding-box;
	background: #fff;
	border: 1px solid #f8f8f8;
	-webkit-filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.16));
	filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.16));
	width: 200px;
	top: -10px !important;
	text-align: left;
	margin: 0;
	border-radius: .25rem;
	display: none;
}

@media screen and (max-width: 1050px) {
	.sub-dropdown {
		right: 0;
		width: 100%;
		border: 0;
		height: 100%;
		position: relative;
		top: 0 !important;
		background: #1A237B;
		margin: 0;
		padding: 0;
		left: 0;
	}
}

.sub-dropdown li {
	text-align: left;
	padding: 0 15px;
	border-top: 1px solid #efefef;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

@media screen and (min-width: 1050px) {
	.sub-dropdown li:first-child {
		border-top: 0;
	}
}

.sub-dropdown li a {
	display: block;
	padding: 10px 0;
	font-weight: normal;
	font-size: 12px;
	color: #575757;
	text-align: left;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.sub-dropdown li a:hover {
	color: #BD0034;
}

@media screen and (max-width: 1050px) {
	.sub-dropdown li a {
		color: #fff;
		font-size: 15px;
		padding: 12px 15px;
		padding-left: 30px;
	}
}

.gallery-page {
	padding-bottom: 100px;
}

.gallery-page .page-title {
	margin-top: 40px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #313131;
}

@media screen and (max-width: 576px) {
	.gallery-page .page-title {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.gallery-page .img-handler {
	margin-bottom: 20px;
	display: block;
}

.gallery-page .img-handler img {
	height: 250px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	border-radius: 5px;
}

#footer {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #1A237B;
	padding-top: 80px;
	padding-bottom: 50px;
	color: #fff;
}

@media screen and (max-width: 576px) {
	#footer {
		padding-top: 40px;
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 576px) {
	#footer .footer-logo {
		text-align: center;
	}
}

#footer h2 {
	font-size: 15px;
	color: #fff;
	margin-bottom: 30px;
}

@media screen and (max-width: 576px) {
	#footer h2 {
		margin-bottom: 10px;
	}
}

#footer a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

#footer a:hover {
	color: #BD0034;
}

#footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer ul li {
	margin-bottom: 15px;
}

#footer p {
	margin-bottom: 40px;
	font-size: 12px;
	color: #fff;
}

@media screen and (min-width: 1440px) {
	#footer p {
		font-size: 14px;
	}
}

@media screen and (max-width: 576px) {
	#footer p {
		margin-bottom: 20px;
	}
}

#footer .phone {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
}

#footer .email {
	font-size: 15px;
	margin-bottom: 10px;
}

#footer .social-media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 576px) {
	#footer .social-media {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

#footer .social-media li {
	margin: 0 5px;
}

#footer .social-media li a {
	width: 38px;
	height: 38px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #fff;
}

#footer .social-media li a:hover {
	color: #fff;
	background-color: #BD0034;
}

#footer .social-media li svg {
	width: 12px;
	font-size: 12px;
}

#footer .social-media li.twitter a svg,
#footer .social-media li.linked a svg {
	width: 16px;
}

#footer .quick-links {
	padding-left: 20px;
}

#footer .quick-links a {
	font-size: 12px;
	position: relative;
}

#footer .quick-links a:before {
	position: absolute;
	content: '';
	left: -20px;
	width: 35px;
	height: 10px;
	background: url(../img/arrow-right.svg);
	background-repeat: no-repeat;
	top: 25%;
}

@media screen and (max-width: 991px) {
	#footer .footer-content {
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 576px) {
	#footer .footer-content {
		margin-bottom: 40px;
	}
}

body {
	font-family: 'Roboto', arial, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	direction: ltr;
	color: #000;
	text-align: left;
}

.container-content {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

@media screen and (max-width: 1280px) {
	.container-content {
		width: auto;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

ul {
	margin-bottom: 0;
}

p {
	color: #616161;
	margin-bottom: 0;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0;
}

button:focus {
	outline: none;
}

.hero-section {
	position: relative;
	margin-top: -5px;
}

.hero-section .overlay {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.23);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.hero-section .overlay .intro {
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 20px 40px;
	width: 70%;
	margin: 0 auto;
}

@media screen and (max-width: 1280px) {
	.hero-section .overlay .intro {
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.hero-section .overlay .intro {
		padding: 20px 15px;
	}
}

.hero-section .overlay .intro h2 {
	text-transform: uppercase;
	font-size: 48px;
	font-weight: bold;
	color: #000;
	margin-bottom: 5px;
	letter-spacing: 0.09em;
	text-shadow: 0 10px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1280px) {
	.hero-section .overlay .intro h2 {
		font-size: 38px;
	}
}

@media screen and (max-width: 576px) {
	.hero-section .overlay .intro h2 {
		font-size: 24px;
	}
}

.hero-section .overlay .intro p {
	font-size: 20px;
	font-weight: 500;
	color: #000;
	text-shadow: 0 20px 10px rgba(0, 0, 0, 0.16);
	margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
	.hero-section .overlay .intro p {
		font-size: 18px;
	}
}

@media screen and (max-width: 576px) {
	.hero-section .overlay .intro p {
		font-size: 14px;
	}
}

.hero-section>img {
	width: 100%;
	height: 60vh;
	-o-object-fit: cover;
	object-fit: cover;
}

.text-content {
	margin-top: 50px;
	margin-bottom: 40px;
}

@media screen and (max-width: 1280px) {
	.text-content {
		margin-top: 40px;
		margin-bottom: 20px;
	}
}

.text-content h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}

@media screen and (max-width: 1280px) {
	.text-content h3 {
		margin-bottom: 20px;
	}
}

.text-content p {
	font-size: 14px;
	font-weight: 500;
	color: #707070;
	margin-bottom: 20px;
	line-height: 1.6rem;
	text-align: justify;
}

.text-content ul {
	list-style: none;
	padding: 0;
}

.text-content ul li {
	position: relative;
	padding-left: 15px;
}

.text-content ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 4px;
	background: #707070;
	border-radius: 50%;
}

.about-page .page-title {
	margin-top: 40px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #313131;
}

@media screen and (max-width: 576px) {
	.about-page .page-title {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.about-page .about-box {
	margin-bottom: 60px;
}

@media screen and (max-width: 1280px) {
	.about-page .about-box {
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 991px) {
	.about-page .about-box {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 768px) {
	.about-page .about-box {
		margin-bottom: 40px;
	}
}

.about-page .about-box .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 991px) {
	.about-page .about-box .row {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}
}

.about-page h4 {
	font-size: 20px;
	font-weight: bold;
	color: #1A237B;
	margin-bottom: 20px;
}

.about-page p {
	font-size: 14px;
	font-weight: 500;
	color: #707070;
	margin-bottom: 30px;
	line-height: 1.7rem;
}

@media screen and (max-width: 1280px) {
	.about-page p {
		margin-bottom: 15px;
	}
}

.about-page .img-handler img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
	height: 380px;
	-webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1280px) {
	.about-page .img-handler img {
		height: auto;
	}
}

.section-space {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media screen and (max-width: 1400px) {
	.section-space {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 576px) {
	.section-space {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.home-page {
	padding-top: 0 !important;
}

.home-page .section-title {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width: 1400px) {
	.home-page .section-title {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 576px) {
	.home-page .section-title {
		margin-bottom: 20px;
	}
}

.home-page .section-title h2 {
	font-weight: bold;
	font-size: 25px;
	line-height: 21px;
	color: #212121;
	padding-bottom: 40px;
	position: relative;
	display: inline-block;
}

@media screen and (max-width: 991px) {
	.home-page .section-title h2 {
		font-size: 20px;
	}
}

.home-page .section-title h2:after {
	content: '';
	position: absolute;
	bottom: 20px;
	width: 35%;
	height: 3px;
	margin: 0 auto;
	background: #1a237b;
	left: 0;
	right: 0;
}

.home-page .section-title p {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #a7a7a7;
}

@media screen and (max-width: 576px) {
	.home-page .section-title p {
		font-size: 14px;
		line-height: 1.5rem;
	}
}

.home-page .why-us {
	background: #F9F9F9;
}

.home-page .why-us .why-box {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.home-page .why-us .why-box {
		margin-bottom: 30px;
	}
}

.home-page .why-us .why-box img {
	margin-bottom: 20px;
	height: 68px;
}

.home-page .why-us .why-box h3 {
	font-weight: bold;
	font-size: 13px;
	line-height: 22px;
	color: #000;
	padding-bottom: 30px;
	position: relative;
}

.home-page .why-us .why-box h3:after {
	content: '';
	position: absolute;
	bottom: 20px;
	width: 35px;
	height: 3px;
	margin: 0 auto;
	background: #1a237b;
	left: 0;
	right: 0;
}

.home-page .why-us .why-box p {
	overflow: hidden;
	height: 52px;
	font-size: 16px;
	color: #888;
	margin: 0 auto;
}

.quote-btn {
	font-size: 16px;
	font-weight: 500;
	padding: 15px 60px;
	border-radius: 999999px;
	color: #fff;
	background: #1A237B;
	border: 1px solid #1A237B;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

@media screen and (max-width: 768px) {
	.quote-btn {
		padding: 8px 40px;
		font-size: 14px;
	}
}

.quote-btn:hover {
	background: transparent;
	color: #1A237B;
}

.moving-page .content-box {
	padding-top: 70px;
	padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
	.moving-page .content-box {
		padding-top: 40px;
		padding-bottom: 60px;
	}
}

.moving-page .content-box h3 {
	font-weight: bold;
	font-size: 20px;
	color: #1A237B;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.moving-page .content-box h3 {
		margin-bottom: 15px;
	}
}

.moving-page .content-box p {
	font-weight: 500;
	font-size: 14px;
	color: #707070;
	margin-bottom: 30px;
	line-height: 1.7rem;
}

@media screen and (max-width: 768px) {
	.moving-page .content-box p {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 768px) {
	.moving-page .content-box .page-content {
		margin-bottom: 40px;
	}
}

.moving-page .move-slider img {
	width: 100%;
	height: 450px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 34px;
}

@media screen and (max-width: 768px) {
	.moving-page .move-slider img {
		height: 350px;
	}
}

@media screen and (max-width: 576px) {
	.moving-page .move-slider img {
		height: 150px;
		border-radius: 10px;
	}
}

.moving-page .move-slider-nav {
	margin-top: 30px;
	margin-left: 0;
}

@media screen and (max-width: 576px) {
	.moving-page .move-slider-nav {
		margin-top: 15px;
	}
}

.moving-page .move-slider-nav img {
	width: 145px;
	height: 145px;
	border-radius: 15px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width: 576px) {
	.moving-page .move-slider-nav img {
		width: 120px;
		height: 120px;
		border-radius: 10px;
	}
}

.moving-page .move-slider-nav .slick-slide:before {
	content: '';
	position: absolute;
	border-radius: 15px;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.moving-page .move-slider-nav .slick-slide.slick-current.slick-active:before {
	background: transparent;
}

.moving-page .slick-slide {
	margin-right: 12px;
	position: relative;
}

.moving-page .slick-slide:focus {
	outline: none;
}

.domestic-page {
	padding-top: 70px;
	padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.domestic-page {
		padding-top: 10px;
		padding-bottom: 20px;
	}
}

.domestic-page .content-box {
	padding-top: 0;
	padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.domestic-page .content-box {
		padding-top: 30px;
		padding-bottom: 10px;
	}
}

.domestic-page .move-slider img {
	border-radius: 100px 0;
}

@media screen and (max-width: 576px) {
	.domestic-page .move-slider img {
		border-radius: 10px;
	}
}

.domestic-page .special-slide {
	position: relative;
}

.domestic-page .special-slide .move-slider {
	z-index: 2;
}

.domestic-page .special-slide .move-slider-nav {
	z-index: 2;
}

.domestic-page .special-slide .shape {
	position: absolute;
	right: 0;
	top: 80%;
	z-index: -1;
	max-width: 25%;
}

.domestic-page .click-here {
	border-radius: 10px;
	background: #fff;
	border: 1px solid #1a237b;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
	text-align: center;
	padding: 30px 0;
}

@media screen and (max-width: 768px) {
	.domestic-page .click-here {
		padding: 15px 0;
	}
}

.domestic-page .click-here h4 {
	font-weight: 500;
	font-size: 25px;
	color: #1A237B;
	margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
	.domestic-page .click-here h4 {
		font-size: 18px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 576px) {
	.domestic-page .click-here h4 {
		font-size: 14px;
	}
}

.no-padding {
	padding: 0;
}

@media screen and (max-width: 1280px) {
	.no-padding {
		padding: 0 15px;
	}
}

.testimonials-slider .slick-list {
	padding-bottom: 50px;
}

.testimonials-slider .slick-dots li {
	width: 10px;
	height: 10px;
	background: #dedede;
	border-radius: 50%;
}

.testimonials-slider .slick-dots li button:before {
	display: none;
}

.testimonials-slider .slick-dots li.slick-active {
	background: #1A237B;
}

.testimonials-box {
	background: #fff;
	border-left: 4px solid #1a237b;
	padding: 20px 25px 50px 25px;
	position: relative;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	margin: 0 15px;
}

@media screen and (max-width: 768px) {
	.testimonials-box {
		padding: 15px 5px 40px 10px;
	}
}

.testimonials-box:focus {
	outline: none;
}

.testimonials-box:hover {
	background: #fff;
	-webkit-box-shadow: 0 8px 40px rgba(0, 0, 1, 0.2);
	box-shadow: 0 8px 40px rgba(0, 0, 1, 0.2);
}

.testimonials-box p {
	font-size: 14px;
	line-height: 30px;
	color: #888;
	margin-bottom: 5px;
}

@media screen and (max-width: 576px) {
	.testimonials-box p {
		text-align: justify;
	}
}

.testimonials-box h3 {
	font-weight: bold;
	font-size: 13px;
	line-height: 22px;
	color: #212121;
	padding-top: 10px;
}

.testimonials-box .client-info {
	position: absolute;
	left: 20px;
	top: calc(100% - 40px);
	width: 100%;
}

.testimonials-box .client-img {
	border: 6px solid #fff;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	overflow: hidden;
}

.testimonials-box .client-img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}

.service-section {
	margin-left: 10%;
	padding-bottom: 130px;
}

@media screen and (max-width: 1400px) {
	.service-section {
		padding-bottom: 80px;
	}
}

@media screen and (max-width: 576px) {
	.service-section {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 1280px) {
	.service-section {
		margin-left: 0;
		padding-left: 15px;
	}
}

@media screen and (max-width: 768px) {
	.service-section {
		padding-right: 15px;
	}
}

@media screen and (max-width: 768px) {
	.service-section .service-info {
		margin-bottom: 30px;
	}
}

.service-section h2 {
	font-weight: bold;
	font-size: 25px;
	line-height: 21px;
	color: #212121;
	text-transform: uppercase;
	margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
	.service-section h2 {
		font-size: 20px;
		margin-bottom: 10px;
	}
}

.service-section h3 {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #1a237b;
	margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
	.service-section h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}
}

.service-section p {
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #000;
}

@media screen and (max-width: 991px) {
	.service-section p {
		font-size: 13px;
	}
}

.service-section .service-box {
	position: relative;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.service-section .service-box:focus {
	outline: none;
}

.service-section .service-box .overlay {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
}

.service-section .service-box .overlay h4 {
	font-weight: bold;
	font-size: 17px;
	color: #fff;
	text-shadow: 0 3px 6px rgba(255, 216, 216, 0.16);
}

@media screen and (max-width: 1400px) {
	.service-section .service-box .overlay h4 {
		font-size: 14px;
	}
}

@media screen and (max-width: 1200px) {
	.service-section .service-box .overlay h4 {
		font-size: 13px;
	}
}

@media screen and (max-width: 576px) {
	.service-section .service-box .overlay h4 {
		font-size: 10px;
	}
}

.service-section .service-box:hover .overlay {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	opacity: 1;
	visibility: visible;
}

.service-section .service-box img {
	width: 100%;
}

.service-section .slick-prev,
.service-section .slick-next {
	width: 50px;
	height: 50px;
	background: #1A237B;
	top: 100%;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 768px) {

	.service-section .slick-prev,
	.service-section .slick-next {
		width: 30px;
		height: 30px;
	}

	.service-section .slick-prev svg,
	.service-section .slick-next svg {
		width: 10px;
	}
}

.service-section .slick-prev:before,
.service-section .slick-next:before {
	display: none;
}

@media screen and (max-width: 768px) {
	.service-section .slick-prev {
		left: 20px;
	}
}

.service-section .slick-next {
	left: 35px;
	right: auto;
}

@media screen and (max-width: 768px) {
	.service-section .slick-next {
		left: 55px;
	}
}

.country-section .slick-list {
	padding: 0 10% 0 0;
}

.country-section .country-box {
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	margin: 0 0 15px;
	position: relative;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.country-section .country-box:focus {
	outline: none;
}

.country-section .country-box img {
	border-radius: 15px 15px 0 0;
	/*border: 1px solid #4facfe;*/
	width: 100%;
}

.country-section .country-box:hover .content-box {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	height: 150px;
}

@media screen and (max-width: 375px) {
	.country-section .country-box:hover .content-box {
		height: 170px;
	}
}

.country-section .country-box:hover .content-box .btn-primary {
	-webkit-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	transition-delay: 0.25s;
	opacity: 1;
	visibility: visible;
}

.country-section .content-box {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	background: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 0 0 15px 15px;
	height: 110px;
	text-align: center;
	padding: 20px 30px;
}

@media screen and (max-width: 1200px) {
	.country-section .content-box {
		padding: 20px 15px;
	}
}

@media screen and (max-width: 375px) {
	.country-section .content-box {
		padding: 20px 10px;
		height: 130px;
	}
}

.country-section .content-box h3 {
	font-weight: bold;
	font-size: 21px;
	text-align: center;
	color: #040404;
	margin-bottom: 10px;
}

.country-section .content-box p {
	font-weight: normal;
	font-size: 12px;
	text-align: center;
	color: #040404;
	margin-bottom: 10px;
}

.country-section .content-box .btn-primary {
	border-radius: 5px;
	background: #1a237b;
	border-color: #1a237b;
	font-size: 12px;
	padding: 8px 35px;
	color: #fff;
	visibility: hidden;
	opacity: 0;
}

.country-section .content-box .btn-primary:hover {
	background: transparent;
	color: #1A237B;
}

.btn-transparent {
	padding: 10px 20px;
	border-radius: 5px;
	border: 1px solid #fff;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	background-color: rgba(255, 255, 255, 0.15);
	font-size: 12px;
}

.btn-transparent:hover {
	background: #1A237B;
	border-color: #1A237B;
}

.contact-page #map {
	height: 400px;
}

.contact-page h3 {
	font-weight: bold;
	font-size: 25px;
	color: #212121;
	margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
	.contact-page h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
}

.contact-page h4 {
	font-weight: 500;
	font-size: 14px;
	color: #1a237b;
}

.contact-page .contact-form {
	padding-top: 30px;
	padding-bottom: 100px;
}

@media screen and (max-width: 576px) {
	.contact-page .contact-form {
		padding-bottom: 60px;
	}
}

.contact-page .contact-info {
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.contact-page .contact-info {
		margin-bottom: 20px;
	}
}

.contact-page .address-info {
	list-style: none;
	padding: 0;
}

.contact-page .address-info li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}

.contact-page .address-info li p {
	font-weight: normal;
	font-size: 14px;
	color: #707070;
	margin-left: 20px;
}

.contact-page .address-info li a {
	font-weight: normal;
	font-size: 14px;
	color: #707070;
}

.contact-page .social-media {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contact-page .social-media a {
	margin: 0 5px;
	color: #707070;
}

.contact-page .social-media a svg {
	width: 12px;
	font-size: 12px;
}

.contact-page .social-media a:hover svg path {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	fill: #1A237B;
}

.contact-page .social-media li.twitter a svg,
.contact-page .social-media li.linked a svg {
	font-size: 16px;
	width: 16px;
}

@media screen and (max-width: 768px) {
	.contact-page .address {
		margin-bottom: 30px;
	}
}

.contact-page .form-group {
	margin-bottom: 10px;
}

.contact-page .form-group .form-control {
	height: 50px;
}

@media screen and (max-width: 576px) {
	.contact-page .form-group .form-control {
		height: 38px;
	}
}

.contact-page .form-group textarea {
	height: 230px !important;
}

@media screen and (max-width: 576px) {
	.contact-page .form-group textarea {
		height: 150px !important;
	}
}

.btn-submit {
	background: #1a237b;
	border-color: #1a237b;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
	padding: 12px 60px;
	border-radius: 5px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

@media screen and (max-width: 576px) {
	.btn-submit {
		font-size: 14px;
		width: 100%;
	}
}

.btn-submit:hover {
	color: #1a237b;
	background: transparent;
}

.shipment-page {
	padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
	.shipment-page {
		padding-bottom: 40px;
	}
}

.shipment-page .address h3 {
	font-weight: bold;
	font-size: 25px;
	letter-spacing: 0.09em;
	color: #707070;
}

@media screen and (max-width: 768px) {
	.shipment-page .address h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
}

.shipment-page .shipment-form {
	border-radius: 10px;
	background: #1a237b;
	padding: 20px 50px;
}

@media screen and (max-width: 1400px) {
	.shipment-page .shipment-form {
		padding: 20px;
	}
}

@media screen and (max-width: 991px) {
	.shipment-page .shipment-form {
		padding: 20px 15px;
	}
}

.shipment-page .shipment-form h3 {
	font-weight: bold;
	font-size: 21px;
	letter-spacing: 0.09em;
	color: #fff;
}

.shipment-page .shipment-form .form-group {
	margin-bottom: 20px;
}

.shipment-page .shipment-form .form-control {
	border-radius: 7px;
	background: #fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.09em;
	color: #7a7a7a;
	height: 48px;
}

.shipment-page .shipment-form .select2-container--default .select2-selection--single {
	background: #fff;
}

@media screen and (max-width: 991px) {

	.shipment-page .shipment-form .select2,
	.shipment-page .shipment-form .form-control {
		margin-bottom: 10px !important;
	}
}

.shipment-page .shipment-form label {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	color: #fff;
	margin-bottom: 10px;
}

.shipment-page .btn-tracking {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.09em;
	color: #1a237b;
	background: #fff;
	border-color: #fff;
	border-radius: 7px;
	width: 40%;
	display: block;
	margin: 0 auto;
	padding: 8px 0;
}

@media screen and (max-width: 576px) {
	.shipment-page .btn-tracking {
		width: 100%;
	}
}

.shipment-page .btn-tracking:hover {
	background: transparent;
	color: #fff;
}

.select2-container {
	position: relative;
	z-index: 2;
}

.select2-container--default .select2-results>.select2-results__options {
	background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: unset;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.09em;
	color: #7a7a7a;
}

.select2-container--default .select2-selection--single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent;
	border: none;
	padding: .375rem .75rem;
	height: 48px;
	border-radius: 7px;
}

@media screen and (max-width: 1500px) {
	.select2-container--default .select2-selection--single {
		font-size: 12px;
		height: 48px;
	}
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #1A237B;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #F3F3F3;
	border: 0;
	border-radius: 7px;
}

.select2-results__option {
	padding: 12px 16px;
	border-bottom: 1px solid #dedddd;
}

.select2-container--default .select2-selection--single:focus {
	outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 60px;
	height: 100%;
	right: 0;
	top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 14px;
	height: 10px;
	background-image: url("../img/arrow-bottom-icon.svg");
	background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-search--dropdown {
	padding: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.09em;
	color: #7a7a7a;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: #dedcdc;
	padding: 8px 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
	outline: none;
}

@media screen and (max-width: 768px) {
	.news-section {
		padding-bottom: 0 !important;
	}
}

.news-section .section-title {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.news-section .section-title {
		margin-bottom: 0;
	}
}

.news-section .news-handler:focus {
	outline: none;
}

.news-section .news-hero {
	-webkit-box-shadow: -20px 13px 38px rgba(0, 0, 0, 0.15);
	box-shadow: -20px 13px 38px rgba(0, 0, 0, 0.15);
	width: 100%;
	height: 580px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	.news-section .news-hero {
		height: 350px;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}

.news-section .news-slider .slick-prev,
.news-section .news-slider .slick-next {
	width: 40px;
	height: 40px;
	background: #1A237B;
	top: 120%;
	z-index: 5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 1400px) {

	.news-section .news-slider .slick-prev,
	.news-section .news-slider .slick-next {
		top: 130%;
	}
}

@media screen and (max-width: 1280px) {

	.news-section .news-slider .slick-prev,
	.news-section .news-slider .slick-next {
		top: 130%;
	}
}

@media screen and (max-width: 991px) {

	.news-section .news-slider .slick-prev,
	.news-section .news-slider .slick-next {
		top: 130%;
	}
}

@media screen and (max-width: 768px) {

	.news-section .news-slider .slick-prev,
	.news-section .news-slider .slick-next {
		width: 30px;
		height: 30px;
		top: 115%;
	}

	.news-section .news-slider .slick-prev svg,
	.news-section .news-slider .slick-next svg {
		width: 10px;
	}
}

.news-section .news-slider .slick-prev:before,
.news-section .news-slider .slick-next:before {
	display: none;
}

.news-section .news-slider .slick-prev {
	left: -125px;
}

@media screen and (max-width: 991px) {
	.news-section .news-slider .slick-prev {
		left: -80px;
	}
}

@media screen and (max-width: 768px) {
	.news-section .news-slider .slick-prev {
		left: -70px;
	}
}

@media screen and (max-width: 576px) {
	.news-section .news-slider .slick-prev {
		left: 0;
	}
}

.news-section .news-slider .slick-next {
	left: -80px;
	right: auto;
}

@media screen and (max-width: 991px) {
	.news-section .news-slider .slick-next {
		left: -30px;
	}
}

@media screen and (max-width: 576px) {
	.news-section .news-slider .slick-next {
		left: 40px;
	}
}

.news-section .news-shadow {
	border: 1px solid #f6f6f6;
	-webkit-filter: drop-shadow(20px 11px 38px rgba(0, 0, 0, 0.16));
	filter: drop-shadow(20px 11px 38px rgba(0, 0, 0, 0.16));
	background: #f9f9f9;
}

@media screen and (max-width: 767px) {
	.news-section .news-shadow {
		-webkit-filter: none;
		filter: none;
		border: none;
		background: #fff;
	}
}

.news-section .news-content {
	height: 100%;
	padding: 30px 60px;
	position: relative;
}

@media screen and (max-width: 991px) {
	.news-section .news-content {
		padding: 30px 15px 80px;
	}
}

@media screen and (max-width: 768px) {
	.news-section .news-content {
		padding: 30px 0 100px;
	}
}

.news-section .news-content h4 {
	font-weight: normal;
	font-size: 16px;
	color: #04151f;
	margin-bottom: 15px;
}

.news-section .news-content p {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5rem;
	color: #707070;
	margin-bottom: 30px;
}

.news-section .news-content .news-box img {
	width: 100%;
}

.news-section .news-content .show-more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 30px;
	right: 60px;
	text-decoration: none;
}

@media screen and (max-width: 991px) {
	.news-section .news-content .show-more {
		right: 15px;
	}
}

.news-section .news-content .show-more span {
	font-weight: normal;
	font-size: 14px;
	line-height: 18px;
	color: #04151f;
	padding-right: 25px;
}

.work-section {
	padding-top: 80px;
	padding-bottom: 55px;
	background: #fff;
}

.work-section .work-title {
	margin-bottom: 60px;
}

.work-section .work-title h2 {
	font-weight: bold;
	font-size: 25px;
	color: #212121;
	margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
	.work-section .work-title h2 {
		font-size: 20px;
	}
}

.work-section .work-title p {
	font-weight: 500;
	font-size: 20px;
	color: #888888;
}

@media screen and (max-width: 991px) {
	.work-section .work-title p {
		font-size: 16px;
	}
}

.work-section .circle-box {
	position: relative;
}

@media screen and (max-width: 991px) {
	.work-section .circle-box {
		margin-bottom: 20px;
	}
}

.work-section .circle-box:after {
	content: '';
	position: absolute;
	width: 78px;
	height: 78px;
	right: -13%;
	top: calc(50% - 39px);
	background: url("../img/right-shape.svg");
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
}

@media screen and (max-width: 1500px) {
	.work-section .circle-box:after {
		width: 68px;
		height: 68px;
		right: -15%;
		top: calc(50% - 34px);
	}
}

@media screen and (max-width: 1400px) {
	.work-section .circle-box:after {
		width: 58px;
		height: 58px;
		right: -18%;
		top: calc(50% - 29px);
	}
}

@media screen and (max-width: 991px) {
	.work-section .circle-box:after {
		display: none;
	}
}

.work-section .no-circle:after {
	display: none;
}

.work-section .circle-img {
	width: 100%;
}

.work-section .circle-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.work-section .circle-content>div {
	width: 40%;
}

.work-section .circle-content>div>img {
	display: block;
	margin: 0 auto 8px;
}

@media screen and (max-width: 1366px) {
	.work-section .circle-content>div {
		width: 45%;
	}
}

.work-section .circle-content>div h4 {
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	color: #000;
	margin-bottom: 8px;
	position: relative;
	display: inline-block;
	padding-top: 8px;
}

@media screen and (max-width: 1500px) {
	.work-section .circle-content>div h4 {
		font-size: 14px;
		padding-top: 10px;
		margin-bottom: 0;
	}
}

.work-section .circle-content>div h4:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 90%;
	height: 4px;
	background-color: #CACACA;
	border-radius: 10px;
	margin: 0 auto;
}

.work-section .circle-content>div p {
	height: 40px;
	overflow: hidden;
	font-weight: normal;
	font-size: 12px;
	text-align: center;
	color: #171717;
}

.home-hero-section {
	position: relative;
	height: 100vh;
	margin-bottom: 100px;
}

@media screen and (min-width: 1280px) and (max-width: 1400px) {
	.home-hero-section .container-content {
		margin-top: 60px;
	}
}

@media screen and (max-width: 576px) {
	.home-hero-section {
		height: calc(100vh - 80px);
	}
}

@media screen and (max-width: 330px) {
	.home-hero-section {
		height: 100vh;
	}
}

@media screen and (max-width: 1500px) {
	.home-hero-section {
		padding-top: 50px;
	}
}

@media screen and (max-width: 991px) {
	.home-hero-section {
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 576px) {
	.home-hero-section {
		padding-top: 0;
	}
}

.home-hero-section .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: rgba(0, 0, 0, 0.2);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.home-hero-section .track-link {
	z-index: 4;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	position: fixed;
	right: 0;
	background: #1A237B;
	border: 1px solid #707070;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #fff;
	padding: 30px 10px;
	top: 40%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-decoration: none;
}

@media screen and (max-width: 576px) {
	.home-hero-section .track-link {
		padding: 20px 10px;
		font-size: 10px;
		top: 50%;
	}
}

.home-hero-section .full-height {
	height: 100%;
}

.home-hero-section .select2 {
	width: 100% !important;
}

@media screen and (max-width: 768px) {
	.home-hero-section .select2 {
		margin-bottom: 10px;
	}
}

.home-hero-section .select2-container--default .select2-selection--single {
	height: 45px;
}

.home-hero-section .hero-img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	-o-object-fit: cover;
	object-fit: cover;
}

.home-hero-section .hero-title {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.home-hero-section .hero-title {
		margin-bottom: 40px;
	}
}

.home-hero-section .hero-title h3,
.home-hero-section .hero-title h4,
.home-hero-section .hero-title h5,
.home-hero-section .hero-title h6 {
	font-weight: bold;
	/*font-size: 49px;*/
	letter-spacing: 0.05em;
	color: #fff;
	text-shadow: 0 20px 20px rgba(255, 255, 255, 0.16);
	margin-bottom: 20px;
}

.home-hero-section .hero-title h3 {
	font-size: 30px;
}

.home-hero-section .hero-title h5 {
	font-size: 26px;
}

.home-hero-section .hero-title h2 {
	font-weight: bold;
	font-size: 49px;
	letter-spacing: 0.09em;
	color: #fff;
	text-shadow: 0 20px 20px rgba(255, 255, 255, 0.16);
	margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
	.home-hero-section .hero-title h2 {
		font-size: 38px;
	}
}

@media screen and (max-width: 768px) {
	.home-hero-section .hero-title h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 576px) {
	.home-hero-section .hero-title h2 {
		font-size: 16px;
	}
}

.home-hero-section .hero-title p {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	text-shadow: 0 20px 10px rgba(0, 0, 0, 0.16);
	margin-bottom: 40px;
}

@media screen and (max-width: 1280px) {
	.home-hero-section .hero-title p {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.home-hero-section .hero-title p {
		font-size: 14px;
	}
}

@media screen and (max-width: 576px) {
	.home-hero-section .hero-title p {
		font-size: 12px;
		margin-bottom: 20px;
	}
}

.home-hero-section .hero-title .explore {
	font-weight: 500;
	font-size: 12px;
	color: #04151f;
	background: #fff;
	-webkit-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.09));
	filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.09));
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 14px 24px;
	border-radius: 99999px;
}

.home-hero-section .hero-title .explore img {
	margin-left: 10px;
}

.home-hero-section .hero-form {
	position: relative;
	z-index: 2;
	background: #ffffff;
	padding: 30px 25px;
	border-radius: 10px;
}

@media screen and (max-width: 576px) {
	.home-hero-section .hero-form {
		padding: 20px 15px 10px;
	}
}

.home-hero-section .hero-form .form-group>div {
	margin-bottom: 12px;
}

.home-hero-section .hero-form h3 {
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 25px;
}

@media screen and (max-width: 576px) {
	.home-hero-section .hero-form h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}
}

.home-hero-section .hero-form .p-data h4 {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	color: #000000;
	margin-bottom: 10px;
}

.home-hero-section .hero-form .form-group {
	margin-bottom: 10px;
}

.home-hero-section .hero-form .form-group>div {
	position: relative;
}

.home-hero-section .hero-form .form-control {
	position: relative;
	height: 45px;
	border-radius: 7px;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	color: #7a7a7a;
}

@media screen and (max-width: 768px) {
	.home-hero-section .hero-form .form-control {
		margin-bottom: 10px;
	}
}

.home-hero-section .form-option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin: 0 15px;
}

@media screen and (max-width: 768px) {
	.home-hero-section .form-option {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.home-hero-section .form-option .form-check {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.home-hero-section .form-check label {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	color: #fff;
}

@media screen and (max-width: 576px) {
	.home-hero-section .form-check label {
		font-weight: normal;
		font-size: 10px;
	}
}

.home-hero-section .btn-send {
	height: 40px;
	padding: 0 20px;
	border-radius: 5px;
	background: #1A237B;
	border-color: #1A237B;
	-webkit-box-shadow: 0 10px 10px rgba(255, 255, 255, 0.16);
	box-shadow: 0 10px 10px rgba(255, 255, 255, 0.16);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.home-hero-section .btn-send img {
	margin-left: 20px;
}

@media screen and (max-width: 768px) {
	.home-hero-section .btn-send {
		margin-top: 15px;
		width: 100%;
	}
}

.message-modal {
	text-align: center;
}

.message-modal .modal-header {
	border: 0;
	padding: 0;
	position: relative;
}

.message-modal .modal-header .close {
	position: absolute;
	padding: 0;
	margin: 0;
	left: 15px;
	top: 15px;
}

.message-modal .modal-header h5 {
	margin-top: 35px;
	width: 100%;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	color: #1a237b;
	margin-bottom: 20px;
}

.message-modal p {
	font-weight: normal;
	font-size: 20px;
	line-height: 1.5rem;
	text-align: center;
	color: #000;
	width: 70%;
	margin: 0 auto;
	padding-bottom: 20px;
}

.msg.text-danger {
	display: table;
	margin-top: 8px;
	font-size: 14px;
}

.form-input {
	position: relative;
	height: 45px;
	border-radius: 7px;
	background: #dedede;
	-webkit-box-shadow: 0 10px 10px rgba(255, 255, 255, 0.16);
	box-shadow: 0 10px 10px rgba(255, 255, 255, 0.16);
}

.form-input .form-control {
	position: relative;
	z-index: 2;
	background-color: transparent;
	height: 100%;
}

.form-input.group-error:before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 6px;
	left: 6px;
	right: 6px;
	height: 32px;
	border-radius: 4px;
	border: 2px solid #FF516D;
}

.form-input.group-error:after {
	content: '';
	position: absolute;
	z-index: 2;
	right: 15px;
	top: 12px;
	background-image: url("../img/info-icon.svg");
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.request-call .request-content {
	margin-bottom: 20px;
}

.request-call h3 {
	font-weight: bold;
	font-size: 36px;
	color: #212121;
	margin-bottom: 30px;
}

.request-call p {
	font-weight: 500;
	font-size: 16px;
	color: #999;
}

.request-call .form-control {
	background: #F5F5F5;
	border-color: #E3E3E3;
	color: #9B9B9B;
	font-size: 16px;
	border-radius: 5px;
}

@media screen and (max-width: 768px) {
	.request-call .form-control {
		margin-bottom: 15px;
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.request-call .form-group {
		margin-bottom: 0;
	}
}

.request-call textarea {
	margin-top: 40px;
	height: 150px;
}

@media screen and (max-width: 768px) {
	.request-call textarea {
		margin-top: 0;
	}
}

.form-page {
	padding: 60px 0;
}

.form-page .form-label {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	color: #000;
	margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
	.form-page .form-label {
		margin-top: 10px;
	}
}

.form-page .form-control {
	font-size: 14px;
	font-weight: 500;
	color: #7A7A7A;
	height: 50px;
	margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
	.form-page .form-control {
		height: 38px;
		font-size: 12px;
	}
}

.form-page textarea.form-control {
	height: 150px;
}

.form-page .form-check label {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.09em;
	text-align: left;
	color: #000;
}

.form-page .select2-container--default .select2-selection--single {
	background: #F5F5F5;
	border: 1px solid #E3E3E3;
	height: 50px;
	margin-bottom: 10px;
	position: relative;
}

@media screen and (max-width: 576px) {
	.form-page .select2-container--default .select2-selection--single {
		height: 38px;
		font-size: 12px;
	}
}

@media screen and (max-width: 576px) {
	.form-page .select2-container--default .select2-selection--single .select2-selection__placeholder {
		font-size: 12px;
	}
}

.form-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 20px;
	right: 10px;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form-page .select2-container--default .select2-selection--single .select2-selection__arrow:before {
	margin: 0;
	position: static;
}

.page-content {
	padding-top: 200px;
}

@media screen and (max-width: 1600px) {
	.page-content {
		padding-top: 160px;
	}
}

@media screen and (max-width: 1050px) {
	.page-content {
		padding-top: 0;
	}
}
.custom-dropdown:hover .custom-dropdown-menu {
    display: block;
}