:root {
    --primary-color: #06398d;
    --secondary-color: #06398d;
    --dark-color: #06398d;
    --bg-light: #f0f6ff;
    --white-color: #ffffff;
    --black-color: #000000;
    --main-font: "Poppins", sans-serif;
    --heading-font: "Teko", sans-serif;
    --transition: all 0.3s ease 0s;
}

html,
body {
    font-family: var(--main-font);
}

a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}

a,
button,
img,
input,
textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

a:focus {
    text-decoration: none;
    outline: 0
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none;
    transition: var(--transition);
}

.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}

.section-padding {
    padding: 50px 0 50px 0;
}

.pad-top {
    padding-top: 50px;
}

.pad-bottom {
    padding-bottom: 50px;
}

.section-heading-center {
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
    text-align: center;
}

.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.section-heading {
    margin-bottom: 25px;
}

.main-head {
    font-size: 45px;
    line-height: 45px;
    margin: 0;
    font-weight: 500;
    font-family: var(--heading-font) !important;
    text-transform: uppercase;
    color: var(--black-color);
}

.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.main-btn {
    text-align: center;
    font-size: 15px;
    min-width: 130px;
    font-weight: 500;
    line-height: 15px;
    height: 45px;
    padding: 0 20px;
    letter-spacing: .2px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: var(--main-font);
}

.main-btn i {
    padding-left: 5px;
}

.btn-1 {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-white {
    border: 1px solid var(--white-color);
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-1:hover {
    border: 1px solid var(--primary-color);
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-white:hover {
    border: 1px solid var(--white-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-white:focus {
    color: var(--primary-color);
}

.btn-white:active {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-light {
    background: var(--bg-light) !important;
}

/*--------------------------------------------
           header section start
--------------------------------------------*/
.header-top-section {
    padding: 10px 0;
    background: var(--dark-color);
}

.top-info i {
    font-size: 20px;
}

.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-social-list-icon {
    width: 26px;
    height: 26px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 12px;
    display: inline-block;
    background: var(--primary-color);
}

.header-social-list-icon:hover {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--primary-color);
}

.header-social-inline {
    display: flex;
    column-gap: 5px;
    align-items: center;
}

.top-info div {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 14px;
    column-gap: 5px;
    margin-right: 15px;
}

.header-social-inline li {
    color: var(--white-color);
    font-size: 14px;
    margin: 0;
    font-family: var(--main-font);
}

.top-info a {
    color: var(--white-color);
    font-size: 14px;
    font-family: var(--main-font);
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.top-info a:hover {
    color: var(--white-color);
}

.logo {
    display: flex;
    height: 81px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo img {
    width: 160px;
    height: auto;
    position: relative;
    top: 0;
}

.login-menu {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.login-menu span {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #ffffff;
    width: 45px;
    height: 45px;
    line-height: 42px;
    font-size: 16px;
    border-radius: 50%;
    display: block;
    text-align: center;
    transition: var(--transition);
}

.login-menu .login-btn {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #ffffff;
    width: auto;
    height: 45px;
    line-height: 42px;
    font-size: 16px;
    border-radius: 30px;
    display: block;
    text-align: center;
    padding: 0 30px;
    transition: var(--transition);
}

.login-menu span:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.login-menu .login-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
           banner section start
--------------------------------------------*/
.banner-text-list {
    margin-bottom: 15px;
}

.banner-item {
    position: relative;
    overflow: hidden;
}

.banner-item {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 500px;
}

/*.banner-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000e0 30%, transparent);
    width: 100%;
    height: 100%;
    opacity: 1;
}*/
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

.banner-heading {
    color: #ffffff;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--heading-font) !important;
}

.banner-content p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
}

/*--------------------------------------------
           banner section end
--------------------------------------------*/


.strength-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}

.strength-item {
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 8px var(--primary-color);
}

.strength-item h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--heading-font);
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
    padding-top: 10px;
    padding-bottom: 5px;
    margin-bottom: 0;
}

.strength-span h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    padding: 15px;
}

.strength-span h4 span {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    padding: 5px 8px;
    border-radius: 6px;
}

.registration-part-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.registration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--primary-color);
}

.registration-content h4 {
    font-size: 18px;
    color: var(--white-color);
    margin: 0;
    width: 70%;
    word-wrap: break-word;
}

.registration-content i {
    color: var(--primary-color);
    background: var(--white-color);
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
}

.registration-part-section {
    display: grid !important;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}

.new-slick-dots .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 5px;
    border-radius: 50%;
    background: #cbdefa;
    opacity: 1;
}

.new-slick-dots .slick-dots {
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
    position: relative;
}

.new-slick-dots li.slick-active button {
    background: var(--primary-color);
    ;
}

.new-slick-dots .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    border: 0;
}

.slick-slider {
    margin: 0 -15px;
}

.slick-slide {
    padding: 6px;
    margin-right: 6px;
    margin-left: 6px;
}

.center-arrow .slick-prev {
    left: -53px;
    transform: translate(0, -125%) !important;
}

.center-arrow .slick-next {
    right: -53px;
    transform: translate(0, -125%) !important;
}

.new-slick-arrow .slick-next,
.new-slick-arrow .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #ffffff;
    border: none;
    outline: 0;
    background: var(--primary-color);
}

.new-slick-arrow .slick-next:focus,
.new-slick-arrow .slick-next:hover,
.new-slick-arrow .slick-prev:focus,
.new-slick-arrow .slick-prev:hover {
    color: #ffffff;
    background: var(--primary-color);
}

.new-slick-arrow .slick-prev:before {
    content: '\f053';
    opacity: 1;
    font-family: "Font Awesome 6 Pro";
}

.new-slick-arrow .slick-next:before {
    content: '\f054';
    opacity: 1;
    font-family: "Font Awesome 6 Pro";
}

.new-slick-arrow.bottom-arrow .slick-prev {
    left: 43.5%;
    bottom: -20px;
    top: auto !important;
}

.new-slick-arrow.bottom-arrow .slick-next {
    right: 43.5%;
    bottom: -20px;
    top: auto !important;
}

.new-slick-arrow {
    padding-bottom: 50px;
}

.ceo-area h3 {
    font-size: 40px;
    line-height: 40px;
    margin: 20px 20px 15px 20px;
    font-weight: 500;
    font-family: var(--heading-font) !important;
    text-transform: uppercase;
    color: var(--black-color);
    text-align: center;
}

.ceo-area img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #e9e9e9;
    border: 12px solid var(--bg-light);
}

.ceo-area span {
    display: inline-block;
    background: var(--bg-light);
    width: fit-content;
    padding: 10px 40px;
    font-size: 18px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 0 0 1px #e9e9e9;
}

.ceo-area h4 {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin: 20px 0 15px 0;
}

.ceo-text p {
    color: var(--primary-color);
    font-style: italic;
    padding: 0 64px;
}

.ceo-text:before {
    content: "";
    background: url(../images/quote.png) no-repeat center;
    position: absolute;
    left: 0;
    top: -30px;
    width: 64px;
    height: 64px;
    background-size: contain;
}

.ceo-text:after {
    content: "";
    background: url(../images/quote.png) no-repeat center;
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 64px;
    height: 64px;
    background-size: contain;
    transform: rotate(180deg);
}

.seafarers-area {
    display: flex;
    background: var(--white-color);
    border-radius: 6px;
    margin-bottom: 20px;
}

.col-lg-6.col-md-6:nth-child(3) .seafarers-area,
.col-lg-6.col-md-6:nth-child(4) .seafarers-area {
    margin-bottom: 0;
}

.seafarers-user img {
    border-radius: 6px;
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: top;
}

.seafarers-text li {
    font-size: 14px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.seafarers-text .main-head {
    font-size: 26px;
}

.seafarers-text {
    width: 72%;
    padding: 15px;
}

.featured-companies-item {
    position: relative;
    background: var(--bg-light);
    padding: 40px 30px;
}

.featured-companies-text p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    height: 60px;
}

.featured-companies-text .main-head {
    font-size: 28px;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
    height: 60px;
}

.featured-companies-text .main-btn {
    border-radius: 0;
}

.featured-companies-logo {
    width: 135px;
    height: 135px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.featured-companies-logo img {
    height: 100%;
    clip-path: circle(45%);
}

.featured-companies-item:before {
    content: "";
    background: url(../images/shape-1.png) no-repeat center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 123px;
    height: 107px;
    background-size: cover;
}

.maritime-agencies-text .main-head {
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maritime-agencies-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    overflow-clip-margin: unset;
}

.maritime-agencies .slick-slide {
    padding: 2px;
    margin-right: 2px;
    margin-left: 2px;
}

.maritime-agencies-img {
    background: #fff;
    padding: 15px;
}

.dg-approved-text .main-head {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 15px;
    height: 45px;
}

.dg-approved-text ul li {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.dg-approved-text ul li:first-child {
    height: 48px;
}

.dg-approved-text ul li i {
    width: 20px;
}

.dg-approved-text .main-btn {
    background: #d1e1fa;
    color: var(--primary-color);
    border-radius: 6px;
    height: 40px;
    width: 86%;
    margin-top: 10px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.dg-approved-item {
    padding: 20px;
    background: var(--bg-light);
    height: 345px;
    position: relative;
}

.dg-approved-logo {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.dg-approved-logo img {
    height: 100%;
    clip-path: circle(45%);
}

.dg-approved .slick-slide {
    padding: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.new-slick-arrow.white-arrow .slick-next,
.new-slick-arrow.white-arrow .slick-prev {
    background: #ffffff;
    color: var(--primary-color);
}

.new-slick-arrow.white-arrow .slick-prev:before {
    color: var(--primary-color);
}

.new-slick-arrow.white-arrow .slick-next:before {
    color: var(--primary-color);
}

.MTIs-coaching .slick-slide,
.documentation-professionals .slick-slide {
    padding: 3px;
    margin-right: 3px;
    margin-left: 3px;
}

.MTIs-coaching-item {
    width: 100%;
    display: flex !important;
    align-items: center;
    background: var(--bg-light);
    column-gap: 20px;
    padding: 15px;
    border-radius: 10px;
}

.MTIs-coaching-logo {
    background: #ffffff;
    width: 40%;
    padding: 10px;
    height: 120px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.MTIs-coaching-logo img {
    height: 100%;
    object-fit: contain;
}

.MTIs-coaching-text .main-head {
    font-size: 22px;
    line-height: 22px;
    color: var(--primary-color);
}

.MTIs-coaching-text {
    width: 60%;
}

.MTIs-coaching-text .main-btn {
    height: 30px;
    text-transform: uppercase;
    font-size: 12px;
    min-width: 84px;
    padding: 0;
    margin-top: 6px;
}

.documentation-professionals-logo img {
    display: inline-block !important;
    height: 70px;
    margin-bottom: 25px;
    object-fit: contain;
}

.documentation-professionals-logo {
    height: 100px;
}

.documentation-professionals-text .main-head {
    font-size: 22px;
    color: var(--primary-color);
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}

.documentation-professionals-bg:before {
    content: "";
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 230px;
}

.documentation-professionals-item {
    width: 100%;
    display: inline-block;
    background: #fff;
    padding: 40px 15px;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 #0000001c;
    margin-bottom: 15px;
}

.urgent-job-item {
    width: 100%;
    display: inline-block;
    padding: 20px;
    background: var(--primary-color);
    border-radius: 20px;
}

.urgent-job-text .main-head {
    font-size: 28px;
    line-height: 30px;
    color: #fff;
}

.urgent-job-text p {
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
    font-weight: 500;
    font-size: 18px;
}

.urgent-job-text .main-btn {
    background: #d4e4fc;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    height: 40px;
}

.urgent-job-item {
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 30px 20px;
    background: var(--primary-color);
    border-radius: 20px;
}

.urgent-job-item img {
    position: absolute;
    bottom: 0;
    left: 30px;
}

.urgent-job-item span {
    position: absolute;
    bottom: 20px;
    right: 25px;
    color: #fff;
    cursor: pointer;
}

.urgent-job-item span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: var(--transition);
}

.urgent-job-item span:hover:before {
    width: 0;
}

.urgent-job .slick-slide {
    padding: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.main-bg:before {
    content: "";
    background: url(../images/main-bg.jpg) no-repeat center;
    position: absolute;
    left: 0;
    top: -250px;
    width: 100%;
    height: 770px;
    background-size: cover;
    z-index: -1;
}

.urgent-job-height {
    height: 570px;
}

.urgent-job .slick-prev {
    bottom: -60px !important;
}

.urgent-job .slick-next {
    bottom: -60px !important;
}

.urgent-job.white-arrow .slick-prev:before {
    color: #ffffff;
}

.urgent-job.new-slick-arrow.white-arrow .slick-next:before {
    color: #ffffff;
}

.urgent-job.new-slick-arrow .slick-next,
.urgent-job.new-slick-arrow .slick-prev {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #ffffff;
    border: none;
    outline: 0;
    background: var(--primary-color) !important;
}

.tab-view-btn {
    position: absolute;
    right: 10px;
    top: 15px;
}

.maritime-courses-item {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 15px;
}

.maritime-courses-img {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.maritime-courses-img img {
    height: 100%;
}

.maritime-courses-img span {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 10px;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 30px;
}

.courses-name {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.maritime-courses-text h5 {
    font-size: 16px;
    color: #000;
    height: 40px;
}

.maritime-courses-text ul li {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-box {
    margin-top: 15px;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.box-box h2 {
    font-size: 18px;
    line-height: 22px;
    font-family: var(--heading-font);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    width: 75%;
    height: 80px;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.box-box a {
    text-transform: uppercase;
    font-size: 16px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    width: 25%;
    height: 80px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box-box a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.technical-posts-bg {
    background: var(--primary-color);
    border-radius: 30px;
    position: relative;
}

.technical-posts-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 14px;
    position: relative;
}

.technical-posts-text p {
    color: #000;
    margin: 0;
    position: relative;
}

.technical-posts-bg:before {
    content: "";
    background: url(../images/bg-1.png) no-repeat left;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    z-index: 1;
}

.technical-posts-bg:after {
    content: "";
    background: url(../images/bg-2.png) no-repeat right;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    z-index: 1;
}

.technical-posts-item:before {
    content: "";
    background: url(../images/shape-2.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 200px;
    background-size: contain;
    z-index: 1;
}

.technical-posts {
    position: relative;
    z-index: 999;
}

.technical-posts.new-slick-dots li.slick-active button {
    background: #ffffff;
}

.grid-posts {
    display: grid !important;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}

.our-achievements-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid #dee9fb;
    padding: 15px;
    display: inline-block;
}

.our-achievements-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.our-achievements-img:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to top, var(--primary-color) 0%, transparent);
    width: 92.7%;
    height: 89.5%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.our-achievements .slick-slide,
.advertisement .slick-slide {
    padding: 4px;
    margin-right: 4px;
    margin-left: 4px;
}

.our-achievements-img:hover:before {
    opacity: 1;
    visibility: visible;
}

.our-achievements-img:hover .view-btn {
    opacity: 1;
    visibility: visible;
}

.advertisement-img img {
    width: 100%;
    height: 390px;
    object-fit: contain;
    background: #fff;
}

.advertisement-text h2 {
    font-size: 32px;
    line-height: 32px;
    font-family: var(--heading-font);
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0
}

.advertisement-text p {
    margin-bottom: 0;
}

.advertisement-text {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.customers-review-item {
    background: linear-gradient(to right, #084fc2 0%, #06398d);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    height: 310px;
}

.customers-review-img {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customers-review-text .main-head {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
}

.customers-review-img .client-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;
}

.special-text {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
}

.client-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 0;
}

.divider {
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 10px 0;
}

.customers-review-item:before {
    content: "";
    background: url(../images/quote-1.png) no-repeat center;
    position: absolute;
    right: 15px;
    bottom: -10px;
    width: 128px;
    height: 108px;
    background-size: contain;
    z-index: 1;
}

/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: #000000;
    overflow: hidden;
    position: relative;
      z-index: 0;
}

.footer-section:before {
    content: "";
    background: url(../images/map-bg.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 450px;
    background-size: contain;
    z-index: 1;
}

.footer-social-inline {
    display: flex;
    column-gap: 8px;
    margin-top: 0;
    align-items: center;
}

.footer-social-list-icon:hover i {
    background: #ffffff;
    color: var(--primary-color);
}

.footer-social-list-icon i {
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
}

.footer-social-inline li:first-child {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    padding: 60px 0 40px 0;
}

.footer-title {
    font-size: 22px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-widget a {
    font-size: 14px;
    line-height: 26px;
    width: fit-content;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.footer-widget a:hover {
    color: #ffffff;
}

.footer-item:nth-child(2) {
    padding-left: 45px;
}

.footer-widget ul li {
    margin-bottom: 5px;
}

.footer-widget p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #ffffff;
}

.copyright-content-link {
    color: #ffffff;
}

.copyright-content-link:hover {
    color: #ffffff;
}

.footer-bottom p {
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
    margin: 0;
}

.contact-info i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 10px;
}

.contact-info a:hover i {
    color: #ffffff;
}

.extra-link img {
    height: 26px;
    margin-left: 5px;
}

.extra-link {
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
}

#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

#scroll__top svg {
    width: 25px;
    line-height: 1
}

/*--------------------------------------------
        footer section end
--------------------------------------------*/

.banner-slider .slick-next:focus,
.banner-slider .slick-next:hover,
.banner-slider .slick-prev:focus,
.banner-slider .slick-prev:hover {
    color: #ffffff;
    background: var(--primary-color);
}

.banner-slider .slick-next,
.banner-slider .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #ffffff;
    border: none;
    outline: 0;
    background: var(--primary-color);
}

.banner-slider .slick-prev {
    left: -100px;
    transition: var(--transition);
    transform: translate(0, -125%);
}

.banner-slider .slick-next {
    right: -100px;
    transition: var(--transition);
    transform: translate(0, -125%);
}

.banner-slider:hover .slick-prev {
    left: 0;
}

.banner-slider:hover .slick-next {
    right: 0;
}

.banner-slider .slick-prev:before {
    content: '\f053';
    opacity: 1;
    font-family: "Font Awesome 6 Pro";
}

.banner-slider .slick-next:before {
    content: '\f054';
    opacity: 1;
    font-family: "Font Awesome 6 Pro";
}

.banner-slider .slick-slide {
    padding: 0;
    margin-right: 6px;
    margin-left: 6px;
}

.ads-item img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.carousel-dots.owl-carousel .owl-dots {
    top: auto;
    bottom: -40px;
}

.carousel-dots.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: #cbdefa;
    border-radius: 50%;
    padding: 0 !important;
}

.carousel-dots.owl-carousel .owl-dot.active {
    background: var(--primary-color);
}

.customers-review .slick-slide {
    padding: 0;
}

.for-mobile.login-menu {
    display: none;
}

footer .container {
    position: relative;
    z-index: 11;
}

/*----- home page responsive start -----*/
.for-desktop {
    display: block;
}

.for-mobile {
    display: none;
}

@media (max-width:991px) {
    .for-desktop {
        display: none;
    }

    .for-mobile {
        display: block;
    }

    .tab-view-btn.for-mobile {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 15px;
        text-align: center;
    }

    .carousel-dots.owl-carousel .owl-dots {
        top: auto;
        bottom: -30px;
        left: 45%;
    }

    .urgent-job.owl-carousel.owl-drag .owl-item,
    .scheduled-jobs.owl-carousel.owl-drag .owl-item {
        padding: 0px 5px;
    }

    .scheduled-jobs-head {
        margin-top: 30px;
    }

    .menu-section-right {
        display: none;
    }

    .header-top-section {
        display: none;
    }

    .for-mobile.login-menu {
        display: block;
    }

    .for-mobile.login-menu {
        position: absolute;
        right: 55px;
        top: 13px;
    }

    .for-mobile.login-menu span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .inline-menu {
        width: 100%;
        height: 100%;
    }

    .banner-item {
        width: 100%;
        height: 300px;
        background-size: contain;
    }

    .banner-slider .slick-prev,
    .banner-slider .slick-next {
        transform: translate(0, -90%);
    }

    .footer-section:before {
        display: none;
    }

    .ceo-text p {
        padding: 0 4px;
    }

    .ceo-text:before,
    .ceo-text:after {
        width: 34px;
        height: 34px;
    }

    .section-heading .main-head {
        font-size: 32px;
        line-height: 32px;
        width: 65%;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .strength-grid {
        grid-row-gap: 20px;
        grid-template-columns: repeat(1, minmax(0px, 1fr));
    }

    .section-heading {
        margin-bottom: 15px;
    }

    .ads-image img {
        height: auto;
    }

    .seafarers-area {
        flex-direction: column;
    }

    .seafarers-text {
        width: 100%;
        text-align: center;
    }

    .seafarers-user {
        display: flex;
        justify-content: center;
        padding: 15px;
        padding-bottom: 0;
    }

    .seafarers-user img {
        width: 175px;
        height: 175px;
    }

    .col-lg-6.col-md-6:nth-child(3) .seafarers-area {
        margin-bottom: 20px;
    }

    .col-lg-6.col-md-6:nth-child(4) .seafarers-area {
        margin-bottom: 0;
    }

    .main-btn {
        font-size: 14px;
        min-width: 100px;
        height: 40px;
        padding: 0 15px;
    }

    .new-slick-arrow.bottom-arrow .slick-prev {
        left: 38%;
    }

    .new-slick-arrow.bottom-arrow .slick-next {
        right: 38%;
    }

    .featured-companies-text .main-head {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .center-arrow .slick-prev {
        left: -35px;
        transform: translate(0, -55%) !important;
    }

    .center-arrow .slick-next {
        right: -35px;
        transform: translate(0, -55%) !important;
    }

    .grid-posts {
        grid-row-gap: 15px;
        grid-template-columns: repeat(1, minmax(0px, 1fr));
    }

    .advertisement-img img {
        padding-top: 20px;
        padding-bottom: 5px;
    }

    .advertisement-text h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .main-footer {
        grid-row-gap: 15px;
        grid-template-columns: repeat(1, minmax(0px, 1fr));
        padding: 50px 0 15px 0;
    }

    .footer-item:nth-child(2) {
        padding-left: 0;
    }

    .footer-title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        row-gap: 10px;
    }

    .ads-item img {
        height: auto;
    }

}


@media (max-width:768px) {
    .right-dots .owl-nav .owl-prev {
        width: 30px !important;
        height: 30px !important;
        left: -10px !important;
    }

    .right-dots .owl-nav .owl-next {
        width: 30px !important;
        height: 30px !important;
        right: -10px !important;
    }

    .right-dots.owl-carousel .owl-dots.disabled,
    .right-dots.owl-carousel .owl-nav.disabled {
        top: 60%;
    }

    .registration-part-section {
        grid-template-columns: repeat(1, minmax(0px, 1fr));
    }

    .new-slick-arrow.bottom-arrow .slick-prev {
        left: 30%;
    }

    .new-slick-arrow.bottom-arrow .slick-next {
        right: 30%;
    }
    .section-padding {
        padding: 30px 0 30px 0;
    }

    .banner-item {
        height: 132px;
        background-size: contain;
    }
    .banner-slider .slick-next, .banner-slider .slick-prev {
        width: 24px;
        height: 24px;
    }
    .slick-next:before, .slick-prev:before {
        font-size: 12px;
        top: 7px;
    }
    .maritime-agencies-img img {
        width: 100%;
        height: auto;
    }

    .section-heading .main-head {
        font-size: 22px;
        line-height: 24px;
        width: 60%;
    }

    .main-btn {
        font-size: 12px;
        min-width: 90px;
        height: 32px;
    }

    .maritime-courses .slick-slide {
        padding: 0;
    }

    .box-box {
        flex-direction: column;
    }

    .box-box a {
        height: 50px;
        width: 100%;
    }

    .box-box h2 {
        width: 100%;
        margin-bottom: 5px;
    }

    .technical-posts-item {
        padding: 15px;
    }

    .technical-posts-text p {
        font-size: 14px;
        line-height: 22px;
    }

    .customers-review-item {
        height: auto;
    }
}


@media (max-width:480px) {

    .new-slick-arrow .slick-next,
    .new-slick-arrow .slick-prev {
        width: 30px;
        height: 30px;
    }

    .new-slick-arrow .slick-prev::before,
    .new-slick-arrow .slick-next::before {
        top: 7px;
    }

    .new-slick-arrow .slick-next::before,
    .new-slick-arrow .slick-prev::before {
        font-size: 14px;
    }

    .new-slick-arrow.bottom-arrow .slick-next {
        right: 30%;
    }

    .new-slick-arrow.bottom-arrow .slick-prev {
        left: 30%;
    }

    .new-slick-arrow {
        padding-bottom: 15px;
    }

    .dg-approved.new-slick-arrow {
        padding-bottom: 45px;
    }

    .featured-companies.new-slick-arrow.bottom-arrow .slick-next,
    .featured-companies.new-slick-arrow.bottom-arrow .slick-prev {
        bottom: -45px;
    }

    .registration-content i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
}

/*----- home page responsive start -----*/


.right-dots.owl-carousel .owl-dots.disabled,
.right-dots.owl-carousel .owl-nav.disabled {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 55%;
    left: auto;
    right: auto;
    transform: translate(0px, -50px);
}

.right-dots .owl-nav .owl-prev {
    background: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    box-shadow: 0px 0px 7px 0px #0000002e;
}

.right-dots .owl-nav .owl-next {
    background: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    box-shadow: 0px 0px 7px 0px #0000002e;
}

.right-dots .owl-nav .owl-prev span {
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: url(../images/icons/arrow-left-white.svg) no-repeat center;
}

.right-dots .owl-nav .owl-next span {
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: url(../images/icons/arrow-right-white.svg) no-repeat center;
}

.image_main {
    width: 100% !important;
    height: 100% !important;
}

.scheduled-jobs .urgent-job-item {
    background: #d4e4fc;
    height: 380px;
    padding: 20px;
    border-radius: 10px;
}

.scheduled-jobs .urgent-job-item .urgent-job-text {}

.scheduled-jobs .urgent-job-item .urgent-job-text .main-head {
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    color: #06398d;
    margin-bottom: 2px;
}

.scheduled-jobs .urgent-job-item .urgent-job-text .main-head i {
    font-size: 18px;
    margin-right: 5px;
}

.scheduled-jobs .urgent-job-item .urgent-job-text p {
    text-transform: uppercase;
    color: #007bff;
    font-size: 12px;
    line-height: 14px;
    margin: 0;
}

.scheduled-jobs .urgent-job-item .urgent-job-text .main-btn {
    background: #06398d;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    min-width: max-content;
    padding: 0 10px;
    height: 20px;
    color: #fff !important;
    margin-top: 5px;
}

.scheduled-jobs .urgent-job-item .urgent-job-text span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.scheduled-jobs .urgent-job-item span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.scheduled-jobs .urgent-job-item span:hover:before {
    width: 0;
}

.scheduled-jobs .urgent-job-item .urgent-job-text .scheduled-jobs-list {
    border-bottom: 1px solid #a0c5fb;
    margin-bottom: 7px;
    padding-bottom: 7px;
}

.MTIs-coaching.center-arrow .slick-prev {
    transform: translate(0, -60%) !important;
}

.MTIs-coaching.center-arrow .slick-next {
    transform: translate(0, -60%) !important;
}