:root {
    --primary-color: #1F2F61;
    --secondary-color: #00C1ED;
}

body {
    padding: 0px;
    margin: 0px;
    color: #000;
    font-size: 16px;
    font-family: 'Open Sans', Arial, Helvetica sans-serif;
    max-width: 100vw !important;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

p {
    line-height: 2;
    margin: 0;
}

.owl-theme .owl-dots {
    margin-top: 20px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
}

.page-wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

@media( max-width: 991px) {
    body {
        font-size: 15px;
        max-width: 100vw !important;
        overflow-x: hidden;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }
}


/*-------------------------PRELOADER----------------*/

.preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader span {
    width: 100px;
    height: 100px;
    position: relative;
}

.preloader span:after,
.preloader span:before {
    position: absolute;
    content: "";
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    animation: rotate_icon 1s .5S linear infinite;
}

.preloader span:before {
    position: absolute;
    content: "";
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-color);
    animation: rotate_icon 1.5s linear infinite;
}

@keyframes rotate_icon {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.od_vertical_spacer {
    height: 50px;
    width: 100%;
}


/*--------------------------------HEADER-----------------------*/

header {
    background: #fff;
    position: relative;
    z-index: 99;
    padding: 15px 0px;
}

.site_logo {
    width: 180px;
}

.menu_items {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 15px;
}

.menu_items ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    margin-bottom: 15px;
}

.menu_items li {
    padding: 0px 15px;
    display: inline-block;
}

.menu_items li:last-child {
    padding-right: 0;
}

.menu_items a {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
    padding: 2px 8px;
    position: relative;
}

.menu_items a:after {
    position: absolute;
    bottom: -2px;
    left: 20px;
    content: "";
    height: 3px;
    width: 0;
    background: var(--primary-color);
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.menu_items a:before {
    position: absolute;
    bottom: -2px;
    left: 8px;
    content: "";
    height: 3px;
    width: 0;
    background: var(--secondary-color);
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.menu_items li a:hover::after,
.menu_items li a:hover::before {
    width: 70%;
}

.search_box {
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #b0b0b0;
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
    width: 140px;
    padding: 4px 10px 4px 30px;
    background: url(../assets/icons/search_icon.svg);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 20px auto;
    transition: all 0.3s ease-in-out;
    margin-bottom: 15px;
}

.search_box:focus,
.search_box:active {
    border-color: #000;
    color: #000;
    width: 190px;
}

.od_menu_overlay {
    position: fixed;
    top: -50px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    z-index: 990;
    opacity: 0;
    transform: translate(110%, 0);
    transition: all 1s ease-in-out;
}

.od_menu_overlay.active {
    opacity: 1;
    transform: translateX(0);
}

@media( max-width: 1199px) {
    .menu_items ul {
        margin-right: 20px;
    }
    .menu_items li {
        padding: 0px 10px;
        display: inline-block;
    }
    .site_logo {
        width: 130px;
    }
}

@media( max-width: 991px) {
    .site_logo {
        width: 85px;
    }
    .search_box {
        box-shadow: none !important;
        outline: none !important;
        border: 1px solid #fff;
        color: #fff !important;
        font-size: 14px;
        margin: 0;
        width: 140px;
        padding: 4px 10px 4px 30px;
        background: url(../assets/icons/search_icon-white.svg);
        background-repeat: no-repeat;
        background-position: 5px center;
        background-size: 20px auto;
        transition: all 0.3s ease-in-out;
    }
    .menu_items {
        position: fixed;
        top: -20px;
        right: 0px;
        width: 300px;
        height: calc( 100vh - 60px);
        background: var(--primary-color);
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        z-index: 999;
        transform: translate(110%, 0) !important;
        box-shadow: -10px 0px 30px rgba(0, 0, 0, 0);
        transition: all 1s ease-in-out;
    }
    .menu_items.active {
        transform: translate(0, 0) !important;
        box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.2);
    }
    .menu_items li {
        padding: 10px 0px;
        display: block;
    }
    .menu_items li a {
        color: #fff !important;
    }
    .menu_items li a:after,
    .menu_items li a:before {
        display: none;
    }
    .search_box {
        margin-bottom: 20px;
    }
    .search_box:focus,
    .search_box:active {
        border-color: #fff;
        color: #fff;
        width: 220px;
    }
    .close {
        position: absolute;
        top: 40px;
        right: 30px;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        cursor: pointer;
    }
    .hamburger {
        border: 1px solid #c0c0c0;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        position: relative;
        cursor: pointer;
    }
    .close span,
    .hamburger span {
        width: 20px;
        height: 2px;
        background: #a0a0a0;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 10px;
    }
    .close span {
        background: #fff !important;
    }
    .close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .hamburger span {
        transform: translate(-50%, -50%);
    }
    .hamburger span:first-child {
        transform: translate(-50%, calc( -50% - 6px));
    }
    .hamburger span:last-child {
        transform: translate(-50%, calc( -50% + 6px));
    }
}

@media( max-width: 767px) {
    .site_logo {
        margin: 0px;
        width: 90px;
    }
    header {
        padding: 10px 0px;
    }
}


/*-----------------------BANNER SLIDER------------------*/

.od_content_holder {
    position: relative;
    width: 100%;
}

.od_content_holder h1 {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 72px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    display: inline;
    padding-left: 35px;
}

.od_content_holder.banner-slide-02 h1,
.od_content_holder.banner-slide-03 h1 {
    left: 17%;
}

.od_content_holder.banner-slide-03 h1,
.od_content_holder.banner-slide-04 h1 {
    top: 22%;
}

.od_content_holder.banner-slide-04 h1 {
    left: 55%;
}

.od_content_holder h1:after,
.od_content_holder h1:before {
    position: absolute;
    content: "";
    top: 12px;
    bottom: 6px;
    left: 0;
    width: 12px;
    background: var(--secondary-color);
    z-index: 2;
}

.od_content_holder h1:before {
    background: var(--primary-color);
    z-index: 3;
    bottom: 48%;
}

.od_content_holder img,
.od_content_holder .owl-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
}

.od_content_holder img {
    max-height: 700px;
    object-position: center bottom;
    object-fit: cover;
}

@media( max-width: 1550px) {
    .od_content_holder img {
        max-height: 530px;
        object-position: center bottom;
        object-fit: cover;
    }
}

.values .od_content_holder:before,
.fleet .od_content_holder:before {
    background: var(--primary-color);
}

.od_custom_btn {
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #000;
    border-radius: 0px;
    font-size: 15px;
    padding: 8px 30px;
    color: #000 !important;
    min-width: 150px;
    font-weight: 500;
    position: relative;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.od_custom_btn:hover {
    border-color: transparent;
    color: #fff !important;
}

.od_custom_btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
    width: 0;
    transition: all 0.4s ease-in-out;
}

.od_custom_btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    z-index: 0;
    width: 0;
    transition: all 0.4s ease-in-out;
}

.od_custom_btn:hover::after {
    width: 100%;
    ;
}

.od_custom_btn:hover::before {
    width: 10px;
    ;
}

.od_read_more_area_large .col-12,
.small_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 25px;
}

.od_read_more_area_large p {
    padding: 20px 0;
}

.small_area p {
    min-height: 150px;
    margin: 0;
}

.fleet.od_read_more_area_large p {
    padding-top: 15px;
}

.od_read_more_area_large ul {
    padding: 0 0 0 20px;
    width: 100%;
    margin: 20px 0 40px;
}

.od_read_more_area_large.small_area ul {
    padding: 20px 0 20px 20px;
    width: 100%;
    margin: 0;
    min-height: 150px;
}

.od_read_more_area_large ul p {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: unset;
    padding-left: 40px;
}

.od_read_more_area_large.small_area ul p {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: unset;
    padding-left: 20px;
}

.small_area .od_content_holder:before {
    width: 100%;
    height: 30px;
    background: var(--primary-color);
}

.small_area .od_content_holder.alt:before {
    background: var(--secondary-color);
}

.small_area .od_content_holder h1 {
    position: static;
    color: var(--primary-color);
    font-size: 34px;
    line-height: 50px;
    min-height: 120px;
    margin: 0;
    padding: 10px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: none !important;
}

.small_area .od_content_holder h1:after,
.small_area .od_content_holder h1:before {
    display: none;
}

.small_area .od_content_holder {
    border-bottom: 8px solid var(--primary-color);
}

.small_area .od_content_holder.alt {
    border-bottom-color: var(--secondary-color);
}

.od_content_holder img,
.od_content_holder .owl-carousel {
    position: relative;
    z-index: 1;
}

.od_content_holder img {
    min-height: 250px;
    object-fit: cover;
}

.od_content_area {
    background: var(--primary-color);
    color: #fff !important;
    position: relative;
    padding: 55px 30px;
}

.od_content_area:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 41.666667%;
    height: 40px;
    z-index: 3;
    background: var(--secondary-color);
}

.od_content_area h2 {
    font-weight: 700;
    font-size: 42px;
}

@media( max-width: 1199px) {
    .od_content_holder h1 {
        font-size: 65px;
    }
    .od_content_area h2 {
        font-size: 40px;
    }
    .small_area .od_content_holder h1 {
        font-size: 28px;
        line-height: 40px;
    }
}

@media( max-width: 992px) {
    p {
        font-size: 15px;
        line-height: 1.8;
    }
    .od_content_holder h1 {
        font-size: 55px;
    }
    .od_content_area h2,
    .small_area .od_content_holder h1 {
        font-size: 34px;
        line-height: 36px;
    }
    .od_content_holder:before,
    .od_content_area:before {
        height: 30px;
    }
    .small_area .od_content_holder:before {
        height: 20px;
    }
    .small_area .od_content_holder {
        border-bottom-width: 5px;
    }
    .od_custom_btn {
        margin-top: 20px;
        border: none !important;
        color: #fff !important;
    }
    .od_custom_btn:after {
        width: 100% !important;
    }
    .od_custom_btn:before {
        width: 8px !important;
    }
}

@media( max-width: 767px) {
    .od_content_holder h1 {
        font-size: 40px;
    }
    .od_content_area h2,
    .small_area .od_content_holder h1 {
        font-size: 34px;
        line-height: 36px;
    }
    .od_read_more_area_large ul,
    .od_read_more_area_large p {
        min-height: auto !important;
    }
    .od_read_more_area_large.small_area {
        margin-bottom: 40px;
    }
    .od_content_holder:before,
    .od_content_area:before {
        height: 30px;
    }
    .small_area .od_content_holder {
        border-bottom-width: 5px;
    }
    .od_custom_btn {
        margin-top: 20px;
        border: none !important;
        color: #fff !important;
    }
    .od_custom_btn:after {
        width: 100% !important;
    }
    .od_custom_btn:before {
        width: 8px !important;
    }
}

@media( max-width: 575px) {
    .od_content_holder:before,
    .od_content_area:before {
        height: 20px;
        width: 40%
    }
    .od_content_holder h1 {
        left: 20px;
        top: 40px;
        font-size: 36px;
    }
    .od_content_area h2,
    .small_area .od_content_holder h1 {
        font-size: 28px;
        line-height: 1.4;
    }
    .small_area .od_content_holder:before {
        display: none;
    }
    .small_area .od_content_holder {
        border-top: 20px solid var(--primary-color);
    }
    .small_area .od_content_holder.alt {
        border-top-color: var(--secondary-color);
    }
    .small_area .od_content_holder h1 {
        min-height: auto;
        padding: 15px 0px;
    }
    .od_vertical_spacer {
        height: 25px;
    }
    .od_read_more_area_large ul p {
        padding-left: 20px;
    }
    .od_content_area {
        padding: 40px 20px;
    }
    .od_custom_btn {
        padding: 13px 30px;
        min-width: 180px;
    }
}


/*------------------------------FOOTER--------------------*/

footer {
    background: #bbbdbf;
    padding-top: 50px;
}

.footer-logo {
    width: 250px;
}

footer ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.footer-menu li {
    padding-bottom: 10px;
}

.footer-menu li a {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}

.footer-social-links {
    margin: 0
}

.footer-social-links li {
    margin-bottom: 15px;
}

.footer-social-links li:last-child {
    margin-right: 0px;
}

.footer-social-links img {
    width: auto;
    height: 30px;
}

footer p {
    color: #231f20;
    margin: 30px 0px;
}

footer p a {
    color: #231f20 !important;
}

@media( max-width: 767px) {
    .footer-logo {
        margin-top: 50px;
    }
}


/*-------------UPDATE 25/02/2021---------------------*/

.fleet.banner .od_content_holder:before,
.about-page .values .od_content_holder::before {
    background: var(--secondary-color);
}

.fleet-page .od_content_holder::before {
    background: var(--primary-color) !important;
}

.small_area p,
.od_read_more_area_large.small_area ul {
    min-height: 230px;
}

.menu_items a.active {
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
}

.short-head {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 22px;
}

.short-head.alt {
    color: var(--secondary-color);
}

.services-page .od_vertical_spacer,
.qhse-page .od_vertical_spacer {
    height: 50px;
}

.services-page .od_read_more_area_large ul p {
    padding-left: 15px;
}

.fleet-page h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 0px;
}

.fleet-page .red h4 {
    color: var(--secondary-color);
}

.fleet-item {
    padding-top: 40px;
    padding-bottom: 15px;
}

.fleet-item .fleet-item-head h5 {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    min-width: 41.666667%;
    margin: 0px;
    padding: 6px 15px;
}

.fleet-item .fleet-item-head {
    display: block;
    position: relative;
}

.fleet-item .fleet-item-head:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 3px;
    background: var(--primary-color);
    content: "";
}

.fleet-item-content-row {
    padding-top: 20px;
}

.fleet-item .fleet-img-holder {
    height: 220px;
    width: 100%;
    background: var(--primary-color);
}

.fleet-item .fleet-img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.fleet-item .od_custom_btn {
    border-color: transparent;
    background: var(--secondary-color) !important;
    font-weight: 600;
}

.red .fleet-item .od_custom_btn {
    border-color: transparent;
    background: var(--primary-color) !important;
    font-weight: 600;
    color: #fff !important;
}

.red .fleet-item .od_custom_btn::after {
    background: var(--secondary-color);
}

.red .fleet-item .od_custom_btn::before {
    background: var(--primary-color);
}

.fleet-item .od_custom_btn:hover {
    border-color: var(--primary-color);
}

.red .fleet-item .fleet-item-head h5,
.red .fleet-item .fleet-item-head:after,
.red .fleet-item .fleet-img-holder {
    background: var(--secondary-color);
}

.fleet-detail-head {
    background: var(--primary-color);
}

.fleet-detail-head h2 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
}

.qshe-logos img {
    max-height: 110px;
}

@media( max-width: 767px) {
    .fleet-page h4 {
        font-size: 30px;
    }
    .fleet-item .fleet-item-head h5 {
        font-size: 20px;
    }
    .qshe-logos img {
        max-height: 80px;
    }
}

.red-bg {
    background: var(--secondary-color);
}

.blue-bg {
    background: var(--primary-color);
}

.fleet-detail-page h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
    padding: 15px 0px;
    margin: 0px;
}

.fleet-detail-page .content-left h5,
.fleet-detail-page .content-right h5 {
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
}

.fleet-detail-page .content {
    padding: 10px 15px;
}

.fleet-detail-page .content p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}


/*-------------------UPDATES  -----   10/03/2021 ------------------*/

h2.section-head {
    font-weight: 700;
    font-size: 42px;
    color: var(--secondary-color);
    margin: 0;
}

h2.section-head.alt {
    color: var(--primary-color);
}

.qhse .od_content_holder h1,
.fleet .od_content_holder h1,
.values .od_content_holder h1 {
    font-size: 58px;
    left: 10%;
    top: 15%;
    transform: none !important;
}

.fleet .od_content_holder h1 {
    top: 20%;
}

.values .od_content_holder h1 {
    top: 25%;
}

.qhse .od_content_holder h1 {
    left: 45%;
}

.qhse .od_content_holder img,
.values .od_content_holder img,
.fleet .od_content_holder img {
    height: 600px;
    max-height: none !important;
    min-height: none !important;
}

.page-title {
    height: 35vw;
    background-color: var(--primary-color);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 350px;
}

.page-title h1 {
    position: relative;
    color: #fff;
    font-size: 68px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    padding-left: 35px;
    margin-bottom: 0;
}

.services-page .page-title h1 {
    color: #000;
}

.page-title h1:after,
.page-title h1:before {
    position: absolute;
    content: "";
    top: 12px;
    bottom: 6px;
    left: 0;
    width: 12px;
    background: var(--secondary-color);
    z-index: 2;
}

.page-title h1:before {
    background: var(--primary-color);
    z-index: 3;
    bottom: 48%;
}

.services-page .page-title,
.qhse-page .page-title,
.contact-page .page-title {
    padding-top: 80px;
}

.services-page .od_read_more_area_large .od_content_holder h1 {
    color: #fff !important;
    top: 70%;
    font-size: 58px;
}

.qhse-page .page-title h1 {
    margin-left: 45%;
}

.certificate-holder {
    background: #d7dbec;
    padding: 20px;
    text-align: center;
}

.certificate-holder img {
    width: 100%;
    margin: 0px auto;
    max-width: 480px;
}

.contact-page p {
    line-height: 2.5;
}

.contact-page form label {
    line-height: 2.5;
    margin: 0px;
    padding: 0px;
    min-width: 180px;
}

.contact-page textarea {
    resize: none;
}

input.od_custom_btn {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: var(--secondary-color) !important;
    color: #fff !important;
    padding: 10px 30px;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    padding: 12px 20px;
    border-radius: 0;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: var(--primary-color);
}

label.error {
    color: #EF3D23;
    font-size: 13px;
}

input.od_custom_btn {
    text-transform: uppercase;
    font-weight: 700;
}

@media( min-width: 992px) {
    .certificate-holder.left {
        padding-right: 10px;
    }
    .certificate-holder.right {
        padding-left: 10px;
    }
    .fleet-page .page-title h1 {
        left: 50%;
        transform: translateX(-10%);
    }
}

@media( max-width: 991px) {
    .od_content_holder img,
    .page-title {
        height: 400px !important;
    }
    .page-title {
        padding-top: 250px;
    }
    .small_area .od_content_holder img {
        height: auto !important;
    }
    h2.section-head,
    .od_content_holder h1,
    .page-title h1 {
        font-size: 42px !important;
    }
    .od_content_holder h1:after,
    .od_content_holder h1:before,
    .page-title h1:after,
    .page-title h1:before {
        top: 8px;
        bottom: 4px;
        width: 10px;
        left: 10px;
    }
    .od_content_holder h1:before,
    .page-title h1:before {
        bottom: 47%;
    }
    .small_area .od_content_holder h1 {
        font-size: 20px !important;
    }
    .small_area .od_content_holder h1 {
        min-height: auto;
    }
    .small_area p,
    .od_read_more_area_large.small_area ul {
        min-height: 260px;
    }
}

@media( max-width: 767px) {
    .qhse .od_content_holder h1 {
        left: 15%;
    }
}

@media( max-width: 500px) {
    .od_content_holder img,
    .small_area .od_content_holder img,
    .page-title {
        height: 300px !important;
    }
    .page-title,
    .services-page .page-title {
        padding-top: 200px;
    }
    .small_area .od_content_holder {
        border-top: none;
    }
    .small_area .od_content_holder h1 {
        min-height: auto;
    }
    h2.section-head,
    .od_content_holder h1,
    .small_area .od_content_holder h1,
    .page-title h1 {
        font-size: 32px !important;
        line-height: 1.1;
    }
    .small_area .od_content_holder h1 {
        font-size: 28px !important;
    }
    .od_content_holder h1 {
        left: 5% !important;
        top: 15% !important;
        transform: none !important;
    }
    .od_content_holder.banner-slide-04 h1 {
        left: 45% !important;
    }
    .od_content_holder.banner-slide-01 h1 {
        left: 30% !important;
    }
    .od_vertical_spacer {
        height: 50px;
    }
    .services-page .od_content_holder h1 {
        top: auto !important;
        bottom: 25% !important;
    }
    .page-title h1 {
        margin-left: 0% !important;
        font-size: 29px !important;
    }
}

@media( max-width: 380px) {
    .od_content_holder img,
    .small_area .od_content_holder img,
    .page-title {
        height: 230px !important;
    }
    .page-title {
        padding-top: 150px !important;
    }
    .od_content_holder h1 {
        left: 2% !important;
    }
    #banner-slider .od_content_holder h1 {
        left: 5% !important;
        top: 60% !important;
    }
    .qhse .od_content_holder h1 br {
        display: none !important;
    }
    #banner-slider .od_content_holder.banner-slide-02 h1,
    #banner-slider .od_content_holder.banner-slide-03 h1 {
        top: 15% !important;
    }
    #banner-slider .od_content_holder.banner-slide-04 h1 {
        top: 15% !important;
        left: 50% !important;
    }
}

.career-page .page-title h1 {
    color: var(--primary-color);
}

.career-page .page-title .container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.career-box {
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
    min-height: 150px;
    padding: 30px 20px;
    min-height: 130px;
    cursor: pointer;
}

.career-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.career-box:hover h2 {
    color: var(--secondary-color);
}

.career-box p {
    font-size: 15px;
    line-height: 1.4;
}

.career-box h5 {
    font-size: 13px !important;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 !important;
    padding-top: 20px;
}

.apply_modal .modal-dialog {
    max-width: 650px;
}

.apply_modal .form-control {
    padding: 2px 15px;
    font-size: 15px;
}

.apply_modal input.form-control {
    padding: 7px 15px;
}

.apply_modal form {
    padding: 20px 20px 30px;
}

.apply_modal label {
    font-size: 15px;
}

.apply_modal .custom-file {
    box-shadow: none !important;
    outline: none !important;
}

.apply_modal select.form-control,
.apply_modal input.form-control {
    min-height: 40px;
}

.youtube-video {
    width: 100%;
    min-height: 330px;
}

@media( max-width: 767px) {
    .youtube-video {
        min-height: 52vw;
        margin-bottom: 40px;
    }
}

.menu_area .container {
    position: relative;
    z-index: 1;
}

.menu_area .cLogo {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 200px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.menu_area .cLogo img {
    width: 130px;
}

.menu_area .cLogo  p {
    color: #111;
    line-height: 1.3;
    font-weight: 600;
    font-size: 11px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    transform: translateY(-25%);
}

.menu_area .cBtn {
    position: absolute;
    top: 0px;
    right: 20px;
    width: auto;
    text-transform: capitalize;
    background: var(--primary-color) !important;
    color: white !important;
}

.menu_area .cBtn:after {
    background: var(--primary-color) !important;
}

@media( max-width: 1199px) and ( min-width: 992px) {
    .menu_items a {
        font-size: 13px;
    }
    .menu_area .cLogo img {
    width: 90px;
}
.menu_area .cLogo {
    width: 150px;
}
.menu_area .cLogo  p {
    font-size: 10px;
}
}

@media( max-width: 991px) {
    .menu_area .cLogo {
        position: absolute;
        top: -5px;
        right: auto;
        left: 120px;
        width: 150px;
    }
    .menu_area .cLogo img {
    width: 90px;
}
    .menu_area .cBtn {
        top: -5px;
        right: auto;
        left: 120px;
    }
}

@media( max-width: 575px) {
    .menu_area .cLogo img {
        width: 95px;
    }
    .menu_area .cLogo {
        gap: 5px
    }
    .menu_area .cLogo p {
        font-size: 9px;
    }
    .menu_area .cBtn {
        position: relative;
    }
}