@font-face {
    font-family: "DMSerifDisplay";
    src: url(fonts/DMSerifDisplay.woff);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins-Regular.woff);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins-Bold.woff);
    font-style: bold;
    font-weight: 800;
}

@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins-Light.woff);
    font-style: light;
    font-weight: 100;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* transition: all 0.3s ease-in-out; */
}

/* .accordion * {
    transition: none !important;
} */

html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins';
    background-color: #004A8F;
}

main{
    position:relative;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
    font-weight: 100;
}

p{
    font-weight: 100;
}

h1 , h2 , h3 , h4{
    font-weight: 400;
}

section.basic-section{
    padding-inline: 60px;
}

.heading-wrap h2 , .heading-wrap h3 , .page-title-wrap h1{
    font-size: 64px;
}

.fleet-page .page-title-wrap h1{
    font-size: 64px;
}

.main-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
}

.logo-wrap img {
    width: 250px;
}

ul.main-menu-list li a {
    color: #fff;
    font-size: 28px;
    padding-block: 3px;
}

ul.main-menu-list li {
    padding-inline: 15px;
    overflow: hidden;
}

.nav-menu-wrapper {
    width: 70%;
    max-width: 1190px;
}

.logo-wrap {
    width: 30%;
}

ul.main-menu-list {
    display: flex;
    justify-content: space-between;
}

/* ul.main-menu-list li a:hover {
    border-bottom: solid 2px #FCE34F;
} */
ul.main-menu-list li a{
    position: relative;
    overflow: hidden;
}

ul.main-menu-list li a::after{
    content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: #FCE34F;
	opacity: 0;
	transition: opacity 300ms, transform 300ms;
    overflow: hidden;
    transform: translate3d(-100% , 0 , 0);
}

ul.main-menu-list li.main-menu-item.current-page a::after{
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

ul.main-menu-list li a:hover:after, ul.main-menu-list li a:focus:after{
	transform: translate3d(0, 0, 0);
    opacity: 1;
}

section.basic-section.sticky-menu {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}

section.hero-sec {
    height: 100vh;
    overflow-y: hidden;
}

section.hero-sec img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
}

.nav-menu-wrapper .menu-burger-icon, .menu-social-icons, .heading-wrap-mobile{
    display: none;
}

.active-mobile-menu{
    display: block !important;
}

.intro-content-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.intro-content-wrapper {
    position: relative;
    font-size: 0px;
}

section.intro-sec{
    margin-bottom: 60px;
}

.scroll-wrapper a img {
    width: 150px;
    height: 150px;
    display: block;
    object-fit: contain;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

section.basic-conent-sec {
    max-width: 1538px;
    padding-block: 130px;
    margin: auto;
}

.fleet-page section.basic-conent-sec {

}

.double-col-con-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-end;
    align-items: center;
}

.text-content-wrap {
    width: 60%;
}

.img-wrap {
    width: 40%;
    font-size: 0;
}

.img-wrap img {
    width: 100%;
    object-fit: cover;
    height: 70vh;
}

.text-wrap p {
    color: #fff;
    padding-top: 40px;
    font-size: 20px;
    font-weight: 100;
    text-align: justify;
}

.page-desc-wrap p, .post-text-content p{
    text-align: justify;
}

.heading-wrap {
    font-family: "DMSerifDisplay";
    font-weight: 400;
    color: #fff;
    font-size: 64px;
    line-height: 1em;
    padding-bottom: 20px;
}

img.sm-img-h{
    height: 45vh !important;
}

img.m-img-h{
    height: 60vh !important;
}

.background-header-color{
    background-color: #004A8F;
}

.history-timeline .text-content-wrap {
    width: 50%;
    background-color: #004A8F;
    padding-block: 40px;
}

.history-timeline .img-wrap {
    width: 50%;
}

section.basic-conent-sec.history-section {
    padding-bottom: 0px;
}

.history-timeline .img-wrap img {
    width: 100%;
    height: auto;
}

.history-timeline{
    position: relative;
}

section.basic-conent-sec.history-section .heading-wrap {
    width: fit-content;
}

.hor-line {
    width: 0;
    transition:0.5s ease 0.2s;
    -moz-transition:0.5s ease 0.2s;
    -webkit-transition:0.5s ease 0.2s;
    height: 1px;
    background: #fff;
}

.visible .hor-line{
    width: 100%;
}

section.basic-conent-sec.history-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-wrap.history-double-img {
    font-size: 0;
}

.text-wrap.history-double-img img {
    width: 100%;
    object-fit: cover;
}

.mission-wrapper {
    padding: 40px;
    padding-top: 0px;
    border: solid 1px #fff;
}

.mission-wrapper .double-col-con-wrapper {
    align-items: center;
}

.mission-header {
    color: #fff;
    font-family: 'DMSerifDisplay';
    font-size: 64px;
    display: inline-block;
    padding-inline: 30px;
    background: #004A8F;
    margin-top: -46px;
    margin-left: -40px;
}

.mission-wrapper .text-content-wrap {
    width: 50%;
}

.mission-wrapper .double-col-con-wrapper .img-wrap {
    width: 50%;
}

.mission-list-wrapper {
    padding-block: 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    color: #fff;
    font-size: 18px;
}

ul.mission-list li {
    list-style: disc;
    padding-bottom: 10px;
    margin-left: 20px;
}

.our-vision .mission-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.our-vision .mission-header {
    width: fit-content;
    left: 50%;
    position: relative;
    margin-left: -15px;
}

.mission-wrapper .img-wrap img {
    height: auto !important;
}

.footer-content-wrapper {
    display: flex;
    justify-content: center;
    padding-block: 20px;
    color: #fff;
    font-size: 16px;
}

.text-content-wrap {
    position: relative;
}

section.basic-conent-sec.history-timeline:before {
    content: '';
    width: 1px;
    height: 0;
    position: absolute;
    background: #fff;
    top: 0px;
    left: 87px;
    z-index: -1;
    transition:all 0.5s ease 0.2s;
    -moz-transition:all 0.5s ease 0.2s;
    -webkit-transition:all 0.5s ease 0.2s;
}

section.basic-conent-sec.history-timeline.visible:before {
    height: 100%;
}

section.basic-conent-sec.history-timeline:nth-child(odd):before {
    left: calc(50% + 100px);
}

section.basic-conent-sec.history-timeline:after {
    content: '';
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    left: 87px;
    transition:all 0.5s ease 0.5s;
    -moz-transition:all 0.5s ease 0.5s;
    -webkit-transition:all 0.5s ease 0.5s;
}

section.basic-conent-sec.history-timeline.visible:after {
    width: calc(50% + 14px);
}

.history-timeline:nth-last-child(3):after{
    display:none;
}

.history-timeline:nth-last-child(3):before {
    height: calc(100% - 100px) !important;
}

.history-timeline .img-wrap {
    padding-block: 40px;
}

footer {
    margin-top: 40px;
}

.scroll-wrapper {
    height: 200px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(#e6646500, #004a8f57);
}

.mobile-scroll-wrapper {
    display: none;
}

section.basic-conent-sec.intro-career-sec {
    
    padding-bottom: 0px;
}

.page-title-wrap {
    font-size: 64px;
    color: #fff;
    font-family: 'DMSerifDisplay'
}

.page-desc-wrap {
    color: #fff;
    max-width: 50%;
    padding-block: 20px;
}

.what-careers-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.what-careers-wrapper a {
    background: #000;
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
}

.careers {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-family: 'DMSerifDisplay';
    padding-block: 15px;
    background: #004a8f99;
}

.what-careers-wrapper a:nth-child(1) {
    background-image: url(media/DSC02497\ 1-s.jpg);
}

.what-careers-wrapper a:nth-child(2) {
    background-image: url(media/Minions\ 1.JPG);
}

.career-hidden-desk{
    display: none;
}

/* hide companies submenu */

.nav-menu-wrapper nav.responsive-submenu{
    display: none;
    z-index: 9;
}
/* -------------------------------------------------------------- */
/* Submenu arrow svg */
.nav-menu-wrapper nav.responsive-submenu li#back-to-main-menu img{
    cursor: pointer;
    margin-right:10px
}

/* -------------------------------------------------------------- */

.intro-careers-sec .page-title-wrap a {
    display: flex;
}

.intro-careers-sec .page-title-wrap a {
    display: flex;
    width: fit-content;
    color: #fff;
    font-size: 50px;
}

section.basic-conent-sec.intro-careers-sec {
    margin-top: 130px;
}

.intro-careers-sec .page-title-wrap a img {
    transform: rotate(90deg);
    margin-right: 20px;
}

.shore-car-options-wrapper {
    border: solid 1px #fff;
    border-right: 0px;
    border-left: 0px;
    padding-block: 10px;
}

.shore-car-options-wrapper > a div {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.shore-car-options-wrapper > a div h2 {
    font-weight: 200;
    font-size: 36px;
    font-family: 'DMSerifDisplay';
}

.accountant-opt {
    border-bottom: solid 1px;
    padding-bottom: 10px;
}

.hr-opt {
    padding-top: 10px;
}

.shore-car-options-wrapper > a div img {
    margin-inline: 30px;
}

.careers-sec-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

button.basic-button {
    background: #00000000;
    /* padding: 10px 40px; */
    border: solid 1px #fff;
    color: #fff;
    font-size: 20px;
}

.dhide{
    display: none;
}

section.news-sec.basic-conent-sec {
    margin-top: 0px;
}

.new-wrap-con {
    display: flex;
    gap: 40px;
    position: relative;
}

img.news-featured-image {
    width: 490px;
    height: 240px;
    object-fit: cover;
}

.news-title h2{
    font-size: 26px;
    color: #fff;
}

.news-excerpt p {
    font-size: 18px;
    font-family: 'Poppins';
    padding-block: 40px;
    color: #fff;
    text-align: justify;
}

.news-title {
    padding-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.news-title h2:before {
    content: '';
    display: block;
    height: 65px;
    width: 4px;
    background: #FCE34F;
    position: absolute;
    border-radius: 100px;
    left: 0px;
}

.new-content {
    width: 33%;
    padding-top: 15px;
}

img.go-to-new-arrow {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

ul.news-list-wrap li {
    padding-block: 40px;
    border-bottom: solid 1px #fff;
}

ul.news-list-wrap li:nth-child(1) {
    border-top: solid 1px #fff;
}

ul.news-list-wrap {
    padding-block: 40px;
}

section.basic-conent-sec.post-section {
    margin-top: 130px;
}

.post-content-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

img.post-featured-img {
    width: 100%;
}

h1.post-title {
    font-size: 36px;
    color: #fff;
    font-family: 'DMSerifDisplay';
    line-height: 1em;
}

.date-wrap {
    margin-block: 40px;
}

.date-wrap span {
    font-size: 26px;
    color: #fff;
    font-family: 'DMSerifDisplay';
    position: relative;
    margin-left: 20px;
    display: block;
}

.date-wrap span:before {
    content: '';
    width: 4px;
    height: 40px;
    background: yellow;
    display: block;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}

.post-text-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-block: 15px;
}

.att-col {
    width: 40%;
}

.post-text-content {
    width: 60%;
}

.page-title-wrap h4 {
    font-size: 50px;
}

/* -------------------------------------------------------------- Accountant Page -------------------------------------------------------------- */
.accountant-wrapper {
    border-right: 0px;
    border-left: 0px;
    padding-block: 10px;
    color: #fff;
}

.mission-list-label{
    margin-block:10px;
}

.double-col-acc-wrapper{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.text-acc-wrap{
    width: 45%;
}
.text-acc-wrap p {
    color: #fff;
    font-size: 25px;
}

.mission-list-label{
    font-weight: 400;
    font-family: 'DMSerifDisplay';
}

.page-subtitle-wrap{
    margin-top: 25px;
    font-size: 30px;
    color: #fff;
    font-family: 'DMSerifDispla';
}

section.basic-acc-conent-sec{
    max-width: 1538px;
    margin: auto;
}

.vl-start {
    border-left: 4px solid yellow;
    margin-right: 30px;
}

.vl {
    border-left: 4px solid yellow;
    margin-inline: 30px;
}

div.accountant-button-wrap-bottom{
    display: none;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.accordion-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-block: 10px;
    border-bottom: solid 1px #fff;
    cursor: pointer;
    color: #fff;
    padding-inline: 5px;
}

.accordion-header .col {
    width: 100%;
}

.accordion-item.tb-header {
    font-weight: 800;
}

.accordion-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-bottom: solid 1px #fff;
}

.content-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-image {
    width: 50%;
    position: relative;
    line-height: 0px;
}

.content-image img {
    width: 100%;
    object-fit: cover;
    height: 480px;
    /* aspect-ratio: 1 / 1; */
}

.image-option img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    cursor: pointer;
}

.image-options-wrap {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    gap: 15px;
    padding: 15px;
}

.vessel-info-wrap {
    padding-block: 40px;
}

ul.vessel-info li {
    color: #fff;
    font-size: 20px;
    padding-block: 10px;
    font-weight: 300;
}

.arrows-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.vessel-arrow.left-arrow {
    transform: rotate(180deg);
}

.vessel-arrow {
    cursor: pointer;
}

ul.vessel-info li span {
    font-weight: 400;
}

.accordion-content {
    display:flex;
    display: none;
}
  
.icon {
    font-size: 20px;
    margin-left: auto;
    transform: rotate(90deg);
    transition: all 0.2s ease;
}
  
.open .icon {
    transform: rotate(0);
}

.lightbox-active.content-image {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 119px);
    bottom: 0;
    left: 0px;
    background: #004a8fc9;
}

.lightbox-active.content-image .vessel-img {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-active .ligh-wrap {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    max-height: 750px;
    max-width: 1158px;
}

.cat-wrapper a {
    color: #fff;
    font-family: 'DMSerifDisplay';
    font-size: 30px;
}

.cat-wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #fff;
    padding-block: 5px;
}

.cat2 {
    position: relative;
    margin-right: 60px;
    font-style: italic;
}

.cat2:after {
    content: '';
    display: block;
    width: 50px;
    height: 30px;
    right: -60px;
    position: absolute;
    bottom: 5px;
    background-image: url(media/Line-25-yellow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

section.contact-sec {
    max-width: 1600px;
    margin: auto;
    padding: 60px;
    margin-top: 130px;
}

.contact-content h1 {
    color: #fff;
    font-family: 'DMSerifDisplay';
    font-size: 64px;
    padding: 40px;
    font-weight: 400;
}

.contact-con-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}


.map-wrap {
    width: 50%;
    visibility: hidden;
}

.info-col-con h3 {
    color: #fff;
    font-size: 36px;
    font-family: 'DMSerifDisplay';
    font-weight: 400;
}

.in-con p {
    color: #fff;
    font-size: 20px;
    padding-block: 10px;
}

.in-con p a {
    color: #fff;
}

.info-sec-contact {
    border: solid #fff 1px;
    border-right: 0px;
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 600px;
    position: relative;
}

.in-con.social-con a {
    display: block;
    line-height: 0px;
}

.in-con.social-con a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.in-con.social-con {
    display: flex;
    align-items: center;
    gap: 15px;
}

.find-us {
    color: #fff;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: solid 1px #fff;
    border-radius: 100px;
    padding-inline: 8px;
    padding-block: 20px;
    position: absolute;
    right: -50px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.info-sec-contact:after {
    content: '';
    width: 1px;
    display: block;
    background: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
    height: calc(50% - 60px);
}

.info-sec-contact:before {
    content: '';
    width: 1px;
    display: block;
    background: #fff;
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: calc(50% - 60px);
}

.open-map-but{
    visibility: visible;
}

.contact-page {
    background-image: url(media/Reliable\ Warrior\ 1\ contact.png);
    background-image: url(media/ContactUs.JPG);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.contact-page:before {
    position: absolute;
    content: "";
    background: #000;
    opacity:0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.larger-border.info-sec-contact::after{
    height: 100%;
}
.larger-border.info-sec-contact::before{
    height: 0px;
}

.dis-non{
    display: none !important;
}

.dis-flex{
    display: flex !important;
}

ul.gallery-list {
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 20px;
}
.img-gallery img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    cursor: pointer;
}

.img-gallery {
    line-height: 0px;
}

section.media-page-sec {
    max-width: 1560px;
    margin: auto;
    padding-block: 130px;
}

section.gallery-sec h2 , section.linkedin-sec h2  {
    font-size: 64px;
    font-family: 'DMSerifDisplay';
    font-weight: 400;
    color: #fff;
}

.gallery-wrap {
    padding-block: 60px;
}

.gallery-list p {
    color: #fff;
    font-size: 16px;
    padding-block: 5px;
}

.ld-content {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    padding-block: 60px;
}

.id-post img {
    width: 100%;
    border-radius: 8px;
}

.insta-sec .img-gallery img {
    height: auto;
    aspect-ratio: 1/1;
}

a.polembros-insta {
    padding-inline: 15px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 32px;
    border-bottom: solid 3px #FCE34F;
}

.careers {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-family: 'DMSerifDisplay';
    padding-block: 15px;
    background: #004a8f99;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    transition: all 0.2s ease-in-out;
}

button.basic-button:hover {
    background: #FCE34F;
    color: #004A8F;
    cursor: pointer;
    border: solid 1px #FCE34F;
}

.maximum-height{
    height: 100%;
    transition: all 1s ease-out;
}

/* .accordion-content:nth-child(2) .left-arrow {
    opacity: 0.3;
} */

.contflex{
    display: flex;
    gap: 20px;
}

button.basic-button {
    transition: all 0.2s ease-out;
}

.what-careers-wrapper a:hover > .careers {
    height: 100%;
}

.slick-carousel.slick-initialized.slick-slider.slick-dotted {
    position: relative;
}

.slick-slide img {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    object-fit: cover;
}

.slick-carousel {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.slick-dots{
    bottom: 20px !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.slick-dots li button:before{
    font-size: 12px  !important;
    color: #fff !important;
}

.slick-dots li.slick-active button:before{
    opacity: 1 !important;
    color: #fff !important;
}

.accordion .accordion-item:first-child .left-arrow {
    opacity: 0.2;
    cursor: context-menu;
}

.accordion .accordion-item:last-child .right-arrow {
    opacity: 0.2;
    cursor: context-menu;
}

li.open-media-img {
    width: 100vw;
    height: calc(100vh - 116px);
    position: fixed;
    bottom: 0px;
    left: 0px;
    background: #004a8fe4;
    padding: 0px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.open-media-img img {
    max-height: 773px;
    height: 100%;
    width: 100%;
}

.open-media-img .img-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* height: 100%; */
    max-width: 1200px;
    margin: auto;
    position: relative;
    width: 100%;
}

.open-media-img p , .img-gal-bar{
    display: none;
}

.open-media-img .img-gal-bar {
    display: flex;
    position: absolute;
    background: #004a8fc8;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.open-media-img .img-gal-bar div {
    line-height: normal;
}

.open-media-img .title {
    font-size: 20px;
}

.open-media-img .img-gal-bar a {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 60px;
}

.open-media-img img.close-modal {
    width: 25px !important;
    height: 25px !important;
    object-fit: contain;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.open-media-img .img-gal-bar a img {
    object-fit: contain;
}

.accordion-item.open .accordion-header {
    background: #FCE34F;
    color: #004A8F;
}

.accordion-item.tb-header.open .accordion-header {
    background: none;
    color: #FFF;
}

.fleet-page .page-title-wrap {
    font-size: 64px;
}

.slick-carousel-media .slick-slide img {
    height: fit-content;
    border-radius: 8px;
}

.slick-carousel-media .slick-slide {
    padding: 0px 15px;
}

.insta-sec .open-media-img .img-gallery {
    align-items: center;
}

.slick-carousel-media.slick-initialized.slick-slider {
    padding-block: 40px;
}

section.contact-sec {
    padding-top: 0px;
}

.accordion:last-child .accordion-header:hover {
    background: #FCE34F;
    color: #004A8F;
}

.page-title-wrap.ptw-fleet {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: baseline;
}

.cat2 {
    font-size: 30px;
    color: #FCE34F;
}

.find-us:hover {
    background: #FCE34F;
    color: #004A8F;
}

.find-us svg path{
    transition: all 0.3s ease-out;
}

.find-us:hover svg path {
    fill: #004A8F !important;
}

button.basic-button a:hover {
    color: #004A8F;
}

button.basic-button a {
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 10px 40px;
    display: block;
}

.sk-instagram-feed a.href_status_trigger {
    width: fit-content;
    display: block;
    border-bottom: solid;
}

.sk-instagram-feed p.sk-ig-profile-usename {
    margin: 0px !important;
    padding-inline: 5px;
    font-weight: 100 !important;
    font-size: 32px !important;
}

.news-hastag {
    font-size: 18px;
    color: #fff;
    font-weight: 100;
    font-family: 'poppins';
    padding-block: 10px;
}

.news-wrapper .news-excerpt p {
    padding-block: 10px;
}

.news-wrapper .new-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-wrapper .no-news{
    padding-top:50px;
    font-size:30px;
}

body.homepage{
    height: 100vh;
    overflow: hidden;
}

.homepage .basic-section:before{
    position:absolute;
    z-index: -1;
    left:0;
    top:0;
    width:100%;
    height:150%;
    opacity:0.8;
    content:"";
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

section.basic-conent-sec.positions-section{
    padding-top:10px;
}

.positions-section > h2{
    color:#fff;
    font-size:30px;
    margin-bottom:30px;
}

.no-positions{
    padding-top:30px;
}

@media only screen and (max-width: 1920px) {
    .heading-wrap {
        font-size: 70px;
    }
    
    .text-wrap p {
        font-size: 18px;
    }

    section.basic-conent-sec{
        padding-inline: 60px;
    }

    /* -------------------------------------------------------------------------------------------------------- */

    .accountant-wrapper {
        margin-inline: 60px;
    }

    /* -------------------------------------------------------------------------------------------------------- */
}

@media only screen and (max-width: 1550px) {
    .logo-wrap img {
        width: 200px;
    }

    li.open-media-img {
        height: calc(100vh - 100px);
    }
}

@media only screen and (max-width: 1200px) {
    .page-title-wrap.ptw-fleet {
        flex-direction: column;
    }

    ul.main-menu-list li a {
        font-size: 36px;
        /* font-family: 'DMSerifDisplay'; */
        font-weight: 400;
    }

    .nav-menu-wrapper nav {
        display: none;
    }
    .nav-menu-wrapper .menu-burger-icon {
        display: block;
    }

    .menu-burger-icon {
        float: right;
    }

    img.burger-icon {
        cursor: pointer;
        height: 25px;
        position: relative;
        z-index: 20;
    }

    .active-mobile-menu ul.main-menu-list {
        flex-direction: column;
    }
    
    nav.active-mobile-menu {
        background: #fff;
        position: fixed;
        height: 100vh;
        top: 0;
        width: 100%;
        max-width: fit-content;
        right: 0;
    }
    
    .active-mobile-menu ul.main-menu-list {
        flex-direction: column;
        padding-block: 80px;
        text-align: right;
        gap: 15px;
        padding-inline: 40px;
    }

    section.basic-section.sticky-menu {
        background: #004A8F;
        z-index: 1;
    }

    nav.active-mobile-menu ul.main-menu-list li a {
        color: #004A8F;
        font-size: 28px;
    }

    .menu-social-icons {
        display: flex;
        justify-content: flex-end;
        padding-inline: 60px;
        gap: 10px;
    }

    .menu-social-icons img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

    .in-wrap-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding-bottom: 80px;
    }

    .img-wrap {
        width: 50%;
    }
    
    .text-content-wrap {
        width: 50%;
    }
    
    .heading-wrap {
        font-size: 50px;
    }
    
    .text-wrap p {
        padding-top: 20px;
    }

    .mission-header {
        font-size: 50px;
    }
    
    .mission-wrapper {
        border: none;
        padding: 0px;
    }
    
    .mission-wrapper .double-col-con-wrapper {
        flex-direction: column-reverse;
    }
    
    section.our-vision .double-col-con-wrapper {
        flex-direction: column;
    }
    
    .our-mission .mission-wrapper .img-wrap {
        width: 100%;
    }
    
    .our-mission .mission-wrapper .text-content-wrap {
        width: 100%;
    }
    
    section.basic-conent-sec.our-mission.our-vision .mission-header {
        padding: 15px;
        width: 100%;
        left: 0px;
        margin-left: 0px;
        text-align: right;
    }

    section.basic-conent-sec.our-mission .mission-header {
        width: 100%;
        margin-left: 0px;
        padding-inline: 0px;
        padding-block: 15px;
    }

    .page-desc-wrap {
        max-width: 100%;
    }

    .page-title-wrap {
        font-size: 50px;
    }

    .mobile-scroll-wrapper {
        display: none;
    }

    img.go-to-new-arrow {
        display: none;
    }
    
    .new-content {
        width: 50%;
    }
    
    img.news-featured-image {
        width: 50%;
    }

    .att-col {
        width: 100%;
    }
    
    .post-text-content {
        width: 100%;
    }
    
    .post-content-wrapper {
        flex-direction: column;
    }
    
    img.post-featured-img {
        max-height: 400px;
        object-fit: cover;
    }
    
    section.more-post-sec section.news-sec.basic-conent-sec {
        margin-top: 0px;
    }

    /* ------------------------------------------------------------------------------------------------------------------------------------------ */

    .double-col-acc-wrapper{
        display: block;
        gap: 40px;
        justify-content: space-between;
        align-items: flex-start;
    }

    .text-acc-wrap {
        width: 100%;
        align-items: center;
        padding-inline: 30px;
        margin-block: 30px;
    }

    div.accountant-button-wrap{
        display: none;
    }

    div.accountant-button-wrap-bottom{
        display: block;
        text-align: center;
    }

    .accountant-wrapper {
        margin-inline: 25px;
    }


    /* ------------------------------------------------------------------------------------------------------------------------------------------ */

    .accordion-header span {
        display: none;
    }
    
    .accordion-header span:first-child {
        display: block;
    }

    ul.gallery-list {
        grid-template-columns: repeat(2 , 1fr);
    }
    
    section.media-page-sec {
        padding-top: 0px;
    }
    
    .insta-sec ul.gallery-list {
        grid-template-columns: repeat( 3 , 1fr );
    }


}

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

    .news-hastag {
        font-size: 15px;
    }

    img.burger-icon {
        height: 20px;
    }

    section.basic-section {
        padding-inline: 25px;
    }

    .logo-wrap img {
        width: 160px;
    }

    .logo-wrap {
        width: fit-content;
    }

    .nav-menu-wrapper {
        width: fit-content;
    }

    .active-mobile-menu ul.main-menu-list{
        padding-inline: 15px;
    }

    .menu-social-icons {
        padding-inline: 25px;
    }

    section.basic-conent-sec {
        padding-inline: 0px;
    }
    
    .double-col-con-wrapper {
        flex-direction: column;
        gap: 0px;
    }
    
    .img-wrap {
        width: calc(100% - 25px);
        align-self: flex-start;
    }
    
    .text-content-wrap {
        width: 100%;
        padding-inline: 25px;
    }
    
    .img-wrap img {
        height: 400px;
    }
    
    section.intro-sec {
        margin-bottom: 0px;
    }
    
    section.basic-conent-sec {
        padding-inline: 0px;
        padding-block: 0;
        padding-top: 40px;
    }
    
    .text-wrap p {
        font-size: 16px;
    }

    .heading-wrap-mobile{
        display: block;
    }

    .hide-m{
        display: none;
    }

    .heading-wrap-mobile {
        color: #fff;
        font-family: 'DMSerifDisplay';
        font-size: 36px;
        padding: 25px;
    }

    section.basic-conent-sec:nth-child(odd) .heading-wrap-mobile {
        text-align: right;
    }

    section.basic-conent-sec:nth-child(odd) .text-content-wrap {
        text-align: right;
    }

    section.basic-conent-sec:nth-child(odd) .double-col-con-wrapper {
        flex-direction: column-reverse;
    }

    section.basic-conent-sec:nth-child(odd) .img-wrap{
        align-self: flex-end;
    }

    .intro-content-wrapper .hero-img {
        object-position: calc(100% + 60px);
    }

    section.our-mission .mission-wrapper .text-content-wrap {
        text-align: left;
    }
    
    .mission-list-wrapper {
        flex-direction: column;
        padding-block: 20px;
        gap: 0px;
        font-size: 16px;
    }
    
    .mission-header {
        margin-top: 0px;
    }
    
    section.basic-conent-sec.our-mission .mission-header {
        margin-top: 0px;
        padding-inline: 25px;
        font-size: 36px;
    }
    
    section.our-mission.our-vision .mission-wrapper .text-content-wrap {
        text-align: right;
    }
    
    section.basic-conent-sec.our-mission.our-vision .mission-header {
        padding-inline: 25px;
    }

    section.basic-conent-sec.history-timeline:before, section.basic-conent-sec.history-timeline:after {
        display: none;
    }
    
    section.basic-conent-sec.history-section .heading-wrap {
        font-size: 36px;
        padding-bottom: 0px;
    }
    
    section.basic-conent-sec.history-section {
        padding-inline: 25px;
    }
    
    section.basic-conent-sec.history-section .hor-line {
        display: none;
    }
    
    section.basic-conent-sec.history-timeline {
        padding-top: 20px;
    }
    
    section.basic-conent-sec.history-timeline .heading-wrap-mobile {
        font-size: 64px;
        padding-block: 0px;
    }
    
    .history-timeline .text-content-wrap {
        width: 100%;
    }
    
    .history-timeline .img-wrap {
        width: 100%;
    }
    
    .history-timeline .text-content-wrap {
        padding-block: 0px;
    }
    
    .history-timeline .double-col-con-wrapper:nth-child(even) {
        flex-direction: column-reverse;
    }
    
    .history-timeline .double-col-con-wrapper .img-wrap {
        padding-block: 0px;
    }
    
    .history-timeline .double-col-con-wrapper .img-wrap img {
        width: calc(100% - 25px);
        float: right;
    }
    
    section.basic-conent-sec.history-timeline:nth-child(odd) .double-col-con-wrapper {
        flex-direction: column;
    }
    
    .text-wrap.history-double-img {
        padding-block: 25px;
    }

    .text-content-wrap.double-img-incont {
        padding-inline: 0px;
    }
    
    .text-wrap.history-double-img {
        width: calc(100% - 25px);
    }

    .history-timeline .img-wrap img {
        max-height: 350px;
    }

    .desktop-scroll-img{
        display: none !important;
    }

    .mobile-scroll-wrapper {
        display: block;
    }

    .scroll-wrapper {
        height: 200px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        background: linear-gradient(#e6646500, #004a8f75);
    }
    
    .scroll-wrapper a .mobile-scroll-wrapper span img {
        width: 20px;
        position: absolute;
        bottom: -20px;
    }
    
    span.mobile-page-title {
        display: block;
        position: absolute;
        left: 50%;
        font-size: 50px;
        color: #fff;
        transform: translateX(-50%);
        bottom: 80px;
        font-family: 'DMSerifDisplay';
        text-align: center;
    }

    section.basic-conent-sec.intro-career-sec {
        margin-top: 0px;
        padding-inline: 25px;
    }
    
    .what-careers-wrapper {
        flex-direction: column;
    }
    
    .what-careers-wrapper a {
        width: calc(100% - 50px);
        margin: auto;
        height: 200px;
    }

    .career-title {
        font-size: 28px;
    }
    
    .careers {
        padding-block: 10px;
    }

    .career-hidden-desk{
        display: block;
    }

    .page-title-wrap {
        display: none;
    }

    section.basic-conent-sec.intro-career-sec {
        padding-top: 20px;
    }

    .career-hidden-desk .intro-content-wrapper .hero-img {
        object-position: center center;
    }

    body.shore-career-page .page-title-wrap , body.seagoing-career-page .page-title-wrap{
        display: block;
    }
    
    .shore-career-page section.basic-conent-sec.intro-careers-sec , .seagoing-career-page section.basic-conent-sec.intro-careers-sec {
        margin-top: 60px;
        padding-inline: 25px;
    }
    
    .intro-careers-sec .page-title-wrap a h1 {
        font-size: 26px;
    }
    
    .shore-car-options-wrapper {
        width: calc(100% - 50px);
        margin: auto;
    }
    
    .shore-career-page .shore-car-options-wrapper > a div h2 {
        font-size: 20px;
    }
    
    .shore-car-options-wrapper > a div img {
        width: 40px;
    }

    .mhide{
        display: none;
    }

    .dhide{
        display: block;
    }

    .career-button-wrap.dhide {
        display: flex;
        justify-content: center;
    }

    button.basic-button {
        font-size: 18px;
    }

    section.news-sec.basic-conent-sec .page-title-wrap {
        display: block;
    }
    
    .page-title-wrap h1 {
        display: none;
    }
    
    section.news-sec.basic-conent-sec {
        margin-top: 0px;
    }
    
    .news-wrapper {
        padding-inline: 25px;
    }
    
    .new-wrap-con {
        flex-direction: column-reverse;
        gap: 0;
    }
    
    .new-content ,.news-page .news-featured-image{
        width: 100%;
    }
    
    .news-excerpt p {
        padding-top: 0px;
        font-size: 16px;
    }
    
    .news-title h2 {
        font-size: 24px;
    }

    section.basic-conent-sec.post-section {
        margin-top: 60px;
        padding-inline: 25px;
    }
    
    h1.post-title {
        font-size: 28px;
    }
    
    .date-wrap {
        margin-block: 20px;
    }
    
    .page-title-wrap h4 {
        padding-inline: 25px;
        font-size: 26px;
    }
    
    .post ul.news-list-wrap {
        padding-top: 20px;
    }
    
    .post img.news-featured-image {
        width: 100%;
    }

    /* ------------------------------------------------------------------------------------------------------------------------------------------ */

    .accountant-wrapper {
        margin-inline: 0px;
    }

    .page-subtitle-wrap{
        font-size: 16px;
        color: #fff;
        font-family: 'DMSerifDispla';
    }
    
    .vl-start {
        border-left: 2px solid yellow;
        margin-right: 8px;
    }
    
    .vl {
        border-left: 2px solid yellow;
        margin-inline: 8px;
    }

    .accounting .page-title-wrap h1 {
        display: block;
    }

    /* ------------------------------------------------------------------------------------------------------------------------------------------ */

    .slick-dots li button:before{
        font-size: 9px  !important;
    }

    .contflex {
        flex-direction: column;
        gap: 0px;
    }
    
    .arrows-wrap {
        display: none;
    }
    
    .vessel-info-wrap {
        padding-block: 10px;
    }
    
    .content-text {
        width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    ul.vessel-info li {
        font-size: 16px;
        padding-block: 5px;
    }

    ul.vessel-info {
        padding-inline: 25px;
    }

    .accordion-item .accordion-header {
        padding-inline: 25px;
    }

    section.basic-conent-sec.acc-fleet {
        padding-top: 0px;
    }

    .cat-wrapper {
        padding-inline: 25px;
    }
    
    .cat1 {
        font-size: 20px;
    }
    
    .cat2 {
        font-size: 12px;
        margin-right: 15px;
        max-width: 60px;
    }
    
    .cat2:after {
        width: 34px;
        height: 7px;
        right: -20px;
    }

    /* .lightbox-active.content-image {
        height: calc(100vh - 84px);
        background: #004a8f;
    }

    img.vessel-img {
        object-fit: contain;
    } */

    .image-option:last-child {
        display: none;
    }

    .careers {
        height: 45px;
    }

    body.seagoing-career-page h1 , .shore-career-page h1{
        display: block;
    }

    section.contact-sec {
        padding: 0px 25px;
    }
    
    .contact-content h1 {
        display: none;
    }
    
    .contact-con-wrap {
        flex-direction: column;
        gap: 0px;
    }
    
    .info-sec-contact.larger-border {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        padding: 20px;
        z-index: -1;
        height: 450px;
    }
    
    .info-col-con h3 {
        font-size: 30px;
    }
    
    .in-con p {
        font-size: 16px;
    }
    
    /* .in-con.social-con a img {
        width: 28px;
        height: 28px;
    } */
    
    .contact-con-wrap {
        position: relative;
    }
    
    .map-wrap.open-map-but {
        width: calc(100% - 50px);
        margin: auto;
        margin-top: -50px;
        display: block;
    }

    .info-sec-contact {
        width: 100%;
    }
    
    .find-us {
        bottom: calc(0px - 43px);
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        padding: 16px 10px;
    }
    
    .info-sec-contact:before {
        height: 1px;
        width: calc(50% - 42px);
    }
    
    .info-sec-contact:after {
        height: 1px;
        width: calc(50% - 42px);
        top: 100%;
        left: 0;
    }
    
    .info-sec-contact {
        border-right: solid 1px #fff;
        border-bottom: 0px;
        padding: 25px;
        min-height: 410px;
    }

    .info-sec-contact.larger-border:after {
        height: 1px;
        width: 100%;
    }

    iframe {
        max-height: 350px;
    }

    section.gallery-sec h2, section.linkedin-sec h2 {
        font-size: 36px;
    }
    
    section.media-page-sec {
        padding-top: 20px;
        margin-top: 0px;
        padding-inline: 25px;
    }
    
    .img-gallery img {
        height: 85px;
    }
    
    .gallery-wrap {
        padding-block: 20px;
    }
    
    .ld-content {
        padding-block: 20px;
    }
    
    a.polembros-insta {
        font-size: 18px;
        padding-inline: 5px;
        border-width: 1px;
    }
    
    section.gallery-sec.insta-sec .gallery-wrap {
        padding-top: 40px;
    }

    li.open-media-img {
        height: calc(100vh - 84px);
        padding-inline: 0px;
    }
    
    .img-gallery .img-gal-bar {
        padding-right: 100px;
        padding-block: 10px;
    }
    
    .open-media-img .img-gal-bar a {
        width: 20px;
        height: 20px;
    }
    
    .open-media-img img.close-modal {
        width: 20px !important;
        height: 20px !important;
    }

    

    .slick-carousel-media {
        padding-block: 20px;
    }
    
    .slick-carousel-media .slick-slide img {
        height: fit-content;
        max-height: 600px;
    }
    
    .slick-carousel-media ul.slick-dots {
        bottom: 0px !important;
    }

    section.gallery-sec.insta-sec , section.linkedin-sec{
        padding-top: 40px;
    }

    .heading-wrap h3{
        font-size: 36px;
    }

    .slick-carousel-media.slick-initialized.slick-slider {
        padding-block: 20px;
    }

    .hatags {
        font-size: 12px;
    }

    .accordion-item.open .accordion-header {
        padding-left: 25px;
    }

}

@media (max-height: 1030px) and (min-width: 1000px){
    li.open-media-img img{
        max-height: 700px;
    }
}

@media (max-height: 915px) and (min-width: 1000px){
    .info-sec-contact{
        height: 500px;
    }

    .map-wrap iframe {
        height: 500px !important;
    }

    .accordion-header {
        padding-block: 5px;
    }

    li.open-media-img img{
        max-height: 600px;
    }

    li.open-media-img{
        padding: 0px;
    }

    section.media-page-sec , section.basic-conent-sec{
        padding-top: 0px;
    }
}

@media (max-height: 820px) and (min-width: 1000px){
    .contact-content h1 {
        padding-block: 20px;
    }

    .info-sec-contact{
        height: 400px;
    }

    .map-wrap iframe {
        height: 400px !important;
    }

    /* .accordion-header {
        padding-block: 5px;
    } */
    
    section.basic-conent-sec.acc-fleet {
        padding-block: 0px;
    }

    section.basic-conent-sec.intro-career-sec {
        padding-top: 0px;
    }
    section.basic-conent-sec.intro-career-sec{
        margin-top: 110px;
    }
}


