<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
	font-family: SourceSansPro-Bold;
	src: url('/static/fonts/SourceSansPro-Bold.otf') format('opentype');
}
@font-face {
	font-family: SourceSansPro-Regular;
	src: url('/static/fonts/SourceSansPro-Regular.otf') format('opentype');
}
@font-face {
	font-family: SourceSansPro-It;
	src: url('/static/fonts/SourceSansPro-It.otf') format('opentype');
}
@font-face {
	font-family: SourceSansPro-Light;
	src: url('/static/fonts/SourceSansPro-Light.otf') format('opentype');
}
@font-face {
	font-family: SourceSansPro-LightIt;
	src: url('/static/fonts/SourceSansPro-LightIt.otf') format('opentype');
}
@font-face {
	font-family: WixMadeforDisplay-ExtraBold;
	src: url('/static/fonts/WixMadeforDisplay-ExtraBold.ttf') format('opentype');
}
@font-face {
	font-family: WixMadeforDisplay-Bold;
	src: url('/static/fonts/WixMadeforDisplay-Bold.ttf') format('opentype');
}
@font-face {
	font-family: WixMadeforDisplay-SemiBold;
	src: url('/static/fonts/WixMadeforDisplay-SemiBold.ttf') format('opentype');
}
@font-face {
	font-family: WixMadeforDisplay-Medium;
	src: url('/static/fonts/WixMadeforDisplay-Medium.ttf') format('opentype');
}
@font-face {
	font-family: WixMadeforDisplay-Regular;
	src: url('/static/fonts/WixMadeforDisplay-Regular.ttf') format('opentype');
}

body {
    font-family: WixMadeforDisplay-Regular;
    font-size: 16px;
    display: flex;
    flex-direction: column;
	min-height: 100vh;
}
main {
	flex: 1; /* Allow main content to take up available space */
}
.footerback{
	background: #EAEBEA;
    margin-top: 40px;
}
.footertext{
    font-size: 16px;
}
.authtitle{
    font-size: 38px;
    padding-top: 8px;
    text-align: center;
}
.indexnavbardesktop{
    display: block;
}
.indexnavbarmobile{
    display: none;
}
.footcontent{
    display: block;
}
.footcontentmob{
    display: none;
}

.menubtn{
    color: rgb(255, 255, 255);
    font-size: 30px;
}
.menubtn:hover{
    color: rgb(188 , 221, 243);
}
/* Simple Scale Up*/
.ann-scale-up-stay {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition: 0.2s transform ease-in;
}

.join-button{
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px; 
    padding-top: 6px; 
    padding-bottom: 6px; 
    padding-right: 20px; 
    background-color: #0A7AB2; 
    border-radius: 10px; 
    color: #fff; 
    font-size: 16px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition: 0.2s transform ease-in;
}
.join-button:hover,
.join-button:focus,
.join-button:active{
    transform: scale(1.04);
}
.indextitle{
    color: white; 
    font-family: WixMadeforDisplay-ExtraBold; 
    font-size: 64px; 
    line-height: 65px;
    text-wrap: balance;
}
.indexsubtitle{
    font-size: 24px; 
    color: #008EFF;
    text-wrap: balance;
}
.gradient-button{
    background: linear-gradient(99.17deg, #CB4848 -8.84%, #030BA2 105.83%); 
    width: fit-content; 
    font-size: 16px; 
    color: #FFFFFF; 
    border-radius: 10px; 
    padding-top: 10px; 
    padding-bottom: 10px; 
    padding-left: 40px; 
    padding-right: 40px;
}
.gradient-button:hover,
.gradient-button:focus,
.gradient-button:active{
    transform: scale(1.04);
}
.crew-button{
    width: fit-content;
    color: #23333F;
    background-color: #FFFFFF; 
    border-radius: 10px; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px; 
    font-size: 15px;
}
.crew-button:hover{
    background-color: #0A7DC0;
    color: #FFFFFF;
}

body.modal-open {
    overflow: hidden; /* Prevent body scrolling when modal is open */
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1052;
    display: none;
    overflow-y: auto;
    justify-content: center;
    align-items: flex-end;
}

.modal-content-assistent {
    background-color: #F6F8FA;
    border-top-left-radius: 13px; 
    border-top-right-radius: 13px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh; 
    overflow: hidden; 
    display: flex;
    flex-direction: column; 
}

#assistant-chat-area {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    /* position: relative;
    align-items: flex-start; */
    max-height: 90vh;
}

.assistant-block {
    /* ... your existing styles ... */
    max-width: 80%; /* Adjust as needed */
    background-color: #EAEBEA;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: #1C2E3D;
    box-sizing: border-box; /* Add this */
    height: auto; /* Ensure height is determined by content */
    max-height: none; /* Remove any max-height restrictions */
    white-space: normal; /* Ensure text wraps */
}

.assistant-block h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.assistant-block p {
    font-size: 1.2rem;
    color: #6c757d;
}

.chat-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical; /* Allow vertical resizing */
    overflow-y: auto; /* Show scrollbar if needed */
    font-size: 16px;
    line-height: 1.5; /* Adjust line height for better spacing */
    min-height: 50px; /* Minimum height */
}

.mobile-course-card{
    display: none;
}
.desktop-course-card{
    display: block;
}

.menucanvas{
    background: #212522; 
    color: #ccc;
}

.footerlink{
    text-decoration: none; 
    color: #475865;
    font-size: 16px;
    font-family: WixMadeforDisplay-Medium;
    padding-right: 8px;
}
.footerlink:hover{
    text-decoration: none;
    font-family: WixMadeforDisplay-Bold;
}

.service-card {
    height: 257px;
    border: 1px solid #BFCAD2;
    border-radius: 20px;
}

.service-card:hover{
    background-color: #fafdff;
    border-color: #d4ebfa;
}

.seafarer-images {
    display: flex;
    margin-right: 20px;
}
.seafarer-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -20px; /* Overlap images */
}
.seafarer-images img:first-child {
    margin-left: 0;
}

.seafarers-title{
    font-size: 16px;
    text-align: left;
    margin-top: -12px;
}
.seafarers-subtitle{
    margin-top: -6px;
    font-size: 16px;
    text-align: left;
    max-width: 275px;
    line-height: 18px;
    padding-top: 4px;
    text-wrap: balance;
}

.common-button{
	/* display: inline-block; */
	background-color: #09669D;
    border-style: solid;
	border-width: 2px;
	border-radius: 10px;
	border-color: #09669D;
	color: #FFFFFF;
	font-family: WixMadeforDisplay-Regular;
	font-size: 16px;
	min-height: 40px;
	min-width: 150px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 6px;
	cursor: pointer;
}
.common-button:hover{
	background: #0A7DC0;
    border-color: #0A7DC0;
}

.index-section-title {
    font-size: 46px; 
    padding-top: 60px; 
    text-align: center;
    line-height: 50px;
    text-wrap: balance;
}

.jobs-section{
    margin-top: 80px; 
    margin-left: 60px; 
    margin-right: 60px;
}
.block-button{
    width: fit-content; 
    border-radius: 10px; 
    border: 1px solid #008EFF; 
    color: #008EFF; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px;
}
.block-button:hover{
    background-color: #0A7DC0;
    color: #FFFFFF;
}

.practice-image1{
    display: block;
    width: 182px; 
    height: 180px; 
    margin-top: 50px;
}
.practice-image2{
    display: block;
    width: 243px; 
    height: 147px;
}
.practice-image3{
    display: block;
    width: 384px; 
    height: 296px; 
    margin-top: 10px; 
    margin-left: -70px;
}
.vacancy-cell{
    background-color: #FFFFFF; 
    border-radius: 10px; 
    margin-top: 20px; 
    margin-left: 40px; 
    margin-right: 40px; 
    padding-bottom: 6px;
}
.vacancy-cell-logo{
    display: block;
}
.vacancy-cell-title{
    font-size: 20px; 
    padding-left: 20px; 
    padding-top: 8px;
}
.vacancy-cell-icon{
    width: 16px; 
    height: 16px; 
    margin-left: 20px;
    margin-top: 5px;
}

.vacancy-cell-subtitle{
    color: #6A7782; 
    font-size: 18px; 
    padding-left: 10px;
}
.vacancy-cell-ship{
    margin-top: 10px;
}
.vacancy-cell-time{
    display: block;
    margin-left: 16px;
    margin-top: 10px;
}
.vacancy-cell-salary-desktop{
    display: block;
    margin-top: 33px;
    margin-right: 20px;
}
.vacancy-cell-salary-mobile{
    display: none;
}
.vacancy-cell-detail{
    height: fit-content; 
    margin-right: 18px; 
    margin-top: 24px; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px; 
    background-color: #09669D; 
    font-size: 16px; 
    color: #FFFFFF; 
    border-radius: 10px;
}
.vacancy-cell-detail:hover{
    background-color: #0A7DC0;
}

.view-all-button{
    width: fit-content;
    color: #FFFFFF;
    background-color: #A7A5A5; 
    border-radius: 10px; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px;
    margin-top: 40px; 
    margin-right: 40px;
}
.view-all-button:hover{
    background-color: #B7B7B7;
}

.vacancytable{
	background-color: #faf7f7; 
	color: black;
	width: 100%;
	font-size: 16px;
	margin-top: 20px;
    
}
.vacancytable tr{
    padding: 8px;
}
.vacancytable tr td{
    padding: 8px;
}
.vacancytable tr:nth-child(even){background-color: #d3d1d1;}

@media screen and (max-width: 1400px) {
    .indextitle{
        font-size: 52px; 
        line-height: 53px;
    }
}

@media screen and (max-width: 1200px) {
    .practice-image1{
        width: 132px; 
        height: 130px; 
        margin-top: 30px;
    }
    .practice-image2{
        width: 143px; 
        height: 97px;
    }
    .practice-image3{
        width: 284px; 
        height: 196px; 
        margin-top: 10px; 
        margin-left: -60px;
    }
    .join-button{
        font-size: 14px;
        padding-left: 18px; 
        padding-top: 8px; 
        padding-bottom: 8px; 
        padding-right: 18px; 
    }
    .indextitle{
        font-size: 42px; 
        line-height: 43px;
    }
    .indexsubtitle{
        font-size: 18px;
    }

}
@media screen and (max-width: 767px) {/*bootstrap col-md*/
	
	.indexnavbardesktop{
        display: none;
    }
    .indexnavbarmobile{
        display: block;
    }
    .footertext{
        font-size: 12px;
    }
    .footcontent{
        display: none;
    }
    .footcontentmob{
        display: block;
    }
    .modal-content-assistent{
        top: 10%;
        height: 90%;
        left: 0%;
        width: 100%;
    }
    .mobile-course-card{
        display: block;
    }
    .desktop-course-card{
        display: none;
    }
    .authtitle{
        font-size: 28px;
    }
    .indextitle{
        color: white; 
        font-family: WixMadeforDisplay-Bold; 
        font-size: 34px; 
        line-height: 35px;
    }
    .indexsubtitle{
        font-size: 18px;
    }
    .index-section-title {
        font-size: 36px;
        line-height: 40px; 
        padding-top: 26px;
    }
    .seafarers-title{
        font-size: 14px;
        text-align: left;
        margin-top: -12px;
    }
    .seafarers-subtitle{
        margin-top: -6px;
        font-size: 14px;
        text-align: left;
        max-width: 275px;
        line-height: 18px;
        padding-top: 4px;
    }
    .vacancy-cell-icon{
        margin-top: 2px;
    }
    .jobs-section{
        margin-top: 40px; 
        margin-left: 1px; 
        margin-right: 1px;
    }
    
    .vacancy-cell{
        margin-left: 4px; 
        margin-right: 4px; 
    }
    .vacancy-cell-logo{
        display: none;
    }
    .vacancy-cell-title{
        font-size: 16px; 
        padding-left: 16px; 
        padding-top: 4px;
    }
    .vacancy-cell-subtitle{
        color: #6A7782; 
        font-size: 14px; 
        padding-left: 4px;
    }
    .vacancy-cell-ship{
        margin-top: 2px;
    }
    .vacancy-cell-time{
        display: none;
    }
    .vacancy-cell-salary-desktop{
        display: none;
    }
    .vacancy-cell-salary-mobile{
        display: block;
    }
    .vacancy-cell-detail{
        margin-right: 10px; 
        margin-top: 20px; 
        padding: 6px; 
        padding-left: 10px; 
        padding-right: 10px; 
        font-size: 16px;
    }
    .view-all-button{ 
        margin-right: 6px;
    }
    
}</pre></body></html>