@charset "UTF-8";
@font-face {
	font-family: 'Oxanium Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium Regular'), url('./assets/fonts/Oxanium-Regular.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium ExtraLight';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium ExtraLight'), url('./assets/fonts/Oxanium-ExtraLight.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium ExtraLight';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium ExtraLight'), url('./assets/fonts/Oxanium[wght].woff') format('woff');
}


@font-face {
	font-family: 'Oxanium Light';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium Light'), url('./assets/fonts/Oxanium-Light.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium Medium';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium Medium'), url('./assets/fonts/Oxanium-Medium.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium SemiBold';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium SemiBold'), url('./assets/fonts/Oxanium-SemiBold.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium Bold';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium Bold'), url('./assets/fonts/Oxanium-Bold.woff') format('woff');
}


@font-face {
	font-family: 'Oxanium ExtraBold';
	font-style: normal;
	font-weight: normal;
	src: local('Oxanium ExtraBold'), url('./assets/fonts/Oxanium-ExtraBold.woff') format('woff');
}

.row{
	margin-left: -17px;
	margin-right: -17px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
	padding-left: 17px;
	padding-right: 17px;
}

h1{
	font-size: 48px;
}

h2{
	font-size: 32px;
}

@media (min-width: 767px) {
	.row{
		margin-left: -15px;
		margin-right: -15px;
	}

	h1{
		font-size: 54px;
	}
	
	h2{
		font-size: 48px;
	}
}

.txt-medium{
	font-family: 'Oxanium Medium';
}

.txt-semibold{
	font-family: 'Oxanium SemiBold';
}

.txt-reg{
	font-family: 'Oxanium Regular';
}

html{
    overflow-x: hidden;
}

body {
	margin: 0;
	word-break: break-word;
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    position: relative;
	line-height: 1.4;
	color: #1A1A1A;
	overflow-x: hidden;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* Chrome / Safari / Edge */
html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.no-scroll ,
body.no-scroll {
	overflow: hidden;
}

.gsap-scrollbar {
	position: fixed;
	top: 0;
	right: 0px;
	width: 0px;
	height: 100vh;
	background: rgba(255,255,255,0.15);
	z-index: 100;
	transition: all .3s ease-in-out;
}

@media (min-width:768px) {
	.gsap-scrollbar {
		width: 6px;
	}
}

html.no-scroll .gsap-scrollbar {
	opacity: 0;
	visibility: hidden;
}

.gsap-thumb {
	width: 100%;
	background: #989898;
	border-radius: 4px;
	cursor: pointer;
}

.txt-darkblue{
	color: #2D2E82;
}

.txt-white{
	color: #FFF;
}

.head-menu{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 10;
}

header{
	position:relative;
	z-index: 9;
	transition: all .3s ease-in-out;
}

header.open{
	box-shadow: unset;
}

#site-navigation{
	position: relative;
}

#site-navigation,
.cus-container{
    max-width: calc(100vw - 34px);
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 767px ) {
	#site-navigation,
	.cus-container{
		max-width: calc(100vw - 100px);
	}
}
@media (min-width: 1200px ) {
    #site-navigation,
    .cus-container{
        max-width: calc(100vw - 200px);
    }
}

@media (min-width: 2120px ) {
    #site-navigation,
    .cus-container{
        max-width: 1920px;
    }
}

.menu-icon{
	width: 30px;
	height: 50px;
	position: relative;
	cursor: pointer;
}

.menu-icon::after, 
.menu-icon::before{
	content: '';
    width: 25px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    transition: all .3s ease-in-out;
    right: 0px;
}

.menu-icon span{
	display: inline-block;
	width: 25px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    top: calc(45% + 2px);
    transition: all .3s ease-in-out;
    right: 0px;
}

.menu-icon::before{
	top: calc(40% - 2px);
}

.menu-icon::after{
    top: calc(60% + 2px);
}

.menu-icon.open::before{
	top: calc(45% + 2px);
	transform: rotate(45deg);
}
.menu-icon.open::after{
	transform: rotate(-45deg);
	top: calc(60% - 5px);
}

.menu-icon.open span{
	visibility: hidden;
	opacity: 0;
}

@media (min-width: 767px ) {
	.mobile-nav-wrapper .site-logo{
		padding-top: 5px;
	}
	.mobile-search{
		padding-top: 0px;
		margin-top: -3px;
	}

	.menu-icon.open::before{
		top: calc(35% + 5px);
	}
	.menu-icon.open::after{
		top: calc(55% - 5px);
	}

	.menu-icon::before{
		top: 35%;
	}

	.menu-icon span{
		top: calc(45% + 1px);
	}

	.menu-icon::after{
		top: calc(56% + 2px);
	}
}


.nav-greybar{
	background-color: #D8D9DC;
	height: 5px;
	width: 50vw;
	position: absolute;
	left: 0px;
	top: 0px;
}

/* background-image: url('./assets/images/Menu background.jpg'); */
.mobile-menu-wrapper{
	position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: 6rem 2rem 5rem;
    border-bottom-left-radius: 100vw;
    background-image: url('./assets/images/Menu background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
    transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    transform: translateX(100vw);
}

.mobile-menu-wrapper.open{
	border-bottom-left-radius: 0;
    transform: translateX(0);
	overflow: auto;
}

@media (min-width: 767px ) {
	.mobile-menu-wrapper{
		width: 30vw;
		padding-top: 96px;
	}
}

.main-menu-wrapper{
	padding-left: 30px;
	padding-right: 30px;
}

.sub-menu-wrapper{
	padding-left: 15px;
}

.main-menu-wrapper a{
	color: #FFF;
	font-size: 32px;
	display: block;
	margin-bottom: 10px;
}

.main-menu-wrapper a.no-click{
	pointer-events:none;
}

.sub-menu-wrapper a{
	font-size: 26px;
}

.custom-logo{
	width: 200px;
}

@media (min-width:768px) {
	.custom-logo{
		width: 250px;
	}
}

.mobile-nav-wrapper .custom-logo{
		margin-left: -3px;
}

.nav-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0px;
}
@media (min-width: 500px ) {
	.mobile-nav-wrapper .custom-logo{
		margin-left: 0px;
	}
}

@media (min-width: 767px ) {
	.nav-inner{
		padding: 10px 0px;
		align-items: unset;
	}
}

.site-header{
	transition: all .3s ease-in-out;
}

.nav-bg{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	transition: all .3s ease-in-out;
}

.head-menu.scroll .nav-bg{
	background-color: #2D2E82;
}

.nav-inner-greybar{
	background-color: #D8D9DC;
	height: 5px;
	border-radius: 0px 00px 20px 0px;
	width: 100%;
}

.menu-wrapper{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 9px;
    margin-top: 7px;
}

.menu-wrapper li a{
	padding-top: 15px;
	padding-left: 40px;
	color: #002976;
	font-family: 'Halyard Regular';
	font-size: 16px;
}

.menu-wrapper li a:hover{
	text-decoration-color :#002976;
	text-decoration-thickness : 3px;
	text-underline-offset: 10px;
}

.menu-wrapper li.current_page_item a.desk-nav-link{
	text-decoration: underline;
	text-decoration-color :#002976;
	text-decoration-thickness : 3px;
	text-underline-offset: 10px;
}

.nav-sub-link{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	padding: 15px 0px;
}

.sub-final-nav-link,
.final-nav-link{
	display: block;
}

.mobile-sub-nav,
.mobile-menu-ul{
	list-style: none;
	padding-left: 0px;
}

.mobile-menu-ul{
	margin-bottom: 100px;
}

.mobile-sub-nav{
	display: none;
}

.mobile-sub-link:hover,
.mobile-nav-link:hover{
	color: #002976;
	text-decoration: unset;
}

.mobile-nav-link:hover{
	font-family: 'Halyard Regular';
}

.mobile-menu-item{
	border-bottom: 1px solid #989898;
}

.mobile-nav-link{
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 40px;
	width: 100%;
	font-size: 20px;
	transition: all .3s ease-in-out;
	font-family: 'Halyard Regular';
	color: #414042;
	position: relative;
}

.mobile-nav-arrow{
	width: 15px;
	transform: rotate(90deg);
	position: absolute;
	right: 0px;
	top: 27px;
	transition: all .3s ease-in-out;
}

.mob-nav-grey-layer{
	background-color: #F1F0F0;
	width: calc(100% + 60px);
	height: 100%;
	top: 0px;
	left: -30px;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}

@media (min-width: 767px) {
	.mob-nav-grey-layer{
		width: calc(100% + 100px);
		left: -50px;
	}
}

.mobile-nav-link span{
	position: relative;
	z-index: 2;
}

.mobile-nav-link.open .mobile-nav-arrow{
	transform: rotate(-90deg);
}
.mobile-nav-link.open .mob-nav-grey-layer{
	opacity: 1;
	visibility: visible
}

.mobile-sub-link{
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 17px;
	font-family: 'Halyard Book';
	color: #414042;
	line-height: 1.05;
}

.mobile-sub-link span.blue-txt{
	font-family: 'Halyard Regular';
}

.mobile-sub-nav > li:last-child{
	padding-bottom: 10px;
}

.mobile-sub-nav > li:first-child{
	padding-top: 10px;
}


.site-footer{
	background-color: #1A1A1A;
	padding-top: 80px;
	color:#FFF;
}

@media (min-width: 767px) {
	.site-footer{
		padding-top: 80px;
	}
}

.final-link-box{
	position: absolute;
	top:0px;
	left: 0px;
	width: 100%;
	transition: all .3s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.final-link-box.active{
	opacity: 1;
	visibility: visible;
}


.final-nav-link,
.nav-sub-link{
	color: #414042;
	transition: all .3s ease-in-out;
	font-family: 'Halyard Medium';
    font-size: 18px;
}

.menu-wrapper .sub-final-nav-link{
	color: #414042;
}

.nav-sub-link i{
	color: #002976;
	margin-top: 3px;
}

.sub-final-nav-link:hover,
.final-nav-link:hover,
.nav-sub-link.active,
.nav-sub-link:hover{
	
	text-decoration: unset;
	color: #002976;
}

.surface-line{
	position: absolute;
	height: calc(100% - 30px);
	left: 350px;
	top: 15px;
	border-left: 1px solid #414042;
	z-index: 3;
}

.nav-sub-link:hover .nav-hover{
	opacity: 1;
	visibility: visible;
}

.nav-sub-link i,
.nav-sub-link span{
	position: relative;
	z-index: 1;
}

.nav-hover{
	position: absolute;
	width: calc(100% + 60px);
	background-color: #F1F0F0;
	top: 0px;
	left: -30px;
	height: 100%;
	transition: all .3s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.copyright{
	font-size: 12px;
}

.footer-header{
	max-width: 550px;
}

.footer-header .row{
	align-items: center;
}

.footer-header .row > div:first-child{
	border-right: 1px solid #FFF;
}

.footer-contact-btn-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-contact-btn-wrapper{
		justify-content: end;
	}
}

.footer-nav-wrapper a{
	color: #FFF;
	display: block;
	text-decoration: unset;
	transition: all .3s ease-in-out;
}

.footer-nav-wrapper a:hover{
	color: #929292;
}

section.low-padding{
	padding-top:60px;
	padding-bottom:60px;
}

section.low-padding.nobottom{
	padding-bottom:0px;
}

section.low-padding.notop{
	padding-top:0px;
}

section.low-padding.bottom{
	padding-bottom:80px;
}

section.low-padding.top{
	padding-top:80px;
}

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

@media(min-width:1200px){
	section.low-padding{
		padding-top:80px;
		padding-bottom:80px;
	}

	section.low-padding.nobottom{
		padding-bottom:80px;
	}

	section.low-padding.notop{
		padding-top:80px;
	}
}

.home-banner{
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.dark-layer{
	background-color: #000;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0px;
	left:0px;
}

.slogan-wrapper{
	color: #FFF;
	max-width: 750px;
	font-family: 'Oxanium Medium';
}

.slogan-wrapper h1{
	font-family: 'Oxanium SemiBold';
}

.slogan-wrapper p{
	font-size: 26px;
}

@media (min-width: 767px ) {
	.slogan-wrapper h1{
		font-size: 68px;
	}
}

.outline-white-btn{
	font-family: 'Oxanium SemiBold';
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	border: 1px solid #fff;
	padding: 15px 40px;
	max-width: 300px;
	text-align: center;
	transition: all .3s ease-in-out;
}

.outline-white-btn:hover{
	color: #1A1A1A;
	background-color: #FFF;
	text-decoration: none;
}

.footer-outline-btn{
	font-family: 'Oxanium Medium';
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	border: 1px solid #fff;
	padding: 15px 60px;
	text-align: center;
	transition: all .3s ease-in-out;
	width: 100%;
	margin-bottom: 15px;
	max-width: 100%;
}

.footer-outline-btn:hover{
	color: #1A1A1A;
	background-color: #FFF;
	text-decoration: none;
}

@media (min-width: 1200px) {
	.footer-outline-btn{
		width: 450px;
	}
}

@media (min-width: 1600px) {
	.footer-contact-btn-wrapper > .footer-outline-btn:first-child{
		margin-right: 16px;
	}

	.footer-outline-btn{
		width: 330px;
		margin-bottom: 0px;
	}
}

.slogon-bottom-text{
	margin-top: 30px;
	max-width: 700px;
	color: #FFF;
	font-size: 16px;
}

@media (min-width: 768px) {
	.slogon-bottom-text{
		position: absolute;
		bottom: 0px;
		right: 0px;
		margin-top: 0px;
	}
}

.scroll-down{
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: #FFF;
	font-size: 16px;
	flex-wrap: wrap;
	align-items: baseline;
	cursor: pointer;
	display: none;
}

.scroll-down span{
	display: inline-block;
	margin-left: 15px;
}

.home-bunker-box{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50%;
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.home-trade-box{
	position: absolute;
	top: 50%;
	right: 0px;
	width: 100%;
	height: 50%;
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(min-width: 768px ){
	.scroll-down{
		display: flex;
	}
	.home-trade-box{
		top: 0px;
		right: 0px;
		width: 50%;
		height: 100%;
	}

	.home-bunker-box{
		top: 0px;
		left: 0px;
		width: 50%;
		height: 100%;
	}
}

.row.home-trad-bunker-sec{
	margin-left: -30px;
	margin-right: -30px;
	color: #FFF;
}
.row.home-trad-bunker-sec > div{
	padding-left: 30px;
	padding-right: 30px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position: center;
}

.home-trad-bunker-box{
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: 'Oxanium SemiBold';
}
.home-trad-bunker-box .tade-bunk-link{
	max-width: 350px;
	display: block;
	color: #FFF;
	text-decoration: none;
}
.home-trad-bunker-box .tade-bunk-link > *{
	margin-bottom: 30px;
	text-align: center;
}

.home-trad-bunker-box .tade-bunk-more{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}

.home-trad-bunker-box:hover .tade-bunk-more{
	opacity: 1;
	visibility: visible;
	padding-top: 3rem;
}

.py-80{
	padding-top: 80px;
	padding-bottom: 80px;
}
.home-sec-2,
.home-sec-3{
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
}

.home-contactus-box{
	color: #FFF;
	padding-top: 60px;
	padding-bottom: 60px;
	max-width: 800px;
	font-family: 'Oxanium Medium';
}

.home-contactus-box > *:not(:last-child){
	margin-bottom: 30px;
}

.home-contactus-box h2{
	max-width: 550px;
	font-family: 'Oxanium SemiBold';
}

.home-contactus-box .desc{
	max-width: 650px;
	font-size: 26px;
    line-height: 1.2;
}

.black-wave-bg{
	background-image: url('./assets/images/background-grey.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

.white-wave-bg{
	background-image: url('./assets/images/Menu_background_white.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

.white-wave-bg2{
	background-image: url('./assets/images/Menu_background_white_V2.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

.bg-darkblue{
	background-color: #2D2E82;
}
.about-sec-3,
.about-sec-1{
	background-size: cover;
	background-repeat: no-repeat;
}

.about-desc{
	color: #FFF;
}
.about-desc > *:not(:last-child){
	margin-bottom: 30px;
}
.about-desc h1{
	font-family: 'Oxanium SemiBold';
	max-width: 850px;
}

.about-sec-3{
	color: #FFF;
}

.core-value-wrapper,
.mission-vision{
	color: #FFF;
}

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

.top-container > div{
	min-height: calc(100vh - 160px);
}

.row.mission-vision{
	margin-left: -30px;
	margin-right: -30px;
}

.row.mission-vision > div{
	padding-left: 30px;
	padding-right: 30px;
}

.core-value-wrapper h2,
.mission-vision h2{
	font-family: 'Oxanium Medium';
}

.core-value-box .core-value-icon{
	height: 60px;
	margin-bottom: 15px;
}

.core-value-box{
	padding-left: 15px;
	padding-top: 15px;
	padding-bottom: 0px;
	color: #FFF;
	min-height: 200px;
}

.core-value-box .core-value-border{
	height: 100%;
	width: 3px;
	background-color: #FFF;
	border-radius: 3px;
	position: absolute;
	top: 0px;
	left: 15px;
}

.core-value-box .content > *:last-child{
	margin-bottom:  0px;
}

.core-value-box h3{
	font-family: 'Oxanium Bold';
}

.about-sec-3 h2{
	font-family: 'Oxanium Medium';
}

.about-sec3-box > *{
	margin-bottom: 30px;
}

.about-sec3-box > *:last-child{
	margin-bottom: 0px;
}

.bunkering-sec-1{
	background-size: cover;
	background-repeat: no-repeat;
}

.bunkering-content{
	color: #FFF;
}

.bunkering-content > *{
	margin-bottom: 30px;
}

.bunkering-content > *:last-child{
	margin-bottom: 0px;
}

.bunkering-content h1{
	font-size: 56px;
	font-family: 'Oxanium SemiBold';
}

.bunkering-button-list > *{
	margin-bottom: 15px;
}
.bunkering-button-list .outline-white-btn{
	max-width: 100%;
	width: 100%;
}
@media (min-width: 768px) {
	.bunkering-button-list .outline-white-btn{
		max-width: 300px;
		width: unset;
	}
	
	.bunkering-button-list > *:not(:last-child){
		margin-right: 15px;
	}
}

.single-bunkering-image{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.single-top-container{
	min-height: 450px;
}

.single-bunkering-banner-wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.single-news-banner-wrapper{
	background-color:#2D2E82;
}

.single-news-banner-wrapper .single-top-container{
	min-height: 250px;
}

.single-top-bunkering-content > *{
	margin-bottom:  15px;
	color: #FFF;
}
.single-top-bunkering-content > *:last-child{
	margin-bottom:  0px;
}

.single-top-bunkering-content h2{
	font-family: 'Oxanium SemiBold';
	font-size: 38px;
}

.row.single-bunkering-row{
	margin-left: -30px;
	margin-right: -30px;
}

.row.single-bunkering-row > div{
	padding-left: 30px;
	padding-right: 30px;
}

.single-bunkering-content h1{
	color: #2D2E82;
	font-family: 'Oxanium SemiBold';
}

.single-bunkering-content > *{
	margin-bottom: 30px;
}

.single-bunkering-content > *:last-child{
	margin-bottom: 0px;
}

.single-bunker-contactus-box{
	background-color: rgba(197,197,197, .5);
	padding: 20px 20px;
}

.single-bunker-contactus h3{
	font-size: 26px;
}

.single-contact-btn{
	max-width: 100%;
	text-align: center;
	padding: 15px 40px;
	background-color: #DFDFDF;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #2D2E82;
	font-family: 'Oxanium Medium';
	text-decoration: unset;
	transition: all .3s ease-in-out;
	border: 1px solid #FFF;
}

@media (min-width: 768px) {
	.single-contact-btn{
		width: 300px;
	}
}

.btn-arrow-wrapper{
	margin-left: 15px;
	position: relative;
}

.btn-arrow-wrapper img{
	width: 25px;
	transition: all .3s ease-in-out;
}

.btn-arrow-wrapper .white-arrow{
	position: absolute;
	left: 0px;
	top: 10px;
	opacity: 0;
	visibility: hidden;
}

.single-contact-btn:hover{
	background-color: #2D2E82;
	color: #FFF;
	text-decoration: unset;
}

.single-contact-btn:hover .btn-arrow-wrapper .white-arrow{
	opacity: 1;
	visibility: visible;
}

.single-contact-btn:hover .btn-arrow-wrapper .black-arrow{
	opacity: 0;
	visibility: hidden;
}

.sustainability-sec{
	background-size: cover;
	background-repeat: no-repeat;
}

.sustainability-content{
	color: #FFF;
}

.sustainability-content > *{
	margin-bottom: 30px;
}
.sustainability-content > *:last-child{
	margin-bottom: 0px;
}

.sustainability-content h1{
	font-family: 'Oxanium Medium';
}

.sustainability-content h3{
	font-size: 28px;
	font-family: 'Oxanium Medium';
}

.contactus-content{
	color: #FFF;
	font-family: 'Oxanium Medium';
}

.contactus-content h1{
	font-family: 'Oxanium Medium';
	margin-bottom: 150px;
	text-align: center;
}

.contactus-content p{
	text-align: center;
}

.contactus-sec-1{
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 50px;
	background-position: center;
}

.contactus-top-container{
	min-height: 500px;
}

.contactus-map{
	width: 100%;
	height: 300px;
	border: 0px;
}

.contactus-map-sec{
	margin-bottom: -10px;
}

.contactus-btn-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.contactus-outline-btn{
	font-family: 'Oxanium Medium';
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	border: 1px solid #fff;
	padding: 15px 60px;
	text-align: center;
	width: 100%;
	margin-bottom: 15px;
	max-width: 100%;
	transition: all .3s ease-in-out;
}

.contactus-outline-btn:hover{
	color: #1A1A1A;
	background-color: #FFF;
	text-decoration: none;
}

@media (min-width: 768px) {
	.contactus-btn-wrapper > .contactus-outline-btn:first-child{
		margin-right: 1rem;
	}

	.contactus-outline-btn{
		width: 330px;
		margin-bottom: 0px;
	}
}
.single-news-title-box{
	color: #FFF;
}

.single-news-title-box h1{
	font-size: 28px;
	font-family: 'Oxanium SemiBold';
}

@media (min-width: 768px) {
	.single-news-title-box h1{
		font-size: 38px;
	}
}

.single-news-content > *{
	margin-bottom: 30px;
}

.single-news-img{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.news-list-outer:not(:first-child) .news-border{
	padding-top: 30px;
}

.news-list-outer:not(:last-child) .news-border{
	border-bottom: 1px solid #000;
	padding-bottom: 30px;
}

.news-list-outer{
	display: block;
}

.row.news-list-wrap{
	margin-left: -30px;
	margin-right: -30px;
	
}

.news-list-wrap{
	color: #000;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.news-list-wrap > div{
	padding-left: 30px;
	padding-right: 30px;
}

.news-desc-box{
	max-width: 700px;
}

.news-list-img{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.news-list-outer:hover{
	color: #000;
	text-decoration: none;
}

.news-list-outer:hover h3{
	color: #002976;
}

.news-list-wrap h3{
	margin-bottom: 30px;
	font-size: 22px;
	font-family: 'Oxanium Medium';
}

.news-list-wrap .news-date{
	font-family: 'Oxanium Medium';
}

.other-bunkering{
	padding-top: 2rem;
}