@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white-color:#fff;
    --dark-color:#222;
    --body-bg-color:#f9f9f9;
    --section-bg-color:#202834;
    --navigation-item-hover-color:#3b5378;
    
    --text-shadow: 0 5px 25px rgba(0,0,0,0.1);
    --box-shadow:0 5px 25px rgb(0 0 0 / 20%);

    --scroll-bar-color:#fff;
    --scroll-thumb-color:#282f4e;
    --scroll-thum-hover-color:#454f6b;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background:var(--body-bg-color);
}

/* =========== invitation letter =========== */

/*=========== NOW THIS SECTION IS PAUSED*/
/*.invitation_lett {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    background: rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.invitation_lett_box {
    position: relative;
    width: 80%;
    height: 80%;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
    border-radius: 10px;
}
.invitation_lett_box span {
    position: absolute;
    top: 5px;
    left: 45%;
    font-size: 15px;
    color: rgb(255, 0, 0);
    border-radius: 50%;
    cursor: pointer;
}
.invitation_lett .invitation_lett_box img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}*/
/* =========== End invitation letter =========== */

/* -------------------------- header and navigation menu ----------------------- */

#header{
    z-index:999;
    position:sticky;
    top:0;
    left:0;
    width: 100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#E3E6F3;
    box-shadow:0 5px 15px rgba(0,0,0,0.6);
    padding:15px 60px;
    transition: 0.6s;
}
#header .logo {
    border: 4px solid #ffffff;
    background: #f9f9f9;
    opacity: 0.8;
    border-radius: 15px;
}
#header:hover .logo {
    opacity: 1;
}
#header .navbar{
    position: relative;
}

.less-than-icon {
    font-size: 18px;
    font-weight: bold;
}
#header .navbar .menu {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}
.menu-item {
    padding: 5px 0;
    transition: 0.3s;
    border: 2px solid #E3E6F3;
}
.menu-item:hover {
    background: #23252B;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 5px 0;
    border: 2px solid #8cc63e;
}
.menu .active {
    background: #23252B;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 5px 0;
    border: 2px solid white;
}
.menu-item > a {
    color: #0065b3;
    font-size: 1em;
    font-weight:bold;
    text-decoration: none;
    margin: 20px;
    padding: 25px 0;
}
.menu-item > a:hover {
    color: #8cc63e;
    transition: 0.3s;
}
.menu-item li:hover>a {
    color: #8cc63e;
}
.menu-item .sub-menu {
    position: absolute;
    background: #23252B;
    line-height: 40px;
    list-style: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 40%);
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
}
.menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}
.menu-item .sub-menu .sub-item {
    position: relative;
    padding: 7px 1.5px ;
    cursor: pointer;
    box-shadow: inset 0 -30px 5px -30px rgba(255, 255, 255, 0.2);
}
.menu-item .sub-menu .sub-item a {
    color: #0065b3;
    font-size: 1em;
    text-decoration: none;
    padding: 15px 20px;
}
.menu-item .sub-menu .sub-item:hover {
    background: #f1f1f1;
}
.menu-item .sub-menu .sub-item:hover > a {
    color: #8cc63e;
}
.menu-item .sub-menu .sub-item:last-child:hover {
    border-radius: 0 0 8px 8px;
}
.more .more-menu {
    position: absolute;
    background: #23252B;
    list-style: none;
    top: 0;
    right: 100%;
    white-space: nowrap;
    border-radius: 8px 0px 8px 8px;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
    
}
.more:hover .more-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}
.more .more-menu .more-item{
    padding: 7px 0;
    box-shadow: inset 0 -30px 5px -30px rgba(255, 255, 255, 0.2);
}
.more .more-menu .more-item:hover {
    background:  #f1f1f1;
}
.more .more-menu .more-item:hover a {
    color: #8cc63e;
}

/* ---------------- carousel part --------------*/
.carouselStyle{
    position:relative;
}
.carouselStyle .marque{
    width:100%;
    height:50px;
    margin-top:-50px;
    background: rgba(0, 101, 179, 0.4);
    -webkit-box-shadow:0px -4px 3px rgba(50,50,50, 0.75);
    -moz-box-shadow:0px -4px 3px rgba(50,50,50, 0.75);
    box-shadow:0px -4px 3px rgba(50,50,50,0.75);
    position:relative;
}
.marque-position{
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    padding: 11px 0;
}
.marque-position a{
    color:#f59421;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;
}

/* ========================= about us ============== */
.global-margin{
    margin-top:40px;
    position:relative;
    text-align:center;
}

 .title-margin {
    font-family: Calibri, "Helvetica", sans-serif;
    line-height: 1.5em;
    color: #0065b3;
    font-size: 30px;
    position: relative;
}
.title-margin:after {
    content:' ';
    position: absolute;
    display:block;
    width: 120px;
    border:2px solid #f59421;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
    -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
    left: 50%;
    transform: translateX(-50%);
}
.sub-global-margin{
    margin-top:40px;
}
.sub-global-margin p{
    font-family:Calibri,"Helvetica",sans-serif;
    font-size: 1.3rem;
    font-weight:520;
    text-align:justify;
    -moz-text-align-last: center;
    text-align-last: center;
    margin:0 auto;
    width:800px;
}

/* ======================= our special products =============== */
.products-grid-container-with-color{
    margin-left: -30px;
    margin-right: -30px;
    background: #23252B;
    box-shadow: inset -30px 5px -30px rgba(255, 255, 255, 0.2);
    padding: 4rem;
}
.products-grid-container-with-color img {
    width: 100%;
}
.products-grid-container img {
    width: 100%;
}
.products-grid-container-with-color .individual-grid-container-with-color {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}
.products-grid-container .individual-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    background: #f1f1f1;
    margin-top: 5rem;
}
 .individual-grid-container-with-color img {
    height: 340px;
}
.individual-grid-container img {
    height: 340px;
}
.individual-grid-container-with-color > div {
    padding: 2rem;
}
.individual-grid-container > div {
    padding: 2rem;
}

/* ================== valuable clients ================== */
div.parent{ 
    text-align: center;
    background: #23252B;
    box-shadow: inset -30px 5px -30px rgba(255, 255, 255, 0.2);
    height: 250px;
    margin-top: 60px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 10px 0 ;
}

div.parent .img{
    width:80%; /* you can change width */
    margin: auto;
}
div.img img{ 
    width:100%;
}

/*============================== healthcare (sister concern) ================================*/

#sister-concern {
    margin-top: 150px;
}
.heading-for-partner {
    text-align: center;
    font-family: Calibri, "Helvetica", sans-serif;  
    line-height: 1.5em;
    color: #0065b3;
    font-size: 30px;
    position: relative;
    margin-bottom: 100px;
}
.heading-for-partner:after {
    content:'';
    display: block;
    width: 120px;
    border: 2px solid #f59421;
    border-radius:4px;
    -webkit-border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.sister-concern-container {
    width: 650px;
    margin: auto;
    display: flex;
    flex-direction: row;
}
.sister-concern-container-second {
    width: 500px;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.sister-concern-card {
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    width: 50%;
    border: 5px solid #dadada;
}

.sister-concern-card:hover {
    box-shadow: 10px 10px 16px 0 rgba(0, 0, 0, 0.2);
}

.sister-concern-text {
    padding: 2px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.padding-for-footer{
    padding:30px;
}

/* ========================= news and events =============================  */
.image-box {
    border: 1px solid white;
}


/*============================= contact ===========================*/
.jumbotron {
    margin-left: -15px;
    margin-right: -15px;
}
h5.lined{
    overflow:hidden;
    position:relative;
 }
 h5.lined::after{
     content:"";
     width:200%;
     height:0.7em;
     display:inline-block;
     margin:0 -200% 0 0;
     position:relative;
     left:20px;
     bottom:0.2em;
     background: url(../../../assets/products_image/bg-head.jpg) repeat-x;
     vertical-align:bottom;
 }
 .contact-info{
     padding:8px;
 }
 .follow-us{
     padding:8px;
 }
 .gmap_canvas {
     width:550px;
     overflow:hidden;
     background:none!important;
 }
 .google_map_width_height{
     float:right;
     width:550px;
     height:400px;
     border:1px solid black;
 }

/*============================= footer ===========================*/
.footer-header-center-for-responsive{
    display:none;
}
.footer-header-center-for-normal{
    display:block;
}
.footer1-bg{
    background:#23252B;
    box-shadow: inset -30px 5px -30px rgba(255, 255, 255, 0.2);
    white-space:nowrap;
}
.footer2-bg{
    background:#f9f9f9;
}
.color{
    color:#606060;
    font-weight:bold;
}
.footer-affiliate-link{
    text-decoration: none !important;
}
.color-social{
    color:white;
}
.color-bg-2{
    color:#0065B3;
    font-weight:bold;
}
.btn-success{
    background-color:#606060; 
}



