/* font families */
@font-face {
    font-family: Inter-Light;
    src: url(../font-families/Inter-Light.otf);
}

@font-face {
    font-family: Inter-regular;
    src: url(../font-families/Inter-Regular.otf);
}

@font-face {
    font-family: FamiljenGrotesk-Regular;
    src: url(../font-families/FamiljenGrotesk-Regular.otf);
}

@font-face {
    font-family: FamiljenGrotesk-Medium;
    src: url(../font-families/FamiljenGrotesk-Medium.otf);
}

@font-face {
    font-family: FamiljenGrotesk-SemiBold;
    src: url(../font-families/FamiljenGrotesk-SemiBold.ttf);
}

@font-face {
    font-family: FamiljenGrotesk-Bold;
    src: url(../font-families/FamiljenGrotesk-Bold.otf);
}

:root {
    --cyan: #127A68;
    --white: #fff;
    --black: #000;
    --orange: #F58232;
}

/* general css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--black);
    font-family: FamiljenGrotesk-Regular;
}

a:hover {
    text-decoration: none;
}

body {
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: FamiljenGrotesk-SemiBold;
}

a,
p {
    font-size: 16px;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

img {
    width: 100%;
}


/* sider scrollbar */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

.container {
    max-width: 90%;
}

/* general padding and margins */
.p-150 {
    padding: 150px 0px;
}

.p-100 {
    padding: 100px 0px;
}

.p-80 {
    padding: 80px 0px;
}

.p-70 {
    padding: 70px 0px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-70 {
    margin-top: 70px;
}

.bg_white {
    background: var(--white);
}

.color_orange {
    color: var(--orange);
}

/* ============== Header starts =============== */

.header_contact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 50px;
    font-family: FamiljenGrotesk-Bold;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s linear;
    margin-right: 40px;
    padding: 10px 20px;
}

.header_contact:hover {
    background: #fff;
    color: var(--orange);
}

.page-side-bar .header_contact {
    margin-right: 75px;
}


.header-main .navbar-brand,
.innder_logo {
    width: 324px;
    margin-right: 15px;
    display: inline-block;
}

.header-main .navbar-nav {
    width: 100%;
}

.header-main .navbar-nav {
    justify-content: space-between;
}

.logo_desktop {
    padding: 20px 0px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* ham burger design */
.mobile-menu .offcanvas-start {
    width: 320px;
}

.mobile-menu .offcanvas-body {
    padding: 0px;
    background: linear-gradient(0deg, #387869 20%, #a67e49 100%);
    overflow-y: hidden;
}

.side-bar-list li a {
    text-decoration: none;
    display: block;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 60px;
    padding: 0px 0px;
    margin: 9px 0px;
    transition: all 0.2s linear;
    position: relative;
    display: inline-block;
    font-family: Inter-Light;
}

.side-bar-list li a:hover {
    color: var(--orange) !important;
}

.side-bar-list li a::after {
    content: '';
    background: var(--orange);
    position: absolute;
    right: -100px;
    top: 29px;
    height: 4px;
    z-index: 1;
    opacity: 0;
    transition: all 0.2s linear;
    width: 86px;
}

.side-bar-list li a:hover::after {
    opacity: 1;
}

.side-bar-list ul {
    margin-top: 40px;
    text-align: left;
}

.hamburger_menu {
    border: none;
    background: var(--orange);
    padding: 0px;
    height: 40px;
    border-radius: 50px;
    align-items: center;
    padding: 3px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s linear;
}

.hamburger_menu:hover {
    background: #ffffffb7;

}

.hamburger_menu span {
    font-size: 20px;
    position: relative;
    transition: all 0.2s linear;
    color: #fff;
    z-index: 1;
    margin-top: -2px;
}

.hamburger_menu:hover span {
    color: var(--black);
}

.hamburger_menu img,
.hamburger_menu svg {
    width: 17px;
    margin-right: 6px;
    z-index: 1;
}

.hamburger_menu svg {
    stroke: #fff;
    transition: all 0.2s linear;
}

.hamburger_menu:hover svg {
    stroke: var(--black);
}

.hamburger_menu:hover svg .mobile-menu .offcanvas .menu_right {
    margin-right: 50px;
}

.page-side-bar {
    /* padding: 40px 50px;
    text-align: left;
    position: relative;
    height: 100vh; */
    padding: 40px 40px 40px 35px;
    text-align: left;
    text-align: center;
    position: relative;
    height: 100vh;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-close_menu {
    width: auto;
    height: auto;
    padding: 0px;
    color: #fff;
    background: none;
    opacity: 1 !important;
    position: absolute;
    right: 8px;
    top: 7px;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s linear;
}

.btn-close_menu:hover {
    transform: rotate(180deg);
}

.btn-close_menu svg {
    fill: var(--white);
    width: 32px;
    height: 32px;
}

.header-main .container {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu .offcanvas-top {
    width: 100%;
    min-height: 100vh;
}

.header-main .navbar-brand {
    padding: 5px 0px;
}

.desktop_contact {
    display: none;
}

/* header ends */

.v-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

/* header scroll animation */
.header-main {
    position: sticky;
    top: 0px;
    z-index: 3;
    position: sticky;
    top: 0px;
    background: transparent;
    transition: all 0.5s linear;
}

body.scroll-down .header_b {
    background: var(--cyan);
    top: -112px;
    transition: all 0.5s linear;
    position: sticky;
}

body.scroll-up .header_b {
    background: var(--cyan);
    top: 0;
    position: sticky;
    transition: all 0.5s linear;
}

.nave_logo_inner {
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-main .page-side-bar .container {
    position: absolute;
    top: 25px;
    width: 100%;
}

.mobile-menu .offcanvas {
    transition: transform .6s ease-in-out !important;
}

.header-main .page-side-bar .menu_container {
    top: 50%;
    transform: translateY(-50%);
}

.header_btn1a {
    margin-right: 10px;
}

.header_btn1 {
    border-radius: 50px;
    height: 40px;
    background: #ffffffb7;
    position: relative;
    transition: all 0.2s linear;
    padding: 3px 25px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.header_btn1 span {
    font-size: 20px;
    color: var(--black);
    position: relative;
    transition: all 0.2s linear;
    z-index: 1;
}

.header_btn1:hover span {
    color: #fff;
}

.header_btn1:hover {
    background: var(--orange);
}

.mobile_menu {
    padding: 7px;
    border-radius: 50px;
    background: #ffffff4a;
}


/* header end */


/* home slider */

.banenr_slider_wrp {
    position: relative;
    background-image: url(../images/home_bg_1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-width {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_img .container {
    padding-top: 100px;
    padding-bottom: 60px;
    height: 100vh;
    align-items: end;
    justify-content: center;
    z-index: 1;
    position: relative;
}


.bg_text div {
    color: #fff;
}

.bg_text h1,
.bg_text h2 {
    color: #fff;
    font-size: 65px;
    line-height: 80px;
    margin-bottom: 10px;
    font-family: FamiljenGrotesk-Bold;
}

.bg_text {
    text-align: center;
}

.bg_text p {
    font-size: 22px;
    color: #fff;
}

.banenr_slider_wrp {
    overflow: hidden;
    margin-top: -94px;
}

/* slick banner */
.banenr_slider_wrp .slick-dots {
    bottom: 60px;
}

.banenr_slider_wrp .slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 1px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
}

.banenr_slider_wrp .slick-dots li.slick-active button {
    opacity: 1;
}

.banenr_slider_wrp .slick-dots li button::before {
    display: none;
}

.banenr_slider_wrp .slick-dots li {
    width: fit-content;
    height: auto;
    margin: 0 8px;
}

.banenr_slider_wrp .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.big_ship,
.big_ship .container {
    position: relative;
}

/* slider dots */

.banenr_slider_wrp .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 14px;
    height: 14px;
    border-radius: 50px !important;
    border: none !important;
    padding: 0;
    margin: 0px 10px !important;
}

.banenr_slider_wrp .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 30px;
}

.content_l h6 {
    font-size: 26px;
    margin-bottom: 20px;
}

.number_h {
    color: var(--orange);
    font-family: FamiljenGrotesk-Medium;
    font-size: 75px;
    line-height: 80px;
}

.number_title {
    font-family: FamiljenGrotesk-Medium;
    font-size: 20px;
}

.bar_animation {
    height: 2px;
    background: var(--black);
    margin: 50px 0px 20px 0px;
}

[data-aos="example-anim1"] {
    width: 0px;
    transition-property: width;
}

[data-aos="example-anim1"].aos-animate {
    width: 220px;
}

/* ============ ship animation ============ */

.big_ship {
    overflow: hidden;
    height: 850px;
}

.col_releative {
    position: relative;
}


.ship_img img {
    position: absolute;
    width: 113%;
    right: 0px;
    top: 50px;
    left: auto;
}

.ship_img {
    position: absolute;
    width: 100%;
    left: -20px;
    top: -160px;
}

.btn-vessel {
    border-radius: 50px;
    height: 40px;
    background: #ffffffb7;
    position: relative;
    transition: all 0.2s linear;
    padding: 20px 25px;
    display: inline-flex;
    overflow: hidden;
    border: 2px solid #000;
    background: #fff;
    z-index: 1;
    align-items: center;
    font-size: 20px;
    color: var(--black);
}

.btn-vessel:hover {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: var(--white);
}



/* sticky boxes */

.sticky_box {
    background: linear-gradient(0deg, #387869 20%, #a67e49 100%);
    padding: 70px 100px 120px 100px;
    border-radius: 30px 30px;
    position: sticky;
    top: 3px;
}

.sticky_box h2 {
    color: #fff;
    font-size: 65px;
    font-family: FamiljenGrotesk-Medium;
}

.sticky_box h4 {
    color: #fff;
    font-size: 40px;
    font-family: FamiljenGrotesk-Medium;
    margin-bottom: 25px;
}

.sticky_box h4 div,
.sticky_box h2 div {
    color: #fff;
}

.sticky_box p {
    color: #fff;
    font-size: 22px;
}

.excellence_sticky {
    justify-content: space-between;
}

.excelence_img img {
    border-radius: 40px;
}

.excelence_img {
    max-width: 80%;
}

.orange_a {
    width: 42px;
    margin-top: -60px;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-name: clockwiseSpin;
    animation-timing-function: linear;

}

@keyframes clockwiseSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sticky_wrp {
    flex-direction: column;
    row-gap: 100px;
}

.sticky_sec {
    padding: 20px 0px 10px 0px;
}

/* shipping_sec */

.shipping_box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s linear;
    border-radius: 40px;
}

.shipping_box img {
    border-radius: 40px;
    transition: all 0.4s linear;

}

.shipping_box:hover img {
    transform: scale(1.1);
}

.shipping_text {
    padding: 50px 30px 40px 30px;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg, #000000bf 40%, #a67e4900 100%);
    width: 100%;
}

.shipping_text h5 {
    color: #fff;
    transition: all 0.2s linear;
    font-size: 35px;
    font-family: FamiljenGrotesk-Medium;
}

.shipping_sec .row {
    margin: 70px 0px 50px 0px;
}

.top_h h2 {
    font-size: 65px;
    line-height: 80px;
    font-family: FamiljenGrotesk-Medium;
}

.cargo_contnt h2 {
    font-size: 65px;
    line-height: normal;
    margin-bottom: 20px;
    font-family: FamiljenGrotesk-Medium;
}

.top_h h6 {
    font-size: 26px;
    font-family: FamiljenGrotesk-Medium;
}

/* curtain animation */

.curtain {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--cyan);
    z-index: 1;
    left: 0px;
    bottom: 0px;
}


[data-aos="example-anim2"] {
    height: 100%;
    transition-property: height;
}

[data-aos="example-anim2"].aos-animate {
    height: 0px;
}


/* purpose img */

[data-aos="example-anim3"] {
    width: 90%;
    transition-property: width;
}

[data-aos="example-anim3"].aos-animate {
    width: 75%;
}

.purpose_img {
    position: relative;
}

.purpose_img,
.purpose_img img {
    text-align: center;
    margin: 0 auto;
}

.purpose_text {
    padding: 50px 0px 60px 0px;
    width: 75%;
    color: #fff;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    line-height: normal;
    font-family: FamiljenGrotesk-Medium;
    font-size: 32px;
}

.purpose_sec {
    position: relative;
}

.purpose_sec .container {
    position: relative;
}

.purpose_sec::before {
    content: '';
    background: #387869;
    width: 100%;
    height: 470px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 0;
}

.purpose_heading {
    padding: 50px 30px 40px 30px;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg, #00000080 20%, #a67e4900 100%);
    width: 100%;
    text-align: left;
}

.purpose_heading h2 {
    font-size: 40px;
    color: #fff;
    font-family: FamiljenGrotesk-Medium;
}

/* client logo */

.logo-slider {
    pointer-events: none;
}

.logo-slider .slick-arrow {
    display: none !important;
}

.logo-slider .slick-slide img {
    display: block;
    max-width: 90%;
    margin: 0 auto;
    max-height: 100%;
}

.logo_main_wraper {
    overflow: hidden;
}

.partnerships {
    text-align: center;
    font-family: FamiljenGrotesk-Medium;
    font-size: 35px;
    margin-bottom: 60px;
    line-height: 1.1;
}

.logo-img {
    height: 95px;
    width: auto;
    margin: 0 auto;
    align-items: center;
}

.logo-img img {
    width: auto;
    margin: 0 auto;
    height: auto;
}

.logo_main_wraper .container-fluid {
    max-width: 1726px;
}

/* ========= footer ========= */

footer {
    background-color: #eeeeee;
    padding: 50px 0px;
    overflow: hidden;
    position: relative;
}

.footer_a {
    position: absolute;
    right: 0px;
    height: 110%;
    bottom: 0px;
    width: auto;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer_box p {
    color: #000;
    font-size: 18px;
}

.reach_title {
    color: #000;
    font-family: FamiljenGrotesk-Medium;
    margin-bottom: 10px;
}

.footer_box a {
    color: #000;
    font-size: 18px;
    position: relative;
    transition: all 0.2s linear;
}

.footer_box a::after {
    content: '';
    background: #000;
    left: 0px;
    width: 0px;
    position: absolute;
    height: 2px;
    bottom: 0px;
    transition: all 0.2s linear;
}

.footer_box a.link_question::after {
    display: none;
}

.footer_box a:hover::after {
    width: 100%;
}

.footer_box {
    max-width: 236px;
}

.footer_grey {
    border-radius: 30px;
    background: #dadadad4;
    padding: 28px 32px;
}

.footer_desciption {
    font-size: 26px;
}

footer h2 {
    font-size: 65px;
    margin-top: 20px;
    line-height: 75px;
}

footer .row {
    margin-top: 60px;
    margin-left: -10px;
    margin-right: -10px;
}

footer .footer_col {
    padding: 0px 10px;
}

.c_row {
    justify-content: space-between;
}

.c_col {
    width: 50%;
}

.footer_box_2 {
    margin-top: 30px;
}

.footer_box li {
    margin-bottom: 1px;
}

.traversea_copyright {
    font-size: 18px;
}

.footer_box.footer_grey_1b a,
.reach_title {
    font-size: 20px;
}

.v_flex_style {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.v_flex_style .footer_grey {
    height: calc(50% - 10px);
}

.mobile_ship {
    display: none;
}


/* contact page */
.sub_banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -94px;
}

.sub_banner_1 {
    background-image: url(../images/contact_bg.png);
}

.sub_banner .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 550px;
    align-items: flex-end;
}

.sub_banner h1 {
    font-size: 65px;
    line-height: 80px;
    color: #fff;
    font-family: FamiljenGrotesk-Bold;
}

.sub_banner h1 div {
    color: #fff;
}

.rich_text p {
    font-size: 30px;
    font-family: FamiljenGrotesk-Medium;
    max-width: 955px;
    text-align: center;
    margin: 0 auto;
}

.location_content h2 {
    font-size: 55px;
    margin-bottom: 10px;
    color: var(--orange);
    font-family: FamiljenGrotesk-Medium;
}

.location_content h5 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--orange);
    margin-bottom: 0px;
    font-family: FamiljenGrotesk-Medium;
}

.location_content p {
    font-size: 22px;
}

.combine_loca {
    padding: 0px 0px 50px 0px;
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #D2D8DC;
}

.map_img {
    max-width: 460px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.combine_loca.location_end {
    border-bottom: none;
}

.map_img img {
    height: 80%;
    max-height: 100%;
    object-fit: contain;
    -webkit-animation: map_animation 15s infinite linear;
}

@-webkit-keyframes map_animation {
    0% {
        -webkit-transform: rotate(-15deg);
    }

    50% {
        -webkit-transform: rotate(15deg);
    }

    100% {
        -webkit-transform: rotate(-15deg);
    }
}

.banner_overlay {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 300px;
    z-index: 1;
    width: 100%;
    background: linear-gradient(0deg, #38786900 20%, #00000080 100%);
}

.sub_banner .container {
    position: relative;
    z-index: 1;
}

/* People & Planet */

.sub_banner_2 {
    background-image: url(../images/people_bg.png);
}

.top_h p {
    font-size: 25px;
    margin-top: 20px;
    font-family: FamiljenGrotesk-Medium;
    width: 75%;
}

.planet_p_sec .top_h h2 div,
.planet_p_sec .top_h h2 {
    color: var(--orange);
}

.planet_p_sec .shipping_text p {
    color: #fff;
    font-size: 18px;
    margin-top: 25px;
}

.top_h.bottom_h {
    margin-top: 70px;
}

/* ========= fleet ========= */
.sub_banner_3 {
    background-image: url(../images/fleet_bg.png);
}

.fleet_numbers .block_num {
    padding: 40px 30px 60px 30px;
}

.fleet_wrp {
    position: relative;
}

.fleet_numbers .number_h,
.fleet_numbers .number_title {
    color: var(--white);
}

.fleet_side_l {
    position: absolute;
    left: 0px;
    height: 100%;
    top: 0px;
    right: auto;
    background: #fff;
    z-index: 1;
}

[data-aos="example-anim4"] {
    width: 50%;
    transition-property: width;
}

[data-aos="example-anim4"].aos-animate {
    width: 0px;
}

.fleet_side_r {
    position: absolute;
    right: 0px;
    height: 100%;
    top: 0px;
    left: auto;
    background: #fff;
    z-index: 1;
}

[data-aos="example-anim5"] {
    width: 50%;
    transition-property: width;
}

[data-aos="example-anim5"].aos-animate {
    width: 0px;
}

.fleet_side_center {
    position: absolute;
    right: -43px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    left: auto;
    background: #fff;
    z-index: 1;
}

[data-aos="example-anim6"] {
    height: 0%;
    transition-property: height;
}

[data-aos="example-anim6"].aos-animate {
    height: 90%;
}

.fleet_numbers .col-md-4 {
    padding: 0px 40px;
}

.fleet_box {
    background: #EEEEEE;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.fleet_row {
    justify-content: space-between;
}

.fleet_col {
    width: 50%;
}

.fleet_top_h {
    padding: 60px 60px 50px 60px;
}

.fleet_top_h h2 {
    font-size: 65px;
    font-family: FamiljenGrotesk-Medium;
}

.fleet_sub_h {
    font-family: FamiljenGrotesk-Medium;
    font-size: 25px;
    color: var(--orange);
}

.fleet_col_r .nav-tabs {
    border: none;
    margin-top: 50px;
    justify-content: space-between;
}

.fleet_col_r .nav-tabs li {
    width: 31.5%;
}

.fleet_col_r .nav-tabs li button {
    width: 100%;
    padding: 0px;
    border: none;
    box-shadow: none;
    border-radius: 0px;
    background: transparent;
    margin-right: 15px;
}

.fleet_col_r .nav-tabs li button:focus,
.fleet_col_r .nav-tabs li button:active:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.data_name {
    font-size: 18px;
    color: var(--orange);
    font-family: FamiljenGrotesk-Medium;
}

.data_amount {
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    font-family: FamiljenGrotesk-Medium;
}

.fleet_data_row {
    justify-content: space-between;
}

.fleet_data_side {
    position: relative;
}

.fleet_data_side::after {
    content: '';
    width: 1px;
    height: 43px;
    top: 0px;
    right: 30px;
    position: absolute;
    background: #231F20;
}

.fleet_data_col {
    width: 50%;
}

.fleet_col_r {
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
    padding: 0px 20px 60px 20px;
}

.fleet_data_col1 {
    width: 37%;
}


.v-end {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
}

.fleet_data_bar {
    height: 1px;
    display: block;
    background: #231F20;
    margin: 15px 0px;
}

.fleet_lg_img,
.fleet_lg_img img {
    height: 100%;
    width: 100%;
}

.fleet_lg_img img {
    object-fit: cover;
}

.fleet_row .tab-content {
    width: 100%;
}

[data-aos="example-anim7"] {
    width: 0px;
    transition-property: width;
}

[data-aos="example-anim7"].aos-animate {
    width: 100%;
}

.fleet_col_img {
    position: relative;
}

.download_link {
    position: absolute;
    bottom: 0px;
    left: 0px;
    align-items: center;
    background: #D9D9D9;
}

.text_download {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    display: inline-block;
    padding: 0px 30px;
}

.span_img {
    display: inline-flex;
    background: #FF7000;
    width: 75px;
    height: 60px;
    padding: 15px;
    justify-content: center;
}

.span_img img {
    height: 100%;
    width: auto;
}

/* ========= About page ========= */

.sub_banner_4 {
    background-image: url(../images/about_bg.png);
}

.difference_wra {
    max-width: 1425px;
    margin: 0 auto;
}

.difference_sec {
    padding: 150px 0px;
    background: #EEEEEE;
}

.differ_col {
    width: 19%;
}

.diffe_row {
    justify-content: space-between;
    flex-wrap: wrap;
}

.differnce_icon {
    text-align: right;
    position: relative;
}

.differnce_icon img {
    width: auto;
    height: 70px;
}

.diff_box_main h2 {
    font-size: 20px;
    position: relative;
    line-height: normal;
    margin-top: 90px;
}

.diff_box_main {
    padding: 15px;
    background: #fff;
    position: relative;
    transition: all 0.4s linear;
    overflow: hidden;
    justify-content: space-between;
    flex-direction: column;
}

.overlay_difference {
    position: absolute;
    background: var(--orange);
    top: 0%;
    left: 0px;
    padding: 15px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s linear;
}

.overlay_difference h2 {
    color: #fff;
    margin-top: 0px !important;
    margin-bottom: 10px;
}

.overlay_difference p {
    color: #fff;
    font-size: 16px;
    line-height: normal;
}

.diff_box_main:hover .overlay_difference {
    opacity: 1;
}

.story_img {
    margin-top: -60px;
}

.story_img img {
    border-radius: 40px;
}

.our_story .top_h h2,
.our_story .top_h h2 div,
.advantage_sec .top_h h2,
.advantage_sec .top_h h2 div {
    color: var(--orange);
}

.story_text,
.cargo_text p,
.stand_pool_inner p {
    font-size: 20px;
    font-family: FamiljenGrotesk-Medium;
}

.story_text {
    max-width: 80%;
    padding-top: 50px;
}

.mission_sec1 {
    background: #EEEEEE;
}

.vission_sec .nav-tabs {
    padding: 7px;
    border-radius: 50px;
    background: transparent;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--black);
    column-gap: 10px;
}

.vission_sec .nav-tabs button {
    border: 1px solid #BDBDBD !important;
    border-radius: 50px;
    font-family: FamiljenGrotesk-Medium;
    font-size: 20px;
    padding: 7px 15px;
    color: #000;
    min-width: 130px;
    transition: all 0.2s linear;
}

.vission_sec .nav-tabs button.active {
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange) !important;
}

.vission_sec .tab-content {
    margin-top: 60px;
}

.tab-content .mission_text {
    font-size: 40px;
    margin: 0 auto;
    text-align: center;
    max-width: 74%;
}

.sticky_tab {
    position: sticky;
    top: 0px;
    z-index: 1;
    padding: 30px 0px;
    background: #fff;
}

.cargo_contnt h2,
.cargo_contnt h2 div {
    color: var(--orange);
}

.cargo_img img {
    border-radius: 40px;
}

.cargo_text h4 {
    font-family: FamiljenGrotesk-Medium;
    font-size: 40px;
}

.cargo_text p {
    max-width: 85%;
    margin-top: 20px;
}

.vission_sec.vission_sec_a .tab-content {
    margin-top: 30px;
}

.cargo_row_1 {
    margin-top: 60px;
}

/* standout section */
.stand_row {
    margin-top: 60px;
    max-width: 75%;
}

.stand_coll {
    padding: 0px !important;
}

.stand_row-1 .stand_coll,
.stand_row-2 .stand_coll {
    position: relative;
}

.stand_row .row .stand_pool_box {
    position: relative;
    border-bottom: 1px solid var(--orange);
    border-right: 1px solid var(--orange);
}

.stand_row .row .stand_coll:last-child .stand_pool_box {
    border-right: none;
}

.stand_pool_box {
    height: 100%;
}

.stand_row-1 .stand_pool_inner {
    padding-top: 0px;
}

.stand_pool_inner {
    max-width: 90%;
    padding-top: 70px;
    padding-bottom: 70px;
}

.stand_pool_inner h2 {
    font-size: 32px;
    margin-bottom: 23px;
    font-family: FamiljenGrotesk-Medium;
    line-height: 1.2;
}

.stand_row-1 .stand_coll:first-child:after,
.stand_row-2 .stand_coll:first-child:after {
    content: '';
    width: 30px;
    height: 30px;
    background: #fff;
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 1;
    border-radius: 50%;
}

.stand_row .stand_row-2 .stand_pool_box {
    border-bottom: none;
}

.stand_row-1 .stand_coll:last-child .stand_pool_inner,
.stand_row-2 .stand_coll:last-child .stand_pool_inner {
    margin-left: 60px;
}

/* banner animation custom */

.banner_slider .carousel-item .bg_text {
    /* animation */
    margin-bottom: -50px;
    opacity: 0;
    transition: all 0.5s linear;
}

.banner_slider .carousel-item.active .bg_text {
    margin-bottom: 0px;
    opacity: 1;
}

.sticky_sec .row {
    margin-top: 50px;
}

.excelence_box {
    max-width: 615px;
    margin-left: auto;
    margin-right: 0px;
}

.footer_arrow {
    display: inline-block;
    margin-left: 7px;
    width: 18px;
    transition: all 0.2s linear;
}

.footer_box a.link_question:hover img,
.footer_box.footer_grey_1b a:hover img {
    margin-left: 18px;
}

.footer_box.footer_grey_1b a::after {
    display: none;
}

a.link_question,
.footer_grey_1b a {
    display: inline-block;
}

/* ========== new mission section =========== */

.vission_pill {
    color: #fff;
    background: var(--orange);
    border-radius: 50px;
    font-family: FamiljenGrotesk-Medium;
    font-size: 20px;
    padding: 7px 15px;
    text-align: center;
    min-width: 130px;
}

.vission_outine {
    padding: 7px;
    border-radius: 50px;
    background: transparent;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--black);
    z-index: 1;
    position: relative;
}

.img_animation {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    height: auto;
    z-index: 0;
}

.img_animation img {
    -webkit-animation: big_img 10s infinite linear;
}

@-webkit-keyframes big_img {
    0% {
        -webkit-transform: rotate(-17deg);
    }

    50% {
        -webkit-transform: rotate(17deg);
    }

    100% {
        -webkit-transform: rotate(-17deg);
    }
}

.mission_sec {
    background: #EEEEEE;
    overflow: hidden;
}

.mission_sec .container {
    position: relative;
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 100px;
}

.mission_box_text {
    font-size: 50px;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    font-family: FamiljenGrotesk-Medium;
    padding: 20px 0px 140px 0px;
    z-index: 1;
    position: relative;
}

.mission_box_text.mission_box_1 {
    padding: 20px 0px 200px 0px;
}

.releative_index {
    position: relative;
    z-index: 1;
}

.advantage_sec {
    overflow: hidden;
}

.advantage_sec .container {
    position: relative;
    z-index: 1;
}

.pool_stand_img1 {
    position: absolute;
    bottom: 60px;
    right: 0px;
    max-width: 490px;
    z-index: 0;

    /* animation */
    transform: translatex(0px);
    -webkit-animation: float 8s ease-in-out infinite;
    animation: sqare_focus1 8s ease-in-out infinite;
}

@keyframes sqare_focus1 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.pool_stand_img {
    width: 100%;
    /* animation */
    transform: translatey(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: sqare_focus 10s ease-in-out infinite;
}

@keyframes sqare_focus {
    0% {
        transform: translatey(-40px);
    }

    50% {
        transform: translatey(30px);
    }

    100% {
        transform: translatey(-40px);
    }
}

.vission_sec nav {
    position: sticky;
    top: 0px;
    text-align: center;
    background: #fff;
    padding: 15px 0px;
    z-index: 1;
    justify-content: center;
}

/* .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
} */

.vission_sec .nav-pills .nav-link {
    color: var(--black);
    border: 1px solid #BDBDBD;
    background: transparent;
    padding: 7px 20px;
    border-radius: 50px;
    text-transform: capitalize;
    font-size: 20px;
    font-family: FamiljenGrotesk-Medium;
}

.vission_sec .nav-pills .nav-link.active {
    border: 1px solid var(--orange);
    background: var(--orange);
    color: #fff;
}

.vission_sec .nav-pills {
    width: fit-content;
    padding: 8px;
    border: 1px solid var(--black);
    border-radius: 50px;
}

.scroll_tab_box {
    padding-top: 74px;
}

.nav-link_1.active {
    border: 1px solid var(--orange) !important;
    background: var(--orange) !important;
    color: #fff !important;
}

.social_footer {
    max-width: 30px;
    height: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s linear;
}

.social_footer:hover {
    text-decoration: none;
    opacity: 0.7;
}

.footer_box a.social_footer::after {
    display: none;
}

.number_inner {
    background: linear-gradient(0deg, #127A68 20%, #a67e49 100%);
    padding: 70px 10px;
    border-radius: 30px 30px;
    position: sticky;
    top: 3px;
}

.number_middle p {
    font-size: 40px;
    line-height: normal;
    font-family: FamiljenGrotesk-Medium;
    color: #fff;
}

.number_middle img {
    max-width: 105px;
    margin: 40px 0px 40px 0px;
    -webkit-animation: number_img 7s infinite linear;
}

@-webkit-keyframes number_img {
    0% {
        -webkit-transform: rotate(-17deg);
    }

    50% {
        -webkit-transform: rotate(17deg);
    }

    100% {
        -webkit-transform: rotate(-17deg);
    }
}

.vission_1 {
    margin-bottom: 30px;
    justify-content: space-between;
    align-items: center;
}

.vission_1 h2 {
    font-family: FamiljenGrotesk-Medium;
    font-size: 55px;
    line-height: 1.1;
    color: var(--orange);
}

.vision_sec_new {
    background: #fff;
    position: relative;
}

.vission_1 p,
.paralex_text h2 {
    font-family: FamiljenGrotesk-Medium;
    font-size: 32px;
    line-height: 1.1;
}

.paralex_text h2 {
    color: #fff;
    margin-bottom: 20px;
}

.paralex_img {
    background-repeat: no-repeat;
    min-height: 500px;
    background-size: cover;
    background-position: left;
    padding: 50px 0px;
    align-items: center;
    background-attachment: fixed;
    position: relative;
}

.over_lay_paralex {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 0;
    height: 100%;
    background: linear-gradient(90deg, #38786900 40%, #000000a3 70%);
}

.paralex_img_1 {
    background-image: url(../images/paralex_img_1.png);
    margin-bottom: 50px;
}

.paralex_img_2 {
    background-image: url(../images/paralex_img_2.png);
}

.paralex_img_3 {
    background-image: url(../images/paralex_img_3.png);
    margin-bottom: 50px;
}

.paralex_img_4 {
    background-image: url(../images/paralex_img_4.png);
}

.paralex_img .container {
    position: relative;
    z-index: 1;
}

.paralex_text {
    max-width: 430px;
    margin-left: auto;
    margin-right: 0px;
}

.paralex_text p {
    color: #fff;
    font-size: 20px;
}

.footer_rights {
    align-items: center;
    margin-top: 40px;
    justify-content: space-between;
}

.vission_heading {
    font-family: FamiljenGrotesk-Medium;
    font-size: 55px;
    color: var(--orange);
    text-align: center;
}

.fleet_banner_video.sub_banner {
    position: relative;
}

.fleet_banner_video.sub_banner video {
    min-height: 550px;
    width: 100%;
    object-fit: cover;
}

.fleet_banner_video.sub_banner::after {
    content: '';
    background: #00000017;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.bg_tex_1 {
    /* margin-bottom: 30px; */
    margin-bottom: 2.5vh;
}

.big_ship .container_fluid {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
}

.big_ship video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

/* new paralex style */

.image_with_text {
    overflow: hidden;
    position: relative;
}

.image_with_text .container {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.image_with_text1,
.image_with_text3 {
    margin-bottom: 40px;
}

.map_img h4 {
    font-size: 60px;
    font-family: FamiljenGrotesk-Medium;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map_img.map_img_1 h4 {
    top: 65%;
}

.map_img.map_img_3 h4 {
    top: 45%;
}

.row_map_2 {
    padding: 70px 0px;
}


.planet_p_sec .shipping_text{
    border-radius: 0px 0px 40px 40px;
}







/* ============= Responsive ================ */

@media only screen and (min-width: 1500px) {
    .big_ship {
        height: 850px;
    }

    .excelence_box {
        margin-right: 20px;
    }

    .sticky_box h2 {
        font-size: 75px;
    }

    .sticky_box h4 {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .sticky_box p {
        font-size: 22px;
    }

    .shipping_text h5 {
        font-size: 40px;
    }

    .purpose_sec::before {
        height: 570px;
    }

    .purpose_text {
        padding: 60px 0px 80px 0px;
        font-size: 40px;
    }

    /* contact */
    .map_img {
        margin: 0 auto;
    }

    .img_animation {
        max-width: 500px;
    }

    .stand_row-1 .stand_coll:last-child .stand_pool_inner,
    .stand_row-2 .stand_coll:last-child .stand_pool_inner {
        margin-left: 90px;
    }

    .mission_sec .container {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .mission_box_text {
        padding: 20px 0px 200px 0px;
    }

    .mission_box_text.mission_box_1 {
        padding: 20px 0px 250px 0px;
    }
}

@media only screen and (min-width: 1600px) {

    /* home_number */
    .content_l h6,
    .footer_desciption {
        font-size: 27px;
    }

    .big_ship {
        height: 950px;
    }

    .sticky_box h2 {
        font-size: 95px;
    }

    .sticky_box h4,
    .purpose_heading h2 {
        font-size: 45px;
    }

    .sticky_box p {
        font-size: 25px;
    }

    .shipping_text h5 {
        font-size: 45px;
    }

    .top_h h6 {
        font-size: 33px;
    }

    /* purpose  animation */

    .purpose_text {
        font-size: 42px;
        padding: 80px 0px;
    }

    /* contact page */
    .rich_text p {
        font-size: 35px;
        max-width: 1143px;
    }

    .location_content h2 {
        font-size: 75px;
    }

    .location_content h5 {
        font-size: 35px;
    }

    .location_content p {
        font-size: 25px;
    }

    .planet_p_sec .shipping_text p {
        font-size: 20px;
        margin-top: 25px;
        min-height: 200px;
    }

    /* fleet */
    .fleet_top_h h2 {
        font-size: 65px;
    }

    .fleet_top_h {
        padding: 60px 60px;
    }

    .fleet_sub_h {
        font-size: 25px;
    }

    .excelence_img {
        max-width: 550px;
    }

    .mission_box_text {
        font-size: 60px;
    }

    .img_animation {
        max-width: 600px;
    }

    .pool_stand_img1 {
        max-width: 620px;
        bottom: 20px;
    }

    .stand_pool_inner {
        max-width: 470px;
    }

    .fleet_numbers .number_h {
        font-size: 100px;
        line-height: 110px;
    }

    .fleet_numbers .number_title {
        font-family: FamiljenGrotesk-Medium;
        font-size: 30px;
    }

    .number_middle img {
        max-width: 125px;
    }

    .fleet_numbers .block_num {
        padding: 50px 30px 70px 30px;
    }

    .number_middle p {
        font-size: 50px;
    }

    .vission_1 h2 {
        font-size: 65px;
    }

    .vission_1 p,
    .paralex_text h2 {
        font-size: 35px;
        line-height: 1.1;
    }

    .paralex_text h2 {
        margin-bottom: 30px;
    }

    .paralex_text {
        max-width: 500px;
    }

    .fleet_banner_video.sub_banner video {
        min-height: 680px;
    }

    .bg_tex_1 {
        margin-bottom: 8.5vh;
    }
}

@media only screen and (min-width: 1700px) {

    /* home banner */

    .bg_text h1,
    .bg_text h2,
    .top_h h2,
    .sub_banner h1,
    .cargo_contnt h2 {
        font-size: 75px;
        line-height: 95px;
    }

    footer h2 {
        font-size: 75px;
        line-height: 95px;
    }

    .bg_text p {
        font-size: 25px;
    }

    .content_l h6 {
        font-size: 33px;
    }

    .big_ship {
        height: 1000px;
    }

    .ship_img img {
        top: 0px;
    }

    .sticky_box h2 {
        font-size: 95px;
    }

    .top_h h6 {
        font-size: 35px;
    }

    footer .row {
        margin-top: 70px;
    }

    /* purpose  animation */
    .purpose_sec::before {
        height: 660px;
    }

    .purpose_text {
        max-width: 1220px;
        font-size: 52px;
    }

    /* footer */
    .footer_desciption {
        font-size: 35px;
    }

    .top_h p {
        max-width: 1140px;
    }

    .planet_p_sec .shipping_text p {
        font-size: 22px;
        margin-top: 25px;
        min-height: 200px;
    }

    /* fleet page */

    .data_name {
        font-size: 18px;
    }

    .data_amount {
        font-size: 25px;
        line-height: 25px;
    }

    .fleet_col_r {
        width: 100%;
        max-width: 83%;
        padding: 0px 20px 80px 20px;
    }

    .text_download {
        font-size: 25px;
        padding: 0px 40px;
    }

    .span_img {
        display: inline-flex;
        width: 80px;
        height: 64px;
    }

    .fleet_data_col1 {
        width: 35%;
    }

    /* about page */
    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 25px;
    }

    .cargo_text p {
        max-width: 84%;
    }

    .cargo_text {
        padding-left: 20px;
    }

    .tab-content .mission_text {
        font-size: 60px;
        max-width: 1220px;
    }

    .stand_pool_inner h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .stand_pool_inner {
        max-width: 520px;
    }

    .stand_row-1 .stand_coll:last-child .stand_pool_inner,
    .stand_row-2 .stand_coll:last-child .stand_pool_inner {
        margin-left: 90px;
    }

    .diff_box_main h2 {
        font-size: 22px;
    }

    .side-bar-list li a {
        font-size: 70px;
        line-height: 70px;
        margin: 13px 0px;
    }

    .side-bar-list li a::after {
        top: 32px;
    }

    .excelence_box {
        max-width: 615px;
        margin-right: 60px;
    }

    .mission_box_text {
        font-size: 70px;
    }

    .img_animation {
        max-width: 700px;
    }

    .stand_row {
        max-width: 1190px;
    }

    .pool_stand_img1 {
        max-width: 590px;
        bottom: 50px;
    }

    .vission_1 h2 {
        font-size: 75px;
    }

    .vission_1 p,
    .paralex_text h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .paralex_text p {
        font-size: 25px;
    }

    .paralex_img {
        min-height: 640px;
    }

    .vission_heading {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1800px) {
    .container {
        max-width: 1726px;
    }

    /* home banner */

    .bg_text h1,
    .bg_text h2,
    .top_h h2,
    .sub_banner h1,
    .cargo_contnt h2 {
        font-size: 75px;
        line-height: 95px;
    }

    footer h2 {
        font-size: 75px;
        line-height: 95px;
    }

    .bg_text p {
        font-size: 25px;
    }

    .content_l h6 {
        font-size: 33px;
    }

    .big_ship {
        height: 1000px;
    }

    .ship_img img {
        top: 0px;
    }

    .sticky_box h2 {
        font-size: 115px;
    }

    .top_h h6 {
        font-size: 35px;
    }

    /* purpose  animation */
    .purpose_sec::before {
        height: 660px;
    }

    [data-aos="example-anim3"] {
        width: 90%;
        transition-property: width;
    }

    [data-aos="example-anim3"].aos-animate {
        width: 1220px
    }

    .purpose_text {
        max-width: 1220px;
        font-size: 52px;
    }

    /* footer */
    .footer_desciption {
        font-size: 35px;
    }

    .top_h p {
        max-width: 1140px;
    }

    .planet_p_sec .shipping_text p {
        font-size: 22px;
        margin-top: 25px;
        min-height: 200px;
    }

    /* fleet page */

    .data_name {
        font-size: 18px;
    }

    .data_amount {
        font-size: 25px;
        line-height: 25px;
    }

    .fleet_col_r {
        width: 100%;
        max-width: 83%;
        padding: 0px 20px 80px 20px;
    }

    .text_download {
        font-size: 25px;
        padding: 0px 40px;
    }

    .span_img {
        display: inline-flex;
        width: 80px;
        height: 64px;
    }

    .fleet_data_col1 {
        width: 35%;
    }

    /* about page */
    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 25px;
    }

    .cargo_text p {
        max-width: 82%;
    }

    .cargo_text {
        padding-left: 20px;
    }

    .tab-content .mission_text {
        font-size: 60px;
        max-width: 1220px;
    }

    .stand_pool_inner h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .stand_pool_inner {
        max-width: 560px;
    }

    .stand_row-1 .stand_coll:last-child .stand_pool_inner,
    .stand_row-2 .stand_coll:last-child .stand_pool_inner {
        margin-left: 90px;
    }

    .mission_box_text {
        font-size: 75px;
    }

    .stand_row {
        max-width: 1314px;
    }

    .pool_stand_img1 {
        max-width: 650px;
        bottom: 30px;
    }

}


/* max media quries */

@media only screen and (max-width: 1365px) {

    /* header */
    .nav_desk li a {
        font-size: 25px;
    }

    .container {
        max-width: 95%;
    }

    .header-main .navbar-brand,
    .innder_logo {
        width: 270px;
    }

    .logo_desktop {
        padding: 10px 0px;
    }

    .hamburger_menu span,
    .header_btn1 span {
        font-size: 18px;
    }

    .side-bar-list li a {
        font-size: 45px;
        margin: 10px 0px;
        line-height: 45px;
    }

    /* home page */

    .bg_text h1,
    .bg_text h2,
    .sticky_box h2,
    .top_h h2,
    footer h2,
    .sub_banner h1,
    .cargo_contnt h2 {
        font-size: 55px;
        line-height: 70px;
    }

    .content_l h6,
    .footer_desciption {
        font-size: 23px;
    }

    .big_ship {
        height: 800px;
    }

    .sticky_box h4 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .sticky_sec .row {
        margin-top: 40px;
    }

    .sticky_box p {
        font-size: 20px;
    }

    .sticky_box {
        padding: 60px 100px 100px 100px;
    }

    .p-100 {
        padding: 70px 0px;
    }

    .shipping_sec .row {
        margin: 50px 0px 50px 0px;
    }

    .shipping_text h5 {
        font-size: 32px;
    }

    .purpose_text {
        font-size: 28px;
    }

    /* footer */
    .footer_a {
        height: 100%;
    }

    footer .row {
        margin-top: 40px;
    }

    footer h2 {
        margin-top: 20px;
    }

    /* contact page */

    .location_content h2 {
        font-size: 45px;
    }

    .location_content p {
        font-size: 20px;
    }

    .map_img {
        max-width: 300px;
        height: 320px;
        margin: 0 auto;
    }

    .rich_text p {
        font-size: 25px;
        max-width: 735px;
    }

    /* people and planet */
    .top_h p {
        font-size: 22px;
    }

    /* fleet page */

    .fleet_top_h h2 {
        font-size: 60px;
    }

    /* about page */

    .story_img {
        margin-top: 50px;
    }

    .story_text {
        max-width: 100%;
        padding-top: 50px;
    }

    .tab-content .mission_text {
        font-size: 32px;
    }

    .vission_sec .tab-content {
        margin-top: 40px;
    }

    .cargo_text h4 {
        font-size: 32px;
    }

    .cargo_text p {
        max-width: 100%;
    }

    .difference_sec {
        padding: 100px 0px;
    }

    .diff_box_main h2 {
        font-size: 22px;
        line-height: normal;
    }

    .side-bar-list li a::after {
        top: 50%;
    }

    .mission_box_text {
        padding: 20px 0px 110px 0px;
    }

    .mission_box_text.mission_box_1 {
        padding: 20px 0px 160px 0px;
    }

    .mission_box_text {
        font-size: 40px;
    }

    .img_animation {
        max-width: 440px;
    }

    .stand_pool_inner {
        padding-right: 20px;
    }

    .stand_pool_inner h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .location_content h5 {
        font-size: 25px;
    }

    .vission_heading {
        font-size: 45px;
    }

    /* paralex 2 style */
    .image_with_text .container {
        width: 100%;
        position: relative;
        top: 0px;
        left: 0px;
        transform: none;
    }

    .image_with_text img {
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        object-fit: cover;
    }

    .paralex_text {
        padding: 50px 0px;
    }

    .image_with_text {
        min-height: 430px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }

    .map_img h4 {
        font-size: 50px;
    }

    .bg_tex_1 {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 1199px) {
    .mobile-menu .offcanvas-body {
        overflow-y: hidden;
    }

    /* home */
    .banner_img .container {
        min-height: 540px;
        padding-bottom: 60px;
    }

    .bg_text h1,
    .bg_text h2,
    .sticky_box h2,
    .top_h h2,
    footer h2,
    .cargo_contnt h2 {
        font-size: 50px;
        line-height: 65px;
    }

    .banenr_slider_wrp .slick-dots {
        bottom: 50px;
    }

    .ship_img img {
        width: 100%;
        top: 100px;
    }

    .bar_animation {
        margin: 30px 0px 20px 0px;
    }

    .big_ship {
        height: 750px;
    }

    .orange_a {
        margin-top: 0px;
    }

    .sticky_box {
        padding: 50px 70px 70px 70px;
    }

    .sticky_box h4 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .purpose_sec::before {
        height: 380px;
    }

    .purpose_heading h2 {
        font-size: 34px;
    }

    .purpose_text {
        font-size: 25px;
    }

    .footer_box p,
    .footer_box a {
        font-size: 17px;
    }

    .footer_grey {
        border-radius: 25px;
    }

    .footer_grey {
        padding: 21px 15px;
    }

    .shipping_box,
    .shipping_box img {
        border-radius: 30px;
    }

    /* contact page */


    .location_content p {
        font-size: 18px;
    }

    .sub_banner .container {
        height: auto;
        min-height: 450px;
    }

    /* people and planet */
    .planet_p_sec .shipping_text p {
        font-size: 17px;
    }

    .planet_p_sec .shipping_text {
        padding: 50px 20px 25px 20px;
    }

    .planet_p_sec .shipping_text h5 {
        font-size: 30px;
    }

    /* fleet page */
    .fleet_numbers .block_num {
        padding: 30px 0px 44px 0px;
    }

    .fleet_top_h h2 {
        font-size: 55px;
    }

    .fleet_top_h {
        padding: 30px 40px 40px 40px;
    }

    .fleet_col_img.v-end {
        align-items: center;
        height: fit-content;
    }

    .fleet_col_r {
        width: 100%;
        max-width: 100%;
    }

    .fleet_data_side::after {
        right: 0px;
    }

    /* about page */
    .stand_pool_inner {
        padding-right: 50px;
    }

    .stand_row-1 .stand_coll:last-child .stand_pool_inner,
    .stand_row-2 .stand_coll:last-child .stand_pool_inner {
        margin-left: 50px;
    }

    .stand_pool_inner h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 18px;
    }

    .diff_box_main h2 {
        font-size: 18px;
        line-height: normal;
    }

    .difference_sec {
        padding: 70px 0px;
    }

    .diffe_row {
        row-gap: 15px;
        column-gap: 14px;
        justify-content: center;
    }

    .differ_col {
        width: 32%;
    }

    .excelence_img img {
        border-radius: 25px;
    }

    .sticky_box p {
        font-size: 18px;
    }

    .mission_box_text {
        font-size: 35px;
    }

    .stand_row {
        max-width: 85%;
    }

    .pool_stand_img1 {
        max-width: 390px;
        bottom: 30px;
    }

    .vission_1 {
        column-gap: 20px;
    }

    .vission_1 h2 {
        font-size: 44px;
    }

    .vission_1 p,
    .paralex_text h2 {
        font-size: 28px;
    }

    .paralex_text p {
        font-size: 18px;
    }

    .paralex_img {
        min-height: 430px;
    }

    /* new paralex */
    .image_with_text {
        min-height: 380px;
    }

    .row_map_2 {
        padding: 40px 0px;
    }
    .planet_p_sec .shipping_text{
    border-radius: 0px 0px 30px 30px;
}
}

@media only screen and (max-width: 991px) {

    .header-main .navbar-brand,
    .innder_logo {
        width: 254px;
    }

    .mobile-menu .offcanvas {
        transition: transform .6s ease-in-out !important;
    }

    /* home */

    .bg_text h1,
    .bg_text h2,
    .sticky_box h2,
    .top_h h2,
    footer h2,
    .cargo_contnt h2 {
        font-size: 44px;
        line-height: 58px;
    }

    .bg_text p {
        font-size: 20px;
    }

    .content_l h6 {
        font-size: 19px;
    }

    .ship_img img {
        width: 120%;
        top: 180px;
        right: -30%;
    }

    .p-80 {
        padding: 60px 0px;
    }

    .sticky_box h4 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .sticky_box {
        padding: 50px 50px 70px 50px;
    }

    .shipping_box,
    .shipping_box img {
        border-radius: 20px;
    }

    .shipping_text h5 {
        font-size: 24px;
    }

    .shipping_text {
        padding: 50px 20px 20px 20px;
    }

    .sticky_sec {
        padding: 20px 0px 2px 0px;
    }

    .btn-vessel span {
        font-size: 18px;
    }

    [data-aos="example-anim3"] {
        width: 100%;
        transition-property: width;
    }

    [data-aos="example-anim3"].aos-animate {
        width: 100%;
    }

    .purpose_text {
        padding: 40px 0px 50px 0px;
        width: 100%;
    }

    .banner_overlay {
        height: 210px;
    }

    /* people and planet */

    .planet_p_sec .row {
        row-gap: 30px;
    }

    .top_h p {
        font-size: 20px;
        width: 100%;
    }

    /* fleet page */

    .fleet_row {
        flex-direction: column-reverse;
    }

    .fleet_col_r {
        max-width: 590px;
    }

    .fleet_col {
        width: 100%;
    }

    .fleet_top_h {
        text-align: center;
    }

    .fleet_top_h h2 {
        font-size: 55px;
        text-align: center;
        display: inline-block;
    }

    .fleet_box {
        max-width: 650px;
        margin: 0 auto 60px auto;
    }

    .fleet_side_center {
        display: none;
    }

    .fleet_numbers .col-md-4 {
        padding: 0px 15px;
    }

    .number_title {
        font-size: 18px;
    }

    /* about page */
    .stand_pool_inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .stand_pool_inner h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 13px;
    }

    .p-100 {
        padding: 50px 0px;
    }

    .diffe_row {
        row-gap: 15px;
        column-gap: 14px;
        justify-content: center;
    }

    .differ_col {
        width: 32%;
    }

    .stand_row {
        margin-top: 40px;
    }

    .difference_sec {
        padding: 60px 0px;
    }

    .partnerships {
        margin-bottom: 50px;
    }

    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 17px;
    }

    .cargo_text h4 {
        font-size: 28px;
    }

    .tab-content .mission_text {
        font-size: 26px;
    }

    .story_text {
        padding-top: 30px;
    }

    .story_img {
        margin-top: 30px;
    }

    .vission_sec .nav-tabs button {
        font-size: 18px;
    }

    .excelence_img {
        max-width: 400px;
    }

    .excelence_img img {
        border-radius: 15px;
    }

    .pool_stand_img1 {
        max-width: 310px;
        bottom: 30px;
    }

    .stand_pool_inner {
        padding-right: 20px;
    }

    .location_content h2 {
        font-size: 36px;
    }

    .number_middle p {
        font-size: 32px;
    }

    .number_inner {
        padding: 50px 10px;
    }

    .fleet_wrp_border {
        border-left: 1px solid var(--white);
        border-right: 1px solid var(--white);
    }

    .fleet_numbers .block_num {
        padding: 10px 0px 30px 0px;
    }

    .vission_1 {
        column-gap: 0px;
        flex-direction: column;
        row-gap: 10px;
    }

    .vission_1 {
        align-items: baseline;
    }

    .paralex_text {
        margin-left: 0px;
    }

    .over_lay_paralex {
        background: linear-gradient(270deg, #38786900 0%, #00000078 60%);
    }

    .paralex_img_3,
    .paralex_img_1 {
        margin-bottom: 30px;
    }

    .paralex_img {
        background-position: left;
    }

    .vission_heading {
        font-size: 35px;
    }

    .mission_box_text {
        padding: 20px 0px 50px 0px;
    }

    /* fleet video */
    .fleet_banner_video.sub_banner video {
        min-height: auto;
    }

    .big_ship video {
        margin-top: 120px;
    }

    .map_img h4 {
        font-size: 40px;
    }
        .planet_p_sec .shipping_text{
    border-radius: 0px 0px 20px 20px;
}
}

@media only screen and (max-width: 767px) {
    .header_btn1.header_btn1a {
        display: none;
    }

    .side-bar-list li a {
        font-size: 38px;
        line-height: 38px;
    }

    .bg_text h1,
    .bg_text h2,
    .sticky_box h2,
    .top_h h2,
    footer h2,
    .cargo_contnt h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .bg_text p {
        font-size: 18px;
    }

    .ship_img img {
        width: 100%;
        top: 0px;
        right: 0px;
        position: relative;
    }

    .big_ship {
        height: auto;
        min-height: auto;
    }

    .content_l {
        max-width: 400px;
    }

    .ship_img {
        position: relative;
        width: 100%;
        left: 0px;
        top: 0px;
    }

    .col_releative {
        margin-top: -150px;
    }

    .shipping_sec .row {
        row-gap: 30px;
    }

    .shipping_text h5 {
        font-size: 32px;
    }

    .shipping_text {
        padding: 50px 20px 30px 20px;
    }

    .shipping_box {
        max-width: 400px;
        margin: 0 auto;
    }

    .curtain {
        display: none;
    }

    .footer_a {
        height: auto;
        width: 100%;
    }

    .p-100 {
        padding: 50px 0px;
    }

    .v_flex_style .footer_grey {
        height: auto;
    }

    .v_flex_style,
    footer .row {
        row-gap: 15px;
    }

    .footer_grey {
        border-radius: 15px;
    }

    .content_l h6,
    .footer_desciption {
        font-size: 20px;
    }

    /* contact page */

    .rich_text.p-100 {
        padding-bottom: 20px;
    }

    .map_img img {
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        -webkit-animation: map_animation 10s infinite linear;
    }

    .map_img.map_img_1 {
        height: 220px;
    }

    .map_img.map_img_2 {
        height: 250px;

    }

    .map_img {
        margin-top: 20px;
    }

    .map_img.map_img_3 {
        height: 180px;
    }

    .sub_banner h1 {
        font-size: 45px;
        line-height: 60px;
    }

    .planet_p_sec .top_h h2 br {
        display: none;
    }

    .fleet_wrp_border {
        border: none;
    }

    .fleet_numbers .block_num {
        border-bottom: 1px solid #fff;
    }

    .btn-close_menu {
        top: 0px;
    }

    .number_inner {
        padding: 50px 50px;
    }

    /* about page */
    .story_text {
        padding-top: 10px;
    }

    .tab-content .mission_text {
        max-width: 100%;
    }

    .cargo_row .row {
        row-gap: 30px;
    }

    .differ_col {
        width: 48%;
    }

    .stand_row .row .stand_pool_box {
        border-right: none;
    }

    .stand_row-1 .stand_coll:last-child .stand_pool_inner,
    .stand_row-2 .stand_coll:last-child .stand_pool_inner {
        margin-left: 0px;
        padding-top: 40px;
    }

    .stand_row .stand_row-2 .stand_pool_box {
        border-bottom: 1px solid var(--orange);
    }

    .stand_row {
        margin-top: 30px;
    }

    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 18px;
    }

    .side-bar-list li a::after {
        top: 49%;
        height: 3px;
    }

    .sticky_sec .row {
        row-gap: 20px;
    }

    .sticky_box {
        position: relative;
        top: auto;
        height: auto;
    }

    .sticky_wrp {
        row-gap: 50px;
    }

    .mission_box_text {
        padding: 20px 0px 20px 0px;
    }

    .mission_box_text.mission_box_1 {
        padding: 20px 0px 120px 0px;
    }

    .mission_box_text {
        font-size: 30px;
    }

    .vission_sec .nav-pills .nav-link {
        padding: 5px 20px;
        font-size: 18px;
    }

    .scroll_tab_box {
        padding-top: 40px;
    }

    .vission_pill {
        font-size: 18px;
        padding: 6px 15px;
    }

    .number_middle img {
        max-width: 70px;
        margin: 40px 0px 20px 0px;
    }

    .number_middle p {
        font-size: 25px;
    }

    .number_middle p br {
        display: none;
    }

    .vission_1 h2 {
        font-size: 36px;
    }

    .vission_1 p {
        font-size: 23px;
    }

    .paralex_text h2 {
        font-size: 26px;
    }

    .paralex_text h2 {
        margin-bottom: 20px;
    }

    /* fleet video */
    .fleet_banner_video.sub_banner video {
        min-height: 330px;
        padding-top: 70px;
    }

    .big_ship video {
        margin-bottom: 0px;
        position: relative;
        margin-top: 0px;
    }

    .big_ship .container_fluid {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 575px) {

    .header-main .navbar-brand,
    .innder_logo {
        width: 185px;
    }

    .bg_text h1,
    .bg_text h2,
    .top_h h2,
    footer h2,
    .cargo_contnt h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .sticky_box {
        padding: 30px 30px 30px 30px;
    }

    .sticky_box h4 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .orange_a {
        width: 32px;
    }

    .sticky_box {
        border-radius: 20px;
    }

    .top_h h6 {
        font-size: 24px;
    }

    .purpose_img {
        height: 250px;
    }

    .purpose_img img {
        height: 100%;
        object-fit: cover;
    }

    .purpose_text {
        font-size: 20px;
    }

    .purpose_sec::before {
        height: 360px;
    }

    .sticky_box p {
        font-size: 17px;
    }

    .shipping_text h5 {
        font-size: 25px;
    }

    .shipping_sec .col-md-4 {
        padding: 0px !important;
    }

    /* contact */

    .map_img {
        max-width: 200px;
        height: 250px;
        margin: 0 auto;
    }

    .location_content {
        text-align: center;
        margin: 0 auto;
    }

    .combine_loca {
        padding: 10px 0px 40px 0px;
        justify-content: center;
    }

    .sub_banner h1 {
        font-size: 40px;
        line-height: 55px;
    }

    /* peoplea and planet */

    .planet_p_sec .col-lg-4 {
        padding: 0px 0px;
    }

    .top_h.bottom_h {
        margin-top: 40px;
    }

    /* fleet page */
    .data_amount {
        font-size: 16px;
        line-height: 22px;
    }

    .fleet_top_h h2 {
        font-size: 35px;
    }

    .fleet_sub_h {
        font-size: 22px;
    }

    .text_download {
        font-size: 18px;
        padding: 0px 20px;
    }

    .fleet_box {
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .fleet_top_h {
        padding: 30px 20px 20px 20px;
    }

    /* about page */
    .vission_sec .nav-tabs button {
        font-size: 15px;
    }

    .vission_sec_a.pt-5 {
        padding-top: 20px !important;
    }

    .tab-content .mission_text {
        font-size: 20px;
    }

    .our_story .top_h h2 br {
        display: none;
    }

    .story_text {
        padding-top: 20px;
    }

    .story_text,
    .cargo_text p,
    .stand_pool_inner p {
        font-size: 17px;
    }

    .stand_pool_inner h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .cargo_img img,
    .story_img img {
        border-radius: 20px;
    }

    .differ_col {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .diff_box_main h2 {
        font-size: 22px;
        margin-top: 60px;
    }

    .side-bar-list li a {
        font-size: 30px;
        line-height: 30px;
    }

    .side-bar-list li a::after {
        right: -70px;
        width: 50px;
    }

    .big_ship.p-80 {
        padding-bottom: 40px;
    }

    .mission_sec .container {
        padding-top: 70px;
        min-height: 70vh;
    }

    .mission_box_text {
        padding: 10px 0px 50px 0px;
    }

    .mission_box_text.mission_box_1 {
        padding: 10px 0px 100px 0px;
    }

    .mission_box_text {
        font-size: 24px;
    }

    .vission_pill {
        font-size: 18px;
        padding: 5px 12px;
    }

    .vission_outine {
        padding: 5px;
    }

    .img_animation {
        max-width: 450px;
        width: 70%;
    }

    .mission_box_text br {
        display: none;
    }

    .mission_sec .container {
        padding-bottom: 70px;
    }

    .mission_box_text {
        padding: 10px 0px 20px 0px;
    }

    .stand_row {
        max-width: 100%;
    }

    .div_mob_shp {
        text-align: end;
    }

    .pool_stand_img1 {
        position: relative;
    }

    .stand_pool_inner {
        padding-right: 0px;
        max-width: 100%;
        width: 100%;
    }

    .pool_stand_img1 {
        max-width: 425px;
        bottom: 0px;
    }

    .vission_sec .nav-pills .nav-link {
        padding: 5px 10px;
        font-size: 16px;
    }

    .location_content h5 {
        font-size: 26px;
    }

    .sub_banner .container {
        height: auto;
        min-height: 350px;
    }

    .number_inner {
        padding: 40px 20px 50px 20px;
    }

    .vission_1 h2 {
        font-size: 30px;
    }

    .vission_1 p {
        font-size: 21px;
    }

    .vission_heading {
        font-size: 30px;
    }

    .map_img {
        max-width: 250px;
        margin: 0 auto;
    }

    .map_img.map_img_1 {
        height: 260px;
    }
}

@media only screen and (max-width: 424px) {
    .col_releative {
        margin-top: -90px;
    }

    .shipping_sec .row {
        margin: 40px 0px 50px 0px;
    }

    .footer_desciption br {
        display: none;
    }

    .c_row {
        flex-direction: column;
        row-gap: 20px;
    }

    .footer_box {
        max-width: 100%;
    }

    .c_col {
        width: 100%;
    }

    .hamburger_menu {
        height: 36px;
        padding: 0px 18px;
    }

    .p-80 {
        padding: 50px 0px;
    }

    .purpose_sec::before {
        height: 390px;
    }

    .partnerships {
        margin-bottom: 20px;
    }

    .rich_text p {
        font-size: 22px;
    }

    .top_h.bottom_h .top_h h2 {
        font-size: 26px;
        line-height: 33px;
    }

    .fleet_data_row {
        justify-content: space-between;
        flex-direction: column;
        row-gap: 15px;
    }

    .fleet_data_side::after {
        display: none;
    }

    .fleet_col_r {
        padding: 0px 20px 40px 20px;
    }

    .fleet_col_r .nav-tabs {
        margin-top: 30px;
    }

    .span_img {
        width: 65px;
        height: 60px;
    }

    .fleet_box_wrp.pb-5 {
        padding-bottom: 20px !important;
    }

    .fleet_data_col {
        width: 100%;
    }

    /* about page */
    .differ_col {
        width: 100%;
    }

    .diffe_row {
        margin-top: 30px;
    }

    .difference_sec {
        padding: 50px 0px;
    }

    /* about page */
    .vission_sec .nav-tabs button {
        font-size: 14px;
        padding: 7px 10px;
    }

    .vission_sec.vission_sec_a .tab-content {
        margin-top: 10px;
    }

    .partnerships {
        font-size: 28px;
    }

    .vission_sec .nav-tabs {
        padding: 3px;
    }

    .side-bar-list li a {
        font-size: 28px;
        line-height: 28px;
    }

    .side-bar-list li a::after {
        right: -60px;
        width: 40px;
    }

    .mission_box_text {
        font-size: 20px;
    }

    .mission_box_text {
        padding: 10px 0px 0px 0px;
    }

    .mission_box_text.mission_box_1 {
        padding: 10px 0px 70px 0px;
    }

    .vission_sec .nav-pills .nav-link {
        padding: 5px 6px;
        font-size: 15px;
    }

    .vission_sec .nav-pills {
        padding: 5px;
    }

    .number_middle p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 374px) {

    .header-main .navbar-brand,
    .innder_logo {
        width: 185px;
    }

    .col_releative {
        margin-top: -50px;
    }

    .sticky_box h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .sticky_box {
        padding: 20px;
    }

    .sticky_box h4 {
        font-size: 23px;
    }

    .purpose_sec::before {
        height: 420px;
    }

    .rich_text p {
        font-size: 20px;
    }

    .vission_sec .nav-tabs button {
        padding: 7px 6px;
        min-width: 110px;
        font-size: 12px;
    }

    .sticky_tab {
        padding: 20px 0px;
    }

    .text_download {
        font-size: 16px;
    }

    .side-bar-list li a {
        font-size: 26px;
        line-height: 26px;
    }

    .side-bar-list li a::after {
        right: -40px;
        width: 30px;
    }

    .vission_sec .nav-pills .nav-link {
        padding: 5px 4px;
        font-size: 13px;
    }

    .vission_sec .nav-pills .nav-link.ms-2 {
        margin-left: 4px !important;
    }

    .number_middle p {
        font-size: 19px;
    }
}