@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 15px !important;
}

::selection {
    background: var(--tealish-blue-color);
    color: #fff;
}

:root {
    --orang-color: #f37124;
    --tealish-blue-color: #223066;
    --text-color: #677a9b;
    --border-color: #bac4d3;
    --footer-color: #bcc5d2;
    --card-color: #EEF2F7;
    --green-color: #89B13F;
}

.bg_card {
    background: var(--card-color);
}

.text_theme {
    color: var(--tealish-blue-color);
}

.text_green {
    color: var(--green-color) !important;
}

a {
    text-decoration: none;
}

.mt-40 {
    margin-top: 40px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all .5s ease-in-out;
}

.navbar-brand img {
    width: 140px;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    display: block;
}

.nav-link {
    color: var(--tealish-blue-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--orang-color);
}


@media only screen and (max-width: 1133px) and (min-width: 992px) {
    .nav-link {
        color: var(--tealish-blue-color);
        font-weight: 500;
        padding: 0.5rem 0.5rem !important;
    }

}




@media (min-width: 992px) {
    .mrg_responsive_left {
        margin-left: 5%;
    }
}

.btn-blue {
    background: var(--tealish-blue-color) !important;
    border: 1px solid var(--tealish-blue-color) !important;
    color: #fff !important;
}

.btn-orange {
    background: var(--orang-color) !important;
    border: 1px solid var(--orang-color) !important;
    color: #fff !important;
}

.outline_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.outline_btn {
    padding: 8px 20px;
    border: 1px solid var(--text-color);
    border-radius: 0;
    color: var(--text-color);
    transition: all .3s ease-in-out;
    text-align: center;
}

.city_btn_width {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.outline_btn:hover {
    border: 1px solid var(--tealish-blue-color) !important;
    color: #fff !important;
    background: var(--tealish-blue-color) !important;
}

.btns {
    border-radius: 0;
    padding: 8px 20px;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btns-hover {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: -100%;
    transition: all .3s ease-in-out;
}

.btns:hover .btns-hover {
    left: 0;
}

.top_banner_home {
    position: relative;
    height: 80vh;
    padding: 50px 0px;
    display: flex;
    align-items: center;
}

.top_banner_home h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--tealish-blue-color);
}

.top_banner_home h1 span {
    color: var(--orang-color);
}

.top_banner_home h4 {
    font-size: 2rem;
    color: var(--tealish-blue-color);
    font-weight: 600;
}

.top_banner_home p {
    font-size: 1rem;
}










.top_banner {
    position: relative;
    /* height: 80vh; */
    padding: 50px 0px;
    display: flex;
    align-items: center;
}



.top_banner_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
}

.top_banner h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--tealish-blue-color);
}

.top_banner h1 span {
    color: var(--orang-color);
}

.top_banner h4 {
    font-size: 2rem;
    color: var(--tealish-blue-color);
    font-weight: 600;
}

.top_banner p {
    font-size: 1rem;
}

.title_3,
.title_2,
.title {
    color: var(--tealish-blue-color);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title_3 span,
.title_2 span,
.title span {
    color: var(--orang-color);
}

.title_2 {
    font-size: 2.5rem;
}

.title_3 {
    font-size: 1.6rem;
}

.city_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tealish-blue-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding-bottom: 0.9rem;
    position: relative;
}

.city_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 30px;
    background: var(--tealish-blue-color);
}

.city_title::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    height: 4px;
    width: 60px;
    background: var(--orang-color);
}

.title_with_bg {
    position: relative;
    padding: 0.5rem 1rem 0.5rem 1.2rem;
    display: inline-block;
    background: linear-gradient(to right, rgb(243, 113, 36, 0.3), rgb(243, 113, 36, 0.0));
}

.title_with_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 12px;
    background: var(--orang-color);
}

.link {
    color: var(--tealish-blue-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.3rem;
    transition: all .3s ease-out;
}

.link-2 {
    color: var(--tealish-blue-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.3rem;
    transition: all .3s ease-out;
}

.link-2:hover {
    color: var(--orang-color);
}

.link-2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--orang-color);
    transition: all .3s ease-out;
}

.link-2:hover::before {
    width: 100%;
}

.link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--tealish-blue-color);
    transition: all .3s ease-out;
}

.link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--orang-color);
    transition: all .3s ease-out;
}

.link:hover::after {
    width: 100%;
}

.link:hover {
    color: var(--orang-color);
}

.core_value_box {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all .3s ease-out;
    overflow: hidden;
    height: 100%;
}

.core_value_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
    background: var(--orang-color);
    border-radius: 100%;
    transition: all .3s ease-out;
    opacity: 0;
    z-index: -1;
}

.core_value_box:hover {
    color: #fff;
    border: 1px solid transparent;
}

.core_value_box:hover::before {
    opacity: 1;
    height: 600px;
    width: 600px;
}


.core_value_area .col-lg-4:last-child .core_value_box {
    background: var(--orang-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
}


.core_value_area .col-lg-4:last-child .core_value_box img {
    width: 50px;
    transition: all .3s ease-out;
}

.core_value_area .col-lg-4:last-child .core_value_box:hover img {
    transform: translateX(-30px);
}

.side_bg_area {
    position: relative;
    padding: 100px 0;
}

.side_bg_area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    background: url(../img/home/we_carry_your_trust_full_w.png) no-repeat;
    background-position: center right;
}

.side_bg_area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    background: #2230665e;
}

.track_box {
    border-radius: 15px;
    background: #eef0f4;
    padding: 4rem;
    position: relative;
}

.track_box .track_box_icon_img {
    width: 60px;
    margin-bottom: 3rem;
}

.track_box_icon {
    position: absolute;
    top: -35px;
    left: 118px;
    width: 50%;
}

.track_box .form-control {
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.6rem;
}

.list_style_none {
    list-style: none;
}

.style_arrow li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.style_arrow li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    height: 10px;
    width: 20px;
    background: url(../img/logo_icon/li_style_orange.png) no-repeat;
    background-position: center;
    background-size: contain;
}

.count_area {
    background: url(../img/home/count_area_bg.png) no-repeat, linear-gradient(to top, var(--tealish-blue-color), var(--tealish-blue-color));
    background-size: contain;
    background-position: center center;
    padding: 50px 0;
}

.count_box_area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 40px;
}

.count_box_icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}

.count_box div:nth-child(2),
.count_box div:nth-child(2) b {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.count_title {
    color: var(--orang-color);
    font-size: 1.1rem;
}

.input_group {
    border: 1px solid var(--tealish-blue-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 1rem;
}

footer .input_group {
    border: 1px solid var(--footer-color);
}

footer .input_group .form-control {
    color: var(--footer-color);
}

footer .input_group .form-control::placeholder {
    color: var(--footer-color);
}

.input_group .form-control {
    width: 70%;
    border: none;
    height: 100%;
    background: transparent;
    margin-bottom: 0 !important;
}

.input_group .form-control:focus {
    box-shadow: none;
}

.title_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.network_box {
    border: 1px solid var(--tealish-blue-color);
    padding: 3rem;
    height: 100%;
}

.network_title {
    font-size: 1.8rem;
    color: var(--tealish-blue-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.network_box ul li:first-child {
    color: var(--orang-color);
    font-weight: 600;
}

.network_box ul li:nth-child(2) a {
    color: var(--text-color);
}

.footer_logo {
    width: 180px;
}

footer {
    background: var(--tealish-blue-color);
    padding: 10px 0;
    color: var(--footer-color);
}

.footer_menu_title {
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 20px;
}

.footer_menu_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 40px;
    background: var(--orang-color);
}

.footer_link_m90 {
    margin-top: 90px;
}

.footer_link {
    color: var(--footer-color);
    line-height: 2;
    position: relative;
    padding-bottom: 0.2rem;
    transition: all .3s ease-out;
    font-size: 14px;
}

.footer_link:hover {
    color: var(--orang-color);
}

.footer_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--orang-color);
    transition: all .3s ease-out;
}

.footer_link:hover::before {
    width: 100%;
}

.social_media {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social_media img {
    width: 35px;
    display: inline-flex;
    gap: 1rem;
    transition: all .3s ease-out;
}

.social_media img:hover {
    transform: translateY(-5px);
}

.copyright {
    background: var(--orang-color);
    padding: 1rem 0;
}

.copyright_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tealish-blue-color);
}

.copyright_flex p {
    color: #fff;
    margin: 0;
}

.copyright_flex div {
    display: flex;
    gap: 1rem;
}

.copyright_flex a {
    color: var(--tealish-blue-color);
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.copyright_flex a:hover {
    color: var(--footer-color);
}

.otherpage_banner {
    height: 100%;
    margin-top: 80px;
}

.banner_mini_title {
    font-size: 1.4rem;
}

.top_banner_img_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 50%;
    border-radius: 50px 0 0 50px;
    background: url(../img/about_us/top_right_img.webp) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.our_expertice_bg {
    background: url(../img/expertise/expertise_top.webp) no-repeat;
    background-size: cover;
}

.our_express_cargo_bg {
    background: url(../img/express_cargo/top_img.webp) no-repeat;
    background-size: cover;
}

.our_road_transport_bg {
    background: url(../img/road_transport/03_02_road_transport-5.webp) no-repeat;
    width: 45%;
    background-position: center;
}

.our_customers_bg {
    background: url(../img/customers/03_01_express_cargo-5.webp) no-repeat;
    background-size: cover;
}

.network_page {
    background: url(../img/network/top_right.webp) no-repeat;
    background-size: cover;
}


.top_banner_img_2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #2230665e;
    z-index: 1;
}

.otherpage_banner h4 {
    font-size: 1.6rem;
}

.mission_box {
    padding: 1rem 1rem 2rem;
    position: relative;
    margin-bottom: 2rem;
    margin-left: 2rem;
}

.mission_box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    height: 6px;
    width: 50px;
    background: var(--tealish-blue-color);
}

.mission_title {
    font-size: 2.5rem;
    color: var(--tealish-blue-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card_01 {
    position: relative;
    transition: all .3s ease-in-out;
}

.card_01_body {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 2rem 2rem 4rem;
    background: #22306698;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    color: #CAD1EA;
    transition: all .3s ease-in-out;
}

.card_01 .title {
    font-size: 2rem;
    color: #fff;
}

.card_01_body div:only-child {
    transform: translateY(100px);
    transition: all .5s ease-in-out;
}

.card_01:hover div:only-child {
    transform: translateY(0);
}

.card_01:hover div:only-child p {
    opacity: 1;
}

.card_01 div:only-child p {
    opacity: 0;
    transition: all .5s ease-in-out;
}

.icon_box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.icon_box {
    padding: 2rem;
    transition: all .3s ease-out;
    height: 100%;
}

.icon_box:hover {
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
}

.career_box {
    position: relative;
    border-radius: 10px;
    background: var(--card-color);
    border: none;
}

.career_box::before {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 0;
    height: 40%;
    width: 3px;
    background: var(--tealish-blue-color);
    transition: all .3s ease-in-out;
}

.career_box:hover::before {
    bottom: 50%;
}

.tb_b_box .title {
    color: var(--tealish-blue-color);
    font-size: 2rem;
}

.tb_b_box {
    position: relative;
    padding: 2rem 1rem;
    transition: all .5s ease-in-out;
}

.tb_b_box::after,
.tb_b_box::before {
    content: "";
    position: absolute;
    left: 1rem;
    height: 4px;
    width: 50px;
    background: var(--tealish-blue-color);
    transition: all .5s ease-in-out;
}

.tb_b_box::before {
    top: 0;
}

.tb_b_box::after {
    bottom: 0;
}

.tb_b_box:hover::before,
.tb_b_box:hover::after {
    left: 0;
    width: 100%;
}

.text_padding {
    padding: 0 8rem;
}

.navbar-toggler {
    position: relative;
    height: 20px;
    width: 30px;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar_toggler,
.navbar-toggler::after,
.navbar-toggler::before {
    content: "";
    position: absolute;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--tealish-blue-color);
}

.navbar-toggler::before {
    top: 0;
}

.navbar_toggler {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler::after {
    bottom: 0;
}

.wp_icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 45px;
    width: 45px;
    background: #57bf4e;
    color: #fff !important;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 100%;
    animation: wp_icon 3s infinite linear;
}

@keyframes wp_icon {
    0% {
        transform: translateY(-15px) rotate(5deg) translateX(2px);
        outline: 2px solid #57bf4eaf;
    }

    5% {
        transform: translateY(-15px) rotate(5deg) translateX(2px);
        outline: 10px solid #57bf4e50;
    }

    10% {
        transform: translateY(-15px) rotate(-5deg) translateX(-2px);
        outline: 2px solid #57bf4eaf;
    }

    15% {
        transform: translateY(-15px) rotate(5deg) translateX(2px);
        outline: 10px solid #57bf4e50;
    }

    20% {
        transform: translateY(-15px) rotate(-5deg) translateX(-2px);
        outline: 2px solid #57bf4eaf;
    }

    25% {
        transform: translateY(-15px) rotate(5deg) translateX(2px);
        outline: 10px solid #57bf4e50;
    }

    30% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    40% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    50% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    60% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    70% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    80% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    90% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }

    100% {
        transform: translateY(0) rotate(0) translateX(0);
        outline: none;
    }
}


.express_card {
    border: 1px solid #dae1ea;
    position: relative;
    height: 100%;
    background: #fff;
}

.express_body {
    padding: 3rem;
    background: #fff;
}

.express_img {
    background-color: #000;
    position: relative;
    text-align: center;
}


.express_img img {
    width: 100%;
}

.express_title h3 {
    color: var(--tealish-blue-color);
    font-weight: 700;
}

.back-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .4s ease-in;
    background: linear-gradient(to right, rgb(34 48 102), rgb(243, 113, 36));
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.thid-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .4s ease-in;
    background: linear-gradient(to right, rgb(243, 113, 36), rgb(34 48 102));
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.express_card:hover .back-card {
    transform: rotate(5deg);
    box-shadow: 0 -10px 26px -5px rgba(254, 114, 0, 0.671);
}

.express_card:hover .thid-card {
    transform: rotate(-5deg);
    box-shadow: 0 -10px 26px -5px rgba(254, 114, 0, 0.671);
}

.required .control-label {
    position: relative;
}

.required .control-label:after {
    content: "*";
    position: absolute;
    color: var(--orang-color);
}

.form-control {
    margin-bottom: 1rem;
    border-radius: 3px !important;
    padding: 10px;
    border: 1px solid #6a79894f;
}

.form-check {
    display: inline-block;
    padding-left: 2rem;
}

form label {
    color: var(--text-color);
}

.form-control::placeholder {
    color: var(--text-color);
}

.btn_submit {
    padding: 1.5rem;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.form_text {
    font-size: 1.1rem;
    font-weight: 800;
}

.form_back {
    background-color: #e4e8ef;
    padding: 25px;
    border-radius: 15px;
}

.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    /* color: #212529; */
    /* background-color: #fff; */
    border-color: var(--orang-color);
    outline: 0;
    box-shadow: none;
}

/* .client {
    height: 185px;
    border: 1px solid #c3cedb;
    border-radius: 10px;
    display: grid;
    place-items: center;
} */

.client_logo {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    border: 1px solid var(--border-color);
}

.client_logo:hover {
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
}



.client_logo img {
    width: 60%;
    object-fit: contain;
}

.client_logos .col-lg-3:nth-child(7) img {
    height: 80%;
    width: 60%;
}


.form_text1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial {
    background-color: white;
    padding: 30px 30px 50px;
    margin: 15px;
    position: relative;
    border: 1px solid #c3cedb;
}

.testimonial .description {
    color: #777;
    text-align: justify;
    opacity: 0.9;
}

.testimonial::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 27px;
    background: url(../img/customers/qution.webp) no-repeat;
    height: 50px;
    width: 50px;
}

.owl-controls {
    margin-top: 20px;
}

.owl-pagination {
    display: flex;
    justify-content: center;
}

.owl-page {
    height: 10px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
    margin-left: 10px;
}

.cont a {
    color: var(--text-color);
    word-break: break-all;
}

.form_control1 {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #d9daed;
    margin-bottom: 0px !important;
}

.cont_img {
    width: 40px;
    height: 40px;
}

.cont_img img {
    /* height: 100%; */
    width: 100%;
    object-fit: cover;
}

.cont {
    text-align: start;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.play_store {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: fit-content;
    padding: 0.3rem 0.3rem;
    border-radius: 3px;
    background: #fff;
    margin-top: 0px;
    transition: all .3s ease-in-out;
    color: var(--tealish-blue-color);
}

.play_store:hover {
    background: var(--orang-color);
    color: #fff !important;
}

.play_store_title {
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.2;
}

.play_store_title span {
    font-size: 0.775rem;
}

.play_store img {
    width: 25px;
}

.custome_dropdown {
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--border-color);
}

.custome_dropdown .dropdown-item {
    padding: 0.5rem 0.8rem;
    /* border-bottom: 1px solid var(--border-color); */
    font-size: 15px !important;

}

.custome_dropdown .dropdown-item:hover {
    color: var(--orang-color);
    background: rgba(0, 0, 0, 0.05);
    font-size: 15px !important;
}

.network_branch {
    border: 1px solid #ccd1e5;
    padding: 1rem;
    border-radius: 10px;
    min-height: 100%;
    text-transform: capitalize;
}

.network_branch h4 {
    color: #f37124;
    font-weight: 600;
    font-size: 20px;
}

.network_box_1 {
    position: relative;
    background: #dbd8d8;
    padding: 7rem;
    border-radius: 15px;
    perspective: 1000px;
    transition: all .3s ease-in-out;
    transform-style: preserve-3d;
}

.network_info {
    background: var(--orang-color);
    color: #fff;
    border-radius: 15px;
    padding: 1rem;
    height: 200px;
    transition: all .3s ease-in-out;
    transform-style: preserve-3d;
    position: absolute;
    width: 90%;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    overflow-y: scroll;
    z-index: 1;
}

.network_info li {
    font-size: 0.95rem;
    padding-bottom: 1rem;
}

.network_info .link {
    color: #fff;
}

.network_info .link::before {
    background: #fff;
}

.network_info .link:hover {
    color: var(--tealish-blue-color);
}

.network_info .link:hover::after {
    background: var(--tealish-blue-color);
}

.network_box_1:hover .network_info {
    transform: translateY(-80%) translateX(-50%);
    /* transition-delay: 0.3s; */
}

/* width */
.network_info::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.network_info::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.network_info::-webkit-scrollbar-thumb {
    background: var(--tealish-blue-color);
    border-radius: 10px;
}

.network_body {
    background: rgb(235, 235, 232);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 2rem;
    border-radius: 50px 8px 15px 15px;
    color: var(--tealish-blue-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    /* box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45); */
    z-index: 2;
    transition: all .3s ease-in-out;
}

.network_box_1:hover .network_body {
    box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45);
}

.network_body p {
    font-size: 13px;
    font-weight: 500;
}

.network_box_1_switch {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tealish-blue-color);
    /* border-radius: 15px 15px 0 0; */
    border-radius: 50px;
    z-index: 2;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    height: 25px;
    width: 60px;
    z-index: 1;
    cursor: pointer;
}

.network_box_1_switch::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    background: #fff;
    transition: all .3s ease-in-out;
}

.network_box_1:hover .network_box_1_switch::before {
    left: 40px;
    background: var(--green-color);
}

.accordion-button:not(.collapsed) {
    color: #f37124;
    background-color: #f3712421;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.form_back {
    border: 1px solid #d8dbe9;
    padding: 20px 20px;
    background-color: #f6f6f7;
    border-radius: 15px;
    margin-bottom: 15px;
}

.trackinarea {
    border: 1px solid #6a79894f;
    border-radius: 3px;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    padding: 0.2rem;
}

.trackinarea_title {
    font-size: 0.9rem;
    font-weight: 500;
    animation: blink 1s infinite linear;
}

@keyframes blink {

    100%,
    0% {
        color: #000;
    }

    50% {
        opacity: 0.5;
    }
}

.trackinarea input {
    border: none;
    padding: 0rem 0.5rem;
}

.trackinarea input,
.trackinarea input::placeholder {
    font-size: .7rem !important;
}

.trackinarea .btn-orange {
    padding: 0;
    height: 25px;
    width: 40px !important;
    border: none !important;
    border-radius: 3px;
    font-size: 0.8rem;
}

.circle {
    background: var(--orang-color);
    color: #fff;
    height: 25px;
    width: fit-content;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 0.7rem;
    padding: 0 .5rem;
}

.search-suggestions {
    position: absolute;
    width: 97.5%;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
}

.suggestion:hover {
    background-color: #f0f0f0;
}

.barcode {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
}

.wpcode {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    gap: 1rem;
    align-items: center;
    background: #fff;
}

.wpcode .footer_menu_title {
    color: var(--tealish-blue-color);
    font-weight: 600;
}

.same_img_box {
    height: 400px;
    overflow: hidden;
}

.same_img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.table_tr_padding td {
    padding: 1rem !important;
}
.table_tr_padding tr td:nth-child(1) {
    font-weight: 600;
}