:root {
    --bg-color-default: #00368f;
    --color-default: #00368f;
    --primary: #2878eb;
    --secondary: #6c757d;
    --light: #ecf4ff;
    --dark: #120f2d;
}

@font-face {
    font-family: "suzuki-regular";
    src: url("../../../fonts/suzukipro-regular.ttf");
}
@font-face {
    font-family: "suzuki-bold";
    src: url("../../../fonts/suzukipro-bold.ttf");
}
@font-face {
    font-family: "suzuki-headline";
    src: url("../../../fonts/suzukipro-headline.ttf");
}

@font-face {
    font-family: "NotoSansKhmer";
    src: url("../../../fonts/NotoSansKhmer-Regular.ttf");
}
/* @font-face {
    font-family: "Krasar";
    src: url("../../../fonts/Krasar-Regular.ttf");
} */

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

body {
    font-family: "suzuki-regular", "NotoSansKhmer" !important;
    font-size: 0.98rem !important;
    overflow-x: hidden;
}

/* Scroll bar stylings */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--lightestgrey);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #afafaf;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a5a5a5;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.text-color-default {
    color: var(--color-default);
}
.border-color-default {
    border-color: var(--color-default) !important;
}
.shadow-inset {
    box-shadow: inset 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.text-justify {
    text-align: justify;
}

.text-justify-last-center {
    text-align: justify;
    text-align-last: center;
}

.btn {
    font-family: "suzuki-regular", "suzuki-bold", "NotoSansKhmer";
    font-weight: 600;
    transition: 0.5s;
}

.btn-color-default {
    background-color: var(--bg-color-default);
    border-color: var(--bg-color-default);
}

.btn-color-default,
.btn-primary,
.btn-secondary,
.btn-primary:hover,
.btn-secondary:hover {
    color: #ffffff;
}

.btn-color-default:hover {
    color: #fff;
    background-color: var(--bg-color-default);
    border-color: var(--bg-color-default);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-outline-color-default {
    color: var(--color-default);
    border-color: var(--color-default);
}

.btn-outline-color-default:hover {
    color: #fff;
    background-color: var(--bg-color-default);
    border-color: var(--color-default);
}

.link-explore-more {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
.link-explore-more::before {
    font-family: bootstrap-icons !important;
    content: "\F138";
    position: absolute;
    opacity: 0;
    right: -20px;
    transform: rotateZ(90deg);
    transition: all 0.5s ease;
}

.link-explore-more:hover {
    padding-right: 24px;
    padding-left: 8px;
}

.link-explore-more:hover:before {
    opacity: 1;
    right: 0px;
    transform: rotateZ(0deg);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.omc-bussiness-container {
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        url(/assets/img/omc/banner_background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-attachment: scroll;
    min-height: 94dvh;
    /* background-image: url(/assets/img/omc/banner_background.webp); */
}

.omc-bussiness-item {
    padding: 0 !important;
}
/* page loading */

#pageloading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 99999;
}

.pageloading-spin-box {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 15%;
    width: 15px;
    height: 15px;
    box-shadow: 15px 15px var(--color-default), -15px 15px #dfdfdf,
        -15px -15px var(--color-default), 15px -15px #dfdfdf;
    -webkit-animation: pageloadingspin ease infinite 4s;
}

@-webkit-keyframes pageloadingspin {
    0%,
    100% {
        box-shadow: 15px 15px var(--color-default), -15px 15px #dfdfdf,
            -15px -15px var(--color-default), 15px -15px #dfdfdf;
    }

    25% {
        box-shadow: -15px 15px #dfdfdf, -15px -15px var(--color-default),
            15px -15px #dfdfdf, 15px 15px var(--color-default);
    }

    50% {
        box-shadow: -15px -15px var(--color-default), 15px -15px #dfdfdf,
            15px 15px var(--color-default), -15px 15px #dfdfdf;
    }

    75% {
        box-shadow: 15px -15px #dfdfdf, 15px 15px var(--color-default),
            -15px 15px #dfdfdf, -15px -15px var(--color-default);
    }
}
/* language style */
.wp-navbar-action-language {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.language-toggle {
    display: flex;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
}

.language-toggle li.active {
    background-color: #003690;
}

.language-toggle li {
    width: 31px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    list-style: none;
    margin: 0 2px;
    font-size: 1.1rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.language-toggle li.active a {
    color: #ffffff;
}

.language-toggle li a {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: bolder;
}

/*End language style */

/* search */

.overlay-c-page {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 10;
    display: none;
}
.overlay-c-page.show {
    display: block;
}

.full-search-box-header {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-full-search-header {
    height: 30px;
    width: 30px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    /* letter-spacing: 2px; */
    outline: none;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    background-color: #e8e8e8;
    color: black;
}

.input-full-search-header::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 100;
    color: transparent;
}

.btn-full-search-header {
    width: 30px;
    height: 30px;
    border-style: none;
    font-size: 14px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #000000;
    /* background-color: transparent; */
    pointer-events: painted;
    z-index: 99;
}
.input-full-search-header.input-show {
    width: 370px;
    background-color: white;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
    position: absolute;
    right: 29px;
    border-radius: 0px;
    top: -3px;
    border-bottom: 1px solid rgb(0 0 0 / 50%);
    height: 35px;
    padding-left: 20px;
    z-index: 99;
}

.full-search-box-header > .search-results {
    width: 370px;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
    position: absolute;
    right: 29px;
    border-radius: 0px;
    top: 35px;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 0.4rem !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem !important;
    z-index: 9999;
}

.full-search-box-header > .search-results ul {
    list-style-type: none;
    justify-content: center;
}

.full-search-box-header > .search-results ul li.list-group-item {
    padding: 0;
    height: 41px;
}

.full-search-box-header > .search-results ul li.list-group-item:hover {
    background-color: #f5f5f5;
}

.full-search-box-header > .search-results ul li.list-group-item a {
    font-size: 13px;
    color: inherit;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0.7rem 1rem;
    left: 0;
}

.btn-full-search-header:focus ~ .input-full-search-header::placeholder {
    color: black !important;
}

.btn-full-search-header:focus,
.btn-full-search-header:focus:not(:focus-visible) {
    color: rgb(0, 0, 0) !important;
}

.input-full-search-header:focus
    .full-search-box-header
    > .btn-full-search-header {
    color: white !important;
}

/* end search */
.omc-logo {
    min-width: 180px;
}
.navbar-light .navbar-nav .nav-link {
    font-family: "suzuki-regular", "NotoSansKhmer";
    position: relative;
    margin-left: 30px;
    padding: 18px 5px;
    font-size: 1rem;
    /* font-weight: 500; */
    color: black !important;
    outline: none;
    white-space: nowrap;
    /* letter-spacing: 0.02em; */
    /* transition: 0.5s; */
}

@media (min-width: 1400px) {
    .container-main-layout {
        max-width: 1820px;
    }
}

.rounded-4 {
    border-radius: 0.4rem !important;
}
.rounded-5 {
    border-radius: 0.5rem !important;
}
.rounded-6 {
    border-radius: 0.6rem !important;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 18px 6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--color-default) !important;
    /* font-weight: 600; */
}
.navbar-light .navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--bg-color-default);
    transition: width 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
    transition: width 0.3s;
}

.navbar-item-toggler-icon {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: white;
    font-size: 1.5em;
}
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse.show .wp-navbar-action {
        flex-direction: column !important;
    }
    .navbar-collapse.show .wp-navbar-action .full-search-box-header {
        align-self: center !important;
        margin-bottom: 12px;
    }
    .navbar-collapse.show
        .wp-navbar-action
        .full-search-box-header
        .input-full-search-header.input-show {
        position: relative !important;
    }
}

@media (max-width: 1480px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1440px;
    }
    .navbar-nav {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 17px 3px;
        margin-left: 25px;
    }

    .omc-bussiness-container {
        padding-top: 1rem !important;
    }

    ul.omc-product-flip-card-back-menu {
        padding: 0 5% !important;
    }

    .omc-product-flip-card-front img {
        min-height: 66dvh !important;
    }

    .flip-card-logo-sm-img-product {
        max-width: 90px !important;
        max-height: 90px !important;
    }

    .heading-title-bottom-line {
        font-size: 1.2rem !important;
    }
    .about-us-content > div.mb-4 {
        margin-bottom: 1rem !important;
    }
    .about-us-content p {
        font-size: 0.8rem;
    }

    .sharp
        .omc-product-flip-card-inner
        .omc-product-flip-card-back
        .omc-product-flip-card-back-bd-item
        img {
        width: 85%;
    }

    .ioc
        .omc-product-flip-card-inner
        .omc-product-flip-card-back
        .omc-product-flip-card-back-bd-item
        img {
        width: 85%;
    }
    .h4-heading-title {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 1200px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 15px 0;
        width: fit-content;
    }

    .navbar-collapse.show {
        border-top: 1px solid #c5c5c5;
        padding-top: 15px;
        margin-top: 8px;
    }
}
@media (max-width: 1199px) {
    .omc-bussiness-container {
        padding-top: 15px !important;
    }
    .omc-bussiness-row {
        margin-top: 0 !important;
    }

    .about-us-container {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .about-us-content {
        width: 100% !important;
        margin: 0 auto;
    }

    .about-us-img-mas {
        display: none;
    }
    .about-us-img-mas-full {
        display: flex !important;
    }
}

@media (max-width: 786px) {
    body {
        font-size: 0.9rem !important;
    }
    .wp-navbar-logo-footer {
        justify-content: left !important;
    }
    .wp-navbar-logo-footer > img {
        max-width: 180px;
    }
    .omc-footer-section-top .our-map {
        margin-top: 20px;
    }
    .our-logo-bottom {
        margin-top: 30px;
        width: 50%;
    }
    .our-social-link {
        width: 50%;
        margin-top: 38px;
    }
    .our-social-link div.justify-content-center {
        justify-content: end !important;
        padding-top: 0 !important;
    }
    .our-social-link div.justify-content-center a {
        border: none;
        color: #00368f;
        font-size: 1.2rem;
    }

    .our-all-rights-reserved {
        margin-top: 5px;
        /* text-align: start !important; */
        width: 100%;
    }

    /* .omc-footer-section-bottom .our-logo-bottom{
        width: 20%;
    }
    .omc-footer-section-bottom .our-social-link {
        width: 80%;
    } */

    .navbar-header-logo-base {
        width: 50% !important;
        margin-left: 3%;
    }
    /* .container-fluid-header-top img {
        height: 540px !important;
    } */
    .h4-heading-title,
    .heading-title-bottom-line {
        font-size: 1.2rem;
    }
    .h4-heading-title {
        min-height: 45px;
    }
    .heading-content {
        font-size: 0.9rem !important;
    }
    h5 {
        font-size: 1.1rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    /* padding & margin */
    .p-5 {
        padding: 1rem !important;
    }
    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .py-4 {
        padding-top: 0.8rem !important;
        padding-bottom: 0.8rem !important;
    }
    .pb-5 {
        padding-bottom: 1rem !important;
    }
    .mb-5 {
        margin-bottom: 1rem !important;
    }
    .mx-5 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .mx-3 {
        margin-right: 0.6rem !important;
        margin-left: 0.6rem !important;
    }
}
@media (max-width: 500px) {
    .navbar.navbar-expand-lg {
        padding: 5px !important;
    }
    .omc-bussiness-container {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    .omc-bussiness-container-all-flip {
        padding: 0;
        margin: 0;
    }
    .omc-product-flip-card,
    .omc-product-flip-card-inner,
    .omc-product-flip-card-front,
    .omc-product-flip-card-front img {
        min-height: 25dvh !important;
    }
    .omc-bussiness-row {
        margin-top: 0 !important;
    }
    .omc-bussiness-container-all-flip .omc-bussiness-item {
        margin: 5px 0 !important;
        padding: 0 !important;
    }
    .omc-product-flip-card-back
        .flip-card-content-container
        .flip-card-logo-sm-img {
        height: 40px !important;
    }
    .flip-card-logo-sm-img-product {
        max-width: 33px !important;
        max-height: 33px !important;
    }
    .omc-product-flip-card-front .suzuki-logo {
        width: 30% !important;
        padding-bottom: 0;
    }
    .omc-product-flip-card-front .sharp-logo {
        width: 40% !important;
        padding-top: 0 !important;
    }
    .omc-product-flip-card-front .ioc-logo {
        width: 40% !important;
    }
    .omc-product-flip-card-back .omc-product-flip-card-back-bd-item img {
        width: 35% !important;
    }
    .ioc-building-small {
        width: 25% !important;
    }
    .omc-product-flip-card-front .flip-text {
        font-size: 12px !important;
    }
    .omc-product-flip-card-back
        .omc-product-flip-card-back-bd-item
        .link-explore-more {
        font-size: 12px !important;
    }
    .omc-bussiness-item
        .sharp
        .omc-product-flip-card-back
        .omc-product-flip-card-back-bd-item
        img,
    .omc-bussiness-item
        .ioc
        .omc-product-flip-card-back
        .omc-product-flip-card-back-bd-item
        img {
        display: flex;
        justify-self: center;
        margin: 0 auto;
    }
    .omc-bussiness-item
        .ioc
        .omc-product-flip-card-back
        .flip-card-content-container
        .flip-card-logo-sm-img
        img {
        height: 100% !important;
        margin-top: 0 !important;
    }
    .omc-bussiness-container-content-encircle {
        width: 30px !important;
        height: 30px !important;
        bottom: 1% !important;
        border: solid 2px #b5b5b5 !important;
    }
    .omc-bussiness-container-content-encircle .ic-arrow-down {
        margin-top: 3px !important;
    }
    .suzuki .omc-product-flip-card-inner .omc-product-flip-card-back-menu {
        margin: 16px auto !important;
        width: fit-content;
        white-space: nowrap;
    }
    .suzuki-product-item {
        display: contents !important;
    }
    .about-us-container {
        padding-bottom: 0;
        margin: 10px 0 !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .about-us-content {
        padding-top: 0 !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .omc-footer-section-top,
    .omc-footer-section-bottom {
        padding: 0;
    }
    /* 
    .omc-product-flip-card-front img {
        min-height: 400px !important;
    } */
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 15, 45, 0.5);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }

    .input-full-search-header.input-show {
        width: 300px !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-indicators {
    align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
    width: 5px;
    height: 25px;
}

.carousel-indicators .active {
    height: 45px;
}

.carousel-item-img {
    object-fit: cover;
    width: 100dvw;
    height: 92dvh;
}
.heading-title {
    font-family: "suzuki-bold", "NotoSansKhmer";
}
.heading-content {
    font-family: "suzuki-regular", "NotoSansKhmer" !important;
    font-size: 1.05rem;
    text-align: justify;
}
.h4-heading-title {
    position: relative;
    width: 100%;
    margin: auto;
    font-family: "suzuki-bold", "NotoSansKhmer";
}

.h4-heading-title::before {
    content: "";
    display: block;
    width: 30px;
    height: 7px;
    background-color: #00368f;
    margin: 2px auto 0 auto;
    position: absolute;
    bottom: 0;
    border-radius: 30px 0px 30px 0;
    left: 47%;
    top: 35px;
}

.h4-heading-title::after {
    content: "";
    display: block;
    width: 21px;
    height: 7px;
    background-color: #00368f;
    margin: 2px auto 0 auto;
    position: absolute;
    border-radius: 30px 0px 30px 0;
    right: 47.1%;
    top: 35px;
}

.heading-title-bottom-line {
    position: relative;
    width: fit-content;
    font-family: "suzuki-bold", "NotoSansKhmer";
}

.heading-title-bottom-line::after {
    content: "";
    display: block;
    width: 35%;
    height: 3px;
    background-color: #00368f;
    margin: 2px auto 0 auto;
    position: absolute;
    bottom: -8px;
    left: 2px;
}

.about-us-container {
    width: 38%;
}
.about-us-img-mas > .about-us-img {
    /* width: 587px;
    height: 442px; */
    /* width: 565px;
    height: 425px; */
    width: 100%;
}
.about-us-img-mas-full {
    display: none;
}
.about-us-img-mas-full > .about-us-img {
    width: 100%;
}
.app-container-rightsidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 10px 0 0 10px;
    z-index: 999;
}

.app-container-rightsidebar-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-container-rightsidebar-icon-list i {
    font-size: 18px;
    color: #ffffff;
}

.app-container-rightsidebar-icon-list .icon-list-item {
    margin-bottom: 5px;
    background-color: #00368f;
    padding: 12px 15px 10px 15px;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    position: relative;
    bottom: 0;
    width: 55px;
    right: 0;
    z-index: 1;
    transition: width 400ms;
}

.app-container-rightsidebar-icon-list:hover .icon-list-item {
    width: 190px;
    text-align: left;
    cursor: pointer;
}

.app-container-rightsidebar-icon-list .icon-list-item span {
    position: absolute;
    transition: 0.4s;
    text-align: center;
    opacity: 0;
}

.app-container-rightsidebar-icon-list:hover .icon-list-item span {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.app-container-rightsidebar-icon-list .icon-list-item:hover span {
    font-weight: bold;
}

.app-container-rightsidebar-icon-list .icon-list-item span::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.app-container-rightsidebar-icon-list li:hover span::after {
    width: 100%;
    transition: width 0.3s;
}

a.link-explore-more::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s;
}
a.link-explore-more:hover::after,
a.link-explore-more.active::after {
    width: 100%;
    transition: width 0.3s;
}

.btn-link-explore-more {
    cursor: pointer;
    text-align: center;
    font-size: 0.87rem;
    transition: all 0.4s;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.btn-link-explore-more:after {
    font-family: bootstrap-icons !important;
    content: "\F138";
    position: absolute;
    opacity: 0;
    right: -20px;
    transition: 0.4s;
}

.btn-link-explore-more:hover span {
    padding-right: 10px;
}

.btn-link-explore-more:hover:after {
    opacity: 1;
    right: 10px;
}

.service-item div {
    z-index: 1;
}

.service-item div::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transition: 0.5s;
    z-index: -1;
}
.service-item .service-link-detail {
    position: absolute;
    bottom: 0;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
}
.service-item:hover div::after {
    height: 20%;
    background: #ffffff;
    opacity: 0.4;
    transition: 0.4s;
}

.service-item:hover .service-link-detail {
    opacity: 1;
}
.promos-link-detail {
    font-size: 0.75rem !important;
}

.bg-color-default {
    background-color: var(--bg-color-default);
}
.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 5px;
    height: 25px;
    background: #dddddd;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item .testimonial-text * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #ffffff !important;
}

.blog-date {
    position: absolute;
    width: 90px;
    height: 65px;
    top: 75px;
    left: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary);
}

.blog-date::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -25px;
    left: 0;
    border: 13px solid;
    border-color: transparent #d34351 #d34351 transparent;
    z-index: -1;
}

.omc-product-flip-card {
    perspective: 1000px;
    min-height: 400px;
    margin: 0 10px;
    /* Set a minimum height for the flip card */
}

.omc-product-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    text-align: center;
    background-color: white;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.omc-product-flip-card-front,
.omc-product-flip-card-back {
    position: absolute;
    top: 0;
    /* Set the top and left properties to ensure */
    left: 0;
    /* the front and back cards are overlaid on each other */
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.omc-product-flip-card-front,
.omc-product-flip-card-back {
    /* ... existing styles ... */
    backface-visibility: hidden;
}

.omc-product-flip-card-front {
    background-color: transparent;
    min-height: 400px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    /* Ensure the front card stays on top initially */
}

.omc-product-flip-card-front img {
    min-height: 62dvh;
    margin-bottom: 15px;
}

.omc-product-flip-card-front .suzuki-logo {
    width: 50%;
    padding-bottom: 30px;
}

.omc-product-flip-card-front .sharp-logo {
    width: 74%;
    padding-top: 18px;
}

.omc-product-flip-card-front .ioc-logo {
    width: 74%;
}

.omc-product-flip-card-back {
    transform: rotateY(-180deg);
}

.omc-product-flip-card:hover .omc-product-flip-card-inner {
    transform: rotateY(180deg);
}

.omc-product-flip-card-front > .flip-text {
    position: absolute;
    color: #000000;
    padding: 10px;
    border-radius: 5px;
    bottom: 0;
    width: 100%;
    font-weight: 600;
}

.omc-product-flip-card-back {
    box-sizing: border-box;
    background-color: white;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    gap: 15px;
    z-index: 2;
}

.omc-product-flip-card-back .flip-card-content-container {
    width: 100%;
    height: 100%;
}

.omc-product-flip-card-back
    .flip-card-content-container
    .flip-card-logo-sm-img {
    background-color: white;
    padding: 13px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    height: 70px;
}

@keyframes productFlipFadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================ *\ CSS \* ============================ */

ul.omc-product-flip-card-back-menu {
    margin: 30px auto;
    padding: 0;
    list-style-type: none;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10%;
}

ul.omc-product-flip-card-back-menu a {
    width: 100%;
}

.omc-product-flip-card-back-menu-item.suzuki-product-item {
    margin: 7% 0 7% 12% !important;
}

.omc-product-flip-card:hover ul.omc-product-flip-card-back-menu > li {
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #fff;
    opacity: 0;
    animation-name: productFlipFadeInAnimation;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(1) {
    animation-delay: 0.1s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(2) {
    animation-delay: 0.2s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(3) {
    animation-delay: 0.3s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(4) {
    animation-delay: 0.4s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(5) {
    animation-delay: 0.5s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(6) {
    animation-delay: 0.6s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(7) {
    animation-delay: 0.7s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(8) {
    animation-delay: 0.8s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(9) {
    animation-delay: 0.9s;
}

.omc-product-flip-card:hover
    ul.omc-product-flip-card-back-menu
    > li:nth-child(10) {
    animation-delay: 1s;
}

.omc-product-flip-card-back-body {
    margin-bottom: 10px;
    text-align: start;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
}

.omc-product-flip-card-back-bd-item span::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s;
}

.omc-product-flip-card-back-bd-item:hover span::after {
    width: 100%;
    transition: width 0.3s;
}

/*  */

.our-bussiness-bt-action {
    background-color: transparent;
    border: none;
}

.our-bussiness-bt-action img {
    animation: bussinessBTAnimation 2s ease infinite;
}

@keyframes bussinessBTAnimation {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.container-fluid-header-top {
    position: relative;
}
.container-fluid-header-top img {
    /* height: 740px; */
    max-height: 740px;
}
.container-fluid-header-top .container-fluid-header-top-content {
    position: absolute;
    bottom: 15px;
    left: 30px;
}

.container-fluid-header-top-content .header-top-content-display {
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
    background-color: rgb(63 63 63 / 50%);
}
.container-fluid-header-top-content .bt-link-more::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    color: white;
    background-color: #ffffff;
    transition: width 0.3s;
}

.container-fluid-header-top-content .bt-link-more {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.container-fluid-header-top-content .bt-link-more:hover {
    padding-right: 6px;
    padding-left: 6px;
}

.container-fluid-header-top-content a.bt-link-more:hover::after,
.container-fluid-header-top-content a.bt-link-more.active::after {
    width: 100%;
    transition: width 0.3s;
}
