:root {
    --primary-color: #0B2F47;
    --primary-rgb: rgb(11, 47, 71);
    --secondary-color: #E13332; 
    --secondary-rgb: rgb(225, 51, 50);
    --third-color: #155580;
    --third-rgb: rgb(21, 85, 128);
    --forth-color: #7B1C1B;
    --forth-rgb: rgb(123, 28, 27);
}

body, html {
	background-color: #fff;
    color: #000;
}

body, html, input, select, textarea, h1, h2, h3, h4 ,h5, p, span, button {
	font-family: 'fixedFont', sans-serif!important;
}

.desktop_nav {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.mobile_nav {
	display: none;
}

.hidden {
	display: none!important;
	visibility: hidden;
	opacity: 0;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}

.form-group label span {
	color: #dc3545;
}

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

.form-group p {
	color: #808080;
	font-size: 10px;
	line-height: 18px;
	margin-top: 3px;
	margin-bottom: 0;
}

.form-group input, .form-group select {
	border: 1px solid #000;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 0;
	height: 40px!important;
    background-color: #FFFCF6!important;
    color: #000;
}

.form-group textarea {
	border: 1px solid #000;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
    background-color: #FFFCF6!important;
    color: #000;
}

.form-control:focus {
	box-shadow: none;
	color: #fff;
	border-color: #0B2F47;
}

.form-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.form-button button {
	border: 1px solid #0B2F47;
	border-radius: 8px;
	background: rgb(11,47,71);
	background: -moz-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#155580",GradientType=1);
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 35px;
}

.form-button button:hover {
	background: transparent;
	color: #0B2F47;
}

.form-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 14px;
	line-height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 25px;
	width: 25px;
	left: 0;
	top: 0;
}

input[disabled], input[disabled=true], .form-control:disabled {
	background-color: #c5c5c5!important;
}

.form-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: 2px solid #fff;
}

.form-checkbox:hover input ~ .form-checkmark {
	background-color: transparent;
}

.form-checkbox input:checked ~ .form-checkmark {
	background-color: transparent;
}

.form-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.form-checkbox input:checked ~ .form-checkmark:after {
	display: block;
}

.form-checkbox .form-checkmark:after {
	left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

a:hover {
	color: #155580;
}

.iti.iti--allow-dropdown {
	display: block;
	width: 100%;
	height: 40px!important;
}

.iti__arrow {
	border-top-color: #42E8E0!important;
}

.iti__arrow--up {
	border-bottom-color: #42E8E0!important;
}

.iti__country-list {
	background-color: #000!important;
}

.iti__country.iti__highlight, .iti__country.iti__active {
	background-color: rgba(130, 71, 229, 0.5)!important; 
}

.sweet_account .popup_close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #0B2F47;
    border: 1px solid #0B2F47;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 0 0 0 5px;
    animation: 1s popup_fade;
    animation-fill-mode: forwards;
    visibility: hidden;
}

@keyframes popup_fade {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.sweet_account .popup_close:hover {
    background-color: transparent;
    color: #fff;
}

.swal2-container.swal2-backdrop-show {
    background-color: rgba(0, 0, 0, 0.6)!important;
}

.sweet_account.success.swal2-popup {
	box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	background: rgb(11,47,71)!important;
	background: -moz-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: -webkit-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#155580",GradientType=1)!important;
    border-radius: 25px!important;
    overflow: hidden;
}

.sweet_account.success .swal2-html-container {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sweet_account.success .swal2-confirm {
    background-color: #E13332!important;
    border: 1px solid #fff!important;
    border-radius: 25px!important;
    padding: 5px 50px!important;
    font-size: 14px!important;
    line-height: 20px!important;
}

.sweet_account.success .swal2-confirm:hover {
    background-color: transparent!important;
    color: #E13332!important;
}

.marquee {
	overflow: hidden;
	opacity: 0;
}

.marquee_ready {
	background-color: #404040;
}

.marquee_ready p {
	font-size: 20px;
	line-height: 26px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
}

.primary_title {
	font-size: 50px;
	line-height: 55px;
	font-weight: bold;
	margin-bottom: 0;
}

.secondary_title {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 0;
}

.primary_description {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 0;
}

.secondary_description {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

#scrollUp {
	background: rgb(11,47,71);
	background: -moz-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#155580",GradientType=1);
}

.general_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_button a, .general_button button {
	background: rgb(11,47,71);
	background: -moz-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#155580",GradientType=1);
	border: 1px solid #0B2F47;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	padding: 0 25px;
	height: 40px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.general_button a:hover, .general_button button:hover {
	background: transparent;
	color: #0B2F47;
}

.general_button a[disabled][href=""] {
	pointer-events: none;
	background-color: #E2E4E8;
	color: #808080;
}

.general_editor p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

.general_editor p a {
	text-decoration: underline;
}

.general_editor p a:hover {
	color: #E13332;
}

.secondard_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.secondard_button a {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	padding: 3px 25px;
}

.secondard_button a:hover {
	background-color: #000;
	color: #fff;
}

.general_image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_image img {
	width: 100%;
}

.general_background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.secondary_section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.secondary_section .secondary_description {
	text-align: right;
	font-weight: bold;
	padding-right: 65px;
	position: relative;
}

.secondary_section .secondary_description:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50px;
	height: 1px;
	background-color: #fff;
}

.desktop_nav {
	padding-top: 0px;
	padding-bottom: 15px;
}

.desktop_nav_inner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.desktop_nav_inner .desktop_nav_left {
	width: 150px;
	margin: auto 0;
}

.desktop_nav_inner .desktop_nav_left a {
	width: 100%;
	display: block; 
}

.desktop_nav_inner .desktop_nav_right {
	width: calc(100% - 300px);
}

.desktop_nav_inner .desktop_nav_right {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	background-color: rgba(103, 103, 103, 0.25);
    border-radius: 0px 0px 0px 10px;
}

.desktop_nav_inner .desktop_nav_right a {
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	display: block;
	padding: 25px 15px;
	font-weight: bold;
}

.desktop_nav_inner .desktop_nav_right a:hover, .desktop_nav_inner .desktop_nav_right a.active {
	color: #0B2F47;
}

.desktop_nav_inner .desktop_nav_right .desktop_nav_dropdown > a {
	background-color: #0B2F47;
	padding-left: 25px;
	padding-right: 25px;
}

.desktop_nav_inner .desktop_nav_right .desktop_nav_dropdown > a:hover {
	color: #155580;
}

.desktop_nav_dropdown {
    position: relative;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto 0;
    background-color: #0B2F47;
    padding: 0;
    border-radius: 0 0 8px 8px;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a {
    justify-content: flex-start;
    color: #fff;
    padding: 10px 20px;
    border-top: 1px solid #155580;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a:not(:last-child) {
	border-bottom: 1px solid #155580;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a:hover {
    color: #155580;
}

.desktop_nav_dropdown:hover .desktop_nav_dropdown_inner {
    display: block;
}

.mobile_nav_dropdown_inner {
    max-height: 0;
    transition: max-height 0.35s ease-out;
    overflow: hidden;
    padding-left: 15px;
}

.mobile_buttons li:active .mobile_nav_dropdown_inner, .mobile_buttons li:hover .mobile_nav_dropdown_inner, .mobile_buttons li:focus .mobile_nav_dropdown_inner {
    max-height: initial;
    transition: max-height 0.35s ease-in;
}

#mobile_sidebar .components li a.mobile_nav_dropdown_button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 20px;
}

#mobile_sidebar .components li a.mobile_nav_dropdown_button i {
	font-size: 12px;
	line-height: 18px;
}

.gradient_font {
	background-image: linear-gradient(135deg, #42E8E0, #7A82E5);
	-webkit-background-clip: text;
	color: transparent;
}

.general_section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.sweet_vendor {
	background-color: transparent!important;
	border: 2px solid #0B2F47!important;
	border-radius: 10px!important;
	overflow: hidden;
	padding: 50px!important;
	background: rgb(11,47,71)!important;
	background: -moz-linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: -webkit-linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#155580",GradientType=1)!important;
	width: 750px!important;
	max-width: initial!important;
}

.sweet_vendor .swal2-content {
	text-align: left;
}

.sweet_vendor .sweet_vendor_form {
	position: relative;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_title {
	margin-bottom: 30px;
	color: #fff;
}

.sweet_vendor .sweet_vendor_form .secondary_description {
	font-weight: 100;
	color: #C5C5C5;
	margin-top: 30px;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content[attr-id="2"] {
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content .sweet_vendor_content_inner {
	width: 75%;
	margin: auto;
	text-align: center;
	color: #fff;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content .sweet_vendor_content_inner .secondary_description {
	font-weight: 100;
	margin-top: 25px;
}

.sweet_vendor .sweet_vendor_form.active .sweet_vendor_content[attr-id="1"] {
	opacity: 0;
}

.sweet_vendor .sweet_vendor_form.active .sweet_vendor_content[attr-id="2"] {
	display: flex;
}

.sweet_vendor .swal2-close {
	color: #fff!important;
}

.sweet_vendor .swal2-close:hover {
	color: #dc3545!important;
}

.sweet_vendor .form-button button {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	border-color: #7B1C1B;
}

.sweet_vendor .form-button button:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.sweet_vendor .form-group input, .sweet_vendor .form-group select, .sweet_vendor .form-group textarea {
	color: #000;
}

.sweet_vendor .form-group input[type="file"] {
	background-color: transparent !important;
    border: 0;
    color: #fff;
    padding-left: 0;
    padding-top: 0;
}

.general_scrollbar {
	padding-right: 15px;
	overflow-y: auto;
	position: relative;
}

.general_scrollbar::-webkit-scrollbar {
	width: 8px;
	display: block;
}

.general_scrollbar::-webkit-scrollbar-track {
	box-shadow: inset 0 0 8px #E13332; 
	border-radius: 10px;
}
 
.general_scrollbar::-webkit-scrollbar-thumb {
	background: #E13332; 
	border-radius: 10px;
	width: 8px;
}

.general_scrollbar::-webkit-scrollbar-thumb:hover {
	background: #0B2F47; 
}

.bg_outer {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('assets/img/background.jpg');
}

.owl-carousel .owl-prev {
	position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #fff;
}

.owl-carousel .owl-next {
	position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #fff;
}

.owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
	color: #0B2F47;
}

.footer {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/footer_bg.jpeg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.5;
}

.footer:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.footer .container {
	position: relative;
	z-index: 1;
	color: #fff;
}

.footer .container .general_image {
	margin-bottom: 30px;
	max-width: 200px;
}

.footer_address .secondary_description b  {
	display: block;
	margin-bottom: 5px;
}

.footer_address:not(:first-child) {
	margin-top: 20px;
}

.footer_buttons {
	margin-top: 20px;
}

.footer_buttons a:not(:first-child) {
	padding-left: 15px;
	margin-left: 15px;
	border-left: 1px solid #fff;
}

.footer_links .secondary_description b {
	margin-bottom: 20px;
	display: block;
}

.footer_links a {
	display: block;
	margin-top: 5px;
}

.footer_links a:hover {
	color: #0B2F47;
}

.footer_links.footer_ir {
	margin-top: 50px;
}

.footer_line {
	position: relative;
}

/*.footer_line:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 40%;
	height: 100%;
	margin: auto;
    background-color: #367EF2;
}*/

.footer_line:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
    background-color: #0B2F47;
}

.footer_line_box {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.footer_subs {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 40%;
    position: relative;
    z-index: 1;
}

.footer_subs a {
	color: #fff;
	padding-right: 15px;
}

.footer_subs a:hover {
	color: #0B2F47;
}

.footer_subs[attr-id="2"] {
	justify-content: center;
	width: 100%;
}

.footer_subs[attr-id="2"] .secondary_description {
	font-size: 12px;
	color: #fff;
}

.footer .footer_evendor {
	margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer_evendor p, .footer .footer_evendor .general_button {
	width: 50%;
}

.general_contact {
	position: relative;
	padding-top: 150px;
	padding-bottom: 50px;
}

.general_contact:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/contact_bg.jpeg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	opacity: 0.5;
}

.general_contact:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}

.general_contact .general_contact_inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	color: #fff;
}

.general_contact .general_contact_box {
	max-width: 500px;
    text-align: right;
}

.general_contact .general_contact_box .secondary_description {
	margin-top: 15px;
	margin-bottom: 50px;
}

.general_contact .general_contact_box .general_button {
	justify-content: flex-end;
}

.general_contact .general_contact_box .general_button a:hover {
	color: #fff;
	border-color: #fff;
}

.general_nav {
	position: relative;
}

.general_nav:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 40%;
	height: 100%;
	background: rgb(225,51,50);
	background: -moz-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
}

.general_nav:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60%;
	height: 100%;
	background-color: #0B2F47;
}

.general_nav .general_nav_content {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
	color: #fff;
}

.general_nav .general_nav_box {
	display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 20px 20px 20px;
}

.general_nav .general_nav_box .general_nav_box_inner {
	width: 100%;
	position: relative;
	z-index: 1;
}

.general_nav .general_nav_content .general_nav_box[attr-id="1"] {
	width: 30%;
}

.general_nav .general_nav_content .general_nav_box[attr-id="2"] {
	width: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.general_nav .general_nav_content .general_nav_box[attr-id="2"]:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.general_nav .general_nav_content .general_nav_box[attr-id="3"] {
	width: 20%;
	display: block;
}

.general_nav .general_nav_content .general_nav_box[attr-id="3"] img {
	width: 75px;
    margin-bottom: 75px;
}

.general_carousel .owl-dots, .secondary_carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.general_carousel .owl-dots .owl-dot, .secondary_carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #C2C2C2;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.general_carousel .owl-dots .owl-dot.active, .secondary_carousel .owl-dots .owl-dot.active {
    background-color: #0B2F47;
}

.editor_text {
	font-size: 14px;
	line-height: 20px;
}

.editor_text ul {
	list-style-type: disc;
	padding-left: 15px;
}

.home_banner {
	position: relative;
	background-attachment: fixed;
}

.home_banner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.15);
}

.home_banner_content {
	padding-top: 80px;
	padding-bottom: 100px;
	color: #fff;
	max-width: 500px;
	position: relative;
	z-index: 1;
}

.home_banner_content:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url('assets/img/home_banner_highlight.png');
}

.home_banner_content .home_banner_content_inner {
	position: relative;
	z-index: 1;
}

.home_banner_content .primary_title {
	margin-top: 15px;
	margin-bottom: 30px;
}

.home_banner_content .general_button {
	margin-top: 30px;
	justify-content: flex-start;
}

.home_banner_content .general_button a:hover {
	border-color: #fff;
	color: #fff;
}

.home_purpose {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

.home_purpose:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('assets/img/home_purpose_bg.png');
	opacity: 0.85;
}

.home_purpose_content {
	position: relative;
	z-index: 1;
	text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 50px;
}

.home_purpose_content .primary_title {
	margin-bottom: 30px;
}

.home_purpose_content .general_button {
	margin-top: 30px;
}

.home_purpose_vision {
	margin-bottom: 30px;
}

.home_purpose_vision .home_purpose_box, .home_purpose_mission .home_purpose_box {
	border-radius: 8px;
	color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.home_purpose_vision .home_purpose_box {
	padding: 60px 20px 20px 20px;
}

.home_purpose_mission .home_purpose_box {
	padding: 20px 20px 60px 20px;
}

.home_purpose_vision .home_purpose_box:before, .home_purpose_mission .home_purpose_box:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.25);
}

.home_purpose_vision .home_purpose_box p, .home_purpose_mission .home_purpose_box p {
	position: relative;
	z-index: 1;
}

.home_purpose_vision .home_purpose_box .secondary_title, .home_purpose_mission .home_purpose_box .secondary_title {
	margin-bottom: 15px;
}

.home_purpose_vision .home_purpose_box[attr-id="1"], .home_purpose_mission .home_purpose_box[attr-id="3"] {
	background-color: #0B2F47;
}

.home_purpose_vision .home_purpose_box[attr-id="3"] {
	padding-top: 200px;
}

.home_purpose_mission .home_purpose_box[attr-id="1"] {
	padding-bottom: 200px;
}

.home_section_3 {
	padding-top: 50px;
	padding-bottom: 50px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('assets/img/home_banner_highlight.png');
}

.home_section_3 .home_section_3_1 {
	max-width: 250px;
}

.home_section_3 .home_section_3_1 .secondary_title {
	margin-top: 15px;
}

.home_section_3 .home_section_3_2 {
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

.home_section_3 .home_section_3_2 .home_section_3_2_content {
	width: 30%;
}

.home_section_3 .home_section_3_2 .home_section_3_2_content .secondary_title {
	margin-top: 10px;
	margin-bottom: 30px;
}

.home_section_3 .home_section_3_2 .home_section_3_2_content .general_button {
	justify-content: flex-start;
	margin-top: 30px;
}

.home_section_3 .home_section_3_2 .home_section_3_2_image {
	width: 60%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.home_section_3 .home_section_3_3 .home_section_3_2_image {
	right: initial;
	left: 0;
}

.home_section_3 .home_section_3_3 .home_section_3_2_content {
	margin-right: 0;
    margin-left: auto;
    text-align: right;
} 

.home_section_3 .home_section_3_3 .home_section_3_2_content .general_button {
	justify-content: flex-end;
}

.home_section_4 .home_section_4_box {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.home_section_4 .home_section_4_box:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('assets/img/home_ir_image.jpeg');
	opacity: 0.85;
}

.home_section_4 .home_section_4_box:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.home_section_4 .home_section_4_box .home_section_4_inner {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 50px 50px;
}

.home_section_4 .home_section_4_box .home_section_4_content[attr-id="1"] {
	padding-top: 100px;
}

.home_section_4 .home_section_4_box .home_section_4_content .secondary_title {
	margin-top: 8px;
	margin-bottom: 30px;
}

.home_section_4 .home_section_4_box .home_section_4_content .general_button {
	justify-content: flex-start;
	margin-top: 30px;
}

.home_section_4 .home_section_4_box .home_section_4_content .general_button a:hover {
    border-color: #fff;
    color: #fff;
}

.home_section_4 .home_section_4_box .home_section_4_content[attr-id="2"] a {
	display: block;
	text-align: right;
	margin-bottom: 10px;
}

.home_section_4 .home_section_4_box .home_section_4_content[attr-id="2"] a[href=""] {
	pointer-events: none;
}

.home_section_4 .home_section_4_box .home_section_4_content[attr-id="2"] a:hover {
	text-decoration: underline;
	color: #fff;
}

.home_section_5 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

.home_section_5:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('assets/img/home_purpose_bg.png');
	opacity: 0.85;
}

.home_section_5 .home_section_5_inner {
	position: relative;
	z-index: 1;
}

.home_section_5 .home_section_5_title {
	margin-bottom: 50px;
}

.home_section_5 .primary_description {
	margin-bottom: 15px;
}

.home_section_5 .press_box .general_button {
	margin-top: 30px;
}

.home_section_5 .home_section_5_content {
	margin-top: 30px;
}

.press_content {
	border: 1px solid #0B2F47;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    background-color: #fff;
}

.press_content .press_content_description {
	width: calc(100% - 50px);
    padding-right: 15px;
}

.press_content .press_content_description .secondary_description small {
	color: #155580;
}

.press_content .press_content_description .secondary_title, .press_content .press_content_description .primary_description {
	margin-top: 5px;
	margin-bottom: 15px;
	font-weight: bold;
}

.press_content .press_content_button {
	width: 50px;
	display: block;
}

.press_content .press_content_button a {
	display: block;
}

.media_content {
	display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 200px;
}

.media_content .media_content_image {
	width: calc((100% - 50px) / 10 * 4);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 0 0 15px 0;
    overflow: hidden;
}

.media_content .media_content_description {
	width: calc((100% - 50px) / 10 * 6);
	padding: 20px 15px;
}

.media_content .media_content_description .secondary_description {
	display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E13332;
    margin-bottom: 8px;
}

.media_content .general_button {
	width: 50px;
	writing-mode: sideways-lr;
}

.media_content .general_button a {
	height: 100%;
    padding: 0;
    width: 100%;
    background: rgb(54,126,242);
	background: -moz-linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#367ef2",endColorstr="#0b2f47",GradientType=1);
	border-color: #298488;
	color: #fff;
	border-radius: 0px 8px 8px 0px;
}

.media_content .general_button a:hover {
	background: transparent;
	color: #298488;
}


/*.media_content[attr-id="2"] .general_button a {
	background: rgb(54,126,242);
	background: -moz-linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#367ef2",endColorstr="#0b2f47",GradientType=1);
	border-color: #0B2F47;
	color: #fff;
}

.media_content[attr-id="2"] .general_button a:hover {
	background: transparent;
	color: #0B2F47;
}*/

.event_content {
	display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 200px;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    background: rgb(27,115,173);
	background: -moz-linear-gradient(90deg, rgba(27,115,173,0) 0%, rgba(27,115,173,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(27,115,173,0) 0%, rgba(27,115,173,1) 100%);
	background: linear-gradient(90deg, rgba(27,115,173,0) 0%, rgba(27,115,173,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b73ad",endColorstr="#1b73ad",GradientType=1);
}

.event_content .event_content_image {
	width: calc((100% - 50px) / 10 * 4);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border-radius: 0 0 15px 0;
    overflow: hidden;
}

.event_content .event_content_description {
	width: calc((100% - 50px) / 10 * 6);
	padding: 20px 15px;
}

.event_content .event_content_description .secondary_title {
	margin-top: 5px;
    margin-bottom: 15px;
}

.event_content .event_content_description .secondary_description small {
	color: #E13332;
}

.event_content .general_button {
	width: 50px;
}

.event_content .general_button a {
	height: 100%;
    padding: 0;
    width: 100%;
    font-size: 35px;
    background: transparent;
    border: 0;
}

.home_about {
	padding-top: 50px;
	padding-bottom: 50px;
	color: #fff;
	position: relative;
	z-index: 1;
}

.home_about .home_about_inner {
	text-align: center;
	margin-bottom: 30px;
}

.home_about .home_about_inner .primary_title {
	margin-top: 8px;
}

.about_story_each {
	padding-top: 15px;
	padding-bottom: 15px;
}

.about_story_each:nth-child(even) .row {
	-ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.about_story_each:nth-child(even) p {
	text-align: right;
}

.about_story_content {
	opacity: 0;
}

.about_story_button {
	margin-top: 50px;
}

.about_story_button .general_button a {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	border-color: #7B1C1B;
}

.about_story_button .general_button a:hover {
	color: #7B1C1B;
	background: transparent;
}

.about_people {
	padding-top: 50px;
	padding-bottom: 20px;
}

.about_people_inner {
	margin-top: 50px;
	margin-bottom: 50px;
}

.about_people_inner .about_people_content {
	padding-top: 30px;
	padding-bottom: 30px;
}

.about_people_inner .about_people_content .secondary_title {
	margin-top: 8px;
	margin-bottom: 20px;
}

.about_people_inner .about_people_content .general_button {
	justify-content: flex-start;
	margin-top: 30px;
}

.about_people_inner .general_background {
	height: 100%;
	border-radius: 15px;
}

.about_history, .home_people, .home_service {
	position: relative;
	padding-top: 150px;
	padding-bottom: 50px;
}

.about_history:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-image: url('assets/img/about_history_bg.jpeg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	opacity: 0.5;
}

.about_history:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}

.about_history_inner, .home_people_inner, .home_service_inner {
	position: relative;
	z-index: 1;
}

.about_history_inner .about_history_title {
	margin-bottom: 30px;
}

.about_history_inner .about_history_title .primary_title {
	color: #fff;
}

.about_history_inner .about_history_button {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 14px;
    line-height: 20px;
}

.about_history_inner .about_history_button a {
	display: block;
    padding: 5px 20px;
    color: #367EF2;
}

.about_history_inner .about_history_button a.active, .about_history_inner .about_history_button a:hover {
	color: #fff;
}

.about_history_content {
	margin-top: 50px;
	color: #fff;
}

.home_people_inner {
	color: #fff;
}

.people_button {
	position: relative;
	background-color: #6a6b6b;
}

.people_button[attr-id="1"]:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
}

.people_button[attr-id="1"]:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: initial;
	width: 50%;
	height: 100%;
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
}

.people_button[attr-id="2"]:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: initial;
	right: 0;
	width: 50%;
	height: 100%;
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
}

.people_button .people_button_inner {
	position: relative;
	z-index: 1;
}

.people_button .people_button_inner a {
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	display: block;
}

.people_icon {
	padding-top: 30px;
	padding-bottom: 50px;
}

.people_carousel {
	display: none;
}

.people_carousel_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	filter: grayscale(100%);
	cursor: pointer;
}

.people_carousel_image:hover, .people_carousel_image.active {
	filter: grayscale(0%);
}

.people_content {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('assets/img/people_bg.jpeg');
	padding-top: 30px;
	padding-bottom: 30px;
}

.people_content_inner {
	background-color: #0B2F47;
	padding: 30px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
}

.people_content_inner .people_content_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.people_content_inner .primary_description {
	margin-top: 8px;
	margin-bottom: 15px;
	font-weight: 400;
}

.people_content_inner .people_short_info {
	margin-top: 15px;
}

.people_content_inner .people_short_info .secondary_description {
	margin-bottom: 5px;
}

.people_content_body {
	margin-top: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.people_content_body .card {
	background-color: #155580;
	margin-bottom: 0;
}

.people_content_body .card-header {
	background-color: transparent;
	border-radius: 0;
}

.people_content_body button {
	background: rgb(11, 47, 71)!important;
    background: -moz-linear-gradient(90deg, rgba(11, 47, 71, 1) 0%, rgba(54, 126, 242, 1) 100%)!important;
    background: -webkit-linear-gradient(90deg, rgba(11, 47, 71, 1) 0%, rgba(54, 126, 242, 1) 100%)!important;
    background: linear-gradient(90deg, rgba(11, 47, 71, 1) 0%, rgba(54, 126, 242, 1) 100%)!important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#367ef2",GradientType=1)!important;
    color: #fff!important;
    text-align: left!important;
    border-radius: 0!important;
}

.people_content_body .card-body {
	padding: 15px;
}

.service_banner:before {
	background-color: rgba(0, 0, 0, 0.25);
}

.service_banner .home_banner_content:before {
	content: none;
}

.service_banner .primary_title {
	margin-top: 0;
	margin-bottom: 0;
}

.service_banner .secondary_description b {
	margin-top: 10px;
	margin-bottom: 30px;
	display: block;
}

.service_section1 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.service_section1 .service_section1_title {
	margin-bottom: 30px;
}

.service_section1 .service_section1_title .secondary_title {
	font-weight: normal;
}

.service_section1_box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 25px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	height: 100%;
}

.service_section1_box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	margin: auto;
}

.service_section1_box .service_section1_inner {
	position: relative;
	z-index: 1;
}

.service_section1_box .service_section1_inner .editor_text {
	margin-top: 30px;
}

.service_about {
	padding-top: 80px;
	padding-bottom: 80px;
}

.service_about:after {
	background-color: rgba(0, 0, 0, 0.45);
}

.service_about .about_history_inner {
	max-width: 700px;
	margin: auto;
}

.service_about .about_history_title {
	color: #fff;
	margin-bottom: 0;
	text-align: center;
}

.service_about .secondary_description {
	margin-top: 50px;
}

.service_section2 .service_section2_title {
	padding: 40px 20px;
	border-radius: 10px;
	overflow: hidden;
	text-align: right;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.service_section2 .service_section2_title:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	margin: auto;
}

.service_section2 .service_section2_title .service_section2_title_inner {
	position: relative;
	z-index: 1;
}

.service_section2 .service_section2_title .secondary_description b {
	display: block;
	margin-bottom: 30px;
}

.service_section2_content {
	margin-top: 50px;
}

.service_section2_content .service_col {
	margin-bottom: 30px;
}

.service_section2_content .service_section2_box {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	padding: 20px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	height: 100%;
}

.service_section2_content .service_col:nth-child(even) .service_section2_box {
	background: rgb(236,244,247);
	background: -moz-linear-gradient(90deg, rgba(236,244,247,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(236,244,247,1) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(90deg, rgba(236,244,247,1) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ecf4f7",endColorstr="#ffffff",GradientType=1);
	color: #000;
}

.service_section2_content .service_section2_box .service_section2_header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}

.service_section2_content .service_section2_box .service_section2_header .secondary_title {
	width: 60%;
}

.service_section2_content .service_section2_box .service_section2_header .secondary_description {
	width: 40%;
	text-align: right;
}

.service_fleet {
	margin-bottom: 50px;
}

.service_fleet_box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 50px 50px;
	color: #fff;
	border-radius: 15px;
	overflow: hidden;
}

.service_fleet_box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.service_fleet_box .service_fleet_inner {
	position: relative;
	z-index: 1;
}

.service_fleet_box .service_fleet_inner .service_fleet_title {
	margin-bottom: 30px;
}

.service_fleet_box .service_fleet_inner .service_fleet_title .secondary_title {
	margin-bottom: 15px;
}

.service_fleet_box .service_fleet_content {
	background-color: #fff;
	padding: 20px 30px;
	border-radius: 10px;
	color: #000;
	overflow: hidden;
}

.service_fleet_box .service_fleet_form {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-top: 15px;
}

.service_fleet_box .service_fleet_form select {
	height: 100%!important;
	color: #000;
}

.service_fleet_box .service_fleet_form a {
	display: flex;
	justify-content: center;
	align-items: center;
    height: 100%;
    margin-left: 30px;
}

.service_fleet_box .service_fleet_form a img {
	max-height: 100%;
	margin: auto;
}

.press_release {
	padding-top: 50px;
	padding-bottom: 20px;
}

.press_release .press_release_button {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}

.press_release .press_release_button a {
	display: block;
    padding: 5px 25px;
    color: #0B2F47;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom-right-radius: 10px;
}

.press_release .press_release_button a.active, .press_release .press_release_button a:hover {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	color: #fff;
}

.press_release .media_button a.active, .press_release .media_button a:hover {
	background: rgb(182,225,227);
	background: -moz-linear-gradient(90deg, rgba(182,225,227,1) 0%, rgba(41,132,136,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(182,225,227,1) 0%, rgba(41,132,136,1) 100%);
	background: linear-gradient(90deg, rgba(182,225,227,1) 0%, rgba(41,132,136,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b6e1e3",endColorstr="#298488",GradientType=1);
}

.press_release .events_button a.active, .press_release .events_button a:hover {
	background: rgb(54,126,242);
	background: -moz-linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: linear-gradient(90deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#367ef2",endColorstr="#0b2f47",GradientType=1);
}

.press_release .press_box, .press_release .media_box, .press_release .event_box {
	margin-top: 30px;
}

.press_release .press_content, .press_release .media_content, .press_release .event_content {
	margin-bottom: 30px;
}
.press_release .media_content {
	border: 1px solid #0B2F47;
}

.press_release .event_content .event_content_image, .press_release .media_content .media_content_image {
	width: 40%;
}

.press_release .event_content .event_content_description, .press_release .media_content .media_content_description {
	width: 60%;
}

.press_release .about_story_button {
	margin-top: 15px;
}

.press_release .about_story_button .general_button {
	width: 100%;
}

.press_release .about_story_button .general_button a {
	font-size: 12px;
	height: initial;
	border: 1px solid #E13332;
	border-radius: 0 0 10px 10px;
}

.contact_form {
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

.contact_form_background {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.contact_form .contact_section_title {
	text-align: center;
	max-width: 350px;
	margin: auto auto 30px auto;
}

.contact_form .contact_section_title .primary_description {
	font-weight: bold;
	margin-bottom: 25px;
}

.contact_form .contact_section_title  .secondary_description b {
	display: block;
	margin-top: 10px;
}

.contact_form .form-group label, .contact_form .form-group input, .contact_form .form-group textarea {
	color: #000;
}

.contact_location {
	padding-top: 50px;
	padding-bottom: 20px;
	background-color: #ECF4F7;
}

.contact_location .contact_location_title {
	margin-bottom: 50px;
}

.contact_location .contact_location_inner {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	background-color: #fff;
	margin-bottom: 20px;
}

.contact_location .contact_location_inner .contact_location_map {
	width: 40%;
}

.contact_location .contact_location_inner .contact_location_map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.contact_location .contact_location_inner .contact_location_content {
	width: 60%;
	padding: 50px 30px 30px 30px;
	position: relative;
}

.contact_location .contact_location_inner .contact_location_content:before {
	content: '';
	background-color: #E13332;
	width: 30%;
	height: 2px;
	top: 30px;
	left: 30px;
	margin: auto;
	position: absolute;
}

.contact_location .contact_location_inner .contact_location_content .primary_description {
	margin-bottom: 20px;
}

.contact_location .contact_location_inner .contact_location_content .contact_location_box {
	margin-bottom: 15px;
}

.contact_location .contact_location_inner .contact_location_content a:hover {
	color: #0B2F47;
}

.career_banner:before {
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.career_banner .home_banner_content {
	color: #000;
}

.career_banner .home_banner_content:before {
	content: none;
}

.career_section1 {
	padding-top: 50px;
	padding-bottom: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.career_section1:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.65);
}

.career_section1 .career_section1_inner {
	position: relative;
	z-index: 1;
	color: #fff;
}

.career_section1 .career_section1_inner .career_section1_title {
	text-align: center;
	max-width: 400px;
	margin: auto auto 50px auto;
}

.career_section1 .career_section1_col {
	padding-bottom: 30px;
}

.career_section1 .career_section1_box {
	border: 1px solid #fff;
	border-radius: 8px;
	height: 100%;
	padding: 30px;
}

.career_section1 .career_section1_box .primary_description {
	font-weight: bold;
	margin-bottom: 15px;
}

.career_job {
	padding-top: 50px;
	padding-bottom: 50px;
}

.career_job .career_box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.career_job .career_box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.65);
}

.career_job .career_box .career_inner {
	position: relative;
	z-index: 1;
}

.career_job .career_box .career_title {
	color: #fff;
	padding: 50px 30px;
}

.career_job .career_box .career_title .secondary_title {
	margin-bottom: 15px;
}

.career_job .career_box .people_content_body {
	margin-top: 0;
}

.career_job .people_content_body button {
	padding: 30px;
    height: initial;
}

.career_job .career_each_item {
	color: #fff;
	margin-bottom: 15px;
}

.career_job .career_each_item .primary_description {
	margin-bottom: 8px;
}

.career_job .general_button {
	justify-content: flex-start;
}

.career_job .general_button a {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
}

.career_job .people_content_body .card-body {
	padding: 30px;
}

.esg_section1 {
	padding-top: 50px;
	padding-bottom: 20px;
}

.esg_section1 .esg_section1_content {
	margin-bottom: 30px;
}

.esg_section1 .secondary_title {
	background: rgb(11,47,71);
	background: -moz-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(11,47,71,0.2) 100%, rgba(11,47,71,0.2) 100%);
	background: -webkit-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(11,47,71,0.2) 100%, rgba(11,47,71,0.2) 100%);
	background: linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(11,47,71,0.2) 100%, rgba(11,47,71,0.2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#0b2f47",GradientType=1);
	color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.esg_section1 .esg_section1_inner {
	padding-bottom: 100px;
}

.esg_section1 .esg_section1_image {
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-bottom-left-radius: 10px;
	overflow: hidden;
}

.esg_section2 {
	padding-bottom: 50px;
}

.esg_section2 .esg_section2_title {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: 40px 20px;
	position: relative;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.esg_section2 .esg_section2_title:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.65);
}

.esg_section2 .esg_section2_title .secondary_title {
	position: relative;
	z-index: 1;
}

.esg_section2 .esg_section2_content {
	border: 1px solid #0B2F47;
	border-radius: 10px;
	padding: 30px 30px 10px 30px;
}

.esg_section2 .esg_section2_content .esg_section2_item {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.esg_section2 .esg_section2_content .esg_section2_item .esg_section2_text {
	width: calc(100% - 100px);
}

.esg_section2 .esg_section2_content .esg_section2_item .esg_section2_button {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
}

.esg_section2 .esg_section2_content .esg_section2_item .esg_section2_button:hover {
	text-decoration: underline;
	color: #000;
}

.esg_section2 .esg_section2_content .esg_section2_item .esg_section2_button img {
	width: 20px;
}

.esg_section3 {
	position: relative;
	color: #fff;
}

.esg_section3 .esg_section3_image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	z-index: 1;
}

.esg_section3:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: 2;
}

.esg_section3:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	margin: auto;
	background: rgb(11,47,71);
	background: -moz-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,126,242,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,126,242,1) 100%);
	background: linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,126,242,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#367ef2",GradientType=1);
	z-index: 3;
}

.esg_section3 .esg_section3_inner {
	position: relative;
	z-index: 4;
}

.esg_section3 .esg_section3_title {
	padding: 50px 30px;
}

.esg_section3 .esg_section3_title img {
	width: 150px;
    margin-top: 30px;
}

.esg_section3 .esg_section3_item {
	padding: 50px 30px;
}

.esg_section3 .esg_section3_each {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.esg_section3 .esg_section3_each img {
	border-radius: 10px;
    overflow: hidden;
    width: 100px;
}

.esg_section3 .esg_section3_each .editor_text {
	width: calc(100% - 100px);
    padding-left: 30px;
}

.esg_section4 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.esg_section4 .esg_section4_inner {
	background: rgb(11,47,71);
	background: -moz-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,109,143,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,109,143,1) 100%);
	background: linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(54,109,143,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b2f47",endColorstr="#366d8f",GradientType=1);
	padding: 50px 30px;
	border-radius: 10px 10px 0 0;
	color: #fff;
}

.esg_section4 .esg_section4_inner .esg_section4_title .secondary_title {
	margin-bottom: 20px;
}

.esg_section4 .esg_section4_item {
	margin-top: 80px;
}

.esg_section4 .esg_section4_item .esg_section4_header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 50px;
}

.esg_section4 .esg_section4_item .esg_section4_header img {
	width: 75px;
	margin-right: 15px;
}

.esg_section4 .esg_section4_each {
	text-align: center;
	margin: auto;
}

.esg_section4 .esg_section4_each img {
	width: 60px;
}

.esg_section4 .esg_section4_each .primary_description {
	margin-top: 10px;
	margin-bottom: 10px;
}

.esg_section4 .esg_section4_inner.esg_section5 {
	border-radius: 0 0 10px 10px;
	border-top: 1px solid #fff;
}

.esg_section5 .esg_section5_title {
	text-align: center;
	margin-bottom: 30px;
}

.esg_section5 .esg_section5_title .secondary_title {
	margin-bottom: 15px;
}

.esg_section5 .esg_section5_button {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}

.esg_section5 .esg_section5_button a {
	display: block;
    padding: 5px 25px;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
    border-bottom-right-radius: 10px;
}

.esg_section5 .esg_section5_button a.active, .esg_section5 .esg_section5_button a:hover {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(90deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	color: #fff;
}

.esg_section5 .esg_section5_content {
	margin-top: 30px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.esg_section5 .esg_section5_content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	margin: auto;
	background-color: #fff;
}

.esg_section5 .esg_section5_content .esg_section5_content_inner {
	position: relative;
	z-index: 1;
}

.esg_section5 .esg_section5_content .esg_section5_right {
	height: 100%;
	position: relative;
	padding: 30px;
}

.esg_section5 .esg_section5_content .esg_section5_right:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.65);
}

.esg_section5 .esg_section5_content .esg_section5_right .esg_section5_right_inner {
	position: relative;
	z-index: 1;
}

.esg_section5 .esg_section5_left {
	color: #000;
	padding: 30px;
}

.evendor_section1 {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

.evendor_section1:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.15);
}

.evendor_section1 .evendor_section1_inner1 {
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 35px 35px;
	color: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.evendor_section1 .evendor_section1_inner1:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background: rgb(54,126,242);
	background: -moz-linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	background: linear-gradient(0deg, rgba(54,126,242,1) 0%, rgba(11,47,71,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#367ef2",endColorstr="#0b2f47",GradientType=1);
	opacity: 0.5;
}

.evendor_section1 .evendor_section1_inner1 .evendor_section1_content {
	position: relative;
	z-index: 2;
}

.evendor_section1 .evendor_section1_inner1 .evendor_section1_item b.secondary_description {
	position: relative;
	margin-bottom: 5px;
}

.evendor_section1 .evendor_section1_inner1 .evendor_section1_item[attr-id="2"] {
	text-align: right;
	margin-top: 100px;
}

.evendor_section1 .evendor_section1_inner2 {
	margin-top: 15px;
	background-color: #fff;
	padding: 35px 35px;
	position: relative;
	z-index: 2;
	border-radius: 10px;
	overflow: hidden;
}

.evendor_section1 .evendor_section1_inner2 .primary_description {
	font-weight: bold;
	margin-bottom: 10px;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_title {
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	margin-top: 50px;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_number {
	width: 50px;
	position: relative;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_number p {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    background-color: #fff;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_description {
	width: calc(100% - 50px);
}

.evendor_section1 .evendor_section1_inner2 .general_button {
	margin-top: 20px;
}

.evendor_section1 .evendor_section1_inner2 .general_button a {
	width: 100%;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_title[attr-id="1"] .general_button a {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	border-color: #7B1C1B;
}

.evendor_section1 .evendor_section1_inner2 .evendor_section1_title[attr-id="1"] .general_button a:hover {
	background: transparent;
	color: #7B1C1B;
}

.evendor_section1 .evendor_section1_title .line_button {
	margin-top: 5px;
}

.evendor_section1 .evendor_section1_title .line_button a {
	color: #0B2F47;
	font-weight: bold;
}

.evendor_section1 .evendor_section1_title .line_button a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 991px) {  
	.desktop_nav {
		display: none;
	}

	.mobile_nav {
		display: block;
		position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    width: 100%;
	    z-index: 100;
	}

	.mobile_header_outer {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.mobile_header_inner {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	}

	.mobile_header_inner a {
		width: 125px;
		display: block;
	}

	.mobile_header_inner button {
		background-color: transparent;
		color: #0B2F47;
		border: 0;
		font-size: 20px;
		line-height: 28px;
	}

	#mobile_sidebar {
	    width: 250px;
	    position: fixed;
	    top: 0;
	    right: -250px;
	    height: 100vh;
	    z-index: 999;
		background-color: rgba(103, 103, 103, 1);
		color: #fff;
	    transition: all 0.3s;
	    overflow-y: scroll;
	}

	#mobile_sidebar.active {
	    right: 0;
	}

	#mobile_sidebar .sidebar_header {
	    padding: 50px 50px 25px 50px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}

	#mobile_sidebar ul.components {
	    padding: 15px 0;
	    border-bottom: 1px solid #fff;
	}

	#mobile_sidebar .components p {
	    color: #fff;
	    padding: 10px;
	}

	#mobile_sidebar .components li a {
	    padding: 10px;
	    display: block;
	    font-size: 12px;
	    line-height: 18px;
	    font-weight: 600;
	    color: #fff;
	    text-transform: uppercase;
	}

	#mobile_sidebar .components li.active>a, #mobile_sidebar a.collapse[aria-expanded="true"] {
		color: #0032A0;
	}

	#mobile_sidebar .components li a:hover {
	    color: #fff;
	}

	#mobile_sidebar a[data-toggle="collapse"] {
	    position: relative;
	}

	.sidebar_overlay {
	    display: none;
	    position: fixed;
	    width: 100vw;
	    height: 100vh;
	    background: rgba(0, 0, 0, 0.7);
	    z-index: 998;
	    opacity: 0;
	    transition: all 0.5s ease-in-out;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    margin: auto;
	}
	.sidebar_overlay.active {
	    display: block;
	    opacity: 1;
	}

	#sidebar_dismiss {
	    width: 25px;
	    height: 25px;
	    line-height: 25px;
	    font-size: 15px;
	    text-align: center;
	    position: absolute;
	    top: 10px;
	    right: 10px;
	    cursor: pointer;
	    -webkit-transition: all 0.3s;
	    -o-transition: all 0.3s;
	    transition: all 0.3s;
	    border-radius: 15px;
	    color: #fff;;
	}
}

@media only screen and (max-width: 767px) {
	.primary_title {
		font-size: 30px;
		line-height: 35px;
	}

	.secondary_title {
		font-size: 25px;
		line-height: 30px;
	}

	.primary_description {
		font-size: 16px;
		line-height: 20px;
	}

	.secondary_description {
		font-size: 12px;
		line-height: 16px;
	}

	.general_button a, .general_button button {
		font-size: 12px;
		line-height: 18px;
	}

	.general_section {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.general_nav:before, .general_nav:after {
		content: none;
	}

	.general_nav .general_nav_box {
		padding: 15px 15px;
	}

	.general_nav .general_nav_content .general_nav_box {
		background: rgb(225,51,50);
		background: -moz-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
		background: -webkit-linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
		background: linear-gradient(180deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e13332",endColorstr="#7b1c1b",GradientType=1);
	}

	.general_nav .general_nav_content .general_nav_box[attr-id="1"] {
		width: 50%;
	}

	.general_nav .general_nav_content .general_nav_box[attr-id="2"] {
		width: 50%;
	}

	.general_nav .general_nav_box[attr-id="3"] {
		background-color: #0B2F47;
	}

	.general_nav .general_nav_box[attr-id="3"] .general_nav_box_inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.general_nav .general_nav_box[attr-id="3"] img {
		width: 40px;
	}

	.general_nav .general_nav_box[attr-id="3"] .secondary_description {
		padding-left: 15px;
		color: #fff;
	}

	.general_contact {
		padding-top: 50px;
	}

	.footer .container .general_image {
		width: 150px;
	}

	.footer_links {
		margin-top: 50px;
	}

	.footer_line:before {
		width: 100%;
	}

	.footer_line:after {
		width: 100%;
/*		height: calc(100% / 3 * 2);*/
		top: initial;
		bottom: 0;
	}

	.footer_line_box {
		display: block;
	}

	.footer_line_box .footer_subs {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.footer .footer_evendor {
		display: block;
	}

	.footer .footer_evendor .general_button {
		margin-top: 10px;
		margin-bottom: 30px;
		justify-content: flex-start;
	}

	.footer .footer_evendor p, .footer .footer_evendor .general_button {
		width: 100%;
	}

	.general_contact:before, .home_banner, .about_history:before { 
		background-attachment: initial;
	}

	.editor_text {
		font-size: 12px;
		line-height: 18px;
	}

	.service_banner:before {
		background-color: rgba(0, 0, 0, 0.15);
	}

	.home_purpose_vision .home_purpose_box[attr-id="1"] {
		border-radius: 8px 8px 0 0;
		padding-top: 40px;
	}

	.home_purpose_vision .home_purpose_box[attr-id="2"] {
		border-radius: 0;
		padding-top: 40px;
	}

	.home_purpose_vision .home_purpose_box[attr-id="3"] {
		border-radius: 0 0 8px 8px;
		padding-top: 40px;
	}

	.home_purpose_mission .home_purpose_box[attr-id="1"] {
		border-radius: 0;
		padding-bottom: 40px;
	}

	.home_purpose_mission .home_purpose_box[attr-id="2"] {
		border-radius: 0 0 8px 8px;
		padding-bottom: 40px;
	}

	.home_purpose_mission .home_purpose_box[attr-id="3"] {
		border-radius: 8px 8px 0 0;
		padding-bottom: 40px;
	}

	.home_section_3 .home_section_3_2:before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.45);
		z-index: 1;
	}

	.home_section_3 .home_section_3_2 .home_section_3_2_content {
		width: 100%;
		position: relative;
		z-index: 2;
		color: #fff;
	}

	.home_section_3 .home_section_3_2 .home_section_3_2_image {
		width: 100%;
	}

	.home_section_4 .home_section_4_box .home_section_4_inner {
		padding: 25px 25px;
	}

	.home_section_4 .home_section_4_box .home_section_4_content[attr-id="1"] {
		padding-top: 0;
	}

	.home_section_4 .home_section_4_box .home_section_4_content[attr-id="2"] {
		padding-top: 100px;
	}

	.press_content {
		padding: 15px 15px;
	}

	.press_content .press_content_description {
		width: calc(100% - 50px);
	}

	.press_content .press_content_button {
		width: 50px;
	}

	.media_content, .event_content {
		flex-wrap: wrap;
		min-height: initial;
	}

	.media_content .media_content_image, .event_content .event_content_image {
		width: 40%;
		border-radius: 0;
	}

	.media_content .media_content_description, .event_content .event_content_description {
		width: 60%;
	}

	.media_content .general_button, .event_content .general_button {
		-ms-flex: 0 0 50%;
	    -webkit-box-flex: 0;
	    flex: 0 0 100%;
	    max-width: 100%;
	    writing-mode: initial;
	}

	.media_content .general_button a, .event_content .general_button a {
		border-radius: 0 0 8px 8px;
		padding-top: 10px;
    	padding-bottom: 10px;
	}

	.event_content .general_button a {
		font-size: 25px;
	}

	.about_story_each .secondary_description {
		margin-top: 15px;
		text-align: center!important;
	}

	.about_people_inner .general_background {
		height: 300px;
	}

	.about_history_content .about_history_frame {
		margin-top: 15px;
	}

	.people_content_inner .people_content_title {
		margin-top: 15px;
	}

	.service_section1 {
		padding-bottom: 20px;
	}

	.service_section1_box {
		margin-bottom: 30px;
		height: initial;
	}

	.service_section1 {
		padding: 25px;
	}

	.service_fleet_box {
		padding: 25px;
	}

	.service_fleet_box .service_fleet_content {
		padding: 10px 20px;
	}

	.service_fleet_box .service_fleet_form {
		height: 50px;
	}

	.service_fleet_box .service_fleet_form a {
		margin-left: 15px;
	}

	.esg_section1 .esg_section1_image {
		height: 300px;
	}

	.esg_section1 .esg_section1_inner {
		margin-top: 10px;
		padding-bottom: 30px;
	}

	.esg_section2 .esg_section2_title {
		border-radius: 10px 10px 0 0;
	}

	.esg_section2 .esg_section2_content {
		border-radius: 0 0 10px 10px;
	}

	.esg_section3 .esg_section3_title, .esg_section3 .esg_section3_item {
		padding: 25px 15px;
	}

	.esg_section3 .esg_section3_title {
		margin-bottom: 30px;
	}

	.esg_section3 .esg_section3_each img {
		width: 75px;
	}

	.esg_section3 .esg_section3_each .editor_text {
		width: calc(100% - 75px);
	}

	.esg_section3:after {
		width: calc(100% - 125px);
	}

	.esg_section4 .esg_section4_each .primary_description {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.esg_section5 .esg_section5_content:before {
		width: 100%;
	}

	.esg_section4 .esg_section4_each {
		margin-bottom: 30px;
	}

	.press_release .about_story_button .general_button a {
		padding-top: 2px;
		padding-bottom: 2px;
	}

	.media_box .secondary_title, .press_box .secondary_title {
		font-size: 16px;
		line-height: 20px;
	}

	.contact_form:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.65);
		z-index: 1;
	}

	.contact_form_background {
		width: 100%;
	}

	.contact_form .contact_form_inner {
		position: relative;
		z-index: 2;
		color: #fff;
	}

	.contact_location .contact_location_inner {
		display: block;
	}

	.contact_location .contact_location_inner .contact_location_map {
		width: 100%;
	}

	.contact_location .contact_location_inner .contact_location_content {
		width: 100%;
		padding: 30px 15px 15px 15px;
	}

	.contact_location .contact_location_inner .contact_location_content:before {
		top: 15px;
		left: 15px;
	}

	.career_job .people_content_body .card-body {
		padding: 30px 15px;
	}

	.general_carousel .owl-dots, .secondary_carousel .owl-dots {
		bottom: -20px;
	}

	.general_carousel .owl-dots .owl-dot, .secondary_carousel .owl-dots .owl-dot {
		width: 8px;
		height: 8px;
	}
}