:root {
    --blue-color: #005E96;
    --white-color: #FFFFFF;
    --accent-color: #EEB000;

    --green: #16B36E;
    --red: #DA3F3F;
}
* {
	margin: 0;
	box-sizing: inherit;
}
*:before, *:after {
	box-sizing: inherit;
}
html {
    scroll-behavior: smooth;
}
html, body {
	height: 100%;
	box-sizing: border-box;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, textarea, p, blockquote, th, td {
	padding: 0;
	margin: 0;
}
fieldset, img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul {
	list-style: none;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-weight: normal;
	font-style: normal;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
}
iframe {
	border: none;
	margin: 0;
	padding: 0;
}
body, td, th {
    font-family: 'avertaregular', sans-serif;
	font-size: 16px;
    font-style: normal;
	color: #363636;
}
body {
	background-color:#FFF;	
	margin: 0;
}
body.maintenance {
	background:#fff;
}
body.removeScrollBar {
    overflow:hidden !important;
}
a:link, a:visited, a:active {
	color: var(--blue-color);
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: none;
	color: var(--accent-color);
}
.clr {
	clear: both;
	font-size: 1px;
	height: 1px;
}
/* float clearing for IE6 */
* html .clearfix {
	height: 1%;
	overflow: visible;
}
/* float clearing for IE7 */
*+html .clearfix {
	min-height: 1%;
}
/* float clearing for everyone else */
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	font-size: 0;
}
#wrapper {
	width: 100%;
	min-height: calc(100vh - 300px);
	margin: 0 auto;
	padding: 0;
}
@media only screen and (max-width: 1199px) {
    #wrapper {
        margin: 0 auto;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1630px;
    }
}
@media (max-width: 767px) {
    .container, .container-md, .container-sm {
        max-width: 90%;
    }
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 90%;
    }
}
header {
    background-color: transparent;
    padding: 10px 0 0;
	position:relative;
	z-index:1;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
header .container {
    /*border-bottom: 1px solid rgba(255, 255, 255, .8);*/
    padding:0;
}
header.no-cover {
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--blue-color);
}
header.no-cover .container {
    border-color: var(--blue-color);
}
header .logo {
    width: 180px;
    padding-bottom: 14px;
}
header .logo.mobile {
    display: none;
}
#cover picture img {
    width: 100%;
}
#cover-slides {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
}
#cover-slides .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 991px) {
    header {
        padding: 10px 0;
    }
    header .container {
        padding: 0 12px;
        border-bottom: none;
    }
    header .logo {
        padding-bottom: 0;
        display: none;
    }
    #mm_menu {
        background-color: transparent !important;
        border-radius: 0 !important;
    }
    #cover {
        margin-top: 86px;
    }
    #cover-slides {
        min-height: auto;
        height: calc(100vh * 0.5) !important;
    }
}
.header-hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.navbar {
    padding:14px 0 20px;
}
@media only screen and (max-width: 991px) {
    .navbar {
        display: none;
    }
    header .logo.mobile {
        display: block;
    }
}
@media only screen and (max-width: 567px) {
    header .logo img {
        max-height: 70px;
    }
    #cover-slides {
        min-height: auto;
        height: calc(100vh * 0.4) !important;
    }
}
.navbar .nav-item {
    margin: 0 10px;
}
.navbar-nav .nav-link {
    font-size: 18px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 5px;
    position: relative;
}
.navbar-nav a:link,
.navbar-nav a:visited,
.navbar-nav a:active {
    color: var(--white-color);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--white-color);
}
.navbar-nav .dropdown-menu {
    background-color: transparent;
    border: none;
}
.no-cover .navbar-nav a:link,
.no-cover .navbar-nav a:visited,
.no-cover .navbar-nav a:active {
    color: var(--blue-color);
}
.no-cover .navbar-nav .nav-link:hover,
.no-cover .navbar-nav .nav-link.active,
.no-cover .navbar-nav .nav-link.show {
    color: var(--blue-color);
}

.no-cover .navbar-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--blue-color);
}
.dropdown-item {
    color: #FFF !important;
    font-size: 18px;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #FFF !important;
    font-family: 'avertasemibold', sans-serif;
}
.no-cover .dropdown-item {
    color: var(--blue-color) !important;
}
.no-cover .dropdown-item:focus,
.no-cover .dropdown-item:hover {
    color: var(--blue-color) !important;
    font-family: 'avertasemibold', sans-serif;
}
.dropdown-menu[data-bs-popper] {
    margin-top: 21px;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-left:1px solid #FFF;
}
.no-cover .dropdown-menu[data-bs-popper] {
    border-left:1px solid transparent;
}

body.blue-theme .navbar-nav a:link,
body.blue-theme .navbar-nav a:visited,
body.blue-theme .navbar-nav a:active {
    color: var(--blue-color);
}
body.blue-theme .navbar-nav .nav-link::before {
    background-color: var(--blue-color);
}

#cover {
	width:100%;
    height:100vh;
	position:relative;
    overflow: hidden;
}
#cover .bg-video {
    width: calc(100% + 1px);
    left: calc(50% - 1px);
    right: 0;
}
#cover .details {
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 100%;
    color: #FFF;
    z-index: 10;
}
#cover.home .details {
    width: calc(100% - 200px);
}
#cover .details .category {
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 10px;
}
#cover .details .moto {
    font-size: 60px;
}
#cover.home .details .moto {
    line-height: 1.1;
}
@media only screen and (max-width: 1600px) {
    #cover {
        height:auto;
    }
}
#cover:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,.25);
}
#cover .title {
    position: absolute;
    top: 28%;
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    z-index: 2;
}
#cover .subtitle {
    position: absolute;
    top: 44%;
    color: #FFF;
    font-size: 74px;
    font-weight: 700;
    z-index: 2;
}
#cover .subtitle h1 {
    font-weight: 700;
}
#cover .description {
    max-width: inherit;
    position: absolute;
    top: 60%;
    color: #FFF;
    font-weight: 400;
    z-index: 2;
    text-align: justify;
}
#cover .scroll-down {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    margin: auto;
    width :34px;
    height: 55px;
    z-index: 10;
}
#cover .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
    cursor:pointer;
}
#cover .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}
@keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}
@media only screen and (max-width: 991px) {
    #cover .details,
    #cover.home .details {
        left: 30px;
        right: 30px;
        bottom: 30px;
        width: calc(100% - 60px);
    }
    #cover .details h1 {
        font-size: 16px;
        letter-spacing: 4px;
    }
    #cover .details .moto {
        font-size: 34px;
        line-height: 1.2;
    }
    #cover.home .details .moto {
        line-height: 1.1;
    }
    #cover .details .category {
        font-size: 14px;
        letter-spacing: 6px;
    }
    #cover .mousey {
        display: none;
    }
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}
header .hamburger-inner:before {
    border-radius: 0;
    top: -7px;
}
header .hamburger-inner:after {
    border-radius: 0;
    bottom: -7px;
}
header .mm-categories .hamburger-box {
    width: 26px;
}
header .mm-categories .hamburger-inner,
header .mm-categories .hamburger-inner:after,
header .mm-categories .hamburger-inner:before {
    width:26px;
    height:2px;
    background-color:var(--blue-color);
    transition:all 0.2s ease-in-out;
    -moz-transition:all 0.2s ease-in-out;
    -webkit-transition:all 0.2s ease-in-out;
    -o-transition:all 0.2s ease-in-out;
}
header .mm-categories:hover .hamburger-inner,
header .mm-categories:hover .hamburger-inner:after,
header .mm-categories:hover .hamburger-inner:before,
header .mm-categories .is-active .hamburger-inner,
header .mm-categories .is-active .hamburger-inner:after,
header .mm-categories .is-active .hamburger-inner:before {
    background-color:var(--accent-color);
}
header .mm-categories .hamburger.is-active:hover,
header .mm-categories .hamburger:hover {
    opacity:1;
    outline: none;
}

.mm-categories {
    display: none;
}
#mm_menu {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}
@media (max-width: 991px) {
    .mm-categories {
        display: flex;
        align-items: center;
        justify-content: end;
    }
}

/* MOBILE MENU */
#mobile_menu {
    display: none !important;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    color: var(--blue-color);
    z-index: 22;
    padding-top: 140px;
}
#mobile_menu.open {
    display: flex !important;
}
#mobile_menu .navigation_container ul li {
    font-size: 26px;
    color: #fff;
    margin: 10px auto;
    text-transform: uppercase;
    text-align: center;
}
#mobile_menu .navigation_container {
    height: auto;
    width: 90%;
}
#mobile_menu .navigation_container ul li a {
    color: var(--blue-color);
    position: relative;
    display: block;
    text-align: center;
    font-size: 26px;
}
#mobile_menu .navigation_container ul li ul li a {
    font-size: 18px;
}
/*
#mobile_menu .navigation_container ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
*/
#mobile_menu .navigation_container ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#mobile_menu .navigation_container ul li a:hover {
    color: var(--accent-color);
}
#mobile_menu .navigation_container .dropdown span {
    float: right;
}
#mobile_menu .navigation_container .dropdown span:hover {
    color: var(--accent-color);
    cursor: pointer;
}
#mobile_menu .socials {
    margin-top: 80px;
}
#mobile_menu .navigation_container ul li .submenu {
    margin-bottom: 15px;
    display: none;
}
#mobile_menu .navigation_container ul li .submenu.open {
    display: block;
}
#mobile_menu .navigation_container ul li .submenu li {
    font-size: 14px;
}

@media only screen and (max-width: 1199px) {
    #cover .title {
        top: 30%;
        font-size: 26px;
    }
    #cover .subtitle {
        font-size: 60px;
    }
    .section .data {
        width: 100%;
    }
    .section::after {
        width: 70%;
    }
}
@media only screen and (max-width: 991px) {
    #cover .title {
        top: 28%;
        font-weight: 400;
    }
    #cover .subtitle {
        top: 42%;
        font-size: 60px;
    }
    #cover .description {
        top: 62%;
    }
}
@media only screen and (max-width: 767px) {
    #cover .title {
        position: relative;
        color: var(--blue-color);
        margin-top: 20px;
    }
    #cover .subtitle {
        position: relative;
        color: var(--blue-color);
        font-size: 30px;
        margin-bottom: 15px;
    }
    #cover .description {
        position: relative;
        color: var(--blue-color);
        margin-bottom: 20px;
    }
    #cover.home .details .moto {
        font-size: 26px;
    }
}
.section-content {
    padding: 60px 0;
}
.section-content h2 {
    background-color: #E5EEF4;
    color: var(--blue-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    padding: 15px 25px 12px;
    border-radius: 28px;
}
.section-content .text .title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
    .section-content .text .title {
        font-size: 42px;
    }
}
.section-content .text .description p {
    margin-bottom: 20px;
}
.section-content .image {
    position: relative;
    z-index: 1;
}
.section-content .image .shadow {
    border:1px solid #EEE;
}
.services {
    background-color: var(--blue-color);
    color: var(--white-color);
    padding: 90px;
    border-radius: 28px;
    position: relative;
    margin-top: -80px;
    z-index: 0;
}
@media only screen and (max-width: 991px) {
    .services {
        padding: 40px;
        margin-top: 30px;
    }
}
.services-list ul {
    margin-left: 40px;
    counter-reset: services;
}
.services-list ul li {
    padding: 30px 30px 30px 0;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid var(--white-color);
    counter-increment: services;
    position: relative;
}
.services-list ul li a:link,
.services-list ul li a:active,
.services-list ul li a:visited {
    color: var(--white-color);
    text-decoration: none;
}
.services-list ul li a:hover {
    color: var(--accent-color);
}
.services-list ul li::before {
    content: '0' counter(services);
    color: rgba(255, 255, 255, .3);
    padding-right: 30px;
}
.services-list ul li::after {
    content: '\f178';
    font-family: 'Font Awesome 7 Pro', sans-serif;
    font-weight: 400;
    position: absolute;
    right: 0;
    color: #FFF;
}
#our-services .image img {
    padding-left: 58px;
}
@media only screen and (max-width: 991px) {
    #our-services .image img {
        padding-left: 0;
    }
    .services-list ul {
        margin-left: 0;
    }
}
#fleet-counter {
    background-color: var(--blue-color);
    color: #FFF;
    padding: 20px 0;
}
#fleet-counter ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#fleet-counter ul li {
    text-align: center;
}
#fleet-counter ul li .number {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.4;
}
#fleet-counter ul li .text {
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
}
@media only screen and (max-width: 991px) {
    #fleet-counter ul {
        flex-direction: column;
    }
    #fleet-counter ul li {
        margin-bottom: 20px;
    }
    #fleet-counter ul li:last-child {
        margin-bottom: 0;
    }
}
#fleet-vessels {
    padding: 30px 0;
}
#fleet-vessels .vessel img {
    border-radius: 20px;
    width: 100%;
}
@media only screen and (max-width: 991px) {
    #fleet-vessels .vessel {
        margin-bottom: 30px;
    }
}
#fleet-vessels .vessel .name {
    font-size: 18px;
    font-weight: 700;
    margin: 10px auto;
}
#contact.section-content {
    padding: 0 0 60px;
}
#contact h3,
.headquarters h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}
#contact .text ul,
.headquarters .text ul {
    margin:0;
}
#contact .text ul li,
.headquarters .text ul li {
    margin-bottom:5px;
}
#contact .text,
.headquarters .text {
    margin:10px auto;
    font-size:18px;
}
#map {
    height: 50vh;
    background-color: #F9F9F9;
}
#map.index {
    margin-bottom: 20px;
}
.categories {
    margin: 50px auto;
}
.categories .description {
    background-color: var(--blue-color);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    font-family: 'avertalight', sans-serif;
}
.categories h2 {
    font-size: 34px !important;
    font-weight: 600;
    color: var(--blue-color);
    padding: 0;
    border-radius: 0;
    margin-bottom: 10px;
}
.categories .description h2 {
    font-size: 34px !important;
    background-color: #fff;
    padding: 10px 15px 12px;
    border-radius: 8px;
}
.categories ul li {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    list-style-type: none;

    &:after {
        content: '';
        height: 8px;
        width: 8px;
        background: #fff;
        display: block;
        position: absolute;
        transform: rotate(45deg);
        top: 10px;
        left: 0;
    }
}
.categories .icons {
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.categories .icons .icon {
    color: var(--blue-color);
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.categories .icons h3 {
    font-size: 24px;
    font-family: 'avertasemibold', sans-serif;
    text-align: center;
}
.categories p {
    font-size: 22px;
}
.categories .icons p {
    font-size: 16px !important;
    text-align: center;
}
.categories .note p {
    font-size: 16px;
    margin-bottom: 10px;
}

#fleet-list table tr th {
    background-color: #007cf3;
    color: #FFF;
    font-family: 'avertasemibold', sans-serif;
}
#fleet-list table tr:nth-child(2) th {
    background-color: #FFF !important;
    color: #0e2841;
    font-family: 'avertaregular', sans-serif;
    border-bottom:2px solid #0e2841;
}
#fleet-list table thead tr th:first-child,
#fleet-list table tfoot tr td:first-child {
    width: 20%;
}
#fleet-list table thead tr th:last-child,
#fleet-list table tfoot tr td:last-child {
    width: 10%;
}
#fleet-list table tbody tr:last-child td {
    border-bottom: 1px solid #0e2841;
}
#fleet-list table tfoot tr td {
    background-color: #f2f2f2;
    border-bottom: 1px solid #0e2841;
    font-family: 'avertasemibold', sans-serif;
}
#fleet-list table.on-order tr th,
#fleet-list table.per-sector tr th {
    background-color: #005e98;
    color: #FFF;
    font-family: 'avertasemibold', sans-serif;
}
#fleet-list table.on-order tr:nth-child(2) th,
#fleet-list table.per-sector tr:nth-child(2) th {
    color: #0e2841;
}
#fleet-list table.shipbuilding-contract-options tr th {
    background-color: #91bad3;
    color: #FFF;
    font-family: 'avertasemibold', sans-serif;
}
#fleet-list table.shipbuilding-contract-options tr:nth-child(2) th {
    color: #0e2841;
}
#fleet-list table.on-order tfoot tr:last-child td,
#fleet-list table.per-sector tfoot tr:last-child td {
    background-color: #dadada;
}
#fleet-list table.shipbuilding-contract-options tbody tr:last-child td:nth-child(8),
#fleet-list table.shipbuilding-contract-options tbody tr:last-child td:nth-child(9) {
    border-color: #eebd21;
}
#fleet-list table.shipbuilding-contract-options tfoot tr:first-child td.highlight {
    background-color: #fcf2d3;
    border-color: #eebd21;
    border-left-width: 1px;
    border-right-width: 1px;
}
#fleet-list table.shipbuilding-contract-options tfoot tr:first-child td:nth-child(8).highlight {
    border-right: none;
}
#fleet-list table.shipbuilding-contract-options tfoot tr:first-child td:nth-child(9).highlight {
    border-left: none;
}
#fleet-list table.shipbuilding-contract-options tfoot tr:last-child td {
    background-color: #dadada;
}
.box_with_arrow {
    padding: 20px;
    background-color: #91bad3;
    line-height: 1.2;
    text-align: center;
    margin: 0 auto 30px;
}
.box_with_arrow p {
    font-size: 20px;
}
.chart-title {
    font-size: 26px;
    font-family: 'avertasemibold', sans-serif;
    color: #0e2841;
    margin-bottom: 10px;
}
.chart-subtitle {
    font-size: 18px;
    font-family: 'avertaregular', sans-serif;
    margin-bottom: 10px;
}
.arrow-box {
    position: relative;
    width: 120px;
    height: 50px;
    margin: 0 auto;
}
.arrow-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 30px solid #91bad3;
}
.arrow-box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: #91bad3;
}

#capital-maritime-as-sponsor.categories h3 {
    font-size: 22px;
    margin-bottom: 50px;
}
#capital-maritime-as-sponsor.categories h4,
#ipo-transaction-feb-2026.categories h4,
#get-in-touch.categories h4 {
    font-size: 22px;
    color: var(--blue-color);
    font-family: 'avertaregular', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}
#capital-maritime-as-sponsor .group-highlights li {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-self: self-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
#capital-maritime-as-sponsor .group-highlights li ul li {
    margin-top: 5px;
    display: block;
}
#capital-maritime-as-sponsor .group-highlights li ul {
    margin-top: 10px;
}
#capital-maritime-as-sponsor .group-highlights li::after {
    display: none;
}
#capital-maritime-as-sponsor .group-highlights li .icon {
    width: 100px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
}
#capital-maritime-as-sponsor .group-highlights li .text {
    width: calc(100% - 120px);
    background-color: #f0f5f9;
    padding: 20px 20px 20px 10px;
    position: relative;
}
#capital-maritime-as-sponsor .group-highlights li .text::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 100%;
    left: -70px;
    top: 0;
    z-index: 0;
    background-color: #f0f5f9;
}
#commercial-strategy .chartering-pro li {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-self: self-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
#commercial-strategy .chartering-pro li ul li {
    margin-top: 5px;
    display: block;
}
#commercial-strategy .chartering-pro li ul {
    margin-top: 10px;
}
#commercial-strategy .chartering-pro li::after {
    display: none;
}
#commercial-strategy .chartering-pro li .icon {
    width: 100px;
    position: relative;
    z-index: 1;
    background-color: #fff;
}
#commercial-strategy .chartering-pro li .text {
    width: calc(100% - 120px);
    padding: 20px 20px 20px 10px;
    position: relative;
}

@media only screen and (max-width: 567px) {
    #capital-maritime-as-sponsor .group-highlights li {
        flex-direction: column;
        align-items: center;
    }
    #capital-maritime-as-sponsor .group-highlights li .text {
        width: 100%;
        padding: 0 20px 20px;
        text-align: center;
    }
    #capital-maritime-as-sponsor .group-highlights li .text::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 70px;
        left: 0;
        right: 0;
        top: -70px;
    }
    #capital-maritime-as-sponsor .selected-recognitions::before {
        width: 200px;
        left: calc(50% - 100px);
        top: -26px;
        font-size: 18px;
    }
}
#capital-maritime-as-sponsor .selected-recognitions {
    border: 2px solid #000;
    margin: 30px auto;
    padding: 10px 20px 20px;
    position: relative;
}
#capital-maritime-as-sponsor .selected-recognitions::before {
    content: 'Selected recognitions';
    padding: 10px;
    background-color: #FFFFFF;
    position: absolute;
    width: 240px;
    left: calc(50% - 120px);
    margin: 0 auto;
    top: -28px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
#ipo-transaction-feb-2026.categories h3 {
    font-size: 34px !important;
    font-weight: 600;
    color: var(--blue-color);
    padding: 0;
    border-radius: 0;
    margin-bottom: 40px;
}
#ipo-transaction-feb-2026 .note {
    font-family: 'avertaregular_italic', sans-serif;
}
#get-in-touch img {
    box-shadow: 0 0 0 1px #F5F5F5, 0 5px 20px rgba(0, 0, 0, 0.2);
}
#financial-calendar h2 {
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.ship_row .flag img {
    width: 40px;
}
.events {
    margin-bottom: 40px;
    border-bottom: 1px solid #dee2e6;
}
.events article {
    padding: 10px 0;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.events article .title-date {
    display: flex;
    flex-direction: column;
}
.events article .title-date .event-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 10px;
}
.events article .title-date .event-date {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}
.events article .supporting-links {
    display: flex;
    gap: 10px;
    flex-direction: column;
    min-width: 240px;
}
.events article .supporting-links .icon {
    font-size: 16px;
}
.events article .supporting-links div a {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.events article .supporting-links div .label {
    line-height: 1.2;
    color: #363636;
}
.events article .supporting-links div .label:hover {
    color: var(--blue-color);
}
.events article .supporting-links .webcast .icon {
    color: #363636;
}
.events article .supporting-links .outlook .icon {
    color: #0072C6;
}
.events article .supporting-links .google-calendar .icon {
    color: #DD4B39;
}
.events article .supporting-links .file .icon {
    color: #DA3F3F;
}
.no-upcoming {
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
    .events article .title-date,
    .events article .supporting-links {
        width: 100%;
    }
    .events article .supporting-links {
        margin-top: 10px;
        justify-content: space-between;
        gap: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .categories .data {
        padding: 20px;
    }
}


@media only screen and (max-width: 991px) {
    .categories {
        margin: 20px auto 0;
    }
    .categories .title,
    .headquarters h3 {
        text-align: center;
    }
    .headquarters .title {
        text-align: left
    }
    .categories .data {
        padding: 30px;
    }
    #fleet-overview .data {
        order: 2;
    }
}

#vessel-page .details_wrapper {
    font-size: 18px;
    height: 200px;
}
#vessel-page .photo img {
    border: 1px solid var(--bs-border-color);
}
#vessel-page .details_wrapper span {
    font-weight: 700;
}
#vessel-page .details_wrapper span.title {
    font-size: 22px;
}
#vessel-page .category {
    margin-bottom: 20px;
}
#vessel-page .table {
    margin-bottom: 0;
}
#vessel-page .table thead th {
    background-color: var(--blue-color);
    color: #FFF;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}
#vessel-page .table tbody tr td {
    color: var(--blue-color);
}
#vessel-page .table tbody td.textarea {
    background-color: #FFF;
    --bs-table-bg-type: transparent;
}
#vessel-page .table tbody td.textarea ul li {
    display: block;
    padding: 8px;
}
#vessel-page .table tbody td.textarea ul li:nth-child(odd) {
    background-color: #F2F2F2;
}
#vessel-page .tc_title {
    color: var(--blue-color);;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
    padding: 0;
}
#vessel-page .tank_capacities .table thead th {
    background-color: var(--blue-color);
    color: #FFF;
    border-bottom: none;
}
#vessel-page .tank_capacities .table thead th:nth-child(n+4),
#vessel-page .tank_capacities .table tbody td:nth-child(n+4),
#vessel-page .tank_capacities .table tfoot td:nth-child(n+4){
    text-align: center !important;
}
#vessel-page .tank_capacities .table tfoot td {
    background-color: var(--blue-color);
    color: #FFF;
    font-weight: 700;
}
#vessel-page .title {
    margin: 20px 10px;
    padding:0;
    border-bottom: 2px solid var(--accent-color);
}
#vessel-page .ship_row .option {
    font-weight: 700;
}
#fleet-list .grid,
#fleet-list .list {
    display: none;
}
#fleet-list .grid.active,
#fleet-list .list.active {
    display: block;
}

.grid_list {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}
.grid_list ul li {
    display: inline-block;
    float: left;
    margin-left: 15px;
    cursor: pointer;
    color: #b5b5b5;
}
.grid_list ul li:first-child {
    margin-left: 0;
}
.grid_list ul li.active {
    color: var(--blue-color);
}

.img-fluid.right {
    margin: 0 0 15px 15px;
    float: right;
    height: 300px !important;
}
@media only screen and (max-width:776px) {
    .img-fluid.right {
        margin: 10px auto !important;
        float: none;
        text-align: center;
    }
}

/*
.form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,94,150,.4);
}
.form-control:hover,
.form-control:focus {
    outline: none;
    box-shadow: none;
    background-color: #DEF3FF;
    border-bottom: 1px solid rgba(0,94,150,1);
}
.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
    background-color: transparent;
}
*/
.arrow-more {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--blue-color);
}

.custom-tooltip {
    --bs-tooltip-bg: var(--blue-color);
    --bs-tooltip-color: var(--bs-white);
}
/* ARTICLES */
#page .article p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}
#page .article .date {
    font-size: 16px;
    font-weight: 400;
    color:#000;
    margin-bottom: 10px;
}
#page .article .source {
    display: block;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px
}
#page .article h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 20px;
}
#page .article h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: -webkit-box;
    max-width: 100%;
    height: 87px;
    margin: 0 auto 20px;
    line-height: 1.2;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#newsroom .article h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 20px;
}
#newsroom .article .date {
    font-size: 18px;
    font-weight: 400;
    color:#000;
    margin-bottom: 20px;
    text-transform: uppercase;
}
#newsroom .article ul li {
    font-size: 22px;
    margin-bottom: 10px;
    padding-left: 25px;

    &:after {
        background: var(--blue-color);
        top: 7px;
    }
}
#newsroom .article p {
    font-size: 22px;
    margin-bottom: 20px;
}

#open-talk-form label {
    margin-bottom: 10px;
}
#open-talk-form label.error {
    margin-bottom: 0;
    display: none;
    color: var(--accent-color);
}
#open-talk-form .form-control,
#open-talk-form .form-select {
    margin-bottom: 10px;
}

/* BUTTONS */
.btn-blue {
    background-color: var(--blue-color);
    color: #FFF;
    border:1px solid var(--blue-color);
    padding: 10px 30px;
    border-radius: 28px;

    &:hover {
        background-color: color-mix(in srgb, var(--blue-color), #000 20%);
        color: #FFF;
        border: 1px solid color-mix(in srgb, var(--blue-color), #000 20%);
    }
}
.btn-outline-blue {
    background-color: transparent;
    color: var(--blue-color);
    border:1px solid var(--blue-color);

    &:hover {
        background-color: var(--blue-color);
        color: #fff;
        border: 1px solid var(--blue-color);
    }
}

.youtube-container {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.7777777778;
	pointer-events: none;
    position: relative;
}
.youtube-container .moto {
    position: absolute;
    z-index: 2;
    text-align: left;
    max-width: 42vw;
    margin: 0 auto;
    left: 100px;
    bottom: 10%;
    transform: translateY(-40%);
    color: #FFF;
    font-size: 100px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -6px;
}
.youtube-container iframe {
	width: 300%;
	height: 100%;
	margin-left: -100%;
}
@media only screen and (max-width: 1710px) {
    .youtube-container .moto {
        max-width: 50vw;
    }
}
@media only screen and (max-width: 1400px) {
    .youtube-container .moto {
        max-width: 60vw;
    }
}
@media only screen and (max-width: 1199px) {
    .youtube-container .moto {
        font-size: 60px;
        max-width: 90%;
        left: 0;
        right: 0;
        text-align: center;
        letter-spacing: normal;
    }
}
@media only screen and (max-width: 991px) {
    .youtube-container .moto {
        font-size: 46px;
    }
}
@media only screen and (max-width: 767px) {
    .youtube-container .moto {
        font-size: 36px;
    }
}
.section-padding {
    padding:100px 0;
}
@media only screen and (max-width: 991px) {
    .section-padding {
        padding: 40px 0;
    }
}
#who-we-are .category {
    font-size: 20px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    color: var(--blue-color);
}
#who-we-are h2 {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--blue-color);
}
@media only screen and (max-width: 1400px) {
    #who-we-are h2 {
        font-size: 52px;
    }
}
@media only screen and (max-width: 991px) {
    #who-we-are h2 {
        font-size: 42px;
    }
}
/*
#who-we-are .description {
    padding-right: 40px;
}
*/
#who-we-are .description p {
    font-size: 26px;
    margin-bottom: 20px;
}
#who-we-are figure,
#who-we-are figure img {
    border-radius: 10px;
    overflow: hidden;
}
#company-glance {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
}
#company-glance .container {
    padding: 100px 0 150px;
}
/* #company-glance::after, */
#our-fleet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color:#E8F0F7;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    z-index: 1;
}
@media only screen and (max-width: 991px) {
    #company-glance::after,
    #our-fleet::after,
    #stock-data::after {
        height: 30px;
    }
    #company-glance {
        min-height: auto;
    }
}
#company-glance h2 {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 50px;
}
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
#company-glance .bg-video {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}
.content {
    position: relative;
    z-index: 2;
    color: #fff;
}
#company-glance .bg-video {
    width: calc(100% + 1px);
}
#newsroom {
    position:relative;
    padding: 0;
}
#newsroom .category {
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 10px;
    color: var(--blue-color);
}
#newsroom h2,
#stock-data h2{
    font-size: 80px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--blue-color);
    margin-left: -5px;
}
#stock-data {
    background: #E8F0F7;
    padding-bottom: 100px;
    position: relative;
}
#stock-data::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color:#FFF;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    z-index: 1;
}
#stock-data.categories h2 {
    letter-spacing: initial;
    margin: 10px auto 20px;
}
#stock-data.categories::after {
    display: none;
}
#stock-data .stock-data-wrapper {
    font-size: 20px;
}
#stock-data .note {
    margin: 25px auto;
    color: var(--blue-color);
}
#stock-data .price-up {
    color: var(--green);
}
#stock-data .price-down {
    color: var(--red);
}
.mf-line .label,
.mf-line .data {
    padding: 5px 0;
}
.mf-line .label {
    font-weight: 600;
}
.mf-line {
    border-bottom: 1px solid #bbd1e3;
}
#stock-data.categories {
    background-color: #FFF !important;
}
#stock-data.categories h2 {
    font-size: 34px;
}
#stock-data.categories .mf-line .label,
#stock-data.categories .mf-line .data {
    width: 50%;
}
#stock-data.categories .mf-line .label.full {
    width: 100%;
}
#stock-data.categories .mf-line .label {
    text-transform: capitalize;
    font-family: 'avertasemibold', sans-serif;
}
#stock-data.categories .stock-data-wrapper {
    background-color: #FFF !important;
    border: 1px solid #d8e0ea;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 6px 18px rgba(15,41,64,.08), 0 2px 8px rgba(15,41,64,.06);
}
#stock-data.categories .stock-data-wrapper .mf-line {
    border-bottom: 1px solid #d8e0ea;

    &:last-child {
        border-bottom: none;
    }
}
#stock-data.categories .stock-data-wrapper .table-hover>tbody>tr:hover>* {
    --bs-table-bg-state: #f7f8fa;
}
#stock-data.categories .stock-data-wrapper .table tr td,
#stock-data.categories .stock-data-wrapper .table tr th {
    font-size: 20px;
}
#stock-data.categories .stock-data-wrapper .table tbody tr td:first-child,
#stock-data.categories .stock-data-wrapper .table tfoot tr td {
    font-family: 'avertasemibold', sans-serif;
}
#stock-data.categories .stock-data-wrapper .table thead tr th {
    background-color: var(--blue-color);
    color: #FFF;
}
#stock-data.categories .note {
    margin: 15px auto;
    font-size: 16px;
}
#news-stories {
    padding-bottom: 50px;
}
#press-releases {
    background-color: #FFF;
    padding-bottom: 50px;
}
#mission-statement p,
#commercial-strategy p,
#sustainability p,
#corporate-governance p,
#legal-disclaimer p,
.intro p {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.management .members-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:20px 40px;
}
.management .member {
    display: flex;
    justify-self: self-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 20px;
    background-color: #F5F5F5 !important;
    border-radius: 10px;
    width:calc(50% - 20px);
}
.management .member .photo {
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px #F5F5F5, 0 5px 20px rgba(0, 0, 0, 0.2);
}
.management .member .photo img {
    border-radius: 50%;
}
.management .member .details {
    width: calc(100% - 140px);
}
.management .member h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--blue-color);
}
.management .member .title {
    font-size: 16px;
    font-weight: 600;
    color: #363636;
}
.management .member .summary {
    width: 100%;
    margin-top: 10px;
}
.management ul li,
#capital-maritime-as-sponsor ul li,
#ipo-transaction-feb-2026 ul li,
#dividends ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;

    &:after {
        background: var(--blue-color);
        top: 7px;
    }
}
#dividends ul li {
    font-size: 22px;
}
#dividends .note {
    margin-top: 20px;
    font-size: 18px;
    font-family: 'avertaregular_italic', sans-serif;
}
#dividends h3 {
    font-size:26px;
    font-family: 'avertaregular', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    color: var(--blue-color);
    margin: 20px auto 10px;
}
.management .note {
    margin-top: 20px;
    font-size: 24px;
    font-family: 'avertasemibold_italic', sans-serif;
    text-align: center;
}
@media only screen and (max-width: 991px) {
    .management .member {
        width:calc(100% - 20px);
    }
}
@media only screen and (max-width: 767px) {
    .management.categories {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    .management .members-wrapper {
        gap: 30px;
    }
    .management .member {
        flex-direction: column;
        justify-self: self-start;
        align-items: center;
        width: 100%;
    }
    .management .member .details {
        width: calc(100% - 20px);
    }
    .management .member h3 {
        text-align: center;
    }
    .management .member .summary {
        margin-top: 20px;
    }
}

/* TABLE */
.ct-table tr th {
    background-color: #005E96;
    color: #fff;
    font-family: 'avertasemibold', sans-serif;
}
.ct-table {
    border-color: #f1f1f1 !important;
}
.ct-table>tbody>tr:hover>* {
    --bs-table-bg-state: #F9F9F9 !important;
}

#ipo-transaction-feb-2026 .ct-table tbody tr:last-child td {
    border-bottom: 1px solid #363636;
}
#ipo-transaction-feb-2026 .ct-table tfoot tr th {
    background-color: #f2f2f2;
    color: #363636;
    font-family: 'avertasemibold', sans-serif;
}
#ipo-transaction-feb-2026 .ct-table caption {
    font-size: 16px;
    font-family: 'avertaregular_italic', sans-serif;
}

#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(3) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(6) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(8) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(9) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(10) td{
    border-bottom: 1px solid #363636 !important;
}
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(4) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(7) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(9) td,
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:nth-child(10) td {
    font-family: 'avertaregular', sans-serif;
    font-weight: 600;
}
#ipo-transaction-feb-2026 .pro-forma-capitalization thead tr th:not(:first-child),
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr td:not(:first-child),
#ipo-transaction-feb-2026 .pro-forma-capitalization tfoot tr th:not(:first-child){
    text-align: center;
}
#ipo-transaction-feb-2026 .pro-forma-capitalization tfoot tr th {
    font-family: 'avertaregular', sans-serif;
    font-weight: 600;
    background-color: #FFF;
}
#ipo-transaction-feb-2026 .pro-forma-capitalization tbody tr:last-child td {
    background-color: #f2f2f2;
    color: #363636;
}
#ipo-transaction-feb-2026 .pro-forma-capitalization tfoot tr:nth-child(n+4) th {
    font-weight: 300;
}
.articles-wrapper {
    margin-bottom: 30px;
}
.articles-wrapper article {
    border-radius: 10px;
    border: 1px solid var(--blue-color);
    padding: 30px 30px 20px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.articles-wrapper article .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.articles-wrapper article .meta .source {
    font-size: 14px;
}
.articles-wrapper article .date {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue-color);
    text-transform: uppercase;
}
.articles-wrapper article h3 {
    font-size:34px;
    line-height: 1.1;
    color: var(--blue-color);
    margin-bottom: 10px;
}
.articles-wrapper article .read_more {
    display: flex;
    justify-content: flex-end;
}
.articles-wrapper article .read_more img {
    max-width: 40px;
}
.button {
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'avertasemibold', sans-serif;
}
.read-more {
    position:absolute;
    left: 0;
    right:0;
    top:0;
    bottom:0;
    margin:0 auto;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.button a:link,
.button a:active,
.button a:visited {
    color: #FFF !important;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.button:hover a:hover {
    color: var(--blue-color) !important;
}
.button:hover:hover svg path {
    fill:rgba(255,255,255,.8) !important;
}
#company-glance ul {
    margin-bottom: 20px;
}
#company-glance ul li {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom:1px solid rgba(255,255,255,.8);
    font-size:60px;
    line-height: 1.1;
    letter-spacing: -2px;

    &:last-child {
        border-bottom:none;
    }
}
#quarterly-reports .table img {
    max-height: 20px;
    float: left;
    margin-right: 5px;
}
#quarterly-reports .table tr td {
    vertical-align: middle;
}
#quarterly-reports .table tr td:first-child {
    font-style: italic;
}
#sustainability {
    position: relative;
    padding: 30px 0 100px;
}
@media only screen and (max-width: 991px) {
    #sustainability {
        padding: 0 0 50px;
    }
}
#sustainability .bg-video {
    border-radius: 20px;
    overflow: hidden;
}
#sustainability.home .container,
#our-fleet .container {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    z-index: 2;
}
#our-fleet .container {
    flex-direction: column;
}
#sustainability .category,
#our-fleet h2 {
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;

}
#sustainability.home .container h2,
#our-fleet .moto {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}
#sustainability.home .container .description {
    max-width: 80%;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.2;
    font-family: 'avertalight', sans-serif;
    text-align: center;
}
#our-fleet {
    min-height: 700px;
    background-image: url('images/our-fleet.webp?1');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    margin-top: -70px;
}
#our-fleet::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, #2a2a72 0%, #009ffd 85%);
    width: 100%;
    height: 100%;
    left:0;
    right:0;
    margin: 0 auto;
    z-index: 1;
    opacity: .3;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}
@media only screen and (max-width: 991px) {
    #who-we-are figure {
        text-align: center;
        margin-bottom: 30px;
    }
    #who-we-are figure img {
        max-width: 50vw;
        margin: 0 auto;
    }
    body.home #who-we-are .description {
        padding-right: 0;
    }
    #who-we-are .description p {
        font-size: 22px;
    }
    #company-glance .bg-video {
        border-top-left-radius: 70px;
        border-top-right-radius: 70px;
    }
    #company-glance .container {
        padding: 70px 0 130px;
    }
    #company-glance h2,
    #newsroom h2,
    #stock-data h2 {
        font-size: 42px !important;
    }
    #company-glance ul li {
        font-size: 30px !important;
    }
    #sustainability.home .container .description {
        max-width: 100% !important;
        font-size: 22px !important;
    }
    #sustainability.home .container h2, #our-fleet .moto {
        font-size: 42px !important;
    }
    #sustainability .category, #our-fleet h2 {
        font-size: 16px;
    }
    #sustainability.home .container {
        padding: 0 40px;
    }
    #our-fleet {
        min-height: 450px;
    }
    #our-fleet .container {
        padding: 0;
        min-height: 450px;
    }
    .articles-wrapper {
        margin-bottom: 20px;
    }
    .articles-wrapper article {
        margin-bottom: 30px;
    }
    .articles-wrapper article h3 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 567px) {
    #who-we-are figure img {
        max-width: 100%;
    }
}
.button .read-more {
    color: #FFF !important;
}
.button:hover .read-more {
    color: var(--blue-color) !important;
}
.button.blue .read-more {
    color: var(--blue-color) !important;
}
.button.blue:hover .read-more {
    color: #FFF !important;
}
.button.blue svg path {
    fill: #FFF !important;
    stroke: var(--blue-color);
}
.button.blue:hover:hover svg path {
    fill: var(--blue-color) !important;
    stroke: var(--blue-color);
}
#press-releases .button.blue svg path {
    fill: #FFF !important;
}
#press-releases .button.blue:hover svg path {
    fill: var(--blue-color) !important;
}
.article_files_wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.article_file_wrapper {
    padding: 10px 0 0 0;
    margin: 0 25px 15px 0;
}
.article_file a {
    display: inline-block;
    font-size: 14px;
    padding-left: 38px;
}
.article_file a span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    padding: 2px 0 0 0;
    color: #777;
}

.icon_generic a {
    background: url(images/icons/generic.png) no-repeat 0 0;
}
.icon_doc a {
    background: url(images/icons/doc.png) no-repeat 0 0;
}
.icon_excel a {
    background: url(images/icons/excel.png) no-repeat 0 0;
}
.icon_powerpoint a {
    background: url(images/icons/powerpoint.png) no-repeat 0 0;
}
.icon_txt a {
    background: url(images/icons/txt.png) no-repeat 0 0;
}
.icon_pdf a {
    background: url(images/icons/pdf.png) no-repeat 0 0;
}
.icon_audio a {
    background: url(images/icons/audio.png) no-repeat 0 0;
}
.icon_video a {
    background: url(images/icons/video.png) no-repeat 0 0;
}
.icon_image a {
    background: url(images/icons/image.png) no-repeat 0 0;
}
.icon_archive a {
    background: url(images/icons/archive.png) no-repeat 0 0;
}

.extra_photos {
    padding:0;
    margin:0 auto;
}
.extra_photos .short-title {
    margin-bottom:15px;
    border-bottom:2px solid #EEB000;
}
.extra_photos .short-title h3 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-color);
    padding: 5px 0;
    margin: 10px 0 0 0;
}
.extra_photos [class*="col-"] {
    padding:0 10px;
}
.extra_photos img {
    margin-bottom:20px;
}

footer {
    background-color:#E8F0F7;
    color:  var(--blue-color);
    font-size: 16px;
    font-weight: 400;
    height: 300px;
    padding: 20px 0 10px;
}
footer .container {
    max-width: 90% !important;
}
footer .logo img {
    max-width: 180px;
}
footer a:link,
footer a:active,
footer a:visited {
    color: var(--blue-color);
}
footer a:hover {
    color: #363636;
}
footer .menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px auto;
}
footer .menu .title {
    font-family: 'avertasemibold', sans-serif;
    font-size: 18px;
    color: #363636 !important;
}
footer .menu {
    font-family: 'avertalight', sans-serif;
    font-size: 18px;
}
footer .back-to-top {
    cursor: pointer;
}
footer .back-to-top:hover {
    color: #363636 !important;
}
footer .madeby {
    text-align: right;
}
footer .bottom_bar {
    display: flex;
    align-items: center;
    height: 45px;
    margin-top: 20px;
}

@media only screen and (max-width:1199px) {
    footer {
        height: auto;
    }
    footer .menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        margin: 20px auto;
    }
    footer .bottom_bar {
        height: auto;
        padding: 10px 0;
    }
}
@media only screen and (max-width:767px) {
    footer .menu {
        text-align: center;
    }
    footer .bottom_bar {
        margin-top: 0;
    }
    footer .copyright,
    footer .madeby {
        text-align: center;
        margin: 5px;
    }
}

.maintenance_mode_wrapper {
    padding: 300px 0 0 0;
}
.maintenance_mode {
    width: 600px;
    margin: 0 auto;
    padding: 30px;
}
.maintenance_text {
    text-align: center;
    font-size: 24px;
    font-weight:700;
    color:var(--blue-color);
    line-height: 1.5em;
}
.maintenance_logo {
    margin:0 auto 30px auto;
    text-align:center;
}


.reCAPTCHA_tos {
	margin-top: 15px;
	padding: 0;
	font-size:11px !important;
	line-height: initial;
}
.grecaptcha-badge {
	z-index:5050;
	visibility: hidden;
	opacity: 0;
	transition: linear opacity 1s;
}

.grecaptcha-badge.show {
	visibility: visible;
	opacity: 1;
	transition: linear opacity 1s;
}

.g-recaptcha > div {
	margin:0 auto;
}

.grecaptcha-badge {
	z-index:1000;
}

.sitemap {
    padding: 20px 40px;
    width: 400px;
    margin: 0 auto;
}

.sitemap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap > ul > li {
    margin-bottom: 14px;
}
#sitemap.categories ul li {
    list-style-type: none;
}
#sitemap.categories ul li::after {
    display: none;
}

.sitemap a {
    text-decoration: none;
    color: #d89a00;
    font-size: 18px;
    display: inline-block;
}

.sitemap .top-link {
    color: var(--blue-color);
    font-size: 18px;
    font-family: 'avertaregular', sans-serif;
}

.sitemap .top-link.active {
    color: var(--accent-color);
    font-weight: bold;
}

/* Submenu block */
.sitemap li > ul {
    margin-top: 10px;
    margin-left: 22px;
    padding-left: 20px;
    position: relative;
}

/* Vertical line */
.sitemap li > ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: calc(100% - 12px);
    background: #cfd6dd;
}

/* Each child item */
.sitemap li > ul > li {
    position: relative;
    margin: 8px 0;
    padding-left: 0;
}
/* Horizontal connector lines */
.sitemap li > ul > li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -20px;
    width: 16px;
    height: 2px;
    background: #cfd6dd;
}
