/* ========== font ========== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sevillana&display=swap');


*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    /* ======= colors ======= */
    --header-second-color: #ccd3d8;
    --logo-and-active-color: #d44d13;
    --light-orange-color: #e15a1f;
    --white: #fff;
    --semilight-white: #eee;
    --light-white: #ccc;
    --black: #000;
    --black2: #222;
    --black3: #333;
    --lighter-black: #545454;
    --light-black: #888;
    --menu-color: #0066b3;
    /* --menu-color: #00aeef; */
    --submenu-color: #ddf8fd;
    --title-bar-color: #f0f0f0;
    --green: #008000;
    --footer-bg: #002335;
    /* ======= z index ========= */
    --z-index-for-responsive: 200;
    --z-index-highest: 110;
    --z-index-submenu: 109;
}

/* ============== common section ============= */
h3 {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 5px 25px;
    color: var(--submenu-color);
    font-size: 1.5em;
    font-weight: 500;
    background: var(--menu-color);
}

.animate-border {
    position: relative;
    display: block;
    width: 115px;
    height: 3px;
    background: var(--logo-and-active-color);
    overflow: hidden;
}

.animate-border::after {
    content: '';
    position: absolute;
    left: 15px;
    width: 35px;
    height: 3px;
    border-left: 10px solid rgb(255, 255, 255);
    border-right: 10px solid rgb(255, 255, 255);
    animation: 2s linear 0s infinite normal none running animborder;
}

@keyframes animborder {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(113px);
    }
}

/* ============== End common section ============= */

/* ====================== search overlay =======================*/
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: var(--z-index-highest);
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay-closebtn a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay-closebtn a:hover,
.overlay-closebtn a:focus {
    color: #f1f1f1;
}

.overlay-closebtn .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.overlay input[type="text"]:focus {
    width: 80% !important;
}

.overlay .input-group {
    width: 50%;
    margin: 0 auto;
}

.overlay .input-group i {
    display: none;
}

.input-group .input-group-text {
    padding: 16px;
}

.searchScrollClass {
    height: 300px;
    overflow-y: scroll;
}

.overlay-search-products-view-container {
    margin: 0 auto;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: start;
    background: #ffffff;
    padding-left: 5%;
    border: 1px solid #f6f7f8;
}

.overlay-search-products-name {
    padding: 10px 5px;
}

.overlay-search-products-name h6 {
    width: 200px;
    text-align: left;
    font-weight: bold;
    margin: 0;
}

.overlay-search-products-name p {
    width: 200px;
    text-align: left;
    font-size: 12px;
    margin: 0;
}

.overlay-search-products-view-container a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    padding: 0 5px;
}

.no-data-found {
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
    padding: 50px;
}

.no-data-found p {
    color: #e15a1f;
    letter-spacing: 1.5px;
}

/* ====================== /search overlay =======================*/
/*======================== navbar menu ========================*/
.headerSection {
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--header-second-color);
    z-index: var(--z-index-highest);
}

.cm-nav {
    position: relative;
    width: 100%;
    padding: 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: wrap;
}

.cm-logo {
    position: relative;
    margin-left: 20px;
}

.cm-logo a {
    position: relative;
    display: flex;
    gap: 5px;
    text-decoration: none;
}

.cm-logo a img {
    height: 50px;
}

.cm-logo a p {
    font-size: 25px;
    color: #0066b3;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.cm-logo a small {
    position: absolute;
    top: 30px;
    right: 15px;
    color: var(--black);
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.cm-logo a small::before {
    content: '';
    top: 10px;
    left: -18px;
    position: absolute;
    width: 16px;
    height: 3px;
    background: var(--light-orange-color);
    border-radius: 5px;
}

.cm-logo a small::after {
    content: '';
    top: 10px;
    right: -22px;
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--light-orange-color);
    border-radius: 5px;
}

.cm-nav .navMenu {
    position: relative;
    margin-top: 20px;
    margin-left: -20px;
    display: flex;
    justify-content: space-between;
}

.navMenu li {
    position: relative;
    list-style: none;
}

.navMenu li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    padding: 5px;
    letter-spacing: 0.05em;
    color: var(--menu-color);
    border-radius: 3px;
    transition: 0.1s;
    display: flex;
    align-items: center;
    gap: 2px;
}

.navMenu li a.active,
.navMenu li a:hover {
    color: var(--submenu-color);
    background: var(--light-orange-color);
}
.navMenu li a i{
    font-size: 18px;
}
.navMenu li a .fa-caret-down {
    font-size: 18px;
    color: var(--menu-color);
}

.navMenu li ul {
    position: absolute;
    top: 25px;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(40px);
    transition: 0.5s;
}

.sub-ul-large {
    left: -250px;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    width: 700px;
    height: 300px;
}

.navMenu li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: var(--z-index-for-responsive);
}

.subLargdrpDwn,
.drpDwn {
    color: #0066b3;
}

.drpDwn {
    position: relative;
    margin-left: -32px;
    padding-right: 20px;
}

.subLargdrpDwn h5,
.drpDwn h5 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 0 0;
}

.subLargdrpDwn h5 {
    margin-left: 5px;
}

.drpDwn h5 {
    margin-left: 15px;
}

.subLargdrpDwn h5::after,
.drpDwn h5::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    display: flex;
    flex-direction: column-reverse;
    background: var(--logo-and-active-color);
}

.navMenu li ul li {
    padding: 5px;
}

.navMenu li ul li a {
    position: relative;
    padding-left: 0;
    color: #0066b3 !important;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--white);
    transition: 0.5s;
}

.navMenu li ul .drpDwn li a {
    margin-left: 10px;
    color: var(--submenu-color);
}

.navMenu li ul li a:hover {
    color: rgba(0, 0, 0, .2) !important;
    text-shadow: 0 0 3px rgba(0, 0, 0, .3);
    background: transparent;
}

.nav-top-right {
    position: relative;
    width: 130px;
}
.res-order-now {
    position: relative;
    width: 130px;
    background: var(--logo-and-active-color);
    display: none !important;
}
.nav-top-right .orderBtn,
.res-order-now .orderBtn{
    position: relative;
    color: var(--submenu-color);
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 5px 20px;
    background: var(--light-orange-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    display: none;
}

.nav-top-right .orderBtn:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ========= responsive icon design ============ */
.menubar-icon {
    display: none;
}
.menubar-icon .fa-bars {
    font-weight: 600;
    color: var(--light-orange-color);
}
/* ========= End responsive icon design ============ */
.first-time-and-launch {
    position: absolute;
    bottom: 3px;
    right: 20px;
}

.first-time-and-launch a {
    position: relative;
    margin-left: 10px;
    padding: 5px 15px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, red, #eee);
    border-radius: 3px;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .5);
}

.first-time-and-launch a:nth-child(2) {
    background: linear-gradient(45deg, var(--light-orange-color), var(--white));
}

.first-time-and-launch a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.launching {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.launching .launching-box {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launching-box .launch-imgBx {
    position: relative;
    width: 350px;
    height: 405px;
    border-radius: 4px;
    overflow: hidden;
}
.launch-imgBx h1{
    position: absolute;
    text-align: center;
    color: rgba(0, 0, 0, .5);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}
.launch-imgBx a{
    position: absolute;
    width: 90%;
    left: 20px;
    bottom: 20px;
    padding: 8px 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    background: #0d6efd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}

.launching-box .launch-imgBx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, transparent, transparent, transparent, rgba(255, 0, 0, 0.5));
} 
.launching-box .launch-imgBx::after {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, transparent, rgba(0, 0, 0, 0.9));
    z-index: var(--z-index-for-responsive); */
}

.launch-imgBx img {
    width: 100%;
    height: 100%;
    z-index: var(--z-index-highest);
}

.launching-box .content {
    position: relative;
    width: 350px;
    height: 405px;
    padding: 20px 20px 20px 35px;
    background: #eee;
    border-left: 3px solid black;
    border-radius: 4px;
}

.launching-box .content h3 {
    margin-bottom: 35px;
    font-size: 18px;
    white-space: nowrap;
}

.launching-box .content h4 {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.3px;
}

.launching-box .content button {
    position: absolute;
    right: 25%;
    bottom: 20px;
    padding: 3px 35px;
    letter-spacing: 0.4px;
}

.first-time-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8), #eee);
}

.first-time-box span {
    position: inherit;
    top: -5px;
    right: 90px;
    font-size: 35px;
    color: var(--logo-and-active-color);
    font-weight: 500;
    cursor: pointer;
    z-index: var(--z-index-highest);
}

.first-time-box span:hover {
    color: var(--light-orange-color);
}

.first-time-box .newProd-container .newImgBx {
    margin: -20px 0 20px;
}

.first-time-box .newProd-container h3 {
    margin-top: -10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
    background: linear-gradient(to bottom, transparent, var(--menu-color));
}

/*======================== End navbar menu ========================*/
/* ======================  home page ================= */
/* ================= news-section =================== */
#news-section {
    position: relative;
}

.news {
    position: absolute;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    background: var(--menu-color);
}

.news::before {
    content: 'Latest News';
    top: 0;
    left: 0;
    padding-left: 10px;
    width: 150px;
    height: 100%;
    color: #f1f1f1;
    font-weight: bolder;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.56px;
    background: var(--light-orange-color);
    box-shadow: inset 1px 0px 5px rgba(0, 0, 0, 0.4),
        inset 2px 0 5px rgba(0, 0, 0, 0.4);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.news::after {
    content: '';
    top: 0;
    right: 0;
    width: 70px;
    height: 100%;
    background: var(--light-orange-color);
    box-shadow: inset -1px 0px 5px rgba(0, 0, 0, 0.4),
        inset -2px 0 5px rgba(0, 0, 0, 0.4);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.news marquee {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--white);
}

/* ==================== End news-section =================== */
/* =============== md chair message =========== */
.msgcont {
    position: relative;
    margin-top: 50px;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.chairmsg>p,
.mdmsg>p {
    width: 535px;
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.7px;
    font-weight: 600;
    padding: 5px 15px;
    background: linear-gradient(45deg, #080768, #02aae3);
}

.mdmsg>p {
    width: 560px;
}

.msg {
    position: relative;
}

.msg .msg-img {
    float: left;
    width: 150px;
    margin-right: 15px;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #080768, #02aae3);
    border-radius: 10px;
}

.msg p {
    text-align: justify;
    font-size: 14.4px;
    color: rgba(0, 0, 0, .67);
    letter-spacing: 0.6px;
}

/* =============== End md chair message =========== */

/* ============ group wise products  ============*/
.grpProdContainer {
    position: relative;
}

.prodBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.prodImg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    transition: 3s;
}

.prodImg a {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--light-orange-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    opacity: 0;
}

.prodImg a small {
    color: var(--white);
    font-size: 10px;
}

.prodImg a:hover {
    opacity: 1;
}

/* ==================== marquee ======= */
.grp-marquee-con {
    position: relative;
    width: 100%;
}

.grp-marquee-con .cm-marqu-con {
    position: relative;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cm-marqu-con .imgBx img {
    transition: 5s;
}

/* ==================== End marquee ======= */
/* ============ End group wise products ============*/

/* ======================= recent new product =============== */
#newProduct {
    position: relative;
}

.newProd-container {
    position: relative;
    margin: 0 auto;
    padding: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.newProd-container .newImgBx {
    position: relative;
    width: 200px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f1f1;
    overflow: hidden;
}

.newImgBx:hover {
    background: white;
    cursor: pointer;
}

.newImgBx .details {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 18%;
    background: var(--menu-color);
    color: var(--title-bar-color);
    line-height: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details:hover {
    color: rgba(255, 255, 255, 0.5);
}

.newProd-container .newImgBx img {
    width: 100%;
    height: 250px;
}

/* ======================= End recent new product =============== */
/* ===================== certificate =============== */

#certified {
    position: relative;
    margin-top: 20px;
}

#certified h3 {
    text-align: center;
}

.certi-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certi-thumb {
    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.certi-thumb .imgBx {
    position: relative;
    width: 280px;
    height: 190px;
    cursor: pointer;
    border: 5px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 1);
    border: 3px solid rgba(0, 0, 0, 0.3);
}

.certi-thumb .imgBx img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: 5s;
}

.imgBx img:hover {
    transform: rotateZ(15deg);
}

.certi-details {
    position: relative;
    top: -600px;
    flex-basis: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.certiClose {
    position: absolute;
    top: 20px;
    right: 100px;
    color: var(--light-orange-color);
    font-size: 2em;
    cursor: pointer;
    z-index: var(--z-index-highest);
}

.certi-details .details-imgBx {
    position: absolute;
    top: 0;
    left: 30px;
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
}

.certi-details .details-imgBx.certiBigImgActive {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 3s;
}

.certi-details .details-imgBx img {
    width: 100%;
    border-radius: 5px;
}

/* ===================== End certificate =============== */
/* =========================  End home page ======================== */

/*========================= photo gallery =====================================*/
.photo-gallery h3, .photo-gallery_dtails h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 120px;
}
.fancybox-container .fancybox-image{
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid var(--light-black);
}
.ccard {
    position: relative;
    width: 95%;
    padding: 20px 0 60px 0;
    box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    text-align: center;
    height: 180px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 10px;
}
.ccard:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.ccard a {
    text-decoration: none;
    display: inline-block;
}
.ccard a img{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
    border-radius: 5px;
}
.ctainer {
    padding: 2px 16px;
    text-transform: uppercase;
}

.ctainer b p {
    color: #000;
}

.padding-bottom {
    padding-bottom: 35px;
}

/*========================= End photo gallery =====================================*/


/*================================ footer =======================================*/
#footerSec {
    position: relative;
    margin-top: 10px;
    height: 150px;
    background: var(--footer-bg);
}

.footerTop {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0 0;
}

.topLeft {
    position: relative;
    width: 85%;
    padding: 0 0 0 20px;
    display: flex;
}

.topLeft ul {
    width: 200px;
}

.topLeft ul:nth-child(1) {
	position: relative;
	margin-top: 25px;
    width: 300px;
}

.topLeft ul:nth-child(1) li a {
    font-size: 30px;
}

.topLeft ul:nth-child(1) li small {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
    color: var(--light-orange-color);
}

.topLeft ul:nth-child(2) li {
    margin-left: 70px;
}

.topLeft ul li {
    width: 100%;
    list-style: none;
}

.topLeft li a {
    color: rgba(255, 255, 255, 0.9);
}

.topLeft h6 {
    padding-bottom: 5px;
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.9px;
    border-bottom: 1px solid var(--white);
}

.h6lineLength {
    width: 120px;
    border-bottom: 1px solid var(--white);
}

.topLeft ul li a {
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.9px;
    text-decoration: none;
}

.topLeft ul li a:hover {
    color: var(--light-white);
}

.topRight {
    position: relative;
    padding: 0 0 0 70px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.topRight a {
    font-size: 20px;
    letter-spacing: 0.9px;
    color: var(--white);
    text-decoration: none;
 }

.topRight>a:nth-child(1) {
    color: var(--light-orange-color);
}

.topRight a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-left: 3px;
}

.social-icons a:hover,
.social-icons a .fa-facebook:hover,
.social-icons a .fa-youtube:hover {
    text-decoration: none !important;
    color: var(--light-white);
}

.social-icons a .fa-facebook,
.social-icons a .fa-youtube {
    padding: 3px;
    font-size: 25px;
}

.footerBottom {
    position: relative;
    width: 100%;
    text-align: center;
    background: var(--menu-color);
}

.footerBottom p {
    color: var(--white);
    letter-spacing: 0.5px;
    font-weight: 300;
    line-height: 35px;
}

/*================================ End footer =======================================*/
/*=======================  products menu section =====================*/
/* ============ product search alphabetic area =========== */
.product-search-indicator {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.product-search-indicator ul {
    position: absolute;
    width: 100%;
    top: 25%;
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #021938;
}

.product-search-indicator ul li {
    list-style: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #ffffff;
}

.product-search-indicator ul li a {
    display: inline-block;
    padding: 7px;
    color: #000000;
    text-decoration: none;
}

.product-search-indicator-letter-backgr {
    background: #021938;
    color: #ffffff !important;
}

.product-search-indicator ul li a:hover {
    color: rgba(0, 0, 0, 0.25);
}

/* ============ End product search alphabetic area =========== */

/* ========therapeutic.blade.php ========== */
.therapeutic {
    position: relative;
    margin-top: 80px;
}
.therapeutic h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.therapeutic .animate-border {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.therapeu-cat-contai {
    position: relative;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    filter: drop-shadow(0 0 150px var(--logo-and-active-color));
}

.therapeu-grp-respon {
    position: relative;
    margin-top: 5px;
    padding: 10px;
    display: none;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .1);
}

.therapeu-grp {
    position: relative;
    padding: 10px 50px;
    background: #f4f4f4;
    border: 1px solid var(--semilight-white);
    border-radius: 5px;
    box-shadow: inset 1px 1px 10px var(--black);
}

.therapeu-grp a {
    text-decoration: none;
    color: var(--black);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.therapeu-grp:hover {
    background: gray;
}

/* ===== end of therapeutic.blade.php ===== */
.products-container {
    position: relative;
    margin: 10px auto 0;
    width: 90%;
}

.products-container h2,
.products-container h4 {
    font-weight: 100;
    letter-spacing: 0.03em;
    text-align: center;
}

.products-container .animate-border {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.prod-inner-container {
    width: 100%;
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    gap: 60px;
}

.product-layout {
    position: relative;
    margin-bottom: 50px;
    display: flex;
}

.product-layout .product-img {
    position: relative;
    width: 350px;
    background: linear-gradient(to bottom, transparent, transparent, transparent, rgba(0, 0, 0, 0.3));
    border-right: 15px solid var(--logo-and-active-color);
    border-top-right-radius: 10px;
    box-shadow: 10px 10px 10px 2px rgba(0, 0, 0, 0.3),
        10px 10px 20px 2px rgba(0, 0, 0, 0.1);
}

.product-layout .product-img img {
    width: 100%;
}

.product-layout .product-descrip {
    position: relative;
    width: 100%;
    background: linear-gradient(45deg, orange, var(--black));
    border-top-left-radius: 10px;
}

.product-descrip .descrip-innr-container {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 0 0 20px;
    box-shadow: 10px 6px 4px -6px var(--light-black);
}

.product-descrip .descrip-innr-container h6 {
    font-weight: bold;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.product-descrip .descrip-innr-container p {
    font-size: 13px;
    color: var(--white);
}

.product-descrip .descrip-innr-container a {
    display: inline-block;
    font-size: 20px;
    font-weight: bolder;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: var(--light-orange-color);
}

.product-descrip .descrip-innr-container a img {
    width: 50px;
    margin-left: 20px;
    transition: 0.5s linear;
}

.product-descrip .descrip-innr-container a:hover img {
    margin-left: 30px;
}

/* ========================== End products menu section =========================*/
/* ---- ===============content section =============--- */
/* under about menu for history submenu page */
.content-history {
    position: relative;
    margin: 150px 100px;
    display: flex;
    justify-content: space-between;
}

.content-history-left {
    width: 25%;
}

.content-history-left p {
    font-size: 15px;
    padding-right: 25px;
    letter-spacing: 1px;
    line-height: 180%;
    text-align: justify;
}

.content-history-right {
    position: relative;
    width: 75%;
}

.content-history-right img {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5),
        -1px -1px 10px rgba(0, 0, 0, .5),
        1px 1px 1px rgba(0, 0, 0, .5);
}

.content-history-divider {
    position: absolute;
    border-left: 5px solid #e15a1f;
    top: 50%;
    left: 15%;
    height: 35%;
    border-radius: 50%;
}

.content-history-right p {
    width: 70%;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 180%;
    margin-top: 50px;
    float: right;
    text-align: justify;
}

/* End under about menu for history submenu page*/
/* under about menu for strategic-view submenu page */
.strategic-container {
    padding: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.03), var(--white));
}

.strategic-container h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.strategic-container h5 {
    text-align: center;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bolder;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px #ff53af;
}

.strategic-container p,
.strategic-container ul li{
    margin: 15px 0;
    padding: 0 0 20px;
    color: rgba(0, 0, 0, 0.68);
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-align: justify;
}
.mission-vission {
    position: relative;
}
.mission-vission .mission-vission-compon {
    position: relative;
    width: 70%;
    margin: 0 auto 20px;
    padding: 10px 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05),
        0 0 50px rgba(0, 0, 0, .05),
        0 0 100px rgba(0, 0, 0, .05),
        inset 0 0 20px rgba(0, 0, 0, .05),
        0 0 80px rgba(0, 0, 0, .1);
    border-bottom: 5px solid #ff53af;
    border-radius: 4px;
}                
.left-arrow {
    position: absolute;
    top: 0;
    left: 0;
    border-left: 15px solid #ff53af;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* End under about menu for strategic-view submenu page */
/* =================== under about menu -- quality policy ========== */
.quality-policy-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #161616;
    padding-bottom: 100px;
}

.quality-header {
    position: relative;
    width: 100%;
    height: 550px;
    text-align: center;
    background: var(--white);
}

.quality-header h1 {
    position: relative;
    margin-top: 100px;
    font-weight: 600;
    line-height: 150px;
    letter-spacing: 2px;
}

.quality-header .animate-border {
    left: 50%;
    transform: translateX(-50%);
}

.quality-policy-img {
    position: relative;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 10px #333,
        0 0 20px 10px #333,
        0 0 30px 10px #333;
}

.quality-policy-img img {
    margin-top: -200px;
    width: 100%;
    border: 10px solid rgba(0, 0, 0, .5);
    border-radius: 10px;
}

/* =================== End under about menu -- quality policy ========== */
/* ================= under about menu for investor ================ */
.investor-container {
    position: relative;
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.invest-sub-cont {
    position: relative;
    width: 70%;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 50px;
}

.invest-sub-cont::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    display: block;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 20px;
}

.invest-sub-cont img {
    flex-basis: 15%;
    width: 105px;
    margin-bottom: 30px;
}

.invest-sub-cont h1 {
    flex-basis: 43%;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.invest-sub-cont p {
    flex-basis: 42%;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.annual-reports {
    position: relative;
    margin-top: 70px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.year-file {
    position: relative;
    line-height: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed gray;
}

.year-file p {
    margin: auto;
    margin-right: 100px;
    letter-spacing: 0.5px;
    font-size: 14px;
    letter-spacing: 1px;
}

.year-file a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.year-file a i,
.year-file a h6 {
    margin: auto;
    letter-spacing: 0.5px;
    color: #e15a1f;
    font-size: 1.2em;
}

.year-file a i {
    margin: 0 10px;
}

.year-file a:hover h6,
.year-file a:hover i {
    color: grey;
    transition: 0.5s all;
}

/* ================= End under about menu for investor ================ */
/* ========================== under about-menu chairman msg ======================== */
.msg-chairman-container {
    margin: 70px 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.msg-chairman-container img {
    width: 350px;
    padding: 20px 0;
    border-radius: 20px;
    border-bottom: 5px solid #e15a1f;
}

.msg-chairman-brief {
    width: 70%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.msg-chairman-title {
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.msg-chairman-title p {
    display: inline;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-left: 15px;
    text-transform: uppercase;
}

.msg-chairman-brief img {
    width: 250px;
    float: left;
    margin: 15px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    box-shadow: 0 0 5px 1px grey;
}

.msg-chairman-brief p {
    margin: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

/* ========================== End under about-menu chairman msg ======================== */

/* ==================== under about menu msg from md sir =========== */
.md-msg-sec {
    position: relative;
    margin: 50px 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.md-msg-sec h4 {
    font-size: 23px;
    font-weight: bolder;
    padding: 20px 0;
    width: 60%;
}

.md-msg-sec h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    top: 4.5%;
    left: 20%;
    background: var(--light-orange-color);
}

.md-msg-sub-sec {
    width: 60%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, .5);
}

.md-msg-sec-img {
    position: relative;
    flex-basis: 34%;
    height: 50vh;
    border: 10px solid var(--light-orange-color);
}

.md-msg-sec-img-box {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 130%;
    height: 80%;
    transform: translateY(-50%);
    box-shadow: 1px 1px 5px 6px rgba(0, 0, 0, .1);
}

.md-msg-sec-img-box .rght-bor {
    float: right;
    margin-right: 23%;
    height: 100%;
    border-right: 11px solid #fff;
}

.md-msg-sec-img-box img {
    margin-top: 20px;
    margin-left: 90px;
    max-width: 120px;
    height: 120px;
    border-radius: 100%;
    background: #d8dfdd;
}

.md-msg-sec-img-box p {
    position: absolute;
    margin: 20px 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.md-msg-sec-para {
    flex-basis: 66%;
}

.md-msg-sec-para button {
    margin: 100px 0 0 110px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    background: #60a8e3;
}

.md-msg-sec-para p {
    margin: 15px 45px 50px 110px;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: justify;
}

.md-msg-sub-sec2 {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 80%;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.5);
}

.md-msg-sub-sec2 .md-msg-part1 {
    position: relative;
    flex-basis: 50%;
}

.md-msg-sub-sec2 .md-msg-part2 {
    position: relative;
    flex-basis: 50%;
}

.md-msg-sub-sec2 .md-msg-part2::before {
    content: '';
    position: absolute;
    top: 200px;
    width: 5px;
    height: 45%;
    background: var(--light-orange-color);
    border-radius: 5px;
}

.md-msg-sub-sec2 p {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1px;
    padding: 20px;
}

/* ==================== End under about menu msg from md sir =========== */
/* ======== under about menu board of director ============= */
.brd-of-dirct-cont {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.brd-of-dirct-cont h2 {
    padding: 100px 0;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brd-of-dirct-cont .animate-border {
    top: -80px;
}

.brd-of-dirct-sub-cont {
    position: relative;
    margin-top: -35px;
    width: 70%;
}

.brd-of-dirct-details {
    position: relative;
    padding: 25px 35px 5px;
    margin-bottom: 50px;
    background: #486062;
}

.brd-of-dirct-details img {
    width: 200px;
    float: right;
    margin-left: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .9);
    border: 10px solid white;
}

.brd-of-dirct-details span {
    color: var(--submenu-color);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 250px 10px 20px;
    background: linear-gradient(45deg, #2196f3, #ff4685);
    border-radius: 3px;
}

.brd-of-dirct-details p {
    margin-top: 30px;
    color: var(--submenu-color);
    text-align: justify;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}

.brd-of-dirct-details p strong {
    color: #e15a1f;
    font-size: 20px;
}

/* ======== End under about menu board of director ============= */
/* ========= under about menu -- obiturary submenu =============*/
.obituary-container {
    margin: 100px auto;
    width: 80%;
    padding-bottom: 50px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .5);
}

.obituary-header-sec {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obituary-about-part {
    flex-basis: 40%;
    margin-left: 100px;
}

.obituary-about-part button {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    padding: 2px 15px;
    background: #525373;
    border-radius: 20px;
}

.obituary-about-part p {
    margin-top: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
}

.obituary-img-part {
    flex-basis: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.obituary-img-part img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.obituary-img-part p {
    margin: 5px;
    padding: 5px 20px;
    letter-spacing: 1px;
    background: #fff;
    border-radius: 10px;
}

.obituary-img-part p:nth-child(2) {
    margin-top: 20px;
}

.obituary-footer-sec {
    width: 90%;
    background: #fff;
}

.obituary-footer-sec p {
    padding: 20px;
    text-align: justify;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
}

.obituary-footer-sec p:nth-last-child(1) {
    margin-top: -30px;
    padding-top: 0;
}

/* ========= End under about menu -- obiturary submenu =============*/
/* =================== under about menu -- executive member ========== */
.executive-mem-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.executive-mem-container h2 {
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 140px;
}

.executive-mem-container .animate-border {
    top: -30px;
}

.executive-mem-container>p {
    font-family: 'Sevillana', cursive !important;
    font-size: 30px;
}

.about-execu-mem {
    margin: 20px 150px;
}

.about-execu-mem p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
}

.execu-mem-sec {
    margin: 0 150px;
}

.individual-execu-mem {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
}

.indivi-execu-mem-title {
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.indivi-execu-mem-title p {
    display: inline;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    margin-left: 40px;
    text-transform: uppercase;
}

.individual-mem-text-img {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: #dddddd;
}

.individual-mem-text-img p {
    margin: 20px 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

.individual-mem-text-img p strong {
    font-size: 20px;
    margin-bottom: 40px;
}

.individual-mem-text-img p strong::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 5px;
    top: 20%;
    left: 40px;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.individual-mem-text-img img {
    margin: 20px;
    width: 250px;
    border-radius: 10px;
}

/* =================== End under about menu -- executive member ========== */
/* ====================== under about menu ---- delta CSR ================= */
.csr-container {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.csr-container h1 {
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 600;
}

.csr-container h1::after {
    content: '';
    width: 10%;
    height: 5px;
    left: 50%;
    display: flex;
    flex-direction: column-reverse;
    transform: translateX(-50%);
    background: #e15a1f;
    position: absolute;
}

.csr-container>p {
    width: 30%;
    background: #f9f9f9;
    border-radius: 15px;
    font-size: 25px;
    color: #545454;
    text-align: center;
    box-shadow: 1px 5px #e15a1f;
    font-family: 'Sevillana', cursive !important;
}

.csr-title-brief-and-md-img {
    width: 70%;
    margin: 50px;
    display: flex;
    justify-content: space-between;
}

.csr-title-brief p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
    margin-right: 40px;
}

.csr-md-img {
    background: #F5F6F7;
    padding: 10px;
    box-shadow: 0 0 10px 2px grey;
}

.csr-md-img h1 {
    margin-top: 100px;
}

.csr-md-img h1::after {
    width: 100px;
    height: 5px;
    left: 12.5%;
}

.csr-md-img h6 {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 60px;
    margin-top: 200px;
}

.csr-md-img p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

.csr-feature-brief {
    margin-top: 50px;
    width: 70%;
}

.csr-feature-brief p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

.csr-other-title {
    margin: 50px;
    width: 70%;
    float: right;
    border-left: 5px solid grey;
}

.csr-other-title h4 {
    margin-left: 30px;
    font-size: 20px;
    font-weight: 600;
}

.csr-other-title p {
    margin: 30px;
}

/* ====================== End under about menu ---- delta CSR ================= */
/* ========================== under about-menu general-information ========================== */
.general-info-container {
    position: relative;
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.general-info-container h1 {
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 120px;
}

.general-info-details {
    position: relative;
    width: 70%;
    margin-top: 50px;
    padding: 80px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.cont-brdrtop-desig {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 25px;
    background: var(--light-orange-color);
}

.cont-brdrtop-desig::before {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    width: 35px;
    height: 40px;
    background: var(--white);
    transform: translate(15px, -3px) rotate(-45deg);
}

.cont-brdrbottom-desig {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 25px;
    background: var(--light-orange-color);
}

.cont-brdrbottom-desig::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 35px;
    height: 40px;
    background: var(--white);
    transform: translate(-15px, -3px) rotate(45deg);
}

.general-info-details p {
    padding: 20px;
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 25px;
}

/* ========================== End under about-menu general-information ========================== */
/* ========================== under about-menu Employee Quality Improvement ========================== */
.employ-quality-impro-container {
    position: relative;
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.employ-quality-impro-container h1 {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 35px;
    line-height: 120px;
}

.employ-quali-impro-details {
    position: relative;
    width: 70%;
    margin-top: 50px;
    padding: 80px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.employ-quali-impro-details p {
    padding: 20px 0;
    text-align: justify;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

/* ========================== End under about-menu Employee Quality Improvement ========================== */
/* ======================== global menu ======================= */
.ibo-container {
    position: relative;
    margin: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(0deg, transparent, #f1f1f1);
}

.ibo-container h1 {
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 120px;
}

.ibo-container .animate-border {
    margin-top: -25px;
}

.ibo-container>p {
    margin-top: 30px;
    color: var(--menu-color);
    font-size: 2.5em;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
    font-family: 'Sevillana', cursive !important;
    text-shadow: 1px 1px 5px #bbb;
}

.ibo-descrip {
    width: 70%;
}

.ibo-descrip .global-footprint {
    position: relative;
    float: right;
    width: 650px;
    padding: 20px 0;
    margin-left: 50px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    border-radius: 5px;
}

.global-footprint .global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.59);
    border-radius: 5px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.9);
}

.global-overlay .global-tools {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.global-tools p {
    color: #ff53af;
    font-size: 1.5rem !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
}

.global-overlay a {
    text-decoration: none;
    color: var(--submenu-color);
    font-size: 1.5rem;
}

.global-overlay a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.global-footprint.increase-global-img {
    position: absolute;
    top: -100px;
    left: -50px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 125%;
    display: flex;
    justify-content: center;
    background: linear-gradient(0deg,#0000d0,#00005c);
    z-index: var(--z-index-for-responsive);
}

.increase-global-img .glImgBx {
    position: absolute;
    top: 5%;
    width: 70%;
    padding: 15px;
    background: linear-gradient(0deg,#0000d0,#00005c);
    border-radius: 10px;
}

.glImgBx span {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    padding: 5px 35px;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    display: none;
    background: var(--logo-and-active-color);
}

.global-footprint .increase-global-img .glImgBx img {
    width: 100%;
    object-fit: cover;
}

.ibo-descrip img {
    width: 95%;
    border-radius: 4px;
}

.ibo-descrip .global-footprint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 50%;
    background: var(--logo-and-active-color);
    border-radius: 4px;
}

.ibo-descrip p,
.ibo-descrip ul li {
    text-align: justify;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
}

.ibo-feature {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ibo-feature hr {
    width: 60%;
    height: 2px;
    background: #e15a1f;
    border-radius: 4px;
}

.we-have-offer {
    width: 70%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
}

.we-have-offer h5 {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 25px;
}

.we-have-offer p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

.we-have-offer p:nth-child(2) {
    margin-top: 70px;
}

.we-have-offer p img {
    width: 35px;
    margin-right: 10px;
    background: var(--light-orange-color);
    border-radius: 5px;
}

.we-have {
    padding-left: 1em;
    text-indent: -2.3em;
}

.we-have p {
    margin-right: 30px;
}

.we-offer {
    padding-left: 1em;
    text-indent: -2.3em;
}

/* ======================== End global menu ======================= */
/* =============== product management under marketing dept. ==========*/
.marketing-pmd-mgt {
    position: relative;
}

.marketing-pmd-mgt h2 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: bolder;
    text-align: center;
    color: #fff;
    padding: 25px 0;
    text-shadow: 2px 2px 40px #fff;
    z-index: 1;
}

.pmd-heading-curv {
    position: absolute;
    top: 0;
    left: 0;
    fill: #35355d;
    width: 100%;
}

.marketing-pmd-mgt p {
    margin: auto;
    margin-top: 100px;
    width: 60%;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 180%;
    text-align: center;
}

.marketing-pmd-mgt p:last-child {
    margin-top: 30px;
}

.mkt-pmd-business-opera {
    position: relative;
    margin-top: 60px;
}

.mkt-pmd-business-opera h2 {
    margin: auto;
    max-width: 450px;
    font-size: 30px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #525373;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: -10px -10px 10px rgba(0, 0, 0, 0.9);
}

.mkt-pmd-business-opera .better_care {
    margin: 20px auto;
    width: 55%;
    text-align: center;
    font-size: 25px;
}

.mkt-pmd-local-mkt {
    margin: 50px auto;
    width: 70%;
}

.mkt-pmd-local-mkt img {
    float: left;
    width: 550px;
    margin-right: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid gray;
}

.mkt-pmd-local-mkt p {
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 25px;
}

.mkt-pmd-distribu-chanl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt-pmd-distribu-chanl strong {
    flex-basis: 40%;
    font-size: 25px;
    letter-spacing: 1px;
    text-align: right;
    margin-right: 20px;
    padding-right: 10px;
    height: 400px;
    border-right: 5px solid #e15a1f;
}

.mkt-pmd-distribu-chanl div {
    flex-basis: 55%;
}

.mkt-pmd-distribu-chanl div p {
    font-size: 15px;
    letter-spacing: 1px;
}

/* =============== End product management under marketing dept. ==========*/
/* ============= sales department submenu under marketing menu ============ */
.sales-dept {
    position: relative;
    margin: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sales-dept h2 {
    margin: 100px 0 10px;
    letter-spacing: 1px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.sales-deptCont {
    position: relative;
    margin-top: 50px;
    width: 70%;
    display: flex;
    border-top: 25px solid var(--light-orange-color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.sales-dpt-sec-one {
    flex-basis: 50%;
}

.sales-dpt-sec-one img {
    width: 100%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
}

.sales-dpt-sec-two {
    position: relative;
    flex-basis: 50%;
}

.sales-dpt-sec-two::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    width: 5px;
    height: 40%;
    background: var(--light-orange-color);
    border-radius: 4px;
}

.sales-dpt-sec-two p {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 120px;
    padding-right: 0;
    word-break: break-all;
}


/* ============= End of sales department submenu under marketing menu ============ */
/* under marketing menu ---> logistics management submenu */
.logistics-dept {
    position: relative;
    margin: 120px 0;
    text-align: center;
}

.logistics-dept .fa-circle-xmark { 
    position: absolute;
    right: 10px;
    font-size: 50px;
    color: var(--logo-and-active-color);
}

.logistics-dept .fa-circle-xmark:hover {
    color: rgba(0, 0, 0, 0.45);
}

.logistics-dept img {
    width: 70%;
}

.logistics-dept-descrip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #F5F6F7;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.9);
}

.logistics-dept-descrip h2 {
    margin: 60px 0;
    letter-spacing: 1px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.logistics-dept-descrip .animate-border {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.logistics-dept-descrip p {
    margin: auto;
    width: 50%;
    padding: 20px 0;
    text-align: justify;
    font-size: 15px;
    letter-spacing: 1px;
}

.logistics-dept-descrip p:last-child {
    padding-bottom: 60px;
}

.logistics-dept-descrip button {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 10px;
}

/* End under marketing menu ---> logistics management submenu */
/* =========================== general info plant ============================= */
.general-info-plant-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.general-info-plant-container h1 {
    letter-spacing: 0.5px;
    line-height: 80px;
}

.general-info-plant-container>p {
    margin-top: 20px;
    border-radius: 15px;
    padding: 8px 20px;
    font-size: 25px;
    color: #545454;
    box-shadow: 0 5px #e15a1f;
    font-family: 'Sevillana', cursive !important;
}

.general-info-plant-short-brief {
    margin-top: 20px;
    width: 70%;
}

.general-info-plant-short-brief p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

.general-info-plant-units {
    width: 80%;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 2;
}

.general-info-plant-production-unit {
    border-left: 15px solid #e15a1f;
    border-radius: 20px;
}

.general-info-plant-production-unit p {
    margin-left: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 120px;
}

.general-info-plant-production-unit p strong {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.general-info-plant-production-unit img {
    width: 100%;
    border-bottom-right-radius: 10px;
    background: var(--white);
}

.general-info-plant-cepha-unit {
    margin-left: 20px;
    border-left: 15px solid #e15a1f;
    border-radius: 20px;
}

.general-info-plant-cepha-unit p {
    margin-left: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 120px;
}

.general-info-plant-cepha-unit p strong {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.general-info-plant-cepha-unit img {
    width: 100%;
    border-bottom-right-radius: 10px;
    background: var(--white);
}

.bottom-backgrnd-color-for-units {
    margin-top: -20px;
    background: #2b2a33;
    width: 100%;
    height: 50vh;
    box-shadow: 0 0 10px 10px rgba(17, 17, 17, 0.9);
}

/* =========================== End general info plant ============================= */
/* ========================== under plant menu quality assurance dept =================== */
.quality-assurance-dept-container {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.quality-assurance-dept-container h1 {
    letter-spacing: 0.5px;
}

.quality-assu-dept-brief {
    position: relative;
    margin-top: 30px;
    width: 65%;
    padding: 50px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.plant-img {
    position: relative;
    margin-bottom: 15px;
}

.plant-img::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, transparent, #0005);
    z-index: var(--z-index-highest);
}

.plant-img.etp-img {
    position: relative;
}

.plant-img.etp-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(255, 0, 0, 0) 70.71%),
        linear-gradient(-90deg,rgba(255, 255, 255, 1), rgba(255, 0, 0, 0) 70.71%);
}

.plant-img img {
    position: relative;
    margin-top: -40px;
    width: 100%;
    padding: 0 15px 15px 15px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    border-radius: 10px;
}

.plant-img p {
    position: absolute;
    top: 380px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    z-index: var(--z-index-highest);
}

.plant-img.qc-para p {
    top: 145px;
}

.prd-para p {
    top: 125px;
}
.warehouse-para p {
    top: 150px;
}

.quality-assu-dept-brief p {
    position: relative;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 25px;
}

.quality-assu-dept-brief p:nth-child(4)::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 20px;
    height: 115%;
    background: var(--light-orange-color);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

/* ========================== End under plant menu quality assurance dept =================== */
/* =================== media ============== */
#media-section {
    position: relative;
}

#media-section>h3 {
    position: relative;
    margin: 50px auto;
    text-align: center;
}

.media-container {
    position: relative;
    margin-bottom: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-container a {
    text-decoration: none;
}

/* ============= video section ========== */
.video-container {
    position: relative;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 300px;
}

.video-box {
    position: relative;
    width: 80%;
    height: 215px;
    margin: 60px auto -50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-content {
    position: relative;
    width: 560px;
    height: 100%;
}

.video-content iframe {
    width: 100%;
    height: 100%;
    box-shadow: -10px 10px 5px rgba(0, 0, 0, .5);
}

.video-title {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-title a {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 25px;
    color: var(--menu-color);
    text-decoration: none;
    border-bottom: 5px solid var(--light-orange-color);
    border-radius: 6px;
}

.video-title a:hover {
    background: rgba(0, 0, 0, .05);
}

/* ============= End video section ========== */
/* =================== End media ============== */
/* ========================== contact information ======================== */
.contact-container {
    margin-top: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gmap-and-comp-addr {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 25px;
}

.gmap-and-comp-addr iframe {
    width: 550px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px grey;
    border: 2px solid #222 !important;
}

.comp-addr h1 {
    font-weight: 600;
    letter-spacing: 1px;
}

.comp-addr p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
}

.comp-email-addr {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(-40deg, #e67e22 10%, #d35400 25%);
    box-shadow: 0 0 10px 20px grey;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.comp-email-addr::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: url('../../products_image/white_wall.png');
}

.comp-email-addr h1 {
    margin-top: 0px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.comp-email-addr a {
    z-index: 1000;
}

.email-addr-left-right {
    width: 80%;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
}

.email-addr-left {
    position: relative;
}

.email-addr-right {
    position: relative;
}

.email-addr-left p,
.email-addr-right p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.email-addr-left strong,
.email-addr-right strong {
    color: #fff;
    font-size: 20px;
}

.email-addr-left-right a {
    color: #fff;
}

.email-addr-left-right a:hover {
    color: rgba(255, 255, 255, .5);
}

/* ========================== End contact information ======================== */

/* ======================= order ================= */
#orderSec {
    position: relative;
    margin-top: 10px;
}

#orderSec .alert-success {
    margin: auto;
    width: 600px;
}

#orderSec h3 {
    color: var(--light-black);
    text-align: center;
    background: transparent;
}

#orderSec .animate-border {
    left: 50%;
    transform: translateX(-50%);
}

.orderCon {
    position: relative;
    padding: 10px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orderCon form {
    position: relative;
    width: 80%;
    padding: 25px 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--lighter-black);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
}

.formTop {
    display: flex;
    align-content: center;
    gap: 30px;
}

.cm-formGrp {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}
.cm-formGrp div:not(div.inputGroup){
    display: flex;
    flex-direction: column;
}
.cm-formGrp label,
.formBottom label {
    color: var(--white);
    font-weight: 900;
}

.cm-formGrp .form-cm-select {
    width: 400px;
    font-size: 14px;
    color: var(--lighter-black);
    padding: 7px;
    background: var(--submenu-color);
}

.cm-formGrp input,
.formBottom input {
    width: 400px;
    font-size: 14px;
    padding: 7px;
    background: var(--submenu-color);
}

.cm-formGrp .form-cm-select:hover,
.cm-formGrp input:hover {
    background: rgba(255, 255, 255, 0.8);
}

.cm-formGrp sup {
    font-size: 15px;
    color: var(--logo-and-active-color);
}

.formBottom {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.formBottom .cm-formGrp {
    width: 100%;
    flex-direction: column;
}

.formBottom .cm-formGrp input {
    width: 100%;
}

.inputGroup {
    display: flex;
}

.inputGroup span {
    color: var(--white);
    padding: 5px 3px;
    width: 70px;
    background: var(--footer-bg);
    border-right: 3px solid var(--light-black);
}

.inputGroup input {
    width: 330px;
}

.formBottom .form-control {
    width: 100%;
}

.cart {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    display: none;
    background: var(--light-black);
    border: 5px solid var(--black);
}

.cart h3 {
    color: var(--white) !important;
}

#purchaseCancel {
    float: right;
}

/* ======================= End order ================= */



/* =============================== start responsive redesign =================== */
@media screen and (max-width: 1319px) {

    /* ========== header section ===============*/
    .cm-nav {
        padding: 0 !important;
        padding-bottom: 100px !important;
        align-items: start !important;
    }

    .cm-logo {
        position: absolute;
        top: 0;
    }

    .cm-logo a {
        width: 330px;
    }

    .cm-logo a small {
        right: 35px !important;
    }

    .navMenu {
        position: absolute !important;
        top: 40%;
        left: 0;
    }

    .sub-ul-large {
        left: 0 !important;
    }

    .nav-top-right {
        position: absolute !important;
        top: 40px;
        right: 0;
    }

    /* ========== End header section ===============*/
    /* ============== home content ============= */
    .msgcont {
        padding: 0 65px;
    }

    /* ============== End home content ============= */
}

@media screen and (max-width: 1250px) {

    /* ================ product search overlay ================*/
    .overlay-search-products-view-container {
        width: 50%;
        justify-content: center;
    }

    /* ================ End product search overlay ================*/
    /* ================= under about menu for investor ================ */
    .investor-container {
        margin-top: 130px;
    }

    .invest-sub-cont {
        height: 50px;
    }

    .invest-sub-cont img {
        display: none
    }

    .invest-sub-cont h1 {
        text-align: center;
        flex-basis: 100%;
        font-size: 20px;
    }

    .invest-sub-cont p {
        display: none
    }

    .annual-reports {
        width: 100%;
    }

    .year-file {
        margin-left: 5px;
        margin-right: 5px;
    }

    /* ================= End under about menu for investor ================ */
    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec h4::after {
        top: 3.1%;
    }

    .md-msg-sec-img-box img {
        margin-left: 80px;
    }

    /* ==================== End under about menu msg from md sir =========== */
    /* ======== under about menu board of director ============= */
    .brd-of-dirct-cont h2::after {
        top: 2%;
    }

    .brd-of-dirct-sub-cont {
        width: 100%;
        grid-template-columns: 1fr;
    }




    /* ======== End under about menu board of director ============= */
    /* =================== under about menu -- executive member ========== */
    .executive-mem-container h2:after {
        top: 3%;
    }

    /* =================== under about menu -- executive member ========== */
    /* ============ product search alphabetic area =========== */
    .product-search-indicator ul {
        display: grid;
        align-items: start;
        justify-content: start;
        grid-template-columns: repeat(10, 1fr);
        background: transparent;
    }

    /* ============ End product search alphabetic area =========== */
    /* =========== products like brand generic under product menu ========== */
    .product-layout {
        width: 330px;
    }

    /* =========== End products like brand generic under product menu ========== */
    /* =============== product management under marketing dept. ==========*/
    .marketing-pmd-mgt h2 {
        color: #545454;
        font-size: 24px;
        padding: 25px 0;
    }

    .pmd-heading-curv {
        display: none;
    }

    .marketing-pmd-mgt p {
        width: 100%;
        margin-top: 0;
        padding: 0 10px;
        text-align: justify;
    }

    .mkt-pmd-business-opera {
        margin-top: 70px;
    }

    .mkt-pmd-business-opera .better_care {
        width: 100%;
    }

    .mkt-pmd-local-mkt {
        margin: 0px auto;
        width: 100%;
        transform: skew(0);
    }

    .mkt-pmd-local-mkt img {
        width: 100%;
    }

    .mkt-pmd-local-mkt p {
        text-align: justify;
        padding: 0 15px;
    }

    .mkt-pmd-distribu-chanl {
        flex-direction: column;
    }

    .mkt-pmd-distribu-chanl strong {
        margin: auto;
        flex-basis: unset;
        height: 0;
        text-align: justify;
        padding: 50px 0;
        border: none;

    }

    .mkt-pmd-distribu-chanl div {
        flex-basis: unset;
    }

    .mkt-pmd-distribu-chanl div p {
        text-align: justify;
        padding: 0 15px;
    }

    /* =============== End product management under marketing dept. ==========*/

    /* ============= sales department submenu under marketing menu ============ */
    .sales-dpt-sec-one {
        width: 100%;
        flex-direction: column;
    }

    .sales-dpt-sec-one p {
        flex-basis: unset;
    }

    .sales-dpt-sec-one img {
        flex-basis: unset;
        width: 100%;
    }

    .sales-dpt-separator {
        display: none;
    }

    .sales-dpt-sec-two {
        width: 100%;
    }

    .sales-dpt-sec-two p {
        flex-basis: unset;
    }

    .sales-dpt-sec-two img {
        display: none;
    }

    /* ============= End of sales department submenu under marketing menu ============ */
    /* under marketing menu ---> logistics management submenu */
    .logistics-dept img {
        width: 90%;
        height: 100vh;
    }

    .logistics-dept-descrip {
        padding: 0 10px;
    }

    .logistics-dept-descrip p {
        width: 95%;
    }

    /* End under marketing menu ---> logistics management submenu */
}

@media screen and (max-width: 1200px) {

    /* ====================== under about menu ---- delta CSR ================= */
    .csr-title-brief-and-md-img {
        width: 90%;
    }

    /* ====================== End under about menu ---- delta CSR ================= */

    /* =========== products like brand generic under product menu ========== */
    .product-layout {
        width: 330px;
    }

    /* =========== End products like brand generic under product menu ========== */
}

@media screen and (max-width:1180px) {

    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec-img-box img {
        margin-left: 45px;
    }

    /* ==================== End under about menu msg from md sir =========== */
    /* =================== under about menu -- executive member ========== */
    .individual-mem-text-img p strong::after {
        top: 15%;
    }
    /* =================== under about menu -- executive member ========== */
    /* =========== products like brand generic under product menu ========== */
    .product-layout {
        width: 330px;
    }
    /* =========== End products like brand generic under product menu ========== */
    /* ======== logistics dept ======== */
    .logistics-dept {
        margin-top: 130px;
    }
    /* ======== End logistics dept ======== */
    /* =========================== general info plant ============================= */
    .general-info-plant-units {
        width: 95%;
    }

    /* =========================== End general info plant ============================= */
    /* ========================== contact information ======================== */
    .gmap-and-comp-addr {
        width: 100%;
    }

    .gmap-and-comp-addr iframe {
        width: 400px;
        height: 350px;
    }

    /* ========================== End contact information ======================== */
}

@media screen and (max-width: 1139px) {

    /* ============= header ============= */
    .first-time-and-launch {
        top: 3px;
        right: 20px;
    }

    /* ============= End header ============= */
    /* ============== home content ============= */
    .msgcont {
        margin: 50px auto 20px;
        padding: 0 225px;
        flex-direction: column;
        justify-content: center;
    }
    .orderCon form {
        width: 100%;
    }
    /* ============== End home content ============= */
    /* =========== products =========== */
    .products-container h2 {
        margin-top: 80px;
    }
    .prod-inner-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* =========== End products =========== */
    /* =========== quality assurance under plant menu ========= */
    .plant-img.qc-para p{
        top: 100px;
    }
    .plant-img.prd-para p{
        top: 90px;
    }
    .plant-img.etp-img p{
        top: 270px;
    }
    .plant-img.warehouse-para p{
        top: 100px;
    }
    /* =========== End quality assurance under plant menu ========= */
    /* ===== footer ========== */
    #footerSec {
        padding-top: 35px;
    }

    /* ===== End footer ========== */
}

@media (max-width: 991px) {

    /* Overlay search bar configuration */
    .overlay .input-group {
        width: 85%;
        margin: 0 auto;
    }

    .overlay .input-group i {
        display: block;
        background: #ffffff;
        padding: 10px 15px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .overlay .input-group .input-group-text {
        display: none;
    }

    /* End overlay search bar configuration */

    /* =============== header div ===========*/
    /* ======= for toggle bar ============ */
    #navbarToggle {
        position: absolute;
        top: -20%;
        left: -25px;
        padding-left: 45px;
        width: 320px;
        height: 70vh;
        justify-content: flex-start;
        flex-direction: column;
        display: none;
        background: var(--light-black);
        z-index: var(--z-index-highest);
        border: 2px solid var(--lighter-black);
    }

    #navbarToggle li:nth-child(1) {
        position: relative;
    }

    #navbarToggle li:nth-child(1)::after {
        content: 'X';
        position: absolute;
        top: 3px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
    }

    #navbarToggle li ul {
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
    }
    #navbarToggle .sub-ul-large {
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .menubar-icon {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        background: transparent;
        z-index: var(--z-index-for-responsive);
    }

    .menubar-icon .fa-bars {
        font-size: 50px;
    }
    .res-order-now {
        display: block !important;
    }
    .nav-top-right {
        display: none;
    }
    /* ======= End for toggle bar ============ */
    /* ======== order now menu ================*/
    .orderCon {
        padding: 10px !important;
    }

    .orderCon form {
        width: 100% !important;
        padding: 0 !important;
    }

    .cm-formGrp {
        justify-content: center;
        flex-wrap: wrap !important;
    }

    .cm-formGrp div {
        display: flex;
        flex-direction: column;
    }

    .cm-formGrp .form-cm-select {
        width: 320px !important;
    }

    .cm-formGrp input,
    .formBottom input {
        width: 320px !important;
    }

    /* End order now */
    /* ===== lanuching product section =========== */
    .first-time-and-launch {
        left: 20px;
        z-index: unset;
    }

    #first-time {
        position: absolute;
        bottom: 0px;
    }

    #launching {
        /* location in menu section */
        display: none;
    }

    .launching {
        /* this launched product section */
        display: none;
    }

    /* ===== End lanuching product section =========== */
    /* ==================== End header div =====================*/
    /* under about menu for History submenu page */
    .content-history {
        flex-direction: column;
    }

    .content-history-left {
        width: 100%;
    }

    .content-history-left p {
        padding: 0;
    }

    .content-history-right {
        width: 100%;
    }

    .content-history-right p {
        width: 100%;
    }

    .content-history-divider {
        display: none;
    }

    /* End under about menu for History submenu page */

    /* under about menu for strategic-view submenu page */
    .strategic-container {
        padding: 10px;
    }

    .mission-vission {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .mission-vission::before {
        display: none;
    }

    .mission-vission .mission-vission-compon {
        width: 90%;
    }
    /* End of under about menu for strategic-view submenu page */
    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec h4 {
        width: 100%;
    }

    .md-msg-sec h4::after {
        top: 3%;
        left: 0;
    }

    .md-msg-sub-sec {
        width: 100%;
    }

    /* ==================== End under about menu msg from md sir =========== */
    /* ======== under about menu board of director ============= */
    .brd-of-dirct-cont h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .brd-of-dirct-cont h2::after {
        top: 2.5%;
    }

    .brd-of-dirct-sub-cont {
        width: 100%;
        grid-template-columns: 1fr;
    }

    /* ======== End under about menu board of director ============= */
    /* ========= under about menu -- obiturary submenu =============*/
    .obituary-about-part {
        flex-basis: 60%;
    }

    .obituary-img-part {
        flex-basis: 40%;
    }

    .obituary-img-part img {
        width: 200px;
        height: 200px;
    }

    .obituary-img-part p {
        padding: 5px 10px;
    }

    /* ========= End under about menu -- obiturary submenu =============*/
    /* =================== under about menu -- executive member ========== */
    .executive-mem-container {
        margin: 0;
    }

    .executive-mem-container h2:after {
        top: 3.5%;
    }

    .about-execu-mem {
        margin: 20px;
    }

    .execu-mem-sec {
        margin: 20px;
    }

    .indivi-execu-mem-title p {
        margin-left: 20px;
        font-size: 15px;
    }

    .individual-mem-text-img p {
        margin: 20px 10px;
    }

    .individual-mem-text-img p strong::after {
        top: 19%;
        left: 10px;
    }

    .individual-mem-text-img img {
        margin: 0px;
    }

    /* =================== under about menu -- executive member ========== */
    /* ====================== under about menu ---- delta CSR ================= */
    .csr-container>p {
        width: 50%;
    }

    .csr-title-brief-and-md-img {
        flex-direction: column;
    }

    .csr-md-img h6 {
        margin-top: 20px;
    }

    /* ====================== End under about menu ---- delta CSR ================= */
    /* =========================== general info plant ============================= */
    .general-info-plant-units {
        flex-direction: column;
    }

    .general-info-plant-cepha-unit {
        margin-top: 20px;
        margin-left: unset;
    }

    /* =========================== End general info plant ============================= */

    /* ====== local sales operation under content ======= */
    .sales-dept {
        margin-bottom: 50px;
    }

    .sales-deptCont {
        width: 90%;
        flex-direction: column;
    }

    .sales-dpt-sec-two {
        flex-basis: 100%;
    }

    .sales-dpt-sec-two::before {
        display: none;
    }

    .sales-dpt-sec-two p {
        padding: 20px 0;
    }

    /* ====== End local sales operation under content ======= */
    /* ======= what we do ======== */
    .whatDoVideo iframe {
        width: 100% !important;
        height: 100% !important;
    }

    /* ======= End what we do ======== */
    /* ===== footer ========== */
    #footerSec {
        height: 185px;
    }
    /* ===== End footer ========== */

}

@media screen and (max-width: 900px) {
    .certified {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 800px) {
/* home content msg of chairman and managing director */
    .chairmsg>p,
    .mdmsg>p {
        width: 345px;
    }
/* End home content msg of chairman and managing director */
    /* =========== products like brand generic under product menu ========== */
    .prod-inner-container {
        grid-column-gap: 10px !important;
    }

    .product-layout {
        width: 330px;
    }

    /* =========== End products like brand generic under product menu ========== */
    /* =========== ibo =============*/
    .ibo-descrip .global-footprint {
        display: none;
    }

    /* =========== End ibo =============*/
    /* ===================== plant menu ================= */
    .plant-img {
        display: none;
    }
    /* ===================== End plant menu ================= */
    /* =============== footer ============ */
    .topLeft ul:nth-child(1) {
        display: none;
    }
    .topLeft ul:nth-child(2){
        margin-left: -100px;
    }
    .topRight{
        padding-left: 10px;
    }
    /* =============== End footer ============ */

}

@media (max-width: 796px) {
    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }

    /* =========== products like brand generic under product menu ========== */
    .prod-inner-container {
        grid-column-gap: 10px !important;
    }

    .product-layout {
        width: 330px;
    }

    /* =========== End products like brand generic under product menu ========== */
}

@media (max-width: 777px) {

    /* ============ header ======== */
    .first-time-and-launch {
        display: none;
    }

    /* ============ End header ======== */
    /* ============ home content ======= */
    /* ==== md, chairman msg ========*/
    .msgcont {
        padding: 0 100px;
    }

    /* ==== End md, chairman msg ========*/
    /* ============ End home content ======= */
    /* =========== products like brand generic under product menu ========== */
    .prod-inner-container {
        grid-column-gap: 10px !important;
    }

    .product-layout {
        width: 330px;
    }

    /* =========== End products like brand generic under product menu ========== */
    }

@media (max-width: 767px) {

    /* ================ product search overlay ================*/
    .overlay-search-products-view-container {
        width: 70%;
    }

    /* ================ End product search overlay ================*/
    /* ========= navbar menu ======= */
    .navbar-brand img {
        width: 200px;
    }

    .nav-middle-part-one {
        width: 25%;
        margin-right: -25%;
    }

    /* ========= End navbar menu ======= */

    /* ======== under about menu board of director ============= */
    .brd-of-dirct-cont h2::after {
        top: 2%;
    }

    /* ======== End under about menu board of director ============= */
    /* ========= under about menu -- obiturary submenu =============*/
    .obituary-container {
        width: 100%;
    }

    .obituary-header-sec {
        flex-direction: column;
    }

    .obituary-about-part {
        flex-basis: unset;
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .obituary-img-part {
        flex-basis: unset;
        width: 100%;
    }

    .obituary-img-part img {
        width: 300px;
        height: 300px;
    }

    /* ========= End under about menu -- obiturary submenu =============*/
    /* =================== under about menu -- executive member ========== */

    .executive-mem-container h2 {
        font-size: 15px;
        font-weight: 900;
    }

    .executive-mem-container h2:after {
        top: 1.5%;
    }

    .executive-mem-container>p {
        font-size: 15px;
    }

    .about-execu-mem {
        margin: 5px;
    }

    .execu-mem-sec {
        margin: 0px;
    }

    .indivi-execu-mem-title {
        padding-left: 1em;
        text-indent: -1.2em;
    }

    .indivi-execu-mem-title p {
        font-size: 12px;
        font-weight: 700;
    }

    .individual-mem-text-img {
        flex-direction: column;
    }

    .individual-mem-text-img p {
        margin: 20px 10px;
    }

    .individual-mem-text-img p strong::after {
        top: 7.5%;
        left: 10px;
    }

    .individual-mem-text-img img {
        margin: 0 auto;
        width: 80%;
    }

    /* =================== End under about menu -- executive member ========== */
    /* ====================== under about menu ---- delta CSR ================= */
    .csr-container>p {
        width: 55%;
    }

    .csr-title-brief-and-md-img {
        flex-direction: column;
    }

    .csr-md-img h1::after {
        left: 15%;
    }

    .csr-md-img h6 {
        margin-top: 20px;
    }

    /* ====================== End under about menu ---- delta CSR ================= */
    /* ============ product search alphabetic area =========== */
    .product-search-indicator ul {
        padding-top: 0;
    }

    .product-search-indicator ul {
        display: grid;
        align-items: start;
        justify-content: start;
        grid-template-columns: repeat(10, 1fr);
        background: linear-gradient(160deg, #000000 50%, #ffffff 50%);
    }

    /* ============ End product search alphabetic area =========== */
    /* =========== products like brand generic under product menu ========== */
    .products-container {
        width: 100% !important;
    }

    .prod-inner-container {
        grid-template-columns: 1fr !important;
    }

    .product-layout {
        width: 365px;
    }

    /* =========== End products like brand generic under product menu ========== */
    /* ======================== global menu ======================= */
    .ibo-container h1 {
        font-size: 25px;
    }

    .ibo-descrip {
        width: 95%;
    }

    /* ======================== End global menu ======================= */
    /* ===================== media corner ============= */
    .video-title a {
        font-size: 18px;
    }
    /* ===================== End media corner ============= */
    /* ========================== contact information ======================== */
    .gmap-and-comp-addr {
        width: 100%;
        flex-direction: column;
    }

    .gmap-and-comp-addr iframe {
        width: 90%;
    }

    .comp-addr {
        margin: 35px;
    }

    .comp-addr p br {
        display: none;
    }

    .comp-email-addr {
        height: unset;
        margin-top: 0px;
        background: none;
        box-shadow: none;
    }

    .comp-email-addr::before {
        display: unset;
        background: none;
    }

    .comp-email-addr h1 {
        color: inherit;
    }

    .email-addr-left-right {
        width: 100%;
    }

    .email-addr-left-right p {
        color: inherit;
    }
    .email-addr-left-right a{
        color: var(--lighter-black);
    }
    .email-addr-left-right strong {
        font-size: 16px;
        color: inherit;
    }

    /* ========================== End contact information ======================== */
}

@media screen and (max-width: 700px) {

    /* =============== home page =========== */
    .news::before {
        font-size: 13px;
    }

    .certified {
        flex-direction: column;
    }

    /* =============== End of home page ========= */
    /* =============== others / contents pages ===========*/
    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec h4::after {
        top: 2.5%;
    }

    .md-msg-sec-img-box img {
        margin-left: 10px;
    }

    /* ==== board of director==== */
    .brd-of-dirct-details img {
        margin-top: 50px;
    }

    .brd-of-dirct-details span {
        float: none;
        margin-top: -150px;
        margin-left: -225px;
    }

    .brd-of-dirct-details p {
        margin-top: 20px;
    }

    /* ==== End board of director==== */
    /* ==================== End under about menu msg from md sir =========== */
    /* ======== video under media menu ============ */
    .video-box {
        flex-direction: column;
    }
    .video-title{
        text-align: center;
    }
    .video-title a{
        width: 100%;
        color: var(--menu-color);
        font-size: 25px;
        font-weight: bolder;
        line-height: 25px;
    }
    .video-content {
        width: 400px;
    }

    .video-content iframe {
        height: 200px;
    }

    /* ======== End video under media menu ============ */
    /* =============== End others / contents pages ===========*/
}

@media screen and (max-width: 600px) {

    /* Overlay search bar configuration */
    .overlay .input-group {
        width: 85%;
        margin: 0 auto;
    }

    .overlay .input-group i {
        display: block;
        background: #ffffff;
        padding: 10px 15px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .overlay .input-group .input-group-text {
        display: none;
    }

    /* End overlay search bar configuration */
    /* ============== board of directors =========== */
    .brd-of-dirct-details span{
        margin-left: 2px;
        padding-right: 115px;
    }
    /* ============== End board of directors =========== */
    /* ========== products menu page for all products, brand, generic products ========*/
    .product-search-indicator ul {
        margin-top: 35px;
    }
    .products-container {
        width: 100%;
    }

    /* ========== End products menu page for all products, brand, generic products ========*/
}

@media (max-width: 575px) {

    /* ================ product search overlay ================*/
    .overlay input[type="text"]:focus {
        margin-bottom: 10px;
    }

    .overlay-search-products-view-container {
        width: 85%;
        border-radius: 5px;
    }

    .overlay-search-products-name {
        width: 150px;
    }

    .overlay-search-products-name h6 {
        width: 100%;
    }

    .overlay-search-products-name p {
        width: 100%;
    }

    /* ================ End product search overlay ================*/
    /* ========================== under about-menu chairman msg ======================== */
    .msg-chairman-brief {
        width: 100%;
    }

    .msg-chairman-brief img {
        float: unset;
    }

    /* ========================== End under about-menu chairman msg ======================== */
    /* =================== under about menu -- executive member ========== */
    .individual-mem-text-img p strong::after {
        top: 9%;
    }

    /* =================== End under about menu -- executive member ========== */
    /* ====================== under about menu ---- delta CSR ================= */
    .csr-container>p {
        width: 61%;
        font-size: 15px;
    }

    .csr-md-img h1::after {
        left: 25%;
    }

    .csr-md-img img {
        width: 100%;
    }

    .csr-feature-brief {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .csr-feature-brief p {
        margin: 15px;
    }

    .csr-other-title {
        width: 100%;
        float: unset;
        border-left: 0;
    }

    /* ====================== End under about menu ---- delta CSR ================= */
    /* ========================== under about-menu general-information ========================== */
    .general-info-container {
        margin-top: 40px;
    }

    .general-info-container h1 {
        font-size: 25px;
    }

    .general-info-details {
        width: 90%;
        padding: 0;
    }

    .general-info-details p {
        margin-top: 0;
        margin-left: 0;
    }

    /* ========================== End under about-menu general-information ========================== */
    /* ========================== under about-menu Employee Quality Improvement ========================== */
    .employ-quality-impro-container {
        margin-top: 40px;
    }

    .employ-quality-impro-container h1 {
        font-size: 18px;
    }

    .employ-quali-impro-details {
        width: 90%;
        padding: 10px;
    }

    .employ-quali-impro-details p {
        margin-top: 0;
        margin-left: 0;
    }

    /* ========================== End under about-menu Employee Quality Improvement ========================== */
    /* =========== products like brand generic under product menu ========== */
    .therapeu-grp-respon {
        display: block;
    }
    .therapeu-grp {
        display: none;
    }
    .product-layout {
        width: 300px;
    }

    /* =========== End products like brand generic under product menu ========== */
    /* ======================== global menu ======================= */
    .ibo-container h1 {
        font-size: 15px;
    }

    .ibo-container>p {
        font-size: 13px;
    }

    .we-have-offer {
        width: 100%;
        flex-direction: column;
    }

    .we-have {
        margin: 30px;
    }

    .we-have p {
        margin-right: unset;
    }

    .we-offer {
        margin: 30px;
    }

    /* ======================== End global menu ======================= */
    /* =========================== general info plant ============================= */
    .general-info-plant-container h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .general-info-plant-short-brief {
        width: 80%;
    }

    .general-info-plant-units {
        width: 100%;
    }

    .general-info-plant-production-unit {
        border-left: unset;
    }

    .general-info-plant-production-unit p {
        margin-left: 5px;
        font-size: 9px
    }

    .general-info-plant-production-unit p strong {
        font-size: 10px
    }

    .general-info-plant-cepha-unit {
        border-left: unset;
    }

    .general-info-plant-cepha-unit p {
        margin-left: 5px;
        font-size: 9px
    }

    .general-info-plant-cepha-unit p strong {
        font-size: 10px
    }

    .bottom-backgrnd-color-for-units {
        height: 20vh;
    }

    /* =========================== End general info plant ============================= */
    /* ========================== under plant menu quality assurance dept =================== */
    .quality-assurance-dept-container h1 {
        font-weight: 600;
        font-size: 20px;
    }

    .quality-assu-dept-brief {
        width: 90%;
        padding: 0;
    }

    /* ========================== End under plant menu quality assurance dept =================== */


    /* ========================== contact information ======================== */
    .gmap-and-comp-addr iframe {
        width: 95%;
    }

    .comp-email-addr h1 {
        font-size: 25px;
    }

    .email-addr-left-right {
        flex-direction: column;
    }

    .email-addr-left-right p br {
        display: none;
    }

    .email-addr-left {
        margin: 0 20px;
    }

    .email-addr-right {
        margin: 0 20px;
    }

    /* ========================== End contact information ======================== */


}

@media (max-width: 533px) {

    /* ========= header ========== */
    .cm-nav{
        padding: 30px 0 !important;
    }
    .cm-logo{
       margin-left: -45px;
       transform: scale(0.7);
    }
    .nav-middle-part-one {
        width: 5%;
    }

    .navbar-toggler {
        margin-left: 20%;
    }

    /* ========= End header ========== */
    /* =================== under about menu -- quality policy ========== */
    .quality-header h1 {
        font-size: 23px;
    }

    /* =================== End under about menu -- quality policy ========== */
    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec h4::after {
        top: 3.1%;
    }

    .md-msg-sub-sec {
        flex-direction: column;
    }

    .md-msg-sec-img {
        flex-basis: unset;
        width: 100%;
    }

    .md-msg-sec-img-box {
        width: 100%;
    }

    .md-msg-sec-img-box img {
        margin-left: 60px;
    }

    .md-msg-sec-para {
        flex-basis: unset;
        width: 100%;
    }

    .md-msg-sec-para button {
        margin: 40px 0 5px 5px;
    }

    .md-msg-sec-para p {
        margin: 40px 0 5px 5px;
    }

    .md-msg-sub-sec2 {
        display: block;
        width: 100%;
    }

    .md-msg-sub-sec2 p {
        flex-basis: unset;
    }

    /* ==================== End under about menu msg from md sir =========== */
}

@media screen and (max-width: 500px) {

    /* ===== header responsive bar =====  */
    .menubar-icon .fa-bars {
        font-size: 30px;
    }
    /* ===== End header responsive bar =====  */
    /* ============ home content ======= */
    /* ==== md, chairman msg ========*/
    .msgcont {
        padding: 0 45px;
    }

    .chairmsg>p,
    .mdmsg>p {
        width: 300px;
    }
    /* ==== End md, chairman msg ========*/
    /* ========== order menu ============== */
    #orderSec .alert-success {
        width: 320px;
    }
    
    .cart {
        top: -10%;
        width: 330px;
        z-index: var(--z-index-highest);
    }
    /* ==== End order menu ==== */
    /* ============ End home content ======= */

    /* ==================== Under of about menu ========= */
    /* ================= history ============ */
    .content-history {
        margin: 65px 15px;
    }
    /* ================= End history ============ */
    /* ================ strategic views under about menu ============== */
    .strategic-container h3 {
        margin-top: 35px;
    }
    /* ================ End strategic views under about menu ============== */

    /* ==== board of director==== */
    .brd-of-dirct-details {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .brd-of-dirct-details img {
        margin-top: 50px;
    }

    .brd-of-dirct-details span {
        margin-top: -250px;
        margin-left: -40px;
        white-space: nowrap;
    }

    .brd-of-dirct-details p {
        margin-top: 215px;
    }

    /* ==== End board of director==== */
    /* ==================== End under of about menu ========= */
    /* ========== products menu page for all products, brand, generic products ========*/
    .products-container {
        grid-template-columns: 1fr;
    }

    /* ============ product search alphabetic area =========== */
    .product-search-indicator ul {
        width: 100%;
    }

    /* ============ End product search alphabetic area =========== */
    /* ========== End products menu page for all products, brand, generic products ========*/
    /* ========== photo gallery ===== */
    .ccard{
        width: 100%;
    }
    .moble-container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .moble-row {
       width: 100%;
    }

    /* ========== End photo gallery ===== */
    /* ======== video under media menu ============ */
    .video-box {
        flex-direction: column;
        gap: 50px;
    }

    .video-content {
        width: 300px;
    }

    .video-content iframe {
        height: 150px;
    }

    .video-title a {
        font-size: 18px;
    }

    /* ======== End video under media menu ============ */
    /* ===== footer ========== */
    #footerSec {
        height: auto;
    }

    .footerTop {
        flex-direction: column;
    }

    .topLeft {
        flex-direction: column;
    }
    .topLeft ul:nth-child(1) {
        display: block;
    }
    /* ===== End footer ========== */


}

@media (max-width: 370px) {

    /* ==== md, chairman msg ========*/
    .msgcont {
        padding: 0 10px;
    }

    .chairmsg>p,
    .mdmsg>p {
        width: 280px;
    }

    /* ==== End md, chairman msg ========*/
    /* ============ End home content ======= */
    /* ==================== under about menu msg from md sir =========== */
    .md-msg-sec h4::after {
        top: 2.5%;
    }
    /* ==================== End under about menu msg from md sir =========== */
    /* =========== products like therapeutic under product menu ========== */
    .therapeu-grp-respon {
        width: 100%;
    }
    .product-search-indicator ul{
        margin-left: -50px;
    }
    /* =========== End products like therapeutic under product menu ========== */
    /* ================ logistics ============ */
    .logistics-dept-descrip {
        z-index: var(--z-index-highest);
    }
    /* ================ End logistics ============ */
    /* ========== footer ========== */
    .topLeft ul:nth-child(1) li a{
        font-size: 25px;
    }
    /* ========== End footer ========== */
}

@media (max-width: 320px) {
    /* ===== order menu ====== */
    .orderCon {
        padding: 0px;
        background: var(--lighter-black);
    }
    .orderCon form{
        width: 100%;
    }
    .orderCon form label{
        padding: 0 10px;
    }
    /* ===== End order menu ====== */
}


