/* Desktop */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700;900&display=swap");
::selection {
    color: var(--color-white);
    background-color: var(--color-blue);
}
:root {
    --secondarycolor: hsl(0, 0%, 28%);
    --primarycolor: #78232F;
    --bordercolor: #a3a3a3;
    --colorblack: #000000;
    --colorWhite: #ffffff;
    --sectioncolor: #f7f7f7;
    --colorGreyLight: #9f9f9f;
    /* Font sizes. */
    --font-size-10: 0.625rem;
    --font-size-12: 0.75rem;
    --font-size-14: 0.875rem;
    --font-size-16: 1rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.125rem;
    --font-size-24: 1.5rem;
    --font-size-30: 1.875rem;
    --font-size-36: 2.25rem;
    --font-size-48: 3rem;
    --font-size-55: 3.438rem;
    --font-size-70: 4.375rem;
    /* rameez */
    --color-blue: #78232F;
    --color-grey: #e4e4e4;
    --color-darkgrey: #666666;
    --color-white: #ffffff;
    /* huzaifa */
    --colorLightGrey: #f7f7f7;
    --colorDarkGrey: #666666;
    --colorBlue: #78232F;
    --colorWhite: #ffffff;
    --colorGrey: #cccccc;
    --colorBlack: #000000;
    /*Font Weight */
    --fontWeight400: 400;
    /*Font Weight */
    --iconfilter: grayscale(100%);
}
* {
    margin: 0;
    padding: 0;
}
*:focus {
    outline: none;
}
a {
    color: var(--color-blue);
}
a:hover {
    color: var(--color-blue);
    text-decoration: underline;
}
.grey-bg {
    background-color: var(--sectioncolor);
}
.white-bg {
    background-color: var(--colorWhite) !important;
}
body {
    margin: 0px;
    padding: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    touch-action: pan-x pan-y;
    font-family: "Roboto";
    color: var(--color-darkgrey);
    box-sizing: border-box;
}
/*Home New Menu*/
html {
    scroll-behavior: smooth;
}
#nav-overlay {
    overflow: hidden;
    position: fixed;
    background-color: transparent;
    width: 20%;
    height: 100vh;
    top: 77px;
    right: -100%;
    background-color: #474747f0;
    transition: all 0.5s;
}
#nav-overlay.open {
    overflow: hidden;
    background-color: #474747f0;
    position: fixed;
    width: 20%;
    height: 100vh;
    top: 77px;
    right: 0px;
    transition: all 0.5s;
}
#nav-overlay.open a {
    text-decoration: none;
}
#nav-overlay nav {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    /* right: -100%;*/
    width: 100%;
    height: 100%;
    list-style: none;
    z-index: 90;
    transition: all 0.5s;
}
#nav-overlay nav li {
    display: block;
    margin: 0.5rem 0;
}
#nav-overlay nav li a {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-decoration: none;
    color: rgb(0, 0, 0);
}
#nav-overlay nav li a .bd-ani-btm {
    display: block;
    height: 2px;
    background-color: var(--primarycolor);
    width: 0;
    transition: all 0.5s;
    top: 15px;
    left: 0;
    position: absolute;
}
#nav-overlay nav li a:hover .bd-ani-btm {
    width: 100%;
}
/*      #nav-overlay.open nav {
         right: 0;
         }*/
/*        #nav-overlay:before,
         #nav-overlay:after {
         content: "";
         position: absolute;
         z-index: 50;
         top: 0;
         height: 100%;
         width: 100%;
         background-color: #474747f0;
         transition: transform 350ms;
         right: 0;
         }*/
/*
         #nav-overlay:before {
         right: 0;
         transform: skew(50deg) translateX(0%);
         clip: rect(auto 50vw auto auto);
         }
         @media (min-width: 500px) {
         #nav-overlay:before {
         transform: skew(0deg) translateX(100%);
         }
         }
         #nav-overlay.open:before {
         transform: skew(0) translateX(0%);
         }
         #nav-overlay:after {
         left: 0;
         transform: skew(50deg) translateX(200%);
         clip: rect(auto auto auto 50vw);
         }
         #nav-overlay .accordion{ width:0; transition:width 0.5s;}
         #nav-overlay.open .accordion { width:100% !important;}
         @media (min-width: 500px) {
         #nav-overlay:after {
         transform: skew(50deg) translateX(150%);
         }
         }
         #nav-overlay.open:after {
         transform: skew(0) translateX(0%);
         }*/
.screen-reader-text {
    position: absolute;
    left: -999999em;
}
/* /////////////////////// */
/*.desktop-header .main-menu {
         display: none;
         }*/
.accordion {
    background-color: transparent;
    color: white;
    border: 0;
    border-bottom: 1px solid #e4e4e4;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    /* border: none; */
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    text-transform: uppercase;
}
.accordion a {
    color: var(--colorWhite);
}
.accordion.nil:after {
    content: "";
    display: none;
}
.accordion:hover {
    background-color: var(--primarycolor);
}
.accordion:after {
    content: '\002B';
    color: rgb(255, 255, 255);
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.accordion.active:after {
    /* content: "\2212"; */
}
.panel {
    padding: 0 18px;
    background-color: #e4e4e4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
#abc .top-header {
    background-color: var(--primarycolor);
}
#abc .top-header .logo-area img {
    width: 100px;
}
#nav-overlay .panel ul {
    padding-left: 0;
}
.menu-button {
    position: absolute;
    /* right: 10px; */
    top: 49%;
    width: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
}
.menu-button .hamburger {
    height: 2px;
    margin: 1.4px 0;
    background: var(--colorWhite);
    transition: all ease-in-out 0.2s;
}
.menu-button .hamburger:nth-child(1) {
    width: 85%;
}
.menu-button .hamburger:nth-child(2) {
    width: 85%;
}
.menu-button .hamburger:nth-child(3) {
    width: 85%;
    margin-top: 2px;
}
.menu-button:hover .hamburger:nth-child(1) {
    width: 85%;
}
.menu-button:hover .hamburger:nth-child(2) {
    width: 85%;
}
.menu-button:hover .hamburger:nth-child(3) {
    width: 85%;
}
.menu-button.open .hamburger:nth-child(1) {
    width: 85%;
    transform-origin: -1px -2px;
    transform: rotate(45deg) translate(4px, -2px);
}
.menu-button.open .hamburger:nth-child(2) {
    opacity: 0;
}
.menu-button.open .hamburger:nth-child(3) {
    width: 85%;
    transform-origin: -2px 1px;
    transform: rotate(-45deg) translate(0px, 3px);
}
#abc {
    position: fixed;
    top: -78px;
    transition: top 0.8s;
}
#abc .top-header {
    border-bottom: none;
}
#abc .top-main-ul li .links:hover {
    background-color: var(--secondarycolor);
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li:last-child .links:hover {
    background-color: transparent !important
}
[aos="fade"] {
    opacity: 0;
    transition-property: opacity;
}
[aos="fade"].aos-animate {
    opacity: 1;
}
.rgt-space-12 {
    margin-right: 5px;
}
.mg-cus-5 {
    margin-right: 6px;
}
.opacity-0 {
    opacity: 1;
}
.bg-vid {
    width: 100%;
    position: relative;
    margin-top: 100px;
    height: 100%;
}
.ball-slider-box {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
}
.form-vid-bg {
    position: relative;
    height: 100%;
    margin-top: 100px;
}
.form-vid-bg video {
    /* margin-top: 150px; */
    position: relative;
    left: -140px;
}
/*Home New Menu*/
/* h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
p {
} */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul {
    list-style: none;
    /* display: flex; */
    margin-bottom: 0px;
}
video:focus-visible {
    outline: none;
}
video:hover {
    outline: none;
}
.secondarycolor {
    color: #474747 !important;
}
.primarycolor {
    color: var(--color-blue) !important;
}
.heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.section-top-content p {
    /* width: 42%;
    margin: 0 auto; */
    font-size: var(--font-size-30);
    font-weight: 400;
}
/* header */
.desktop-header {
    position: absolute;
    top: 0;
    z-index: 11;
    width: 100%;
}
/* header top-header */
.desktop-header .top-header {
    border-bottom: 1px solid var(--bordercolor);
    background-color: var(--secondarycolor);
}
.desktop-header .top-header .desktop-topbar .logo-area {
    padding: 10px 0px;
}
.desktop-header .top-header .desktop-topbar .logo-area a img {
    width: 159px;
}
.desktop-header .top-header .desktop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul {
    display: flex;
    align-items: center;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .links {
    text-transform: uppercase;
    color: white;
    padding: 5px 10px;
    font-size: var(--font-size-14);
    transition: all 0.3s;
    display: inline-block;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown {
    background-color: white;
    padding: 5px 10px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 20px;
    margin: auto 20px;
    /*margin-top: -5px;*/
    text-transform: uppercase;
    font-size: var(--font-size-14);
    color: var(--primarycolor);
    border: 3px solid #474747;
    margin-top: 2px;
    position: relative;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown:hover .link-dropdown-content {
    visibility: visible;
    opacity: 1;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown .fa-globe {
    font-size: 20px;
    margin-right: 10px;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown span {
    margin-right: 10px;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main {
    position: relative;
    z-index: 99;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main .link-dropdown-content {
    background-color: white;
    padding: 30px 10px;
    text-align: center;
    width: 100%;
    margin: 0px auto;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 90%;
    -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    -moz-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.51);
    box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main .link-dropdown-content .top-main-child-ul {
    display: block;
    padding: 0;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main .link-dropdown-content .top-main-child-ul li a {
    color: black;
    line-height: 2;
    font-size: var(--font-size-12);
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main .link-dropdown-content .top-main-child-ul li a {
    position: relative;
    /*text-decoration: underline;*/
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-dropdown-main .link-dropdown-content .top-main-child-ul li a:hover {
    color: var(--primarycolor);
    /*text-decoration: underline;*/
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li a .bd-ani-btm {
    display: block;
    height: 1px;
    background-color: var(--primarycolor);
    width: 0;
    transition: all 0.5s;
    top: 13px;
    left: 0;
    position: absolute;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li a:hover .bd-ani-btm {
    width: 100%;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .links:hover {
    background-color: var(--primarycolor);
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li:first-child:after {
    content: "|";
    color: var(--bordercolor);
    margin: 0px 10px;
}
.desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul .top-main-child-ul li:first-child:after {
    content: "";
}
/*End header top-header */
/* header main-menu */
.desktop-header .main-menu {
    background: linear-gradient(180deg, rgb(71 71 71 / 95%) 0%, rgb(71 71 71 / 0%) 100%);
    height: 95px;
    z-index: 1;
}
/* wamiq bhai menu css */
.controller-nav {
    font-size: 15px;
    color: var(--color-blue);
    text-align: center;
}
.first-next.swiper-button-next:after {
    content: "";
    background-image: url("../images/main-slider-arrow-blue.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 50px;
    height: 12px;
}
.first-prev .swiper-button-prev:after {
    content: "";
    background-image: url("../images/main-slider-arrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 50px;
    height: 12px;
    transform: rotate(-180deg);
}
.first-next {
    width: 50px;
}
.first-prev {
    width: 50px;
    /* display: none; */
}
.first-next.swiper-button-lock {
    cursor: pointer;
    display: flex;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.activeSlide,
.activeSlideLife {
    font-weight: 300;
    text-align: center;
    font-size: 48px;
}
.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    font-size: 14px;
    letter-spacing: -1.5px;
}
/* wamiq bhai */
.main-nav-box {
    width: 100%;
    height: auto;
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.main-nav-box li {
    float: left;
    min-height: 50px;
    margin-right: 33px;
    transition: all 0.5s;
    border-radius: 5px;
}
/* .main-nav-box li:nth-child(2) .dropdown-div {
    width: 625px;
} */
.main-nav-box li:nth-child(3) .dropdown-div {
    width: 580px;
}
.main-nav-box li:nth-child(3) .dropdown-div ul li:last-child {
    width: 395px;
}
.main-nav-box li:hover {
    background-color: var(--primarycolor);
    transition: all 0.2s;
}
.main-nav-box li:hover,
.main-nav-box li.active {
    background-color: var(--primarycolor);
    transition: all 0.2s;
}
.main-nav-box li.active {
    background-color: var(--color-blue);
}
.main-nav-box li:focus {
    background-color: var(--primarycolor);
    /* transition: all 0.5s; */
}
.main-nav-box li:last-child {
    margin-right: 0;
}
.main-nav-box li.active:after {
    content: "";
}
.main-nav-box li a {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: var(--font-size-18);
    transition: all 0.5s;
}
.main-nav-box li a:hover {
    color: var(--colorWhite);
    /* transition: all 0.5s; */
    text-decoration: none;
}
.main-nav-box li a span.menu-text {
    padding-right: 12px;
    display: flex;
    float: left;
    line-height: 20px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    /* transition: all 0.5s; */
}
.main-nav-box li:first-child a span.menu-text {
    width: 110px;
}
.main-nav-box .menu-text {
    display: inline-block;
    font-size: var(--font-size-18);
    /* transition: all 0.5s; */
}
span.menu-icon {
    display: flex;
    /* min-height: 50px; */
    align-items: center;
    justify-content: center;
    /* transition: all 0.5s; */
}
.nav-link {
    padding: 0 1.5rem;
}
.nav-link i {
    font-size: 10px;
    margin-top: 16px
}
.nav-item .dropdown-div {
    visibility: hidden;
    width: 575px;
    opacity: 0;
    transition: all 0.5s;
    background: #ffffff;
    padding: 45px 10px;
    top: 55px;
    left: -10px;
    position: absolute;
    -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    -moz-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.51);
    box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    z-index: 2;
}
.nav-item:hover>.dropdown-div {
    visibility: visible;
    opacity: 1;
    transition: all 1s;
}
.dropdown-div:before {
    /* content: "\25E3"; */
    content: "";
    position: absolute;
    top: -9px;
    left: 0px;
    color: white;
    width: 0;
    height: 0;
    border-bottom: 30px solid white;
    border-right: 30px solid transparent;
}
.nav-item {
    position: relative;
}
.nav-item .dropdown-div ul li,
.nav-item .dropdown-div-2-last ul li,
.nav-item .dropdown-div-csr ul li {
    width: 50%;
    float: left;
    position: relative;
    min-height: auto;
    margin-right: 0;
    transition: all 0.5s;
}
.nav-item:nth-child(6) .dropdown-div-2-last ul li {
    width: 75%;
}
.nav-item .dropdown-div ul li:hover span {
    width: 100%;
}
.nav-item .dropdown-div-2-last ul li:hover span {
    width: 100%;
}
.nav-item .dropdown-div-csr ul li:hover span {
    width: 100%;
}
.nav-item .dropdown-div ul,
.nav-item .dropdown-div-2-last ul,
.nav-item .dropdown-div-csr ul {
    padding: 0;
    margin: 0;
}
.nav-item .dropdown-div ul li a,
.nav-item .dropdown-div-2-last ul li a,
.nav-item .dropdown-div-csr ul li a {
    color: var(--colorblack);
    font-size: var(--font-size-18);
    font-weight: var(--fontWeight400);
    width: auto;
    display: inline-block;
    text-transform: initial;
    padding: 5px;
    padding-right: 10px;
    transition: all 0.5s;
    border-radius: 5px;
}
.nav-item .dropdown-div ul li:hover,
.nav-item .dropdown-div-2-last ul li:hover,
.nav-item .dropdown-div-csr ul li:hover {
    background: none;
}
.nav-item .dropdown-div ul li a:hover,
.nav-item .dropdown-div-2-last ul li a:hover,
.nav-item .dropdown-div-csr ul li a:hover {
    background-color: #fff;
    color: var(--primarycolor);
    transition: all 0.5s;
}
.nav-item .dropdown-div ul li a i,
.nav-item .dropdown-div-2-last ul li a i,
.nav-item .dropdown-div-csr ul li a i {
    font-size: var(--font-size-10);
    /* position: absolute;
    left: -15px;
    top: 6.5px; */
    color: var(--colorGreyLight);
    margin: 0 8px 0 5px;
}
.nav-item .dropdown-div ul li a:hover,
.nav-item .dropdown-div-2-last ul li a:hover,
.nav-item .dropdown-div-csr ul li a:hover {
    background-color: var(--primarycolor);
    color: var(--color-white);
    border-radius: 5px;
    transition: all 0.5s;
    text-decoration: none;
}
.nav-item .dropdown-div ul li a:hover i,
.nav-item .dropdown-div-2-last ul li a:hover i,
.nav-item .dropdown-div-csr ul li a:hover i {
    color: var(--color-white);
}
.nav-item .dropdown-div-2-last {
    visibility: hidden;
    width: 500px;
    opacity: 0;
    transition: all 0.5s;
    background: #ffffff;
    padding: 45px 10px;
    top: 55px;
    right: -10px;
    position: absolute;
    -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    -moz-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.51);
    box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    z-index: 2;
}
.nav-item .dropdown-div-2-last ul li:nth-child(2) {
    min-width: 360px;
}
.nav-item .dropdown-div-csr {
    visibility: hidden;
    width: 500px;
    opacity: 0;
    transition: all 0.5s;
    background: #ffffff;
    padding: 45px 10px;
    top: 55px;
    position: absolute;
    -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    -moz-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.51);
    box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
    z-index: 2;
    right: -10px;
}
.nav-item:hover>.dropdown-div-2-last,
.nav-item:hover>.dropdown-div-csr {
    visibility: visible;
    opacity: 1;
    transition: all 1s;
}
.dropdown-div-csr:after,
.dropdown-div-2-last:after {
    /* content: "\25E2";
    position: absolute;
    right: 0px;
    top: -17px;
    color: white; */
    content: "";
    position: absolute;
    top: -9px;
    right: 0px;
    color: white;
    width: 0;
    height: 0;
    border-bottom: 50px solid white;
    border-left: 50px solid transparent;
}
/* wamiq bhai menu css end  */
.health-image-main img {
    filter: grayscale(100%);
    transition: all 0.5s ease-in-out;
}
.health-image-main img:hover {
    filter: grayscale(0%);
    /* transform: scale(1.1); */
}
/*
 .desktop-header .main-menu .navbar .nav-item .nav-link {
  text-align: center;
  text-transform: uppercase;
  color: var(--colorWhite);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 50px;
  line-height: 1.2;
  width: 165px;
  margin: 0 20px;
}
.desktop-header .main-menu .navbar .nav-item .nav-link .menu-text {
  display: inline-block;
  font-size: var(--font-size-18);
  /* padding: 0px 30px; 
}
.desktop-header .main-menu .navbar .nav-item .nav-link .menu-icon {
  display: inline-block;
  padding: 0px 5px;
}
.desktop-header .main-menu .navbar .nav-item {
  width: 100%;
  position: relative;
}
.desktop-header .main-menu .navbar .nav-item .nav-link i {
  font-size: 10px;
}
.desktop-header .main-menu .navbar .nav-item:hover .nav-link {
  background-color: var(--primarycolor);
} 
.main-menu .navbar-nav li .dropdown-div-csr {
  visibility: hidden;
  width: 500px;
  opacity: 0;
  transition: all 0.5s;
  background: #ffffff;
  padding: 45px 10px;
  top: 58px;
  left: -300px;
  position: absolute;
  box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
  -webkit-box-shadow: 5px 5px 8px 0px rgb(0 0 0 / 51%);
  -moz-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.51);
  z-index: 2;
}
.main-menu .navbar-nav li .dropdown-div-csr:after {
  content: "\25E2";
  position: absolute;
  right: -1px;
  top: -17px;
  color: white;
}
.main-menu .navbar-nav li .dropdown-div:before {
  content: "\25E3";
  position: absolute;
  top: -17px;
  left: -1px;
  color: white;
}
.main-menu .navbar-nav .nav-item:hover .dropdown-div,
.main-menu .navbar-nav .nav-item:hover .dropdown-div-csr {
  visibility: visible;
  opacity: 1;
}
.main-menu .navbar-nav .nav-item .dropdown-div ul,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul {
  display: block;
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li {
  width: 50%;
  float: left;
  position: relative;
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li a,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li a {
  color: var(--colorblack);
  font-size: var(--font-size-18);
  font-weight: var(--fontWeight400);
  width: auto;
  display: inline-block;
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li a:hover,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li a:hover {
  color: var(--primarycolor);
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li a i,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li a i {
  font-size: var(--font-size-10);
  position: absolute;
  left: -15px;
  top: 6.5px;
  color: var(--colorGreyLight);
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li a:hover i,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li a:hover i {
  color: var(--primarycolor);
}
.main-menu .navbar-nav .nav-item .dropdown-div ul li a:hover .bd-ani-btm,
.main-menu .navbar-nav .nav-item .dropdown-div-csr ul li a:hover .bd-ani-btm {
  width: 100%;
}
*/
.timeline-slider .swiper-wrapper .swiper-slide-active {
    background-color: #fff !important;
}
.automattic {
    background-image: url(https://images.unsplash.com/photo-1494007485290-ce668e189d92?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
}
.automattic:hover {
    background-image: url(https://images.unsplash.com/photo-1496196614460-48988a57fccf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1267&q=80);
}
/*Wamiq*/
.bd-ani-btm {
    display: block;
    height: 1px;
    background-color: var(--primarycolor);
    width: 0;
    transition: all 0.5s;
    top: -5px;
    position: relative;
}
/**/
/* End header main-menu */
/*Blue Banner Box Css*/
.s-h {
    -webkit-transition: all ease-in-out 0.8s;
    -moz-transition: all ease-in-out 0.8s;
    -ms-transition: all ease-in-out 0.8s;
    -o-transition: all ease-in-out 0.8s;
    transition: all ease-in-out 0.8s;
}
/*Blue Banner Box Css*/
/* entities */
.entities {
    padding: 55px 0 80px 0;
    background-color: var(--sectioncolor);
    text-align: center;
    position: relative;
    z-index: 9;
}
.entities .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.entities .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
     animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite; 
     animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}
*/
/*.entities .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
}
*/
.entities .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.entities .section-top-content p {
    width: 42%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
.entities-main-div .mydiv:first-child {
    display: block;
    height: 100%;
    vertical-align: middle;
}
.mydiv {
    display: none;
}
.entities .entities-main-div {
    margin-top: 40px;
    /* background-image: url(../images/Entities-bg.png); 
  background-repeat: no-repeat;
  min-height: 500px;
  background-position: center; */
    position: relative;
}
.entities .entities-main-div {
    margin-top: 40px;
    min-height: 380px;
    /* position: relative; */
    width: 300px;
    height: 150px;
    margin: 0 auto;
}
.entities .entities-main-div .entities-logos {
    position: absolute;
    top: 30%;
    left: 0;
    width: 300px;
}
.entities .logo-text-main {
    margin-top: 40px;
    min-height: 478px;
    background-image: url(../images/Entities-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    /* position: absolute; */
    position: relative;
    top: 0;
    width: 878px;
    height: 478px;
    margin: 70px auto 0;
}
.entities .logo-text-main .logo-1 {
    position: absolute;
    top: 25%;
    /* left: 15%; */
    left: -147px;
}
.entities .logo-text-main .logo-1 .logo-1-round {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 18px 8px 18px 8px;
    background-color: var(--secondarycolor);
    position: absolute;
    top: 5px;
    left: 111.5%;
    transform: rotate(54deg);
}
.entities .logo-text-main .logo-1 a {
    color: var(--color-darkgrey);
    font-size: var(--font-size-30);
    line-height: 25px;
    transition: all 0.5s;
}
.entities .logo-text-main .logo-1 a:hover,
.entities .logo-text-main .logo-1 a.active {
    color: var(--primarycolor);
    background-color: transparent;
}
.entities .logo-text-main .logo-1 a.active:after {
    content: "";
}
.entities .logo-text-main .logo-1 a:hover .logo-1-round,
.entities .logo-text-main .logo-1 a.active .logo-1-round {
    background-color: var(--primarycolor);
}
.entities .logo-text-main .logo-2 {
    position: absolute;
    top: 285px;
    left: 58px;
    width: 170px;
}
.entities .logo-text-main .logo-2 .logo-2-round {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 60.5px;
    background-color: var(--secondarycolor);
    position: absolute;
    top: 10px;
    left: 101.5%;
    border-radius: 18px 8px 18px 8px;
    transform: rotate(54deg);
}
.entities .logo-text-main .logo-2 a {
    color: var(--color-darkgrey);
    font-size: var(--font-size-30);
    line-height: 25px;
    transition: all 0.5s;
}
.entities .logo-text-main .logo-2 a:hover,
.entities .logo-text-main .logo-2 a.active {
    color: #702076;
    background-color: transparent;
}
.entities .logo-text-main .logo-2 a.active:after {
    content: "";
}
.entities .logo-text-main .logo-2 a:hover .logo-2-round,
.entities .logo-text-main .logo-2 a.active .logo-2-round {
    background-color: #702076;
}
.entities .logo-text-main .logo-3 {
    position: absolute;
    top: 385px;
    left: 240px;
    width: 305px;
    text-align: left;
}
.entities .logo-text-main .logo-3 .logo-3-round {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 60.5px;
    background-color: var(--secondarycolor);
    position: absolute;
    top: 8px;
    left: 281px;
    border-radius: 10px 18px 10px 18px;
    transform: rotate(-32deg);
}
.entities .logo-text-main .logo-3 a {
    color: var(--color-darkgrey);
    font-size: var(--font-size-30);
    line-height: 34px;
    transition: all 0.5s;
    width: 89%;
    display: block;
    text-align: right;
}
.entities .logo-text-main .logo-3 a:hover,
.entities .logo-text-main .logo-3 a.active {
    color: #7a212e;
    background-color: transparent;
}
.entities .logo-text-main .logo-3 a.active:after {
    content: "";
}
.entities .logo-text-main .logo-3 a:hover .logo-3-round,
.entities .logo-text-main .logo-3 a.active .logo-3-round {
    background-color: #7a212e;
}
.entities .logo-text-main .logo-4 {
    position: absolute;
    top: 345px;
    right: -107px;
    width: 200px;
    text-align: left;
}
.entities .logo-text-main .logo-4 .logo-4-round {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 18px 10px 18px 10px;
    background-color: var(--secondarycolor);
    position: absolute;
    top: 0px;
    left: -16.5%;
    transform: rotate(63deg);
}
.entities .logo-text-main .logo-4 a {
    color: var(--color-darkgrey);
    font-size: var(--font-size-30);
    line-height: 25px;
    transition: all 0.5s;
}
.entities .logo-text-main .logo-4 a:hover,
.entities .logo-text-main .logo-4 a.active {
    color: #e61d39;
    background-color: transparent;
}
.entities .logo-text-main .logo-4 a.active:after {
    content: "";
}
.entities .logo-text-main .logo-4 a:hover .logo-4-round,
.entities .logo-text-main .logo-4 a.active .logo-4-round {
    background-color: #e61d39;
}
.entities .logo-text-main .logo-5 {
    position: absolute;
    top: 101px;
    right: 115px;
    width: 155px;
}
.entities .logo-text-main .logo-5 .logo-5-round {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 8px 18px 8px 18px;
    background-color: var(--secondarycolor);
    position: absolute;
    top: 0px;
    left: -17.5%;
    transform: rotate(-24deg);
}
.entities .logo-text-main .logo-5 a {
    color: var(--color-darkgrey);
    font-size: var(--font-size-30);
    line-height: 25px;
    transition: all 0.5s;
}
.entities .logo-text-main .logo-5 a:hover,
.entities .logo-text-main .logo-5 a.active {
    color: #0e7b52;
    background-color: transparent;
}
.entities .logo-text-main .logo-5 a.active:after {
    content: "";
}
.entities .logo-text-main .logo-5 a:hover .logo-5-round,
.entities .logo-text-main .logo-5 a.active .logo-5-round {
    background-color: #0e7b52;
}
/* end Entities */
/* spectrum */
/* rameez */
/* atif */
.spectrum-section {
    padding: 60px 0 80px 0;
    background-color: var(--color-white);
    text-align: center;
    position: relative;
    z-index: 8;
}
.spectrum-section .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.spectrum-section .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
     animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite; 
     animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}*/
/*.spectrum-section .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); 
}*/
.spectrum-section .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.spectrum-section .section-top-content p {
    width: 60%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
.spectrum-slider {
    padding: 100px 0;
}
/* atif end */
.spec-wrap {
    text-align: center;
    text-decoration: none;
}
/* .spec-wrap .s-img-wrap {
  width: 92%;
  clip-path: ellipse(50% 45% at 50% 50%);
  transform: rotate(25deg);
  -webkit-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  -o-transform: rotate(25deg);
  margin: 0 auto;
  display: table;
  text-align: center;
} */
/* .spec-wrap .s-img-wrap img {
  transform: rotate(-28deg);
  -webkit-transform: rotate(-28deg);
  -moz-transform: rotate(-28deg);
  -ms-transform: rotate(-28deg);
  -o-transform: rotate(-28deg);
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
} */
.spectrum-slider {
    padding-inline: 10px;
}
.spectrum-slider .swiper-slide .s-img-wrap img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(0.96);
    /* 1.01 */
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
    transform: scale(0.96);
    transition: all 0.5s;
}
.spectrum-slider .swiper-slide.swiper-slide-active .s-img-wrap img {
    filter: grayscale(0);
}
/* .partner_Slider .swiper-slide-active {
  top: 180px;
  transition: all 0.25s ease;
  margin-left: 25px;
} */
.spectrum-slider .swiper-slide .s-img-wrap {
    margin-bottom: 35px;
    transition: all 0.5s;
}
.spectrum-slider .swiper-slide:hover .s-img-wrap {
    /*  filter: drop-shadow(10px 10px 15px #0000007a);*/
    /*filter: drop-shadow(10px 10px 15px #0000007a);*/
    filter: drop-shadow(5px 5px 3px #0000007a);
}
.spectrum-slider .swiper-slide:hover .s-img-wrap img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(0.98);
    /* 1.01 */
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98);
}
.spectrum-slider .swiper-slideswiper-slide-active .s-img-wrap img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(0.98);
    /* 1.01 */
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98);
}
.spec-wrap:hover .s-img-wrap img {
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.spec-wrap h4 {
    font-size: var(--font-size-48);
    line-height: 48px;
    font-family: "Roboto th";
    font-weight: 400;
    /* color: var(--color-blue); */
    color: var(--color-darkgrey);
    text-decoration: none;
    width: 75%;
    margin: 0 auto;
}
.manufacturing-img-sec .spectrum-slider .spec-wrap h4 {
    font-size: var(--font-size-48);
    line-height: 48px;
    font-family: "Roboto th";
    font-weight: 400;
    /* color: var(--color-blue); */
    color: var(--color-darkgrey);
    text-decoration: none;
    width: 75%;
    margin: 0 auto;
    height: 95px;
    vertical-align: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spectrum-slider .swiper-slide-active .spec-wrap h4 {
    color: var(--color-blue);
}
.spectrum-slider .spec-controller {
    position: absolute;
    left: 50%;
    bottom: 4%;
}
.spectrum-slider .spec-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
}
.spectrum-slider .spec-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.spectrum-slider .spec-controller .swiper-button-next:hover,
.spectrum-slider .spec-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.spectrum-slider .spec-controller .swiper-button-next:after,
.spectrum-slider .spec-controller .swiper-button-prev:after {
    font-size: 14px;
}
.spectrum-slider .spec-controller .swiper-button-disabled.swiper-button-next:after,
.swiper-button-disabled .spectrum-slider .spec-controller .swiper-button-disabled.swiper-button-prev:after {
    font-size: 14px;
}
/* rameez end */
/* spectrum end */
/* explore-culture */
.explore-culture {
    padding: 60px 0 80px 0;
    background-color: var(--colorWhite);
    text-align: center;
    position: relative;
    z-index: 6;
}
.explore-culture .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
.chemicals-slider .chemicals-content img,
.explore-culture-slider .explore-culture-content img {
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    -webkit-transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -o-transform: scale(0.96);
    transform: scale(0.96);
    transition: all 0.5s;
}
.chemicals-slider .chemicals-content img:hover,
.explore-culture-slider .explore-culture-content img:hover {
    /* -webkit-filter: grayscale(0);
    filter: grayscale(0); */
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98);
}
/*.explore-culture .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite; 
   animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}
.explore-culture .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
   animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); 
}*/
.explore-culture .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.explore-culture .section-top-content p {
    width: 100%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
.explore-culture .explore-culture-slider-main {
    /*background-image: url(../images/explore-culture-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  padding-top: 70px;
  background-attachment: fixed;
  background-size: 100%;*/
}
.explore-culture .explore-culture-slider-main .explore-culture-btn-main {
    padding-top: 70px;
}
/* Ripple effect */
.explore-culture .explore-culture-slider-main .explore-culture-btn-main a {
    text-transform: capitalize;
    font-size: var(--font-size-18);
    background-position: center;
    transition: background 0.8s;
    width: 340px;
    display: block;
    margin: 0 auto;
    color: var(--color-darkgrey);
    background-color: white;
    border: 1px solid var(--bordercolor);
    border-radius: 50px;
    padding: 15px 50px;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}
.explore-culture .explore-culture-slider-main .explore-culture-btn-main a:hover {
    background: var(--primarycolor) radial-gradient(circle, transparent 1%, var(--primarycolor) 1%) center/15000%;
    color: var(--color-white);
}
.explore-culture .explore-culture-slider-main .explore-culture-btn-main a:active {
    background-color: var(--secondarycolor);
    background-size: 100%;
    transition: background 0s;
}
.stories_Slider .swiper-slide .swiper_Text h2 {
    transition: all 0.5s;
}
.stories_Slider .swiper-slide .swiper_Text .main-pera {
    transition: all 0.5s;
}
.stories_Slider .swiper-slide .swiper_Text p {
    transition: all 0.5s;
}
.stories_Slider .swiper-slide .swiper_Text {
    background-color: var(--colorWhite);
    transition: all 0.5s;
}
.stories_Slider .swiper-slide:hover .swiper_Text {
    background-color: var(--primarycolor);
}
.stories_Slider .swiper-slide:hover .swiper_Text h2 {
    color: var(--colorWhite);
}
.stories_Slider .swiper-slide:hover .swiper_Text .main-pera {
    color: var(--colorWhite);
}
.stories_Slider .swiper-slide:hover .swiper_Text p {
    color: var(--colorWhite);
}
/* Ripple effect end */
/* explore-culture end */
/* @media only screen and (min-width: 1699px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1644px !important;
  }
} */
/* Huzaifa */
/* Stories Section Start  */
.stories_Section {
    background-color: var(--colorLightGrey);
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 7;
}
.stories_Section .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.stories_Section .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite;
     animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}
*/
/*.stories_Section .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
   animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); 
}
*/
.stories_Section .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.stories_Section .section-top-content p {
    width: 45%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
.stories_Text h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--colorDarkGrey);
    font-weight: 400;
}
.stories_Text h2 {
    font-size: 70px;
    color: var(--colorBlue);
    font-weight: 100;
}
.stories_Text p {
    font-size: 27px;
    color: var(--colorDarkGrey);
    font-weight: 400;
    width: 60%;
    margin: 0 auto;
}
/* Stories Slider CSS Start  */
.stories_Slider {
    padding-top: 70px;
    /* padding-right: 0 !important;
    padding-left: 80px; */
}
.stories_Slider_Buttons {
    /* margin-left: -80px; */
}
.stories_Slider .swiper-overflow-container {
    overflow-x: hidden;
}
/* .stories_Slider .swiper-overflow-container .container {
  overflow: visible;
  outline: 2px solid red;
  position: relative;
} */
.stories_Slider .swiper-overflow-container .swiper-container {
    overflow: visible;
    padding-left: 24px;
}
.stories_Slider .container:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--colorWhite);
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 999;
}
.stories_Slider .item {
    outline: 1px solid var(--colorGrey);
    min-height: 365px;
    background-color: var(--colorWhite);
    transition: 0.5s ease;
}
.stories_Slider .item:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.27);
}
.stories_Slider .item .image img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    max-height: 406px;
}
.stories_Slider .item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transition: 0.5s ease;
}
.stories_Slider .item h2 {
    font-size: var(--font-size-48);
    color: var(--colorBlue);
    font-weight: 300;
}
.stories_Slider .item p {
    font-size: var(--font-size-18);
    color: var(--colorDarkGrey);
    font-weight: 400;
}
.stories_Slider .swiper_Text {
    padding: 27px;
    background-color: var(--colorWhite);
    min-height: 170px;
    height: 190px;
}
.stories_Slider .swiper_Text span p {
    font-size: var(--font-size-14);
    color: var(--colorBlack);
    font-weight: 500;
}
.stories_Slider .swiper_Text h2 {
    margin-bottom: 0 !important;
}
.stories_Slider .swiper_Text .main-pera {
    font-size: var(--font-size-18);
    width: 84%;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.stories_Slider .swiper-button-next,
.stories_Slider .swiper-button-prev {
    position: inherit !important;
    /* top: auto !important;
  bottom: -270px !important; */
    border: 1px solid var(--colorGrey);
    border-radius: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--colorWhite);
    background-image: none;
    background-size: 0;
    background-repeat: no-repeat;
    background-position: 0;
    margin-top: 70px;
    z-index: 10;
    cursor: pointer;
    color: var(--primarycolor);
    transition: all 0.5s;
}
.stories_Slider .stories_Slider_Buttons .swiper-button-next,
.stories_Slider .stories_Slider_Buttons .swiper-button-prev {
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
}
.stories_Slider .swiper-button-next:hover,
.stories_Slider .swiper-button-prev:hover {
    color: var(--colorWhite);
    background-color: var(--primarycolor);
}
.stories_Slider .swiper-button-next {
    /* right: auto !important;
  left: 75px !important; */
    margin-left: 25px;
}
.stories_Slider .swiper-button-next:after,
.stories_Slider .swiper-button-prev:after {
    font-size: 14px;
}
.stories_Slider .arrow-icon {
    font-size: 2rem;
    color: var(--colorWhite);
}
/* Stories Slider CSS End  */
@media (min-width: 2600px) {
    .main-slider .swiper-slide .banner-image-box {
        background-position: center top !important;
    }
    .main-slider-ban .slide .banner-image-box {
        background-position: center top !important;
    }
    .main-timeline-wrap {
        height: 75vh;
    }
}
@media (max-width: 1024px) {
    .stories_Slider .swiper_Text {
        min-height: 181px;
    }
    .stories_Section .section-top-content .section-top-design::before {
        left: 49.3%;
    }
    .stories_Section .section-top-content p {
        width: 54%;
        margin: 0 auto;
        font-size: 18px;
        font-weight: 500;
    }
}
@media (max-width: 768px) {
    .stories_Slider_Buttons {
        margin-left: 0px;
    }
    .stories_Slider .swiper-overflow-container .swiper-container {
        padding-left: 0;
    }
    .stories_Slider {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        /* padding-left: 0 !important; */
    }
    .stories_Section .section-top-content p {
        width: 50%;
    }
    .stories_Section .section-top-content .section-top-design::before {
        left: 49%;
    }
    .stories_Section .section-top-content .heading-one {
        font-size: 45px;
        font-weight: 100;
        color: var(--color-blue);
    }
    /* .stories_Text p {
    width: 83%;
  } */
}
@media (max-width: 767px) {
    .stories_Section .section-top-content .section-top-design::before {
        left: 48.2%;
    }
    .stories_Section .section-top-content .heading-one {
        font-size: 28px;
    }
    .stories_Section .section-top-content p {
        width: 90%;
    }
    .stories_Text p {
        width: 100%;
        font-size: 25px;
    }
    .stories_Text h2 {
        font-size: 64px;
    }
    .stories_Text h4 {
        font-size: 21px;
    }
}
/* Stories Section End  */
/* Huzaifa end */
/* Rameez */
/* main banner css start */
/* Atif */
.main-banner {
    position: relative;
}
.main-banner .banner-arrow {
    position: absolute;
    bottom: 10%;
    left: 5%;
    text-align: center;
    z-index: 4;
}
/* Ripple effect */
.main-banner .banner-arrow a {
    width: 70px;
    display: inline-block;
    border: 1px solid var(--bordercolor);
    border-radius: 50%;
    height: 70px;
    padding-top: 35%;
    background-position: center;
    transition: background 0.8s;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}
.main-banner .banner-arrow a:hover {
    background: var(--primarycolor) radial-gradient(circle, transparent 1%, var(--primarycolor) 1%) center/15000%;
}
.main-banner .banner-arrow a:active {
    background-color: var(--secondarycolor);
    background-size: 100%;
    transition: background 0s;
}
/* Ripple effect end */
.main-banner .banner-arrow a:hover i {
    color: var(--colorWhite);
}
.main-banner .banner-arrow a i {
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    color: var(--primarycolor);
    font-size: 20px;
}
@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}
/* owaiss bhai */
.main-slider .swiper-slide .banner-image-box {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    min-height: 800px;
}
.main-slider-ban .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.main-slider-ban .slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.main-slider-ban .slide .banner-image-box {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    min-height: 800px;
}
@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 10% 0;
        transform: scale(1.05);
    }
    100% {
        background-position: 0 0;
    }
}
/*.main-slider .swiper-slide .circle-bg,
.main-slider .swiper-slide .slide-text {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  transform-origin: center;
}
.main-slider .swiper-slide.swiper-slide-visible.swiper-slide-active .circle-bg {
  transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
}
.main-slider
  .swiper-slide.swiper-slide-visible.swiper-slide-active
  .slide-text {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}*/
/* owais bhai end */
/* Atif end */
.slide-wrap {
    position: relative;
}
.employee-main .swiper-slide {
    opacity: 0 !important;
}
.employee-main .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}
.slide-wrap img {
    clip-path: ellipse(66% 95% at 65% 5%);
}
.learning-main .slide-wrap img,
.employee-main .slide-wrap img,
.learning-image-main .slide-wrap img,
.mission-vission-slider .slide-wrap img,
.mission-vission-main .slide-wrap img {
    clip-path: none;
}
.slide-wrap .slide-text {
    /* position: absolute;
    bottom: 22%;
    left: 10%; */
    background-color: transparent;
    /* width: 500px;
    height: auto; */
    /* padding: 0 75px;
    width: 825px;
    height: 584px; */
    padding: 0 15%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.slide-wrap .circle-bg {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -0px;
    width: 825px;
    height: 584px;
    background-color: var(--color-blue);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.slide-wrap .slide-text {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.slide-wrap .slide-text h1 {
    font-size: var(--font-size-48);
    line-height: 61px;
    color: var(--color-white);
    text-transform: uppercase;
    font-family: "Roboto Th";
    /* width: calc(100% - 40px); */
    text-align: left;
    /* height: 190px; */
    height: auto;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden; */
}
.slide-wrap .slide-text p {
    font-size: var(--font-size-20);
    line-height: 26px;
    font-weight: 400;
    color: var(--color-white);
    /* width: calc(100% - 105px); */
    text-align: left;
    margin-left: 0px;
    height: auto;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden; */
    /* padding-left: 0.3em; */
    /* text-indent: -0.3em; */
}
.controller-nav {
    position: absolute;
    background-color: var(--color-grey);
    width: 100px;
    height: 100px;
    left: auto;
    right: 0px;
    bottom: 20px;
    border-radius: 100%;
}
.controller-nav .swiper-button-next,
.controller-nav .swiper-button-prev {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--color-blue);
    left: 50%;
    /* top: 65%; */
    top: 73%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.controller-nav .swiper-button-next[aria-disabled="true"],
.controller-nav .swiper-button-prev[aria-disabled="true"] {
    color: var(--color-blue);
}
.controller-nav .swiper-button-next[aria-disabled="false"],
.controller-nav .swiper-button-prev[aria-disabled="false"] {
    display: none;
}
.swiper-button-prev:focus-visible {
    outline: none !important;
}
.swiper-button-next:focus-visible {
    outline: none !important;
}
.swiper-button-prev:focus {
    outline: none !important;
}
.swiper-button-next:focus {
    outline: none !important;
}
.img-no-zoom {
    transform: scale(1.0) !important;
}
.img-no-zoom:hover {
    transform: scale(1.0) !important;
}
.timeline-slider {
    height: 940px;
}
@media (min-width: 991px) and (max-width: 1024px) {
    .slide-wrap .circle-bg {
        bottom: 4%;
        left: 6%;
        width: 400px;
        height: 300px;
    }
    .slide-wrap .slide-text {
        bottom: 14%;
        left: 10%;
        width: 385px;
    }
    .slide-wrap .slide-text h1 {
        font-size: 36px;
        line-height: 40px;
        width: calc(100% - 75px);
    }
    .slide-wrap .slide-text p {
        font-size: 12px;
        line-height: 17px;
        width: calc(100% - 95px);
        margin-left: 34px;
    }
    .controller-nav {
        width: 60px;
        height: 60px;
        right: 45px;
        bottom: -60px;
    }
    .controller-nav .swiper-button-next,
    .controller-nav .swiper-button-prev {
        left: 47%;
        top: 70%;
    }
    .controller-nav .swiper-button-next:after,
    .controller-nav .swiper-button-prev:after {
        font-size: 18px;
    }
}
@media (min-width: 1700px) {
    .slide-wrap .slide-text {
        /* position: absolute;
        bottom: 170px;
        left: 60px;
        background-color: transparent; */
        /* padding: 0 75px;
        width: 825px; */
    }
    .main-banner.group-companies .slide-wrap .slide-text {
        position: absolute;
        bottom: 205px;
        left: 60px;
        background-color: transparent;
        width: 500px;
        height: auto;
        padding: 40px;
    }
    .slide-wrap .circle-bg {
        bottom: 10px;
        left: 0px;
        width: 825px;
        height: 584px;
    }
    .slide-wrap .slide-text h1 {
        font-size: var(--font-size-55);
        /* font-size: var(--font-size-70);
        line-height: 65px; */
        /* width: calc(100% - 40px); */
    }
    .group-companies .slide-wrap .slide-text h1 {
        font-size: 2.85rem;
        line-height: 65px;
        height: auto;
    }
    .slide-wrap .slide-text p {
        font-size: var(--font-size-20);
        line-height: 26px;
        /*width: calc(100% - 40px);
        text-align: left; */
        /* margin-left: 12px; */
        /* padding-left: 0.3em; */
        /* text-indent: -0.3em; */
    }
}
@media (min-width: 1400px) and (max-width: 1699px) {
    .years {
        margin-top: 25px;
    }
    .slide-wrap .slide-text {
        /* padding: 0 85px;
        width: 725px;
        height: 484px; */
    }
    .main-banner.group-companies .slide-wrap .slide-text {
        /* position: absolute;
        bottom: 250px;
        left: -43px;
        background-color: transparent;
        width: 425px;
        height: auto; */
    }
    .slide-wrap .circle-bg {
        left: -70px;
        width: 725px;
        height: 484px;
    }
    .activeSlide,
    .activeSlideLife {
        font-weight: 300;
        text-align: center;
        font-size: 41px;
    }
    .controller-nav {
        width: 75px;
        height: 75px;
        right: 50px;
        bottom: 20px;
    }
    .slide-wrap .circle-bg-inner .slide-text-inner {
        /* padding: 0 85px;
        width: 725px;
        height: 484px; */
    }
    /* atif new */
    .latest-tabs .tab-main .nav-pills {
        margin: 0 auto;
        width: 30% !important;
    }
    /* .manufacturing-img-sec .manufacturing-img-div-2 {
        position: absolute;
        margin-top: -10px !important;
    }
    .manufacturing-img-div-3 {
        position: absolute;
        margin-top: 450px !important;
    } */
    /* atif new end */
    .main-slider .swiper-slide .banner-image-box {
        /* background-repeat: no-repeat;
        background-size: auto 920px;
        background-position: 20% bottom;
        min-height: 949px; */
    }
    .main-slider-ban .slide .banner-image-box {
        /* background-position: 680px -505px;
        background-size: 2080px;
        min-height: 900px; */
    }
    .main-slider-ban .slide-wrap .circle-bg-inner {
        left: -70px;
        width: 725px;
        height: 484px;
    }
    /* .dropdown-div:before {
        content: "\25E3";
        position: absolute;
        top: -16px;
        left: 0px;
        color: white;
    } */
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .controller-nav {
        width: 75px;
        height: 75px;
    }
    .slide-wrap .circle-bg {
        left: -45px;
        width: 625px;
        height: 384px;
    }
    .activeSlide,
    .activeSlideLife {
        font-weight: 300;
        text-align: center;
        font-size: 38px;
    }
    .slide-wrap .slide-text {
        width: 100%;
        height: 100%;
    }
    .main-slider .swiper-slide .banner-image-box {
        /* background-position-x: 100px; */
        min-height: 530px;
    }
    .main-slider-ban .slide .banner-image-box {
        min-height: 530px;
    }
    .main-slider-ban .slide-wrap .circle-bg-inner {
        left: -45px;
        width: 600px;
        height: 350px;
    }
    .main-slider-ban .slide-wrap .slide-text-inner {
        /* left: -45px;
        width: 625px;
        height: 384px; */
    }
    .main-slider-ban .slide-wrap .slide-text-inner h1 span {
        font-size: 44px;
    }
    /* atif new */
    .latest-tabs .tab-main .nav-pills {
        margin: 0 auto;
        width: 30% !important;
    }
    /* .manufacturing-img-sec .manufacturing-img-div-2 {
        position: absolute;
        margin-top: -10px !important;
    }
    .manufacturing-img-div-3 {
        position: absolute;
        margin-top: 450px !important;
    } */
    /* atif new end */
}
/* timeline css start */
/* Atif */
/* timeline */
.timeline-section {
    padding: 40px 0;
    background-color: var(--colorWhite);
    text-align: center;
    position: relative;
    z-index: 10;
}
.timeline-section .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.timeline-section .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite; 
     animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}
*/
/**/
@keyframes pulse {
    0% {
        background-color: var(--colorGreyLight);
    }
    100% {
        background-color: var(--primarycolor);
    }
}
/**/
/*.timeline-section .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
   animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); 
}*/
.timeline-section .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.timeline-section .section-top-content p {
    width: 50%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
/* Atif end */
.main-timeline {
    display: block;
}
.main-timeline-wrap {
    /* position: relative; */
    height: 1025px;
    display: flex;
    justify-content: center;
}
.timeline-slider {
    position: relative;
}
.timeline-slider .t-controller {
    position: absolute;
    left: 50%;
    bottom: 4%;
}
.timeline-slider .t-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
    color: var(--primarycolor);
}
.timeline-slider .t-controller .swiper-button-next:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.timeline-slider .t-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: transparent;
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
}
.timeline-slider .t-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.timeline-slider .t-controller .swiper-button-next:after,
.timeline-slider .t-controller .swiper-button-prev:after {
    font-size: 14px;
}
.main-timeline-wrap .t-1,
.main-timeline-wrap .t-2,
.main-timeline-wrap .t-3,
.main-timeline-wrap .t-4,
.main-timeline-wrap .t-5,
.main-timeline-wrap .t-6 {
    position: relative;
}
.main-timeline-wrap .t-1 .t-circle,
.main-timeline-wrap .t-2 .t-circle,
.main-timeline-wrap .t-3 .t-circle,
.main-timeline-wrap .t-4 .t-circle,
.main-timeline-wrap .t-5 .t-circle,
.main-timeline-wrap .t-6 .t-circle {
    text-align: center;
    margin: 0 auto;
    display: table;
}
.main-timeline-wrap .t-1 .t-circle {
    /* width: 175px;
  height: 250px; */
    width: 170px;
    height: 245px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(350deg);
    -moz-transform: rotate(350deg);
    -ms-transform: rotate(350deg);
    -o-transform: rotate(350deg);
    transform: rotate(350deg);
}
.main-timeline-wrap .t-2 {
    /* transform: translate(10%, 20%);
  -webkit-transform: translate(10%, 20%);
  -moz-transform: translate(10%, 20%);
  -ms-transform: translate(10%, 20%);
  -o-transform: translate(10%, 20%); */
    -webkit-transform: translate(-3%, 30%);
    -moz-transform: translate(-3%, 30%);
    -ms-transform: translate(-3%, 30%);
    -o-transform: translate(-3%, 30%);
    transform: translate(-3%, 30%);
}
.main-timeline-wrap .t-2 .t-circle {
    /* width: 170px;
  height: 225px; */
    width: 160px;
    height: 220px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(304deg);
    -moz-transform: rotate(304deg);
    -ms-transform: rotate(304deg);
    -o-transform: rotate(304deg);
    transform: rotate(304deg);
}
.main-timeline-wrap .t-3 {
    /* transform: translate(10%, 37%);
  -webkit-transform: translate(10%, 37%);
  -moz-transform: translate(10%, 37%);
  -ms-transform: translate(10%, 37%);
  -o-transform: translate(10%, 37%); */
    -webkit-transform: translate(0%, 52%);
    -moz-transform: translate(0%, 52%);
    -ms-transform: translate(0%, 52%);
    -o-transform: translate(0%, 52%);
    transform: translate(0%, 52%);
}
.main-timeline-wrap .t-3 .t-circle {
    /* width: 145px;
  height: 195px; */
    width: 140px;
    height: 200px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(287deg);
    -moz-transform: rotate(287deg);
    -ms-transform: rotate(287deg);
    -o-transform: rotate(287deg);
    transform: rotate(287deg);
}
.main-timeline-wrap .t-4 {
    /* transform: translate(10%, 45%);
  -webkit-transform: translate(10%, 45%);
  -moz-transform: translate(10%, 45%);
  -ms-transform: translate(10%, 45%);
  -o-transform: translate(10%, 45%); */
    -webkit-transform: translate(0%, 67%);
    -moz-transform: translate(0%, 67%);
    -ms-transform: translate(0%, 67%);
    -o-transform: translate(0%, 67%);
    transform: translate(0%, 67%);
}
.main-timeline-wrap .t-4 .t-circle {
    /* width: 105px;
  height: 195px; */
    width: 110px;
    height: 180px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(272deg);
    -moz-transform: rotate(272deg);
    -ms-transform: rotate(272deg);
    -o-transform: rotate(272deg);
    transform: rotate(272deg);
}
.main-timeline-wrap .t-5 {
    /* transform: translate(15%, 47%);
  -webkit-transform: translate(15%, 47%);
  -moz-transform: translate(15%, 47%);
  -ms-transform: translate(15%, 47%);
  -o-transform: translate(15%, 47%); */
    -webkit-transform: translate(6%, 60%);
    -moz-transform: translate(6%, 60%);
    -ms-transform: translate(6%, 60%);
    -o-transform: translate(6%, 60%);
    transform: translate(6%, 60%);
}
.main-timeline-wrap .t-5 .t-circle {
    /* width: 85px; */
    width: 90px;
    height: 195px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(250deg);
    -moz-transform: rotate(250deg);
    -ms-transform: rotate(250deg);
    -o-transform: rotate(250deg);
    transform: rotate(250deg);
}
.main-timeline-wrap .t-6 {
    /* transform: translate(10%, 35%);
  -webkit-transform: translate(10%, 35%);
  -moz-transform: translate(10%, 35%);
  -ms-transform: translate(10%, 35%);
  -o-transform: translate(10%, 35%); */
    -webkit-transform: translate(-5%, 25%);
    -moz-transform: translate(-5%, 25%);
    -ms-transform: translate(-5%, 25%);
    -o-transform: translate(-5%, 25%);
    transform: translate(-5%, 25%);
}
.main-timeline-wrap .t-6 .t-circle {
    width: 55px;
    /* height: 195px; */
    height: 210px;
    background-color: var(--color-blue);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    -o-transform: rotate(220deg);
    transform: rotate(220deg);
}
.main-timeline-wrap .t-1 .t-text,
.main-timeline-wrap .t-2 .t-text,
.main-timeline-wrap .t-3 .t-text,
.main-timeline-wrap .t-4 .t-text,
.main-timeline-wrap .t-5 .t-text,
.main-timeline-wrap .t-6 .t-text {
    text-align: center;
    margin: 40px 0 0 0;
    position: relative;
}
.main-timeline-wrap .t-1 .t-text h6,
.main-timeline-wrap .t-2 .t-text h6,
.main-timeline-wrap .t-3 .t-text h6,
.main-timeline-wrap .t-4 .t-text h6,
.main-timeline-wrap .t-5 .t-text h6,
.main-timeline-wrap .t-6 .t-text h6 {
    color: var(--color-blue);
    font-family: "Roboto Lt";
    font-size: var(--font-size-30);
    line-height: 22px;
    font-weight: 900;
    margin: 0 0 12px 0;
}
.main-timeline-wrap .t-1 .t-text p,
.main-timeline-wrap .t-2 .t-text p,
.main-timeline-wrap .t-3 .t-text p,
.main-timeline-wrap .t-4 .t-text p,
.main-timeline-wrap .t-5 .t-text p,
.main-timeline-wrap .t-6 .t-text p {
    font-family: "Roboto Lt";
    color: var(--color-darkgrey);
    font-size: var(--font-size-18);
    /*font-size: var(--font-size-14);*/
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 12px 0;
}
.main-timeline-wrap .t-1 .t-pointer,
.main-timeline-wrap .t-2 .t-pointer,
.main-timeline-wrap .t-3 .t-pointer,
.main-timeline-wrap .t-4 .t-pointer,
.main-timeline-wrap .t-5 .t-pointer,
.main-timeline-wrap .t-6 .t-pointer {
    width: 15px;
    height: 15px;
    background-color: var(--color-blue);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translate(-50%);
    z-index: -1;
}
.main-timeline-wrap .t-1 .t-pointer:before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translate(-50%);
}
.main-timeline-wrap .t-2 .t-pointer:before {
    content: "";
    width: 1px;
    height: 36px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translate(-50%);
}
.main-timeline-wrap .t-3 .t-pointer:before {
    content: "";
    width: 1px;
    height: 40px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%);
}
.main-timeline-wrap .t-4 .t-pointer:before {
    content: "";
    width: 1px;
    height: 60px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%);
}
.main-timeline-wrap .t-5 .t-pointer:before {
    content: "";
    width: 1px;
    height: 68px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -68px;
    left: 50%;
    transform: translate(-50%);
}
.main-timeline-wrap .t-6 .t-pointer:before {
    content: "";
    width: 1px;
    height: 72px;
    background-color: var(--color-darkgrey);
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translate(-50%);
}
@media (min-width: 1700px) {
    .main-timeline-wrap .t-6 .t-circle {
        width: 55px;
        height: 210px;
    }
    .main-timeline-wrap .t-5 .t-circle {
        width: 100px;
        height: 215px;
    }
    .main-timeline-wrap .t-4 .t-circle {
        width: 125px;
        height: 210px;
    }
    .main-timeline-wrap .t-3 .t-circle {
        width: 155px;
        height: 215px;
    }
    .main-timeline-wrap .t-2 .t-circle {
        width: 180px;
        height: 245px;
    }
    .main-timeline-wrap .t-1 .t-circle {
        width: 195px;
        height: 275px;
    }
    .main-timeline-wrap .t-1,
    .main-timeline-wrap .t-2,
    .main-timeline-wrap .t-3,
    .main-timeline-wrap .t-4,
    .main-timeline-wrap .t-5,
    .main-timeline-wrap .t-6 {
        /* max-width: 15%; */
        max-width: 95%;
    }
    .main-timeline-wrap .t-2 {
        -webkit-transform: translate(-10%, 20%);
        -moz-transform: translate(-10%, 20%);
        -ms-transform: translate(-10%, 20%);
        -o-transform: translate(-10%, 20%);
        transform: translate(-10%, 20%);
    }
    .main-timeline-wrap .t-3 {
        -webkit-transform: translate(-10%, 37%);
        -moz-transform: translate(-10%, 37%);
        -ms-transform: translate(-10%, 37%);
        -o-transform: translate(-10%, 37%);
        transform: translate(-10%, 37%);
    }
    .main-timeline-wrap .t-4 {
        -webkit-transform: translate(-10%, 45%);
        -moz-transform: translate(-10%, 45%);
        -ms-transform: translate(-10%, 45%);
        -o-transform: translate(-10%, 45%);
        transform: translate(-10%, 45%);
    }
    .main-timeline-wrap .t-5 {
        /* transform: translate(0%, 47%);
    -webkit-transform: translate(0%, 47%);
    -moz-transform: translate(0%, 47%);
    -ms-transform: translate(0%, 47%);
    -o-transform: translate(0%, 47%); */
        -webkit-transform: translate(0%, 43%);
        -moz-transform: translate(0%, 43%);
        -ms-transform: translate(0%, 43%);
        -o-transform: translate(0%, 43%);
        transform: translate(0%, 43%);
    }
}
/* Ali */
.footer-main {
    /* padding: 70px 0; */
    font-size: 12px;
}
.footer-main p,
.quick-link-ul li a,
.footer-main .bottom-footer ul li a,
.footer-main .contact-info a {
    color: var(--colorblack);
    text-transform: uppercase;
    font-size: var(--font-size-12);
}
.quick-link-ul li a,
.contact-info a,
.bottom-footer ul li a {
    position: relative;
}
.quick-link-ul li a .bd-ani-btm,
.contact-info a .bd-ani-btm,
.bottom-footer ul li a .bd-ani-btm {
    display: block;
    height: 1px;
    background-color: var(--primarycolor);
    width: 0;
    transition: all 0.5s;
    top: 13px;
    left: 0;
    position: absolute;
}
.quick-link-ul li a:hover .bd-ani-btm,
.contact-info a:hover .bd-ani-btm,
.bottom-footer ul li a:hover .bd-ani-btm {
    width: 100%;
}
.quick-link-ul,
.socialicons ul {
    list-style-type: none;
    padding-left: 0;
}
.socialicons ul {
    display: flex;
}
.socialicons ul li {
    padding: 0px 5px;
}
.socialicons ul li a img {
    -webkit-filter: grayscale(40%);
    filter: grayscale(40%);
    transition: all 0.5s;
}
.socialicons ul li a img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transform: scale(1.2);
}
.footer-main .bottom-footer {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 25px;
}
.footer-main .bottom-footer p {
    margin-bottom: 0px;
}
.footer-main .bottom-footer ul {
    display: inline-flex;
    padding: 0;
}
.footer-main .bottom-footer ul li a:hover,
.footer-main .contact-info a:hover,
.quick-link-ul li a:hover {
    color: var(--primarycolor);
}
.footer-main .bottom-footer ul li:first-child:after {
    content: "|";
    padding: 0 10px;
}
.footer-heading {
    color: var(--primarycolor);
    text-transform: uppercase;
    font-size: var(--font-size-14);
}
/* Ali end */
/* Huzaifa */
/* partner-sec */
.partner-sec {
    padding: 60px 0 60px 0;
    background-color: var(--sectioncolor);
    text-align: center;
    position: relative;
    z-index: 5;
}
.partner-sec .partner-main .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.partner-sec .partner-main .section-top-content .section-top-design::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
     animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95), pulse 5s infinite; 
     animation: pulse 5s infinite; 
    background-color: var(--primarycolor);
    position: absolute;
    top: -10px;
    left: 49.65%;
    z-index: 1;
}*/
/*.partner-sec .partner-main .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}*/
.partner-sec .partner-main .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.partner-sec .partner-main .section-top-content p {
    width: 80%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
.partnering-para p {
    width: 80% !important;
    font-size: var(--font-size-18);
}
/* Ripple effect */
.partner-sec .partner-main .partner-btn {
    margin-top: 80px;
}
.partner-sec .partner-main .partner-btn a {
    font-size: var(--font-size-18);
    text-transform: capitalize;
    color: var(--color-darkgrey);
    background-color: var(--color-white);
    border: 1px solid var(--bordercolor);
    border-radius: 50px;
    padding: 15px 0px;
    width: 340px;
    display: block;
    margin: 0 auto;
    background-position: center;
    transition: background 0.8s;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}
.partner-sec .partner-main .partner-btn a:hover {
    background: var(--primarycolor) radial-gradient(circle, transparent 1%, var(--primarycolor) 1%) center/15000%;
    color: var(--colorWhite);
}
.partner-sec .partner-main .partner-btn a:active {
    background-color: var(--secondarycolor);
    background-size: 100%;
    transition: background 0s;
}
.partner-sec .partner-main .partner_Slider {
    height: 500px;
    overflow: hidden;
    position: relative;
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller {
    position: absolute;
    left: 50%;
    bottom: 55%;
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-next:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-next:after,
.partner-sec .partner-main .partner_Slider .partner_Slider_Container .partner-controller .swiper-button-prev:after {
    font-size: 14px;
}
/* Atif end */
/* Stories Slider CSS Start  */
/* Stories Slider CSS End  */
@media (max-width: 1024px) {
    .partner_Slider .stories_Box_Text {
        min-height: 181px;
    }
}
@media (max-width: 768px) {
    .partner_Slider .swiper-overflow-container .swiper-container {
        padding-left: 0;
    }
    .partner_Slider {
        padding-left: 0 !important;
    }
    /* .stories_Text p {
    width: 83%;
  } */
}
/* Stories Section End  */
.partner_Slider .card {
    border: none !important;
    max-width: 235px;
    border-radius: 3px;
    /* margin: 0 auto; */
    transition: box-shadow 0.5s;
    transition-timing-function: ease-in-out;
    transform: scale(0.94);
    height: auto;
    justify-content: center;
    align-items: center;
    /* background: red; */
    transform: rotate(20deg);
    height: 180px;
    clip-path: ellipse(50% 45% at 50% 50%);
}
.partner_Slider .card img {
    display: block;
    max-width: 100%;
    height: auto;
    /* background-color: #eee; */
}
.partner_Slider .card .card-text-content {
    padding: 0 0.5rem;
}
.partner_Slider .swiper-slide {
    width: 265px;
}
.partner_Slider .swiper-container {
    padding-bottom: 1rem;
}
.partner_Slider .cards-slider {
    padding-top: 2.5rem;
}
.partner_Slider .swiper-slide {
    /* transform: scale(.94); */
    transition: all 1s;
}
.partner_Slider .swiper-slide .img-wrapper img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.partner_Slider .swiper-slide-active {
    /* transform: scale(1); */
    top: 180px;
    transition: all 0.5s ease;
    /* margin-left: 25px; */
    margin: 0 12px;
}
.partner_Slider .swiper-slide-active .img-wrapper img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.partner_Slider .swiper-slide-next {
    top: 100px;
    transition: all 0.5s ease;
    margin-left: -10px;
    margin-right: -30px;
}
.partner_Slider .swiper-slide-prev {
    top: 100px;
    transition: all 0.5s ease;
    margin-left: 15px;
}
.partner_Slider .swiper-slide .card .img-wrapper {
    padding: 40px;
    transform: rotate(-20deg);
}
.partner_Slider .swiper-slide .myCard {
    filter: drop-shadow(0px 0.7px 0.7px rgba(50, 50, 0, 0.5));
}
/* .partner_Slider */
.partner_Slider .swiper-slide-active .myCard {
    filter: drop-shadow(0px 2px 2px rgba(50, 50, 0, 0.2));
}
.partner_Slider .swiper-button-next,
.partner_Slider .swiper-button-prev {
    position: inherit !important;
    border: 1px solid #cccccc;
    border-radius: 30px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    background-image: none;
    background-size: 0;
    background-repeat: no-repeat;
    background-position: 0;
    margin-top: 210px;
    z-index: 2;
    cursor: pointer;
    color: var(--color-blue);
}
/* this is jhugar */
.partner_Slider .swiper-button-next.swiper-button-disabled,
.partner_Slider .swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: all !important;
}
/* Ripple effect end */
/* partner-sec end */
/* Huzaifa */
/* Moiz */
/* -----------Contact-Us-Css-Starts-------------- */
.contact-us-section {
    text-align: center;
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 4;
    height: 1100px;
}
.contact-us-section .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
/*.contact-us-section .section-top-content .section-top-design::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  animation: bounce 1600ms infinite cubic-bezier(0.3, 0.05, 0.55, 0.95),
    pulse 5s infinite;
   animation: pulse 5s infinite; 
  background-color: var(--primarycolor);
  position: absolute;
  top: -10px;
  left: 49.65%;
  z-index: 1;
}
*/
/*.contact-us-section .section-top-content .section-top-design:after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: var(--bordercolor);
  left: 49.9%;
  position: absolute;
  top: -50px;
   animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95); 
}*/
.contact-us-section .section-top-content .heading-one {
    font-size: var(--font-size-70);
    font-weight: 100;
    color: var(--color-blue);
}
.contact-us-banner {
    /* margin-top: 100px; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 680px;
}
.contact-us-section .contact-us-banner .form {
    background-color: var(--sectioncolor);
    padding: 80px;
}
.contact-us-section .contact-us-banner .contact-us .form .form-floating>.form-control {
    /* padding-left: 45px; */
    padding-left: 20px;
    outline: 0;
    box-shadow: none;
}
.contact-us-section .contact-us-banner .contact-us .form .form-floating>textarea.form-control {
    resize: none;
    height: 130px;
}
.contact-us-section .contact-us-banner .contact-us .form .form-floating label {
    color: var(--primarycolor);
    font-weight: 400;
    font-size: var(--font-size-20);
    /* padding-left: 30px; */
    padding-left: 20px;
}
/* Ripple effect */
.contact-us-section .contact-us-banner .contact-us .form .form-button .form-btn {
    color: var(--color-darkgrey);
    background-color: var(--color-white);
    border: 1px solid var(--bordercolor);
    border-radius: 50px;
    padding: 15px 0px;
    width: 340px;
    display: block;
    margin: 0 auto;
    background-position: center;
    transition: background 0.8s;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    text-transform: capitalize;
    font-size: var(--font-size-18);
}
.contact-us-section .contact-us-banner .contact-us .form .form-button .form-btn:hover {
    background: var(--primarycolor) radial-gradient(circle, transparent 1%, var(--primarycolor) 1%) center/15000%;
    color: var(--colorWhite);
}
.contact-us-section .contact-us-banner .contact-us .form .form-button .form-btn:active {
    background-color: var(--secondarycolor);
    background-size: 100%;
    transition: background 0s;
}
/* Ripple effect end */
.contact-us-section .contact-us-banner .contact-info .contact-us-img-1 {
    width: 260px;
}
/* .contact-us-img-1 {
}
.contact-us-img-1 {
} */
.contact-us-section .contact-us-banner .contact-call {
    text-align: left;
    margin-right: 100px;
    position: relative;
    float: right;
    width: 245px;
    top: -50px;
}
.contact-us-section .contact-us-banner .contact-call .call-box {
    position: absolute;
    top: 15%;
    left: -100%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    line-height: 0.5px;
    background-color: #f5f5f57d;
    padding: 20px;
    border-radius: 5px;
}
.contact-us-section .contact-us-banner .contact-info {
    position: relative;
    text-align: left;
    width: 303px;
}
.contact-us-section .contact-us-banner .contact-info img,
.contact-us-section .contact-us-banner .contact-whatsapp img,
.contact-us-section .contact-us-banner .contact-call img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transition: all 0.5s;
}
.contact-us-section .contact-us-banner .contact-info:hover img,
.contact-us-section .contact-us-banner .contact-whatsapp:hover img,
.contact-us-section .contact-us-banner .contact-call:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.contact-us-section .contact-us-banner .contact-info .email-box {
    position: absolute;
    top: 15%;
    left: 100%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    line-height: 0.5px;
    background-color: #f5f5f57d;
    padding: 20px;
    border-radius: 5px;
    width: 250px;
    text-align: left;
}
.contact-us-section .contact-us-banner .contact-whatsapp {
    position: relative;
    width: 211px;
    margin: 0 auto;
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box {
    position: absolute;
    top: 10%;
    right: -120%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    line-height: 0.5px;
    background-color: #f5f5f57d;
    padding: 20px;
    border-radius: 5px;
}
.contact-us-section .contact-us-banner .contact-call:hover>.call-box,
.contact-us-section .contact-us-banner .contact-whatsapp:hover>.whatsapp-box,
.contact-us-section .contact-us-banner .contact-info:hover>.email-box {
    visibility: visible;
    opacity: 1;
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box .contact-info-heading,
.contact-us-section .contact-us-banner .contact-call .call-box .contact-info-heading,
.contact-us-section .contact-us-banner .contact-info .email-box .contact-info-heading {
    color: var(--primarycolor);
    font-size: var(--font-size-16);
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box p,
.contact-us-section .contact-us-banner .contact-call .call-box p,
.contact-us-section .contact-us-banner .contact-info .email-box p {
    color: var(--colorDarkGrey);
    font-size: var(--font-size-20);
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box p a,
.contact-us-section .contact-us-banner .contact-call .call-box p a,
.contact-us-section .contact-us-banner .contact-info .email-box p a {
    color: var(--colorDarkGrey);
    /* font-size: var(--font-size-20); */
}
/* -----------Contact-Us-end-------------- */
/* Moiz end */
@media screen and (max-width: 1280px) and (min-width: 1200px) {
    .main-timeline-wrap {
        height: 950px !important;
    }
    .stories_Slider .item h2 {
        font-size: var(--font-size-36);
    }
    .main-timeline-wrap .t-1 .t-text p,
    .main-timeline-wrap .t-2 .t-text p,
    .main-timeline-wrap .t-3 .t-text p,
    .main-timeline-wrap .t-4 .t-text p,
    .main-timeline-wrap .t-5 .t-text p,
    .main-timeline-wrap .t-6 .t-text p {
        margin: 0 0 12px 5%;
        width: 90%;
    }
    .spec-wrap h4 {
        font-size: var(--font-size-36);
        line-height: 42px;
    }
}
@media screen and (max-width: 1699px) and (min-width: 1200px) {
    .main-timeline-wrap {
        height: 525px;
        zoom: 0.9;
    }
    .main-timeline-wrap .t-1 .t-circle {
        width: 155px;
        height: 230px;
    }
    .main-timeline-wrap .t-2 .t-circle {
        width: 145px;
        height: 205px;
    }
    .main-timeline-wrap .t-3 .t-circle {
        width: 125px;
        height: 185px;
        margin-top: 40px;
    }
    .main-timeline-wrap .t-4 .t-circle {
        width: 95px;
        height: 165px;
    }
    .main-timeline-wrap .t-5 .t-circle {
        width: 75px;
        height: 180px;
    }
    .main-timeline-wrap .t-6 .t-circle {
        width: 40px;
        height: 195px;
    }
    .nav-item .nav-link {
        width: auto;
        margin: 0px 0;
        border-radius: 5px;
        font-size: var(--font-size-14);
    }
    .desktop-header .main-menu .navbar .nav-item .nav-link .menu-text {
        font-size: var(--font-size-14);
    }
    .main-nav-box li {
        float: left;
        min-height: 40px;
        margin-right: 2px;
    }
    .nav-link {
        padding: 0 1.3rem;
    }
    span.menu-icon {
        display: flex;
        /* min-height: 40px; */
        align-items: center;
        justify-content: center;
    }
    .main-nav-box li a span.menu-text {
        min-height: 40px;
    }
    .nav-item .dropdown-div {
        top: 54px;
    }
    .nav-item .dropdown-div ul li a,
    .nav-item .dropdown-div-2-last ul li a,
    .nav-item .dropdown-div-csr ul li a {
        color: var(--colorblack);
        font-size: var(--font-size-14);
        font-weight: var(--fontWeight400);
        width: auto;
        display: inline-block;
        text-transform: initial;
    }
    .nav-item .dropdown-div {
        padding: 25px 10px;
    }
    .nav-item .dropdown-div-2-last {
        top: 53px;
        padding: 25px 10px;
        right: -10px;
    }
    .nav-item .dropdown-div-csr {
        top: 53px;
        padding: 25px 10px;
    }
    .nav-item .nav-link {
        width: auto;
        margin: 0px 0;
        border-radius: 5px;
    }
    .desktop-header .main-menu .navbar .nav-item .nav-link .menu-text {
        font-size: var(--font-size-14);
    }
    .main-nav-box li {
        float: left;
        min-height: 40px;
        margin-right: 5px;
    }
    .nav-link {
        padding: 0 1rem;
    }
    span.menu-icon {
        display: flex;
        /* min-height: 40px; */
        align-items: center;
        justify-content: center;
    }
    .main-nav-box li a span.menu-text {
        min-height: 51px;
        padding-right: 15px;
    }
    /* .nav-item .dropdown-div {
        top: 45px;
    } */
    .nav-item .dropdown-div ul li a,
    .nav-item .dropdown-div-2-last ul li a,
    .nav-item .dropdown-div-csr ul li a {
        color: var(--colorblack);
        font-size: var(--font-size-14);
        font-weight: var(--fontWeight400);
        width: auto;
        display: inline-block;
        text-transform: initial;
        padding-right: 11px;
    }
    .nav-item .dropdown-div {
        padding: 25px 10px;
    }
    .nav-item .dropdown-div-2-last {
        top: 53px;
        padding: 25px 10px;
        right: -10px;
    }
    .nav-item .dropdown-div-csr {
        top: 53px;
        padding: 25px 10px;
    }
}
@media screen and (max-width: 1699px) and (min-width: 1366px) {
    #nav-overlay.open {
        width: 25% !important;
    }
    .contact-us-section .contact-us-banner .contact-call {
        margin-right: 50px;
    }
    .controller-nav .swiper-button-next,
    .controller-nav .swiper-button-prev {
        top: 68%;
    }
    .desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .links {
        font-size: var(--font-size-12);
    }
    .desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown {
        font-size: var(--font-size-12);
    }
    .slide-wrap .circle-bg {
        /* width: 480px;
        height: 415px; */
    }
    .slide-wrap .slide-text h1 {
        /* font-size: 41px;
        width: calc(100% - 40px);
        line-height: 50px; */
        white-space: break-spaces;
    }
    .slide-wrap .slide-text p {
        font-size: var(--font-size-20);
        width: calc(100% - 65px);
    }
    .timeline-section .section-top-content .section-top-design,
    .entities .section-top-content .section-top-design,
    .spectrum-section .section-top-content .section-top-design,
    .stories_Section .section-top-content .section-top-design,
    .explore-culture .section-top-content .section-top-design,
    .partner-sec .partner-main .section-top-content .section-top-design,
    .contact-us-section .section-top-content .section-top-design {
        font-size: var(--font-size-18);
    }
    .timeline-section .section-top-content .heading-one,
    .entities .section-top-content .heading-one,
    .spectrum-section .section-top-content .heading-one,
    .stories_Section .section-top-content .heading-one,
    .explore-culture .section-top-content .heading-one,
    /* .partner-sec .partner-main .section-top-content .heading-one, */
    .contact-us-section .section-top-content .heading-one {
        font-size: var(--font-size-55);
    }
    .timeline-section .section-top-content p {
        font-size: var(--font-size-24);
        width: 100%;
    }
    .entities .section-top-content p {
        width: 49%;
        font-size: var(--font-size-24);
    }
    .spectrum-section .section-top-content p {
        width: 70%;
        font-size: var(--font-size-24);
    }
    .stories_Section .section-top-content p {
        width: 50%;
        font-size: var(--font-size-24);
    }
    .explore-culture .section-top-content p {
        /* width: 50%; */
        font-size: var(--font-size-24);
    }
    .partner-sec .partner-main .section-top-content p {
        width: 45%;
        font-size: var(--font-size-24);
    }
    .partnering-para p {
        width: 80% !important;
        font-size: var(--font-size-18) !important;
    }
    .main-timeline-wrap .t-1,
    .main-timeline-wrap .t-2,
    .main-timeline-wrap .t-3,
    .main-timeline-wrap .t-4,
    .main-timeline-wrap .t-5,
    .main-timeline-wrap .t-6 {
        /* max-width: 15%; */
        max-width: 90%;
    }
    .main-timeline-wrap .t-1 .t-text h6,
    .main-timeline-wrap .t-2 .t-text h6,
    .main-timeline-wrap .t-3 .t-text h6,
    .main-timeline-wrap .t-4 .t-text h6,
    .main-timeline-wrap .t-5 .t-text h6,
    .main-timeline-wrap .t-6 .t-text h6 {
        font-size: var(--font-size-24);
    }
    .main-timeline-wrap .t-1 .t-text p,
    .main-timeline-wrap .t-2 .t-text p,
    .main-timeline-wrap .t-3 .t-text p,
    .main-timeline-wrap .t-4 .t-text p,
    .main-timeline-wrap .t-5 .t-text p,
    .main-timeline-wrap .t-6 .t-text p {
        font-size: var(--font-size-12);
        line-height: 20px;
    }
    .timeline-slider {
        position: relative;
        height: 650px;
    }
    .timeline-slider .t-controller {
        position: absolute;
        left: 50%;
        bottom: 4%;
    }
    .main-banner .banner-arrow {
        position: absolute;
        bottom: 0%;
        left: 10%;
        text-align: center;
        z-index: 4;
    }
    /* .desktop-header .main-menu .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .desktop-header .main-menu .navbar .nav-item {
    width: 139px;
    position: relative;
  }
  .desktop-header .main-menu .navbar .nav-item .nav-link {
    width: 130px;
    margin: 0px 18px;
  }
  .main-menu .navbar-nav li .dropdown-div {
    left: 3px;
    width: 400px;
  }
  .main-menu .navbar-nav li .dropdown-div-csr {
    left: -235px;
    width: 400px;
  } */
    .timeline-section .section-top-content .section-top-design:after,
    .entities .section-top-content .section-top-design:after,
    .spectrum-section .section-top-content .section-top-design:after,
    .stories_Section .section-top-content .section-top-design:after,
    .explore-culture .section-top-content .section-top-design:after,
    .partner-sec .partner-main .section-top-content .section-top-design:after,
    .contact-us-section .section-top-content .section-top-design:after {
        left: 50%;
    }
    .entities .logo-text-main .logo-1 {
        /* left: 3.6%; */
        left: -147px;
    }
    /* .entities .logo-text-main .logo-1 a,
  .entities .logo-text-main .logo-2 a,
  .entities .logo-text-main .logo-3 a,
  .entities .logo-text-main .logo-4 a,
  .entities .logo-text-main .logo-5 a {
    font-size: var(--font-size-24);
  } */
    /* .entities .logo-text-main .logo-2 {
    left: 18%;
    width: 11%;
  } */
    /* .entities .logo-text-main .logo-2 .logo-2-round {
    left: 109.5%;
  } */
    /* .entities .logo-text-main .logo-3 {
    position: absolute;
    top: 80.5%;
    left: 39%;
    width: 20%;
  } */
    /* .entities .logo-text-main .logo-3 .logo-3-round {
    top: 5px;
    left: 77.5%;
  } */
    /* .entities .logo-text-main .logo-4 {
    left: 79.7%;
    width: 11%;
  } */
    /* .entities .logo-text-main .logo-5 {
    left: 65.5%;
    width: 12%;
  } */
    /* .entities .logo-text-main .logo-5 .logo-5-round {
    top: 7px;
  } */
    /* .entities .entities-main-div .entities-logos {
    top: 26%;
    left: 39%;
    width: 250px;
  } */
    .spec-wrap h4 {
        font-size: var(--font-size-36);
        line-height: 45px;
        width: 76%;
    }
    .manufacturing-img-sec .spectrum-slider .spec-wrap h4 {
        font-size: var(--font-size-36);
        line-height: 45px;
        width: 100%;
    }
    .stories_Slider .item h2 {
        font-size: var(--font-size-36);
    }
    .stories_Slider .swiper_Text span p {
        font-size: var(--font-size-10);
    }
    .stories_Slider .swiper_Text .main-pera {
        font-size: var(--font-size-12);
    }
    .explore-culture .explore-culture-slider-main .explore-culture-content img {
        width: 80%;
    }
    .explore-culture .explore-culture-slider-main .explore-culture-btn-main a,
    .partner-sec .partner-main .partner-btn a {
        font-size: var(--font-size-12);
        width: 25%;
    }
    .contact-us-section .contact-us-banner .contact-us .form .form-button .form-btn {
        font-size: var(--font-size-12);
        width: 60%;
    }
    .contact-us-section .contact-us-banner .contact-us .form .form-floating>.form-control {
        font-size: var(--font-size-14);
        height: calc(3.2rem + 2px);
        line-height: 1.25;
    }
    .slide-wrap .slide-text-inner {
        /* position: absolute;
        bottom: 75px;
        left: -50px;
        background-color: transparent;
        width: 425px;
        height: auto; */
    }
    .amongst-companies-img {
        /* background-image: url(../images/companies-img.png); */
        height: 570px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .mission-vission-main .controller-nav {
        bottom: 0%;
    }
    .chairman-message-circle {
        margin-top: 345px;
        height: 390px;
    }
    .Leadership-Team-main .controller-nav {
        left: 45%;
    }
    .chairman-meesage-text {
        padding: 100px 30px;
    }
}
.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.2rem + 2px);
    line-height: 1.25;
}
.contact-us-section .contact-us-banner .contact-us .form .form-floating label {
    font-size: var(--font-size-14);
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box .contact-info-heading,
.contact-us-section .contact-us-banner .contact-call .call-box .contact-info-heading,
.contact-us-section .contact-us-banner .contact-info .email-box .contact-info-heading {
    font-size: var(--font-size-12);
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box p,
.contact-us-section .contact-us-banner .contact-call .call-box p,
.contact-us-section .contact-us-banner .contact-info .email-box p {
    font-size: var(--font-size-14);
}
.contact-us-section .contact-us-banner .contact-info {
    width: 265px;
}
.contact-us-section .contact-us-banner .contact-info .email-box {
    left: 110%;
}
.contact-us-section .contact-us-banner .contact-call {
    width: 225px;
    top: 0px;
}
.contact-us-section .contact-us-banner .contact-call .call-box {
    left: -200px;
}
.contact-us-section .contact-us-banner .contact-whatsapp {
    margin-top: 8%;
    width: 185px;
}
.contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box {
    right: -115%;
    text-align: left;
}
.footer-heading {
    font-size: var(--font-size-12);
}
.footer-main p,
.quick-link-ul li a,
.footer-main .bottom-footer ul li a,
.footer-main .contact-info a {
    font-size: var(--font-size-10);
}
/*.timeline-section .section-top-content .section-top-design::before,
  .entities .section-top-content .section-top-design::before,
  .spectrum-section .section-top-content .section-top-design::before,
  .stories_Section .section-top-content .section-top-design::before,
  .explore-culture .section-top-content .section-top-design::before,
  .partner-sec .partner-main .section-top-content .section-top-design::before,
  .contact-us-section .section-top-content .section-top-design::before {
    left: 49.65%;
  }
*/
@media screen and (max-width: 1366px) {
    .controller-nav .swiper-button-next,
    .controller-nav .swiper-button-prev {
        top: 77%;
    }
    .manufacturing-sec .section-top-content .section-top-design::before {
        left: 49.1% !important;
    }
    .slide-wrap .slide-text-inner h1 {
        /* height: 135px !important; */
    }
    .chairman-banner-msg+.slide-text-inner {
        bottom: 123px !important;
    }
    .chairman-banner-msg+.slide-text-inner h1 {
        height: auto !important;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 115px) !important;
    }
    /* .desktop-header .main-menu .navbar .nav-item {
    width: 145px;
  }
  .desktop-header .main-menu .navbar .nav-item .nav-link {
    width: 135px;
    font-size: 14px;
  }
  .main-menu .navbar-nav li .dropdown-div {
    width: 400px;
  }
  .main-menu .navbar-nav li .dropdown-div-csr {
    left: -250px;
    width: 400px;
  } */
    .main-banner .banner-arrow {
        bottom: -5%;
    }
    .timeline-section .section-top-content .section-top-design::before {
        left: 49.45%;
    }
    /* .entities .logo-text-main .logo-1 {
    left: 8%;
    left: -147px;
  } */
    /* .entities .logo-text-main .logo-2 {
    left: 20%;
  } */
    /* .entities .logo-text-main .logo-2 .logo-2-round {
    left: 104.5%;
  } */
    /* .entities .logo-text-main .logo-3 {
    left: 43%;
    width: 16%;
  } */
    /* .entities .logo-text-main .logo-4 {
    left: 79%;
  } */
    /* .entities .logo-text-main .logo-4 .logo-4-round {
    left: -10.5%;
  } */
    /* .entities .logo-text-main .logo-5 {
    left: 66%;
  } */
    /* .entities .logo-text-main .logo-5 .logo-5-round {
    top: 10px;
    left: -14.5%;
  } */
    .timeline-section .section-top-content p {
        width: 35%;
        margin: 0 auto;
    }
    .entities .section-top-content p {
        width: 40%;
        margin: 0 auto;
    }
    .entities .section-top-content .section-top-design::before {
        top: -10px;
        left: 49.2%;
    }
    .spectrum-section .section-top-content .section-top-design::before {
        top: -10px;
        left: 49.2%;
    }
    .spectrum-section .section-top-content p {
        width: 45%;
        margin: 0 auto;
    }
    .explore-culture .section-top-content .section-top-design::before {
        left: 49.2%;
    }
    .contact-us-section .section-top-content .section-top-design::before {
        left: 49.2%;
    }
}
@media screen and (max-width: 1440px) {
    .pd-spec {
        padding-left: 35px;
        padding-right: 35px;
    }
    .slide-wrap .slide-text h1 {
        height: auto;
    }
    .amongst-companies .section-top-content .heading-one,
    .Leadership-Team-main .section-top-content .heading-one {
        font-size: var(--font-size-55) !important;
    }
}
@media screen and (min-width: 1921px) {
    /* .main-timeline-wrap {
    height: 75vh;
  } */
    .pd-spec {
        padding-left: 30px;
        padding-right: 30px;
    }
    .spectrum-slider .swiper-slide {
        padding-left: 30px;
        padding-right: 30px;
    }
    /*.spectrum-slider .swiper-slide:hover .s-img-wrap {
    filter: drop-shadow(5px 10px 5px #0000007a);
}*/
}
/*Inner Pages*/
.controller-nav-inner {
    background-color: var(--colorGrey);
    color: var(--primarycolor);
}
.controller-nav-inner .first-next.swiper-button-next::after {
    content: "";
    background-image: url("../images/main-slider-arrow-blue.png") !important;
}
/* wamiq bhai new */
.slide-wrap .circle-bg-inner {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 825px;
    height: 584px;
    background-color: var(--color-blue);
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.slide-wrap .circle-bg-inner {
    /* bottom: 100px;
    left: 0;
    width: 600px;
    height: 500px; */
}
.slide-wrap .slide-text-inner {
    /* position: absolute;
    bottom: 22%;
    left: 10%; */
    background-color: transparent;
    /* width: 825px;
    height: 584px; */
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.slide-wrap .slide-text-inner h1 {
    font-size: 50px;
    line-height: 60px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-family: "Roboto Th";
    /* width: calc(100% - 40px); */
    text-align: center;
    /* height: 190px; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    line-clamp: 3;
    /* overflow: hidden; */
}
.slide-wrap .slide-text-inner h1 span {
    font-size: 60px;
}
.slide-wrap .slide-text-inner p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-darkgrey);
    /* width: calc(100% - 105px); */
    text-align: left;
    /* margin-left: 12px; */
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    /* padding-left: 0.3em; */
    /* text-indent: -0.3em; */
}
.slide-wrap .chairman-banner-msg+.slide-text-inner p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
.slide-wrap .slide-text-inner p span.year {
    font-size: 22px;
    line-height: 28px;
    width: calc(100% - 25px);
    padding-bottom: 5px;
    display: inline-block;
}
.inner-bg-cover {
    /* background-size: cover !important;
    background-position: 20% bottom !important; */
}
.manufacturing-sec {
    padding: 80px 0;
}
.manufacturing-sec .section-top-content .section-top-design {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 15px 0;
    color: var(--color-darkgrey);
    font-weight: 400;
    font-size: var(--font-size-24);
}
.manufacturing-sec .section-top-content p {
    width: 65%;
    margin: 0 auto;
    font-size: var(--font-size-30);
    font-weight: 400;
}
/* .manufacturing-img-sec {
    position: relative;
    height: 960px;
} */
.manufacturing-img-content {
    margin-top: 50px;
}
.manufacturing-img-sec img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.5s;
}
.manufacturing-img-sec img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}
.manufacturing-img-sec .manufacturing-img-content h4 {
    font-size: 48px;
    font-weight: 300;
    color: var(--primarycolor);
}
.manufacturing-img-sec .manufacturing-img-content p {
    font-size: var(--font-size-18);
}
/* .manufacturing-img-sec .manufacturing-img-div-2 {
    position: absolute;
    margin-top: -200px;
} */
/* .manufacturing-img-div-3 {
    position: absolute;
    margin-top: 150px;
} */
.manufacturing-img-sec .manufacturing-img-div-3 a,
.manufacturing-img-sec .manufacturing-img-div-4 a,
.manufacturing-img-sec .manufacturing-img-div-5 a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-darkgrey);
    margin-top: 10px;
    font-size: 14px;
    position: relative;
}
.manufacturing-img-sec .manufacturing-img-div-3 a:hover,
.manufacturing-img-sec .manufacturing-img-div-4 a:hover,
.manufacturing-img-sec .manufacturing-img-div-5 a:hover {
    color: var(--primarycolor);
}
.manufacturing-img-sec .manufacturing-img-div-3 a .bd-ani-btm,
.manufacturing-img-sec .manufacturing-img-div-4 a .bd-ani-btm,
.manufacturing-img-sec .manufacturing-img-div-5 a .bd-ani-btm {
    display: block;
    height: 1px;
    background-color: var(--primarycolor);
    width: 0;
    transition: all 0.5s;
    top: 35px;
    right: 0;
    position: absolute;
}
.manufacturing-img-sec .manufacturing-img-div-3 a:hover .bd-ani-btm,
.manufacturing-img-sec .manufacturing-img-div-4 a:hover .bd-ani-btm,
.manufacturing-img-sec .manufacturing-img-div-5 a:hover .bd-ani-btm {
    width: 73%;
}
/* latest */
.slide-wrap .slide-text-inner h1 .latest-banner-text {
    font-size: 65px;
}
.latest-tabs {
    padding: 80px 0px;
}
.latest-tabs .tab-main .nav-pills {
    margin: 0 auto;
    width: 20%;
}
.latest-tabs .tab-main .nav-pills .nav-item {
    padding-right: 40px;
}
.latest-tabs .tab-main .nav-pills .nav-item .nav-link {
    background-image: url(../images/tab-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 120px;
    height: 100px;
    color: var(--colorblack);
}
.latest-tabs .tab-main .nav-pills .nav-item .nav-link.active {
    /* background-image: url(../images/active-tab-bg.png); */
    background-color: transparent;
    color: var(--colorWhite);
}
.latest-tabs .tab-main .tab-content .tab-pane .tab-pera p {
    width: 55%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px;
    font-size: var(--font-size-30);
}
.news-bg {
    /* background-image: url(../images/news-box-bg.png); */
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    transition: all 1s ease-in-out;
    margin-bottom: 100px;
}
.news-slider {
    padding-left: 50px;
}
.news-slider .news-main-box {
    background-color: rgb(255, 255, 255);
    height: 580px;
    width: 100%;
    transition: all 0.2s ease-in-out;
    padding: 60px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid var(--color-grey);
    border-radius: 5px;
}
.news-slider .news-main-box:hover {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s ease-in-out;
}
.news-slider .news-main-box:hover h4,
.news-slider .news-main-box:hover p {
    color: var(--colorWhite);
    transition: all 0.3s ease-in-out;
}
.news-slider .news-main-box:hover .bottom-sec h4 span {
    background-position: top right;
    color: var(--primarycolor);
}
.latest-tabs .swiper-slide-active .news-bg .news-main-box {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s ease-in-out;
}
.news-slider .swiper-slide-active .bottom-sec h4 span {
    background-position: top right;
    color: var(--primarycolor);
}
.news-slider .swiper-slide-active .news-main-box h4,
.news-slider .swiper-slide-active .news-main-box p {
    color: var(--colorWhite);
    transition: all 0.3s ease-in-out;
}
.news-main-box .top-sec {
    position: absolute;
    top: 60px;
    left: 20px;
}
.news-main-box .top-sec h4 {
    color: var(--primarycolor);
    font-weight: 300;
    font-size: 46px;
}
.news-main-box .top-sec p {
    color: var(--colorblack);
    width: 70%;
}
.news-main-box .bottom-sec {
    width: 90%;
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.news-main-box .bottom-sec h4 {
    font-size: 46px;
    color: var(--primarycolor);
    font-weight: 300;
}
.news-main-box .bottom-sec h4 span {
    background-image: url(../images/news-span-img.png);
    background-repeat: no-repeat;
    background-position: top left;
    padding: 25px 0px 20px 5px;
    color: var(--colorWhite);
    font-weight: 600;
    width: 103px;
    display: inline-block;
    -webkit-transition: background-position 0.2s ease-in-out;
    transition: background-position 0.2s ease-in-out;
}
.latest-tabs .news-s-controller {
    position: absolute;
    left: 50%;
    bottom: 4%;
}
.latest-tabs .news-s-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
    color: var(--primarycolor);
}
.latest-tabs .news-s-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: transparent;
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
}
.latest-tabs .news-s-controller .swiper-button-next:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.latest-tabs .news-s-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.latest-tabs .news-s-controller .swiper-button-next::after,
.latest-tabs .news-s-controller .swiper-button-prev::after {
    font-size: 14px;
}
/* latest end */
/* Atif end */
/*Inner Pages*/
/* custom tabs */
.custom-tabs {}
.custom-tabs .nav.nav-tabs {
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    border-top: 1px solid #e4e4e4;
}
.custom-tabs .nav.nav-tabs .nav-item {
    margin-top: -10px;
}
.custom-tabs .nav.nav-tabs .nav-item .nav-link {
    background: none;
    border: none;
    color: #000;
    font-size: 18px;
    line-height: 22px;
}
.custom-tabs .nav.nav-tabs .nav-item .nav-link .icon {
    width: 19px;
    height: 17px;
    margin: 0 auto;
    display: block;
    background-image: url(../images/tab-inactive-icon.png);
    background-repeat: no-repeat;
}
.custom-tabs .nav.nav-tabs .nav-item .nav-link .text {}
.custom-tabs .nav.nav-tabs .nav-item .nav-link.active {
    color: var(--color-blue);
}
.custom-tabs .nav.nav-tabs .nav-item .nav-link.active:after {
    content: "";
}
.custom-tabs .nav.nav-tabs .nav-item .nav-link.active .icon {
    background-image: url(../images/tab-active-icon.png);
}
.custom-tabs .nav.nav-tabs .nav-item:first-child():before {
    content: "-";
    width: 50%;
    height: 1px;
    display: block;
}
.custom-tabs .nav.nav-tabs .nav-item:last-child():after {
    content: "-";
    width: 50%;
    height: 1px;
    display: block;
}
.mg-ftr-p {
    margin-top: 10px;
}
/* custom tabs */
/*12-jan-22*/
.top-header {
    position: relative;
    z-index: 99999;
}
.section-top-design:before,
.section-top-design:after {
    display: none !important;
}
.chairman-banner-msg {
    width: 30%;
    position: absolute;
    bottom: 250px;
    right: 0;
}
.top-commas {
    /* content: url('../images/quote-top.png'); */
}
.btm-commas {
    /* content: url('../images/quote-bottom.png'); */
    vertical-align: text-top;
    margin-top: 20px;
}
.mission-vission-main .controller-nav {
    /* / background-color: initial; */
    width: 85px;
    height: 85px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    left: 45%;
    bottom: 3%;
    /* / background-image: url("../images/our-journey-blue-circle.png"); / */
    background-color: var(--color-blue);
    border-radius: 50%;
    z-index: 2;
    /* / border-radius: initial; / */
    right: initial;
}
.chairman-message {
    text-align: center;
    width: 100%;
    /* background-image: url("../images/chairman-img.png"); */
    background-position: center top;
    background-repeat: no-repeat;
    height: 100%;
    padding: 140px 0;
    background-size: cover;
}
.chairman-banner-msg p {
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    color: #000;
}
.chairman-message-circle {
    /* background-image: url(../images/chairman-blue-bg.png); */
    margin-top: 545px;
    margin-left: -9px;
    height: 576px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}
.chair-top-quote {
    /* content: url(../images/quote-top.png); */
}
.chair-bottom-quote {
    /* content: url(../images/quote-bottom.png); */
    vertical-align: text-top;
    margin-top: 20px;
}
.Leadership-Team-main .controller-nav {
    left: 41%;
    z-index: 2;
    bottom: 30%;
}
.amongst-companies-img {
    /* background-image: url(../images/companies-img.png); */
    height: 715px;
    background-size: contain;
    background-repeat: no-repeat;
}
.backtoTop.banner-arrow {
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}
.backtoTop.banner-arrow.show {
    opacity: 1;
    visibility: visible;
}
.backtoTop.banner-arrow a {
    width: 70px;
    display: inline-block;
    border: 1px solid var(--bordercolor);
    background-color: var(--color-white);
    border-radius: 50%;
    height: 70px;
    padding-top: 35%;
    background-position: center;
    transition: background 0.8s;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
}
.backtoTop.banner-arrow a:hover {
    background: var(--primarycolor) radial-gradient(circle, transparent 1%, var(--primarycolor) 1%) center/15000%;
}
.backtoTop.banner-arrow a:active {
    background-color: var(--secondarycolor);
    background-size: 100%;
    transition: background 0s;
}
.backtoTop.banner-arrow a:hover i {
    color: var(--colorWhite);
}
.backtoTop.banner-arrow a i {
    animation: bounceBacktoTop 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    /* animation: bounceBacktoTop 2s linear infinite; */
    color: var(--primarycolor);
    font-size: 20px;
}
@keyframes bounceBacktoTop {
    50% {
        transform: translateY(-7px);
    }
    /* 0%{
        transform: translateX(10px);
      }
      100%{
        transform: translateX(-10px);
      } */
}
.csr-timeline-ancor.active {
    background-color: transparent;
}
.csr-timeline-ancor.active:after {
    content: "";
}
@media (max-width:1440px) and (min-width:1440px) {
    .nav-item .dropdown-div {
        top: 53px;
    }
    .nav-item .dropdown-div-2-last {
        top: 53px;
    }
    .nav-item .dropdown-div-csr {
        top: 53px;
    }
    .main-slider-ban .slide .banner-image-box {
        background-repeat: no-repeat;
        background-position: right top;
        background-size: contain;
        min-height: 600px;
    }
    .main-slider-ban .slide-wrap .circle-bg-inner {
        left: -70px;
        width: 550px;
        height: 340px;
        bottom: 10px;
    }
}
@media (max-width:1660px) and (max-height:1200px) {
    .nav-item .dropdown-div {
        top: 53px;
    }
    .nav-item .dropdown-div-2-last {
        top: 53px;
    }
    .nav-item .dropdown-div-csr {
        top: 53px;
    }
}
video {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.nav-item .nav-link:focus {
    color: var(--color-white);
}
@media (min-width: 1900px) {
    .activeSlide,
    .activeSlideLife {
        font-size: 60px;
    }
    .mission-vission-text .controller-nav .activeSlide {
        font-size: 48px;
    }
    .bg-vid {
        width: 100%;
        height: 480px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 580px;
    }
    .form-vid-bg {
        height: 730px;
    }
    .chairman-meesage-text {
        padding: 50px 0 100px 150px !important;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 15px !important;
        line-height: 21px !important;
        width: 95% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 18px !important;
        line-height: 24px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg {
        bottom: 400px !important;
        right: 100px !important;
    }
    .chairman-banner-msg p {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .chairman-message {
        background-position: -450px 250px !important;
        background-size: 150%;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 165px) !important;
    }
    .Leadership-Team-main .controller-nav {
        /* left: 45% !important; */
        top: 500px !important;
    }
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .main-timeline-wrap {
        height: 635px !important;
    }
    .nav-item .dropdown-div {
        top: 53px;
    }
    .bg-vid {
        width: 100%;
        height: 400px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 510px;
    }
    .form-vid-bg {
        height: 730px;
    }
    .chairman-meesage-text {
        padding: 50px 0 0 110px !important;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 10px !important;
        line-height: 16px !important;
        width: 95% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 12px !important;
        line-height: 18px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg p {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .chairman-message {
        background-position: -330px 350px !important;
        background-size: 150%;
    }
    .chairman-message-circle {
        margin-top: 400px !important;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 115px) !important;
    }
    .Leadership-Team-main .controller-nav {
        left: 45% !important;
        top: 500px !important;
    }
    .chairman-message-circle h2 {
        padding: 0px 130px !important;
    }
}
@media (min-width: 1350px) and (max-width: 1399px) {
    :root {
        --secondarycolor: #474747;
        --primarycolor: #78232F;
        --bordercolor: #a3a3a3;
        --colorblack: #000000;
        --colorWhite: #ffffff;
        --sectioncolor: #f7f7f7;
        --colorGreyLight: #9f9f9f;
        /* Font sizes. */
        --font-size-10: 0.625rem;
        --font-size-12: 0.75rem;
        --font-size-14: 0.875rem;
        --font-size-16: 1rem;
        --font-size-18: 1.125rem;
        --font-size-20: 1.125rem;
        --font-size-24: 1.5rem;
        --font-size-30: 1.875rem;
        --font-size-36: 2.25rem;
        --font-size-48: 3rem;
        --font-size-55: 3.438rem;
        --font-size-70: 4.375rem;
        /* rameez */
        --color-blue: #78232F;
        --color-grey: #e4e4e4;
        --color-darkgrey: #666666;
        --color-white: #ffffff;
        /* huzaifa */
        --colorLightGrey: #f7f7f7;
        --colorDarkGrey: #666666;
        --colorBlue: #78232F;
        --colorWhite: #ffffff;
        --colorGrey: #cccccc;
        --colorBlack: #000000;
        /*Font Weight */
        --fontWeight400: 400;
        /*Font Weight */
        --iconfilter: grayscale(100%);
    }
    .main-slider .swiper-slide .banner-image-box {
        /* background-size: cover !important;
        min-height: 550px !important; */
    }
    .slide-wrap .circle-bg {
        left: -45px;
        width: 625px;
        height: 415px;
    }
    .slide-wrap .slide-text h1 {
        font-size: var(--font-size-36);
        width: calc(100% - 80px);
        height: auto;
        line-height: 42px;
    }
    .slide-wrap .slide-text p {
        font-size: var(--font-size-16);
        line-height: 18px;
        font-weight: 400;
        /* color: var(--color-darkgrey);
        width: calc(100% - 105px);
        text-align: left;
        height: auto;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-orient: vertical;
        box-orient: vertical;
        -webkit-line-clamp: 3;
        -moz-line-clamp: 3;
        -ms-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
        padding-left: 0.3em; */
        /* text-indent: -0.3em; */
    }
    .main-banner {
        margin-top: 112px;
    }
    .main-slider-ban .slide .banner-image-box {}
    .slide-wrap .circle-bg-inner {
        left: -345px;
        width: 855px;
        height: 465px;
    }
    .chairman-banner-msg {
        bottom: 140px;
    }
    .group-companies .controller-nav {
        right: 70px;
        bottom: -75px;
    }
    .main-banner .main-slider .swiper-wrapper .slide-wrap .slide-text .controller-nav {
        width: 75px;
        height: 75px;
    }
    .slide-wrap .slide-text-inner {
        /* left: -45px;
        width: 625px;
        height: 384px; */
    }
    .slide-wrap .slide-text-inner h1 span {
        font-size: 50px;
    }
    .amongst-companies-slider-main .swiper-slide .swiper_Text {
        min-height: 301px !important;
    }
    .bg-vid {
        width: 100%;
        height: 320px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 505px;
    }
    .form-vid-bg {
        height: 100%;
        max-height: 730px;
    }
    .chairman-meesage-text {
        padding: 100px 0 0 110px !important;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 10px !important;
        line-height: 16px !important;
        width: 95% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 12px !important;
        line-height: 18px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg {
        width: 33% !important;
        bottom: 150px !important;
        right: 100px !important;
    }
    .chairman-banner-msg p {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .chairman-message {
        background-position: -330px 350px !important;
        background-size: 150% !important;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 115px) !important;
    }
    .Leadership-Team-main .controller-nav {
        left: 45% !important;
        top: 500px !important;
    }
    .chairman-message-circle h2 {
        padding: 0px 119px !important;
    }
}
@media (min-width: 1400px) and (max-width: 1480px) {
    .main-slider .swiper-slide .banner-image-box {
        /* background-position: 500px -605px;
        background-size: 2080px;
        min-height: 800px; */
        background-position-x: 100px;
    }
    .slide-wrap .slide-text {
        /* width: 100%;
        padding: 0 245px 0 270px; */
    }
    .main-slider-ban .slide .banner-image-box {
        background-position-x: 100px;
    }
    .main-slider-ban .slide-wrap .slide-text-inner {
        /* padding: 0 85px;
        width: 725px;
        height: 484px; */
        position: relative;
        top: 0;
        bottom: 0;
    }
    .main-slider-ban .slide-wrap .slide-text-inner h1 span {
        font-size: 50px;
    }
    .group-companies .main-slider .slide-wrap .slide-text h1 {
        height: auto;
    }
    .amongst-companies-slider-main .swiper-slide .swiper_Text {
        min-height: 301px !important;
    }
    .main-banner .main-slider .slide-text .controller-nav {
        right: 50px;
        bottom: 20px;
    }
    .bg-vid {
        width: 100%;
        height: 320px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 505px;
    }
    .form-vid-bg {
        height: 100%;
        height: 740px;
    }
    .chairman-banner-msg {
        width: 28%;
    }
    .main-banner.group-companies .main-slider .slide-text .controller-nav {
        right: 15px;
        bottom: -105px;
    }
    .chairman-meesage-text {
        padding: 100px 0 0 110px !important;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 10px !important;
        line-height: 16px !important;
        width: 95% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 12px !important;
        line-height: 18px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg {
        width: 27% !important;
        bottom: 300px !important;
        right: 50px !important;
    }
    .chairman-banner-msg p {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .chairman-message {
        background-position: -330px 350px !important;
        background-size: 150%;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 200px) !important;
    }
    .Leadership-Team-main .controller-nav {
        left: 45% !important;
        top: 500px !important;
    }
    .chairman-message-circle h2 {
        padding: 0px 130px !important;
    }
}
@media (min-width: 1600px) and (max-width: 1700px) {
    .main-slider .swiper-slide .banner-image-box {
        /* background-position: 680px -505px;
        background-size: 2080px;
        min-height: 900px; */
    }
    .main-banner .main-slider .slide-text .controller-nav {
        /* right: 30px;
        bottom: -60px; */
    }
    .main-banner.group-companies .main-slider .slide-text .controller-nav {
        right: 15px;
        bottom: -110px;
    }
    .bg-vid {
        width: 100%;
        height: 315px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 505px;
    }
    .form-vid-bg {
        height: 100%;
        height: 735px;
    }
    .amongst-companies-img {
        height: 655px;
        background-size: cover;
    }
    .amongst-companies-slider-main .swiper-slide .swiper_Text {
        min-height: 274px !important;
    }
    .chairman-meesage-text {
        /* padding: 100px 0 0 110px !important; */
        padding: 100px 0 0 145px !important;
        margin-right: -80px;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 14px !important;
        line-height: 18px !important;
        width: 100% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 16px !important;
        line-height: 22px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg {
        width: 35% !important;
        bottom: 300px !important;
    }
    .chairman-banner-msg p {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .chairman-message {
        background-position: -450px 350px !important;
        background-size: 150%;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 200px) !important;
    }
    .Leadership-Team-main .controller-nav {
        left: 45% !important;
        top: 500px !important;
    }
    .chairman-message-circle h2 {
        padding: 0px 155px !important;
    }
    /* .main-banner {
        margin-top: 112px;
    }
    .main-slider-ban .slide .banner-image-box {
        min-height: 700px;
        background-position: 20% bottom !important;
    } */
    .news-slider .news-main-box {
        height: 840px !important;
    }
}
@media (min-width: 1900px) and (max-width: 1940px) {
    .bg-vid {
        width: 100%;
        height: 480px;
    }
    .chemicals-slider-main .bg-vid {
        width: 100%;
        height: 580px;
    }
    .form-vid-bg {
        height: 680px;
    }
    .chairman-meesage-text {
        padding: 50px 0 100px 150px !important;
    }
    .chairman-meesage-text p {
        margin-bottom: 10px !important;
        font-size: 15px !important;
        line-height: 21px !important;
        width: 95% !important;
    }
    .chairman-meesage-text h4 {
        font-size: 18px !important;
        line-height: 24px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    .chairman-banner-msg {
        bottom: 400px !important;
        right: 100px !important;
    }
    .chairman-banner-msg p {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .chairman-message {
        background-position: -450px 250px !important;
        background-size: 150%;
    }
    .chairman-banner-msg+.slide-text-inner p {
        width: calc(100% - 165px) !important;
    }
    .Leadership-Team-main .controller-nav {
        /* left: 45% !important; */
        top: 500px !important;
    }
    .main-banner {
        margin-top: 112px;
    }
    .main-slider-ban .slide .banner-image-box {
        /* min-height: 818px; */
        /* min-height: 750px; */
    }
}
.contact-us-section .form-vid-bg .contact-us-banner .contact-us span.select2-selection.select2-selection--single {
    padding: 10px 0 38px 7px;
    border: 1px solid #ced4da;
}
.contact-us-section .form-vid-bg .contact-us-banner .contact-us .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 12px;
    right: 1px;
    width: 20px;
}
.contact-us-section .form-vid-bg .contact-us-banner .contact-us .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
}
.contact-us-section .form-vid-bg .contact-us-banner .contact-us .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--primarycolor);
    line-height: 28px;
    text-align: left;
}
.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: var(--primarycolor);
    border: 1px solid #ced4da;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primarycolor) !important;
    color: #fff !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da !important;
}
#particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease
}
#particles-js {
    width: 100%;
    height: 100%;
    /* position: fixed;
    z-index: -10;
    top: 0;
    left: 0 */
}
canvas {
    display: block;
    /* position: fixed;
    z-index: -1; */
}
.manufacturing-ourstndrd-rm.active {
    background-color: transparent;
}
.manufacturing-ourstndrd-rm.active:after {
    content: "";
}
.manufacturing-ourstndrd-rm .full {
    display: none;
}
.manufacturing-ourstndrd-rm .less {
    display: block;
}
.manufacturing-ourstndrd-rm.active .full {
    display: block;
}
.manufacturing-ourstndrd-rm.active .less {
    display: none;
}
.select2-container {
    width: 100% !important;
}
/* ==================================================== Creating Long Term Value in Healthcare css starts =======================================================================================================================  */
.clt-health-care {
    padding: 80px 0 40px 0;
}
.clt-img-sec {
    padding: 70px 0 0 0;
    text-align: center;
}
.clt-img-sec img {
    margin-bottom: 35px;
}
.clt-img-sec h4 {
    font-size: var(--font-size-48);
    line-height: 48px;
    font-family: "Roboto th";
    font-weight: 400;
    /* color: var(--color-blue); */
    color: var(--color-darkgrey);
    text-decoration: none;
    /* width: 75%;
margin: 0 auto; */
}
.clt-img-sec p {
    font-size: 24px;
    width: 40%;
    margin: 0 auto;
}
/* ====================================================== Creating Long Term Value in Healthcare css ends =========================================================================================================== */
/* ==================================================== Trusted Health Solutions Enhancing the Quality of Life =========================================================================================================== */
.trust-health-sol {
    padding: 70px 0;
}
.trust-health-sol h3 {
    width: 50%;
    margin: 0 auto;
}
/* Trusted Health Solutions Enhancing the Quality of Life slider css starts */
.trust-health-slider-sec {
    background-image: url(../images/trust-heal-sol-bg-new.png);
    background-repeat: no-repeat;
    background-position: center -480px;
    background-size: 110%;
    text-align: center;
}
.trust-health-slider-Container {
    /* height: 560px; */
    /* margin-top: 70px; */
    overflow: hidden;
    position: relative;
}
.trust-health-slider-sec .trust-health-slider .swiper-slide {
    /* transform: scale(.94); */
    transition: all 1s;
}
.trust-health-slider .swiper-slide .myCard {
    filter: drop-shadow(0px 0.7px 0.7px rgba(50, 50, 0, 0.5));
    /* display: flex;
align-items: center;
flex-direction: column; */
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
}
.trust-health-slider .swiper-slide .myCard .card1,
.trust-health-slider .swiper-slide .myCard .card2,
.trust-health-slider .swiper-slide .myCard .card3,
.trust-health-slider .swiper-slide .myCard .card4,
.trust-health-slider .swiper-slide .myCard .card5 {
    border: none;
    width: 280px;
    border-radius: 50%;
    /* padding: 45px 40px; */
    /* margin: 0 auto; */
    transition: box-shadow 0.5s;
    transition-timing-function: ease-in-out;
    transform: scale(0.94);
    height: auto;
    justify-content: center;
    align-items: center;
    /* background: red; */
    /* transform: rotate(20deg); */
    height: 209px;
    /* clip-path: ellipse(50% 45% at 50% 50%);*/
}
.trust-health-slider .swiper-slide .img-wrapper {
    /* background-image: url('../images/white-oval-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%; */
}
.trust-health-slider .swiper-slide.swiper-slide-active .myCard {
    -webkit-transform: translate(0%, 45%);
    -moz-transform: translate(0%, 45%);
    -ms-transform: translate(0%, 45%);
    -o-transform: translate(0%, 45%);
    transform: translate(0%, 45%);
}
.trust-health-slider .swiper-slide.swiper-slide-next .myCard {
    -webkit-transform: translate(10%, 40%);
    -moz-transform: translate(10%, 40%);
    -ms-transform: translate(10%, 40%);
    -o-transform: translate(10%, 40%);
    transform: translate(10%, 40%);
}
.trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
    -webkit-transform: translate(-10%, 40%);
    -moz-transform: translate(-10%, 40%);
    -ms-transform: translate(-10%, 40%);
    -o-transform: translate(-10%, 40%);
    transform: translate(-10%, 40%);
}
.trust-health-slider .swiper-slide .myCard {
    -webkit-transform: translate(0%, 10%);
    -moz-transform: translate(0%, 10%);
    -ms-transform: translate(0%, 10%);
    -o-transform: translate(0%, 10%);
    transform: translate(0%, 10%);
}
/* engineering services */
.trust-health-slider-sec.mdm-home .swiper-slide.swiper-slide-next .myCard {
    -webkit-transform: translate(10%, 36%);
    -moz-transform: translate(10%, 36%);
    -ms-transform: translate(10%, 36%);
    -o-transform: translate(10%, 36%);
    transform: translate(10%, 36%);
}
.trust-health-slider-sec.mdm-home .swiper-slide.swiper-slide-prev .myCard {
    -webkit-transform: translate(-10%, 36%);
    -moz-transform: translate(-10%, 36%);
    -ms-transform: translate(-10%, 36%);
    -o-transform: translate(-10%, 36%);
    transform: translate(-10%, 36%);
}
.trust-health-slider .swiper-slide.swiper-slide-active .myCard {
    -webkit-transform: translate(0%, 48%);
    -moz-transform: translate(0%, 48%);
    -ms-transform: translate(0%, 48%);
    -o-transform: translate(0%, 48%);
    transform: translate(0%, 48%);
}
/* engineering services */
/* .trust-health-slider .swiper-slide .myCard .card1 .img-1 {
    -webkit-transform: translate(-35%, 50%);
    -moz-transform: translate(-35%, 50%);
    -ms-transform: translate(-35%, 50%);
    -o-transform: translate(-35%, 50%);
    transform: translate(-35%, 50%);
}
.trust-health-slider .swiper-slide .myCard .card2 .img-2 {
    -webkit-transform: translate(-15%, 145%);
    -moz-transform: translate(-15%, 145%);
    -ms-transform: translate(-15%, 145%);
    -o-transform: translate(-15%, 145%);
    transform: translate(-15%, 145%);
}
.trust-health-slider .swiper-slide .myCard .card3 .img-3 {
    -webkit-transform: translate(0%, 180%);
    -moz-transform: translate(0%, 180%);
    -ms-transform: translate(0%, 180%);
    -o-transform: translate(0%, 180%);
    transform: translate(0%, 180%);
}
.trust-health-slider .swiper-slide .myCard .card4 .img-4 {
    -webkit-transform: translate(15%, 150%);
    -moz-transform: translate(15%, 150%);
    -ms-transform: translate(15%, 150%);
    -o-transform: translate(15%, 150%);
    transform: translate(15%, 150%);
}
.trust-health-slider .swiper-slide .myCard .card5 .img-5 {
    -webkit-transform: translate(25%, 55%);
    -moz-transform: translate(25%, 55%);
    -ms-transform: translate(25%, 55%);
    -o-transform: translate(25%, 55%);
    transform: translate(25%, 55%);
} */
.trust-health-slider .swiper-slide .img-wrapper {
    /* padding: 40px; */
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.trust-health-slider .swiper-slide .img-wrapper img {
    width: 85%;
}
.trust-health-slider .card img {
    display: block;
    max-width: 100%;
    height: auto;
    /* background-color: #eee; */
}
.trust-health-controller {
    position: absolute;
    bottom: 10%;
    left: 50%;
}
.trust-health-slider .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.trust-health-slider .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.trust-health-slider .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--sectioncolor);
    transition: all 0.5s;
}
.trust-health-slider .swiper-button-next:hover {
    background-color: var(--primarycolor);
    color: var(--sectioncolor);
    transition: all 0.5s;
}
.trust-health-slider .swiper-button-next:after,
.trust-health-slider .swiper-button-prev:after {
    font-size: 14px;
}
.wid-acc-icon-sec {
    padding: 50px 0 0 0;
    height: 260px;
    background-size: contain;
}
.mobile-devices {
    display: none;
}
/* Trusted Health Solutions Enhancing the Quality of Life slider css ends */
/* =====================================================  Trusted Health Solutions Enhancing the Quality of Life ================================================================================================================================ */
/* ======================================================= Widening Access to Health Solutions css starts ========================================================================================= */
.wid-acc-health {
    padding: 0 0 70px 0;
    margin-bottom: 80px;
}
.wid-acc-icon-sec {
    padding: 90px 0;
    height: 450px;
    background-image: url(../images/widening-access-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
}
.wid-acc-icon-sec .wid-acc-icon-sec-1,
.wid-acc-icon-sec .wid-acc-icon-sec-2,
.wid-acc-icon-sec .wid-acc-icon-sec-3 {
    text-align: center;
    margin-bottom: 35px;
}
.wid-acc-icon-sec .wid-acc-icon-sec-1 img,
.wid-acc-icon-sec .wid-acc-icon-sec-2 img,
.wid-acc-icon-sec .wid-acc-icon-sec-3 img,
.wid-acc-icon-sec .wid-acc-icon-sec-4 img,
.wid-acc-icon-sec .wid-acc-icon-sec-5 img {
    margin-bottom: 35px;
}
.wid-acc-icon-sec .wid-acc-icon-sec-1 h5,
.wid-acc-icon-sec .wid-acc-icon-sec-2 h5,
.wid-acc-icon-sec .wid-acc-icon-sec-3 h5,
.wid-acc-icon-sec .wid-acc-icon-sec-4 h5,
.wid-acc-icon-sec .wid-acc-icon-sec-5 h5 {
    text-align: center;
}
/* ======================================================= Widening Access to Health Solutions css ends ========================================================================================= */
@media (max-width:1680px) and (min-width:1441px) {
    /* .heading-one {
        font-size: 48px;
    } */
    .bg-banner-image {
        background-position: 610px -740px;
        background-size: 115%;
    }
    .bg-blue-circle {
        position: relative;
        /* background-image: url(../images/mdl-banner-blue-circle-bg.png); */
        background-repeat: no-repeat;
        background-position: right 200px;
        background-size: 133%;
        text-align: right;
        /* padding: 330px 125px 250px 125px; */
        height: 935px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .bg-blue-circle-text {
        padding: 99px 0 0px 257px;
        /* height: 931px; */
        padding-right: 75px;
    }
    .bg-blue-circle p {
        font-size: 24px;
    }
    .clt-img-sec p {
        width: 70%;
    }
    .trust-health-sol h3 {
        width: 70%;
        margin: 0 auto;
    }
    .trust-health-slider-sec {
        background-position: center -345px;
        background-size: 105%;
    }
    .trust-health-slider .swiper-slide .myCard {
        height: 610px;
    }
    .trust-health-slider .swiper-slide .myCard .card {
        border: none !important;
        max-width: 200px;
        border-radius: 3px;
        /* margin: 0 auto; */
        transition: box-shadow 0.5s;
        transition-timing-function: ease-in-out;
        transform: scale(0.94);
        height: auto;
        justify-content: center;
        align-items: center;
        /* background: red; */
        transform: rotate(20deg);
        height: 150px;
        clip-path: ellipse(50% 45% at 50% 50%);
    }
    .trust-health-slider .swiper-slide .img-wrapper {
        /* background-image: url('../images/white-oval-bg.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%; */
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
        transform: translate(0%, 50%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 35%);
        -moz-transform: translate(15%, 35%);
        -ms-transform: translate(15%, 35%);
        -o-transform: translate(15%, 35%);
        transform: translate(15%, 35%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 35%);
        -moz-transform: translate(-15%, 35%);
        -ms-transform: translate(-15%, 35%);
        -o-transform: translate(-15%, 35%);
        transform: translate(-15%, 35%);
    }
    /* .trust-health-slider .swiper-slide .myCard .card1 .img-1 {
        -webkit-transform: translate(0%, 70%);
        -moz-transform: translate(0%, 70%);
        -ms-transform: translate(0%, 70%);
        -o-transform: translate(0%, 70%);
        transform: translate(0%, 70%);
    }
    .trust-health-slider .swiper-slide .myCard .card2 .img-2 {
        -webkit-transform: translate(-15%, 140%);
        -moz-transform: translate(-15%, 140%);
        -ms-transform: translate(-15%, 140%);
        -o-transform: translate(-15%, 140%);
        transform: translate(-15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card3 .img-3 {
        -webkit-transform: translate(0%, 170%);
        -moz-transform: translate(0%, 170%);
        -ms-transform: translate(0%, 170%);
        -o-transform: translate(0%, 170%);
        transform: translate(0%, 170%);
    }
    .trust-health-slider .swiper-slide .myCard .card4 .img-4 {
        -webkit-transform: translate(15%, 140%);
        -moz-transform: translate(15%, 140%);
        -ms-transform: translate(15%, 140%);
        -o-transform: translate(15%, 140%);
        transform: translate(15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card5 .img-5 {
        -webkit-transform: translate(6%, 70%);
        -moz-transform: translate(6%, 70%);
        -ms-transform: translate(6%, 70%);
        -o-transform: translate(6%, 70%);
        transform: translate(6%, 70%);
    } */
    .wid-acc-icon-sec {
        padding: 90px 0;
        height: 400px;
        background-size: contain;
    }
}
@media (max-width:1600px) and (min-width:1600px) {
    .trust-health-slider-sec {
        background-position: center -325px;
    }
    .bg-banner-image {
        background-position: 560px -814px;
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 44%);
        -moz-transform: translate(0%, 44%);
        -ms-transform: translate(0%, 44%);
        -o-transform: translate(0%, 44%);
        transform: translate(0%, 44%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 30%);
        -moz-transform: translate(15%, 30%);
        -ms-transform: translate(15%, 30%);
        -o-transform: translate(15%, 30%);
        transform: translate(15%, 30%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 30%);
        -moz-transform: translate(-15%, 30%);
        -ms-transform: translate(-15%, 30%);
        -o-transform: translate(-15%, 30%);
        transform: translate(-15%, 30%);
    }
}
@media (max-width:1440px) and (min-width:1367px) {
    /* .heading-one {
        font-size: 48px !important;
    } */
    .partnering-para .heading-one,
    .brands .heading-one {
        font-size: var(--font-size-55) !important;
    }
    .bg-banner-image {
        background-position: 560px -800px;
        background-size: 115%;
        height: 620px;
    }
    .bg-blue-circle {
        background-position: right 90px;
        background-size: 115%;
        text-align: right;
        /* padding: 330px 125px 250px 125px; */
        height: 575px;
    }
    .bg-blue-circle-text {
        padding: 99px 0 0 115px;
        /* height: 931px; */
        padding-right: 75px;
    }
    .bg-blue-circle p {
        font-size: 24px;
    }
    .clt-img-sec p {
        width: 70%;
    }
    .trust-health-sol h3 {
        width: 70%;
        margin: 0 auto;
    }
    /* .trust-health-slider-Container {
        height: 670px;
    } */
    .trust-health-slider-sec {
        background-position: center -305px;
        background-size: 110%;
    }
    .trust-health-slider .swiper-slide .myCard .card {
        border: none !important;
        max-width: 200px;
        border-radius: 3px;
        /* margin: 0 auto; */
        transition: box-shadow 0.5s;
        transition-timing-function: ease-in-out;
        transform: scale(0.94);
        height: auto;
        justify-content: center;
        align-items: center;
        /* background: red; */
        transform: rotate(20deg);
        height: 150px;
        clip-path: ellipse(50% 45% at 50% 50%);
    }
    .trust-health-slider .swiper-slide .img-wrapper {
        /* background-image: url('../images/white-oval-bg.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%; */
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 39%);
        -moz-transform: translate(0%, 39%);
        -ms-transform: translate(0%, 39%);
        -o-transform: translate(0%, 39%);
        transform: translate(0%, 39%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 28%);
        -moz-transform: translate(15%, 28%);
        -ms-transform: translate(15%, 28%);
        -o-transform: translate(15%, 28%);
        transform: translate(15%, 28%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 28%);
        -moz-transform: translate(-15%, 28%);
        -ms-transform: translate(-15%, 28%);
        -o-transform: translate(-15%, 28%);
        transform: translate(-15%, 28%);
    }
    /* .trust-health-slider .swiper-slide .myCard .card1 .img-1 {
        -webkit-transform: translate(0%, 70%);
        -moz-transform: translate(0%, 70%);
        -ms-transform: translate(0%, 70%);
        -o-transform: translate(0%, 70%);
        transform: translate(0%, 70%);
    }
    .trust-health-slider .swiper-slide .myCard .card2 .img-2 {
        -webkit-transform: translate(-15%, 140%);
        -moz-transform: translate(-15%, 140%);
        -ms-transform: translate(-15%, 140%);
        -o-transform: translate(-15%, 140%);
        transform: translate(-15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card3 .img-3 {
        -webkit-transform: translate(0%, 170%);
        -moz-transform: translate(0%, 170%);
        -ms-transform: translate(0%, 170%);
        -o-transform: translate(0%, 170%);
        transform: translate(0%, 170%);
    }
    .trust-health-slider .swiper-slide .myCard .card4 .img-4 {
        -webkit-transform: translate(15%, 140%);
        -moz-transform: translate(15%, 140%);
        -ms-transform: translate(15%, 140%);
        -o-transform: translate(15%, 140%);
        transform: translate(15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card5 .img-5 {
        -webkit-transform: translate(6%, 70%);
        -moz-transform: translate(6%, 70%);
        -ms-transform: translate(6%, 70%);
        -o-transform: translate(6%, 70%);
        transform: translate(6%, 70%);
    } */
    .wid-acc-icon-sec {
        padding: 90px 0;
        height: 400px;
        background-size: contain;
    }
}
@media (max-width:1360px) and (min-width:1200px) {
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
        transform: translate(0%, 50%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 35%);
        -moz-transform: translate(15%, 35%);
        -ms-transform: translate(15%, 35%);
        -o-transform: translate(15%, 35%);
        transform: translate(15%, 35%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 35%);
        -moz-transform: translate(-15%, 35%);
        -ms-transform: translate(-15%, 35%);
        -o-transform: translate(-15%, 35%);
        transform: translate(-15%, 35%);
    }
    .trust-health-slider-sec {
        background-position: center -220px;
        background-size: 110%;
    }
}
@media (max-width:1366px) and (min-width:1200px) {
    /* .heading-one {
        font-size: 48px;
    } */
    .brands .heading-one,
    .trust-health-sol.sustainable-innovation-sec .mdm-reimagining-title .heading-one {
        font-size: var(--font-size-55);
    }
    .bg-banner-image {
        background-position: 545px -740px;
        background-size: 115%;
        height: 620px;
    }
    .bg-blue-circle {
        background-position: right 105px;
        background-size: 115%;
        text-align: right;
        /* padding: 330px 125px 250px 125px; */
        height: 575px;
    }
    .bg-blue-circle-text {
        padding: 95px 0 0 115px;
        /* height: 931px; */
        padding-right: 75px;
    }
    .bg-blue-circle p {
        font-size: 24px;
    }
    .clt-img-sec p {
        width: 70%;
    }
    .trust-health-slider-sec {
        background-position: center -220px;
        background-size: 110%;
    }
    .trust-health-sol h3 {
        width: 70%;
        margin: 0 auto;
    }
    /* .trust-health-slider-Container {
        height: 670px;
    } */
    .trust-health-slider .swiper-slide .myCard .card {
        border: none !important;
        max-width: 200px;
        border-radius: 3px;
        /* margin: 0 auto; */
        transition: box-shadow 0.5s;
        transition-timing-function: ease-in-out;
        transform: scale(0.94);
        height: auto;
        justify-content: center;
        align-items: center;
        /* background: red; */
        transform: rotate(20deg);
        height: 150px;
        clip-path: ellipse(50% 45% at 50% 50%);
    }
    .trust-health-slider .swiper-slide .img-wrapper {
        /* background-image: url('../images/white-oval-bg.png');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center; */
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 45%);
        -moz-transform: translate(0%, 45%);
        -ms-transform: translate(0%, 45%);
        -o-transform: translate(0%, 45%);
        transform: translate(0%, 45%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 35%);
        -moz-transform: translate(15%, 35%);
        -ms-transform: translate(15%, 35%);
        -o-transform: translate(15%, 35%);
        transform: translate(15%, 35%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 35%);
        -moz-transform: translate(-15%, 35%);
        -ms-transform: translate(-15%, 35%);
        -o-transform: translate(-15%, 35%);
        transform: translate(-15%, 35%);
    }
    /* .trust-health-slider .swiper-slide .myCard .card1 .img-1 {
        -webkit-transform: translate(0%, 70%);
        -moz-transform: translate(0%, 70%);
        -ms-transform: translate(0%, 70%);
        -o-transform: translate(0%, 70%);
        transform: translate(0%, 70%);
    }
    .trust-health-slider .swiper-slide .myCard .card2 .img-2 {
        -webkit-transform: translate(-15%, 140%);
        -moz-transform: translate(-15%, 140%);
        -ms-transform: translate(-15%, 140%);
        -o-transform: translate(-15%, 140%);
        transform: translate(-15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card3 .img-3 {
        -webkit-transform: translate(0%, 170%);
        -moz-transform: translate(0%, 170%);
        -ms-transform: translate(0%, 170%);
        -o-transform: translate(0%, 170%);
        transform: translate(0%, 170%);
    }
    .trust-health-slider .swiper-slide .myCard .card4 .img-4 {
        -webkit-transform: translate(15%, 140%);
        -moz-transform: translate(15%, 140%);
        -ms-transform: translate(15%, 140%);
        -o-transform: translate(15%, 140%);
        transform: translate(15%, 140%);
    }
    .trust-health-slider .swiper-slide .myCard .card5 .img-5 {
        -webkit-transform: translate(0%, 75%);
        -moz-transform: translate(0%, 75%);
        -ms-transform: translate(0%, 75%);
        -o-transform: translate(0%, 75%);
        transform: translate(0%, 75%);
    } */
    .wid-acc-icon-sec {
        padding: 90px 0;
        height: 400px;
        background-size: contain;
    }
}
@media (max-width:1200px) and (min-width:1200px) {
    .trust-health-slider-sec {
        background-position: center -135px;
    }
    .trust-health-slider .swiper-slide .myCard {
        height: 510px;
    }
}
@media (max-width:1280px) and (min-width:1280px) {
    .bg-banner-image {
        background-position: 520px -680px;
        background-size: 115%;
        height: 620px;
    }
    .bg-blue-circle-text {
        padding: 35px 0 0 70px;
        /* height: 931px; */
        padding-right: 75px;
    }
    .trust-health-slider .swiper-slide .myCard {
        -webkit-transform: translate(0%, 15%);
        -moz-transform: translate(0%, 15%);
        -ms-transform: translate(0%, 15%);
        -o-transform: translate(0%, 15%);
        transform: translate(0%, 15%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 41%);
        -moz-transform: translate(0%, 41%);
        -ms-transform: translate(0%, 41%);
        -o-transform: translate(0%, 41%);
        transform: translate(0%, 41%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(10%, 35%);
        -moz-transform: translate(10%, 35%);
        -ms-transform: translate(10%, 35%);
        -o-transform: translate(10%, 35%);
        transform: translate(10%, 35%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-10%, 35%);
        -moz-transform: translate(-10%, 35%);
        -ms-transform: translate(-10%, 35%);
        -o-transform: translate(-10%, 35%);
        transform: translate(-10%, 35%);
    }
}
@media (max-width:1200px) and (min-width:1200px) {
    .bg-banner-image {
        background-position: 480px -665px;
        background-size: 120%;
        height: 560px;
    }
    .trust-health-slider-sec {
        background-position: center -245px;
        background-size: 110%;
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 41%);
        -moz-transform: translate(0%, 41%);
        -ms-transform: translate(0%, 41%);
        -o-transform: translate(0%, 41%);
        transform: translate(0%, 41%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(12%, 30%);
        -moz-transform: translate(12%, 30%);
        -ms-transform: translate(12%, 30%);
        -o-transform: translate(12%, 30%);
        transform: translate(12%, 30%);
    }
    .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-12%, 30%);
        -moz-transform: translate(-12%, 30%);
        -ms-transform: translate(-12%, 30%);
        -o-transform: translate(-12%, 30%);
        transform: translate(-12%, 30%);
    }
}
.brands {
    padding: 80px 0;
}
.brands .brands-list {
    display: flex;
    justify-content: center;
}
.brands ul {
    list-style: none;
    margin-left: 0;
}
.brands ul li {
    display: inline-block;
    margin-inline: 25px;
    margin-top: 25px;
}
.partnering-controller {
    position: absolute;
    bottom: 8%;
    left: 50%;
}
.partnering-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.partnering-controller .swiper-button-next:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.partnering-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.partnering-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.partnering-controller .swiper-button-next:after,
.partnering-controller .swiper-button-prev:after {
    font-size: 14px;
}
.partnering-sec .partnering-slider {
    height: 365px;
}
@media (max-width:1199px) and (min-width:1024px) {
    .partnering-sec .partnering-slider {
        height: 325px;
    }
}
@media (max-width:1023px) and (min-width:768px) {
    .partnering-sec .partnering-slider {
        height: 275px;
    }
}
.img-hover {
    filter: grayscale(100%);
    transition: all 0.5s ease-in-out;
}
.img-hover:hover {
    filter: grayscale(0%);
    transition: all 0.5s ease-in-out;
}
.default-bullet {
    text-align: left;
    list-style: none;
    position: relative;
}
.default-bullet li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 22px;
}
.default-bullet li:before {
    content: " ";
    background-color: var(--color-blue);
    width: 12px;
    height: 8px;
    margin: 8px 0px 0px 0;
    border-radius: 50%;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
}
.default-h4 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    color: var(--color-blue);
}
.default-space {
    margin-top: 120px;
}
.quality-sec {
    padding: 80px 0;
}
.color-blue {
    color: var(--color-blue);
}
.default-bullet li h5 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
}
.amongst-companies-text .default-bullet {
    margin: 0 auto;
    width: 70%;
}
.partnering-para {
    font-size: var(--font-size-18);
}
.grecaptcha-badge {
    visibility: hidden;
}
.manufacturing-ourstndrd-rm p a {
    color: var(--color-blue);
}
.legacy-img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 470px;
}
.legacy-img .item-1 {
    margin-top: 150px;
}
.legacy-img .item-2 {
    margin-top: -10px;
}
.legacy-img .item-3 {
    margin-top: -75px;
}
.legacy-img .item-4 {
    margin-top: -75px;
}
.legacy-img .item-5 {
    margin-top: 10px;
}
.legacy-img .item-6 {
    margin-top: 230px;
}
.diagnosis.legacy-img .item-1 {
    margin-top: 150px;
}
.diagnosis.legacy-img .item-2 {
    margin-top: 10px;
}
.diagnosis.legacy-img .item-3 {
    margin-top: -60px;
}
.diagnosis.legacy-img .item-4 {
    margin-top: -60px;
}
.diagnosis.legacy-img .item-5 {
    /* margin-top: 10px; */
    margin-top: -60px;
}
.diagnosis.legacy-img .item-6 {
    /* margin-top: 250px; */
    margin-top: 10px;
}
.diagnosis.legacy-img .item-7 {
    margin-top: 150px;
}
.diagnosis.legacy-img .col img {
    margin-bottom: 10px;
}
.diagnosis.legacy-img .col h3 {
    font-size: var(--font-size-20);
}
.diagnosis.legacy-img .col .myCard {
    /* -webkit-transform: translate(0,15%);
    -moz-transform: translate(0,15%);
    -ms-transform: translate(0,15%);
    -o-transform: translate(0,15%);
    transform: translate(0,15%); */
    filter: drop-shadow(0px 0.7px 0.7px rgba(50, 50, 0, .5));
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
}
.diagnosis.legacy-img .col .myCard .card {
    max-width: 215px;
    width: 100%;
    height: 170px;
    transition: box-shadow .5s;
    transition-timing-function: ease-in-out;
    transform: scale(.94);
    height: auto;
    justify-content: center;
    align-items: center;
    transform: rotate(20deg);
    height: 150px;
    clip-path: ellipse(50% 50% at 50% 50%);
}
.diagnosis.legacy-img .col .myCard .card .img-wrapper {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.diagnosis.legacy-img .col .myCard .card .img-wrapper p {
    transform: rotate(340deg);
    padding: 0 31px;
    font-size: 20px;
    line-height: 26px;
    width: 100%;
}
.diagnosis.legacy-img .col .myCard .card:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    cursor: pointer;
}
.legacy-img .item-1,
.legacy-img .item-2,
.legacy-img .item-3,
.legacy-img .item-4,
.legacy-img .item-5,
.legacy-img .item-6 {
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    transition: 0.5s ease;
}
.legacy-img .item-1:hover,
.legacy-img .item-2:hover,
.legacy-img .item-3:hover,
.legacy-img .item-4:hover,
.legacy-img .item-5:hover,
.legacy-img .item-6:hover {
    /* -webkit-filter: grayscale(0);
    filter: grayscale(0); */
}
.clt-img-sec .legacy-img h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-blue);
}
.clt-img-sec .legacy-img p {
    font-size: var(--font-size-16);
}
.amongst-companies-img.mdm-consistency {
    background-position: right bottom;
    background-size: 1240px;
    height: 832px;
}
.mdm-consistency-right-column {
    max-width: 740px;
    text-align: left;
    padding-left: 25px;
    padding-top: 250px;
}
.amongst-companies.lamd-culture-csr-enviroment-main.Immunoassays .mdm-consistency-right-column{
    padding-top: 0;
}
.mdm-consistency-right-column p {
    font-size: var(--font-size-24);
}
.diverse_capabilities {
    padding: 40px 0;
}
.diverse_capabilities .diverse_capabilities_Slider .swiper-slide .myCard .card {
    border: none;
}
.diverse_capabilities .diverse_capabilities_Slider .swiper-slide .myCard .card .section-top-content-ph {
    text-align: center;
}
.diverse_capabilities .diverse_capabilities_Slider .swiper-slide .myCard .card .section-top-content-ph h3 {
    font-size: var(--font-size-24);
    color: var(--color-blue);
    padding-top: 15px;
}
.sustainable-innovation-sec {
    padding-bottom: 0;
}
.sustainable-innovation-sec .trust-health-slider-Container .swiper-slide .myCard .img-wrapper {
    flex-direction: column;
}
.sustainable-innovation-sec .trust-health-slider-Container .swiper-slide .myCard .img-wrapper h5 {
    display: block;
    font-size: var(--font-size-20);
    font-weight: 400;
    color: var(--color-darkgrey);
    padding-top: 20px;
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .legacy-img .item-1 {
        margin-top: 150px;
    }
    .legacy-img .item-2 {
        margin-top: 40px;
    }
    .legacy-img .item-3 {
        margin-top: 0px;
    }
    .legacy-img .item-4 {
        margin-top: 0px;
    }
    .legacy-img .item-5 {
        margin-top: 55px;
    }
    .legacy-img .item-6 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard .card {
        height: 110px;
    }
    .diagnosis.legacy-img .item-1 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .item-2 {
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-3 {
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-4 {
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-5 {
        /* margin-top: 60px; */
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-6 {
        /* margin-top: 230px; */
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-7 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard {
        height: auto;
    }
    .diagnosis.legacy-img .col .myCard .card .img-wrapper p {
        transform: rotate(340deg);
        padding: 0 31px;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .amongst-companies-img.mdm-consistency {
        background-position: right bottom;
        background-size: 825px;
        height: 555px;
    }
    .mdm-consistency-right-column {
        max-width: 585px;
        padding-top: 180px;
    }
    .trust-health-slider-sec {
        background-position: center -105px;
        background-size: 110%;
        margin-top: -100px;
    }
    .mdm-home .trust-health-slider .swiper-slide .myCard {
        -webkit-transform: translate(0%, 25%);
        -moz-transform: translate(0%, 25%);
        -ms-transform: translate(0%, 25%);
        -o-transform: translate(0%, 25%);
        transform: translate(0%, 25%);
        transition: all 1s;
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 43%);
        -moz-transform: translate(-15%, 43%);
        -ms-transform: translate(-15%, 43%);
        -o-transform: translate(-15%, 43%);
        transform: translate(-15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 43%);
        -moz-transform: translate(15%, 43%);
        -ms-transform: translate(15%, 43%);
        -o-transform: translate(15%, 43%);
        transform: translate(15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
        transform: translate(0%, 50%);
    }
    .wid-acc-icon-sec-1,
    .wid-acc-icon-sec-2,
    .wid-acc-icon-sec-3,
    .wid-acc-icon-sec-4,
    .wid-acc-icon-sec-5 {
        margin: 0 auto;
    }
    .wid-acc-icon-sec-1 {
        width: 150px;
        margin-top: 170px;
    }
    .wid-acc-icon-sec-2 {
        width: 80px;
        margin-top: 205px;
    }
    .wid-acc-icon-sec-3 {
        width: 190px;
        margin-top: 215px;
    }
    .wid-acc-icon-sec-4 {
        width: 95px;
        margin-top: 190px;
    }
    .wid-acc-icon-sec-5 {
        width: 110px;
        margin-top: 150px;
    }
}
@media (min-width: 1350px) and (max-width: 1399px) {
    .legacy-img .item-1 {
        margin-top: 150px;
    }
    .legacy-img .item-2 {
        margin-top: 40px;
    }
    .legacy-img .item-3 {
        margin-top: 0px;
    }
    .legacy-img .item-4 {
        margin-top: 0px;
    }
    .legacy-img .item-5 {
        margin-top: 55px;
    }
    .legacy-img .item-6 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard .card {
        height: 110px;
    }
    .diagnosis.legacy-img .item-1 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .item-2 {
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-3 {
        margin-top: 10px;
    }
    .diagnosis.legacy-img .item-4 {
        margin-top: 10px;
    }
    .diagnosis.legacy-img .item-5 {
        /* margin-top: 60px; */
        margin-top: 10px;
    }
    .diagnosis.legacy-img .item-6 {
        /* margin-top: 210px; */
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-7 {
        margin-top: 60px;
    }
    .diagnosis.legacy-img .col .myCard {
        height: auto;
    }
    .diagnosis.legacy-img .col .myCard .card .img-wrapper p {
        transform: rotate(340deg);
        padding: 0 31px;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .amongst-companies-img.mdm-consistency {
        background-position: right bottom;
        background-size: 880px;
        height: 590px;
    }
    .mdm-consistency-right-column {
        max-width: 585px;
        padding-top: 180px;
    }
    .amongst-companies.lamd-culture-csr-enviroment-main.Immunoassays .mdm-consistency-right-column{
        padding-top: 0;
    }
    .trust-health-slider-sec {
        background-position: center -105px;
        background-size: 110%;
        margin-top: -100px;
    }
    .mdm-home .trust-health-slider .swiper-slide .myCard {
        -webkit-transform: translate(0%, 25%);
        -moz-transform: translate(0%, 25%);
        -ms-transform: translate(0%, 25%);
        -o-transform: translate(0%, 25%);
        transform: translate(0%, 25%);
        /* transition: all 1s; */
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 43%);
        -moz-transform: translate(-15%, 43%);
        -ms-transform: translate(-15%, 43%);
        -o-transform: translate(-15%, 43%);
        transform: translate(-15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 43%);
        -moz-transform: translate(15%, 43%);
        -ms-transform: translate(15%, 43%);
        -o-transform: translate(15%, 43%);
        transform: translate(15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
        transform: translate(0%, 50%);
    }
    .wid-acc-icon-sec-1,
    .wid-acc-icon-sec-2,
    .wid-acc-icon-sec-3,
    .wid-acc-icon-sec-4,
    .wid-acc-icon-sec-5 {
        margin: 0 auto;
    }
    .wid-acc-icon-sec-1 {
        width: 150px;
        margin-top: 170px;
    }
    .wid-acc-icon-sec-2 {
        width: 80px;
        margin-top: 205px;
    }
    .wid-acc-icon-sec-3 {
        width: 190px;
        margin-top: 215px;
    }
    .wid-acc-icon-sec-4 {
        width: 95px;
        margin-top: 190px;
    }
    .wid-acc-icon-sec-5 {
        width: 110px;
        margin-top: 150px;
    }
}
@media (min-width: 1400px) and (max-width: 1480px) {
    .legacy-img .item-1 {
        margin-top: 150px;
    }
    .legacy-img .item-2 {
        margin-top: 40px;
    }
    .legacy-img .item-3 {
        margin-top: 0px;
    }
    .legacy-img .item-4 {
        margin-top: 0px;
    }
    .legacy-img .item-5 {
        margin-top: 55px;
    }
    .legacy-img .item-6 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard .card {
        height: 120px;
    }
    .diagnosis.legacy-img .item-1 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .item-2 {
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-3 {
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-4 {
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-5 {
        /* margin-top: 60px; */
        margin-top: 20px;
    }
    .diagnosis.legacy-img .item-6 {
        /* margin-top: 230px; */
        margin-top: 60px;
    }
    .diagnosis.legacy-img .item-7 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard {
        height: auto;
    }
    .diagnosis.legacy-img .col .myCard .card .img-wrapper p {
        transform: rotate(340deg);
        padding: 0 31px;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .amongst-companies-img.mdm-consistency {
        background-position: right bottom;
        background-size: 915px;
        height: 610px;
    }
    .mdm-consistency-right-column {
        max-width: 585px;
        padding-top: 100px;
    }
    .trust-health-slider-sec {
        background-position: center -180px;
        background-size: 110%;
    }
    .wid-acc-icon-sec-1,
    .wid-acc-icon-sec-2,
    .wid-acc-icon-sec-3,
    .wid-acc-icon-sec-4,
    .wid-acc-icon-sec-5 {
        margin: 0 auto;
    }
    .wid-acc-icon-sec-1 {
        width: 150px;
        margin-top: 170px;
    }
    .wid-acc-icon-sec-2 {
        width: 80px;
        margin-top: 205px;
    }
    .wid-acc-icon-sec-3 {
        width: 190px;
        margin-top: 215px;
    }
    .wid-acc-icon-sec-4 {
        width: 95px;
        margin-top: 190px;
    }
    .wid-acc-icon-sec-5 {
        width: 110px;
        margin-top: 150px;
    }
}
@media (min-width: 1600px) and (max-width: 1700px) {
    .legacy-img .item-1 {
        margin-top: 150px;
    }
    .legacy-img .item-2 {
        margin-top: 40px;
    }
    .legacy-img .item-3 {
        margin-top: 0px;
    }
    .legacy-img .item-4 {
        margin-top: 0px;
    }
    .legacy-img .item-5 {
        margin-top: 55px;
    }
    .legacy-img .item-6 {
        margin-top: 200px;
    }
    .diagnosis.legacy-img .col .myCard .card {
        height: 120px;
    }
    .diagnosis.legacy-img .item-1 {
        margin-top: 200px !important;
    }
    .diagnosis.legacy-img .item-2 {
        margin-top: 40px !important;
    }
    .diagnosis.legacy-img .item-3 {
        margin-top: 20px !important;
    }
    .diagnosis.legacy-img .item-4 {
        margin-top: 20px !important;
    }
    .diagnosis.legacy-img .item-5 {
        /* margin-top: 60px !important; */
        margin-top: 20px !important;
    }
    .diagnosis.legacy-img .item-6 {
        /* margin-top: 230px !important; */
        margin-top: 40px !important;
    }
    .diagnosis.legacy-img .item-7 {
        margin-top: 200px !important;
    }
    .diagnosis.legacy-img .col .myCard {
        height: auto;
    }
    .diagnosis.legacy-img .col .myCard .card .img-wrapper p {
        transform: rotate(340deg);
        padding: 0 31px;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .amongst-companies-img.mdm-consistency {
        background-position: right bottom;
        background-size: 1068px;
        height: 715px;
    }
    .mdm-consistency-right-column {
        max-width: 585px;
        padding-top: 180px;
    }
    .trust-health-slider-sec.mdm-home {
        background-position: center -119px;
        background-size: 110%;
        margin-top: -150px;
    }
    .mdm-home .trust-health-slider .swiper-slide .myCard {
        -webkit-transform: translate(0%, 25%);
        -moz-transform: translate(0%, 25%);
        -ms-transform: translate(0%, 25%);
        -o-transform: translate(0%, 25%);
        transform: translate(0%, 25%);
        /* transition: all 1s; */
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-15%, 43%);
        -moz-transform: translate(-15%, 43%);
        -ms-transform: translate(-15%, 43%);
        -o-transform: translate(-15%, 43%);
        transform: translate(-15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(15%, 43%);
        -moz-transform: translate(15%, 43%);
        -ms-transform: translate(15%, 43%);
        -o-transform: translate(15%, 43%);
        transform: translate(15%, 43%);
    }
    .mdm-home .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 50%);
        -moz-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
        -o-transform: translate(0%, 50%);
        transform: translate(0%, 50%);
    }
    .wid-acc-icon-sec-1,
    .wid-acc-icon-sec-2,
    .wid-acc-icon-sec-3,
    .wid-acc-icon-sec-4,
    .wid-acc-icon-sec-5 {
        margin: 0 auto;
    }
    .wid-acc-icon-sec-1 {
        width: 150px;
        margin-top: 170px;
    }
    .wid-acc-icon-sec-2 {
        width: 80px;
        margin-top: 205px;
    }
    .wid-acc-icon-sec-3 {
        width: 190px;
        margin-top: 215px;
    }
    .wid-acc-icon-sec-4 {
        width: 95px;
        margin-top: 190px;
    }
    .wid-acc-icon-sec-5 {
        width: 110px;
        margin-top: 150px;
    }
}
@media (min-width: 1900px) and (max-width: 1940px) {
    .clt-img-sec .legacy-img {
        margin-top: 70px;
    }
    .amongst-companies-img.mdm-consistency {
        background-position: right bottom;
        background-size: 1240px;
        height: 832px;
    }
    .mdm-consistency-right-column {
        max-width: 740px;
        padding-top: 250px;
    }
    .trust-health-slider-sec.mdm-home {
        background-position: center -365px;
        background-size: 110%;
    }
    .wid-acc-icon-sec-1,
    .wid-acc-icon-sec-2,
    .wid-acc-icon-sec-3,
    .wid-acc-icon-sec-4,
    .wid-acc-icon-sec-5 {
        margin: 0 auto;
    }
    .wid-acc-icon-sec-1 {
        width: 150px;
        margin-top: 200px;
    }
    .wid-acc-icon-sec-2 {
        width: 80px;
        margin-top: 250px;
    }
    .wid-acc-icon-sec-3 {
        width: 190px;
        margin-top: 265px;
    }
    .wid-acc-icon-sec-4 {
        width: 95px;
        margin-top: 235px;
    }
    .wid-acc-icon-sec-5 {
        width: 110px;
        margin-top: 170px;
    }
}
.mdm-reimagining-title {
    position: relative;
    z-index: 2;
}
.sustainable-innovation-sec .trust-health-slider .swiper-slide .img-wrapper img {
    filter: grayscale(0);
}
.sustainable-innovation-sec .trust-health-slider .swiper-slide .img-wrapper img:hover {
    filter: grayscale(0);
}
.sustainable-innovation-sec .trust-health-slider-Container .swiper-slide.swiper-slide-active .img-wrapper img {
    filter: grayscale(0);
}
.spectrum-slider .swiper-slide.swiper-slide-active .s-img-wrap img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98);
    filter: drop-shadow(5px 5px 3px #0000007a);
}
.healthier-img-box {
    /* height: 490px; */
    vertical-align: center;
}
.healthier-box h4 {
    font-size: var(--font-size-48);
    font-weight: 100;
    color: var(--color-darkgrey);
}
.healthier-box p {
    font-size: var(--font-size-18);
    color: var(--color-darkgrey);
}
/* slider css */
.clinical-slider .clinical_content,
.clinical-sliders .clinical_content,
.science-chemical .clinical_content {
    padding-top: 80px;
}
.clinical-slider .clinical_content img,
.clinical-sliders .clinical_content img,
.science-chemical .clinical_content img {
    padding-bottom: 80px;
}
.clinical-slider .clinical_content,
.clinical-sliders .clinical_content,
.science-chemical .clinical_content {
    text-align: center;
    padding-top: 0px;
}
.clinical-slider h4,
.clinical-sliders h4,
.science-chemical h4 {
    font-size: 36px;
    font-weight: 300;
    color: var(--primarycolor);
}
.clinical-slider p,
.clinical-sliders p,
.science-chemical p {
    font-size: var(--font-size-18);
    width: 70%;
    margin: 0 auto;
}
.clinical-slider,
.clinical-sliders,
.science-chemical {
    height: auto;
    padding-bottom: 100px;
}
.clinical-slider .spec-controller,
.clinical-sliders .spec-controller,
.science-chemical .spec-controller {
    position: absolute;
    left: 50%;
    bottom: 4%;
}
.clinical-slider .spec-controller .swiper-button-next::after,
.clinical-slider .spec-controller .swiper-button-prev::after,
.clinical-sliders .spec-controller .swiper-button-next::after,
.clinical-sliders .spec-controller .swiper-button-prev::after,
.science-chemical .spec-controller .swiper-button-next::after,
.science-chemical .spec-controller .swiper-button-prev::after {
    font-size: 14px;
}
.clinical-slider .spec-controller .swiper-button-next,
.clinical-sliders .spec-controller .swiper-button-next,
.science-chemical .spec-controller .swiper-button-next {
    right: -60px;
    left: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
}
.clinical-slider .spec-controller .swiper-button-prev,
.clinical-sliders .spec-controller .swiper-button-prev,
.science-chemical .spec-controller .swiper-button-prev {
    left: -60px;
    right: auto;
    background-color: var(--colorWhite);
    color: var(--primarycolor);
    border: 1px solid var(--color-grey);
    padding: 20px 20px;
    border-radius: 100%;
    transition: all 0.5s;
}
.clinical-slider .spec-controller .swiper-button-next:hover,
.clinical-slider .spec-controller .swiper-button-prev:hover,
.clinical-sliders .spec-controller .swiper-button-next:hover,
.clinical-sliders .spec-controller .swiper-button-prev:hover,
.science-chemical .spec-controller .swiper-button-next:hover,
.science-chemical .spec-controller .swiper-button-prev:hover {
    background-color: var(--primarycolor);
    color: var(--colorWhite);
}
.manufacturing_Facility .m_Facility_Text p,
.manufacturing_Facility .m_Facility_Text .toggle-text-manufact {
    font-size: var(--font-size-24);
    font-weight: 400;
}
@media screen and (max-width:1299px) and (min-width:1200px) {
    .section-top-content p,
    .diagnosis.legacy-img .col h3,
    .clinical-slider p,
    .clinical-sliders p,
    .science-chemical p,
    .clinical-slider a,
    .clinical-sliders a,
    .science-chemical a,
    .explore-culture .section-top-content p {
        font-size: var(--font-size-20);
        line-height: 26px;
    }
    .section-top-content p {
        width: 85%;
        margin: 0 auto 1rem;
    }
    .nav-item .dropdown-div {
        width: 460px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div {
        width: 471px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div ul li:last-child {
        width: 310px;
    }
}
@media screen and (max-width:1399px) and (min-width:1300px) {
    .section-top-content p,
    .diagnosis.legacy-img .col h3,
    .clinical-slider p,
    .clinical-sliders p,
    .science-chemical p,
    .clinical-slider a,
    .clinical-sliders a,
    .science-chemical a,
    .explore-culture .section-top-content p {
        font-size: var(--font-size-20);
        line-height: 26px;
    }
    .section-top-content p {
        width: 100%;
        margin: 0 auto 1rem;
    }
    .nav-item .dropdown-div {
        width: 480px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div {
        width: 471px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div ul li:last-child {
        width: 310px;
    }
}
@media screen and (max-width:1599px) and (min-width:1400px) {
    .section-top-content p,
    .diagnosis.legacy-img .col h3,
    .clinical-slider p,
    .clinical-sliders p,
    .science-chemical p,
    .clinical-slider a,
    .clinical-sliders a,
    .science-chemical a,
    .explore-culture .section-top-content p {
        font-size: var(--font-size-20);
        line-height: 26px;
    }
    .section-top-content p {
        width: 85%;
        margin: 0 auto 1rem;
    }
    .nav-item .dropdown-div {
        width: 480px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div {
        width: 471px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div ul li:last-child {
        width: 310px;
    }
}
@media screen and (max-width:1899px) and (min-width:1600px) {
    .section-top-content p,
    .diagnosis.legacy-img .col h3,
    .clinical-slider p,
    .clinical-sliders p,
    .science-chemical p,
    .clinical-slider a,
    .clinical-sliders a,
    .science-chemical a,
    .explore-culture .section-top-content p {
        font-size: var(--font-size-20);
        line-height: 26px;
    }
    .section-top-content p {
        width: 100%;
        margin: 0 auto 1rem;
    }
    .nav-item .dropdown-div {
        width: 490px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div {
        width: 471px;
    }
    .main-nav-box li:nth-child(3) .dropdown-div ul li:last-child {
        width: 310px;
    }
}
@media (min-width:1900px) {
    .section-top-content p,
    .diagnosis.legacy-img .col h3,
    .clinical-slider p,
    .clinical-sliders p,
    .science-chemical p,
    .clinical-slider a,
    .clinical-sliders a,
    .science-chemical a,
    .explore-culture .section-top-content p {
        font-size: var(--font-size-30);
        /* line-height: 30px; */
    }
    .section-top-content p {
        width: 100%;
        margin: 0 auto 1rem;
    }
}
@media (min-width:2500px) {
    .main-slider .swiper-slide .banner-image-box {
        background-repeat: no-repeat;
        background-position: calc(100% - 50%) top;
        background-size: contain;
        min-height: 800px;
    }
    .trust-health-slider-sec {
        background-position: center -370px;
    }
    .clt-img-sec {
        padding: 120px 0 0 0;
        text-align: center;
    }
}
.mini-logo {
    max-width: 150px;
}
.our-journey-timeline .bullet-ul li .csr-timeline-ancor.active>.eclipse {
    background-color: var(--primarycolor);
}
.our-journey-timeline .bullet-ul li .csr-timeline-ancor.active>h5 {
    color: var(--primarycolor);
}
nav .accordion {
    border-bottom: none;
    padding: 0;
}
nav .accordion:hover,
nav .active {
    background-color: transparent;
}
nav .accordion-item {
    border: none;
    background-color: #e4e4e4;
    padding-bottom: 1px
}
nav h2.accordion-header.active {
    color: #fff;
    background-color: var(--primarycolor);
}
nav h2.accordion-header.active:hover {
    color: #fff;
    background-color: var(--primarycolor);
}
nav h2.accordion-header a,
nav h2.accordion-header.active a {
    background-color: transparent !important;
}
nav h2.accordion-header {
    display: flex;
    color: #fff;
    background-color: #474747f0;
    display: flex;
    border-bottom: 1px solid #e4e4e4;
}
nav h2.accordion-header a {
    width: fit-content !important;
    font-size: var(--font-size-14);
    color: var(--colorWhite);
    padding: 18px 0 18px 15px;
    white-space: nowrap;
    text-transform: uppercase;
}
nav .accordion-button {
    background-color: transparent;
    justify-content: end;
    border-bottom: none;
    transition: none !important;
}
nav .accordion-button:hover {
    background-color: transparent;
}
nav .accordion-item .accordion-button.collapsed:after {
    content: "\002B";
    color: #fff;
    font-weight: 700;
    float: right;
    margin-left: 5px;
}
nav .accordion-item .accordion-button.collapsed.nil:after {
    content: "";
}
nav .accordion-button:not(.collapsed) {
    background-color: var(--primarycolor);
    box-shadow: none;
}
nav .accordion-button:not(.collapsed)::after,
nav .accordion-button::after {
    background-image: none;
    content: "\2212";
    color: #fff;
    font-weight: 700;
    float: right;
    margin-left: 5px;
    transform: none;
}
nav .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
nav .accordion-body ul {
    padding: 0;
}
nav .accordion-body {
    padding: 0 18px;
}
nav .accordion-header.active:after,
nav .accordion:after {
    content: "";
}
@media (min-width:1024px) and (max-width:1025px) {
    .main-banner .main-slider .swiper-slide .banner-image-box {
        background-position: -85px top;
        background-size: 1225px;
        min-height: 570px;
    }
    .main-banner .main-slider .controller-nav {
        width: 85px;
        height: 85px;
        right: -30px;
        bottom: 0;
    }
    .main-banner .main-slider .slide-wrap .slide-text p {
        font-size: 12px;
        line-height: 14px;
        width: auto;
        margin-left: 0;
    }
    .main-banner .main-slider .slide-wrap .slide-text h1 {
        font-size: 30px;
        line-height: 32px;
        width: 270px;
    }
    .main-banner .main-slider .slide-wrap .circle-bg {
        bottom: 5px;
        left: 6%;
        width: 400px;
        height: 300px;
    }
    .main-nav-box .menu-text {
        font-size: var(--font-size-12);
        line-height: 16px !important;
    }
    .main-nav-box li {
        margin-right: 15px;
    }
    .manufacturing-img-sec .spectrum-slider .spec-wrap h4 {
        font-size: var(--font-size-30) !important;
        line-height: 32px !important;
    }
    .spectrum-slider .swiper-slide .s-img-wrap {
        margin-bottom: 0;
    }
    .manufacturing-sec {
        padding-bottom: 20px;
    }
    .legacy-img {
        height: 300px !important;
        background-position: center top !important;
    }
    .diagnosis.legacy-img .item-1,
    .diagnosis.legacy-img .item-6 {
        margin-top: 80px;
    }
    .diagnosis.legacy-img .item-7 {
        margin-top: 0px;
    }
    .diagnosis.legacy-img .item-5,
    .diagnosis.legacy-img .item-2 {
        margin-top: 0;
    }
    .diagnosis.legacy-img .col .myCard .card {
        height: 110px !important;
    }
    .diagnosis.legacy-img .col .myCard .card .img-wrapper p {
        padding: 0 !important;
        font-size: 13px !important;
        line-height: 16px !important;
    }
    .legacy-img .item-1 {
        margin-top: 100px;
    }
    .legacy-img .item-2 {
        margin-top: 10px;
    }
    .legacy-img .item-3 {
        margin-top: -50px;
    }
    .legacy-img .item-4 {
        margin-top: -50px;
    }
    .legacy-img .item-5 {
        margin-top: 10px;
    }
    .legacy-img .item-6 {
        margin-top: 100px;
    }
    .trust-health-slider .swiper-slide.swiper-slide-active .myCard {
        -webkit-transform: translate(0%, 28%);
        -moz-transform: translate(0%, 28%);
        -ms-transform: translate(0%, 28%);
        -o-transform: translate(0%, 28%);
        transform: translate(0%, 28%);
    }
    .trust-health-slider-sec.mdm-home .swiper-slide.swiper-slide-prev .myCard {
        -webkit-transform: translate(-10%, 22%);
        -moz-transform: translate(-10%, 22%);
        -ms-transform: translate(-10%, 22%);
        -o-transform: translate(-10%, 22%);
        transform: translate(-10%, 22%);
    }
    .trust-health-slider-sec.mdm-home .swiper-slide.swiper-slide-next .myCard {
        -webkit-transform: translate(10%, 22%);
        -moz-transform: translate(10%, 22%);
        -ms-transform: translate(10%, 22%);
        -o-transform: translate(10%, 22%);
        transform: translate(10%, 22%);
    }
    .trust-health-slider-Container {
        height: 460px !important;
    }
    .contact-us-section .section-top-content .section-top-design {
        font-size: var(--font-size-16);
    }
    .trust-health-slider-sec {
        background-position: center -150px !important;
        background-size: cover !;
    }
    .section-top-content p {
        font-size: var(--font-size-16) !important;
    }
    .heading-one {
        font-size: 42px !important;
        width: 90%;
        margin: 0 auto;
    }
    .contact-us-section {
        height: 960px;
    }
    .contact-us-section .contact-us-banner .contact-info {
        width: 205px;
    }
    .contact-us-section .contact-us-banner .contact-call {
        width: 165px;
        margin-right: 30px;
        top: 70px;
    }
    .contact-us-section .contact-us-banner .contact-whatsapp {
        width: 125px;
        margin: 0 auto 0 70px;
        top: 100px;
    }
    .contact-us-section .contact-us-banner .contact-whatsapp .whatsapp-box {
        right: -165%;
        text-align: left;
    }
    .contact-us-section .contact-us-banner .form {
        padding: 40px 50px;
    }
    .form-floating>.form-control,
    .form-floating>.form-select {
        height: calc(2.2rem + 2px);
        line-height: 1.25;
    }
    .form-floating>label {
        padding: 0.5rem 0.75rem;
    }
    #particles-js-footer {
        height: 620px !important;
    }
    .contact-us-section .contact-us-banner .contact-us .form .form-button .form-btn {
        width: 100%;
    }
    .nav-item .dropdown-div ul li a,
    .nav-item .dropdown-div-2-last ul li a,
    .nav-item .dropdown-div-csr ul li a {
        font-size: var(--font-size-12) !important;
    }
    .desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .links {
        font-size: var(--font-size-12);
    }
    .desktop-header .top-header .desktop-topbar .top-right-section .top-menu-section .top-main-ul li .link-dropdown {
        font-size: var(--font-size-12);
    }
    .nav-item .dropdown-div-csr,
    .nav-item .dropdown-div,
    .nav-item .dropdown-div-2-last {
        width: 385px !important;
    }
    .main-menu .nav-link {
        padding: 0 0.75rem !important;
    }
    .main-slider-ban .slide .banner-image-box {
        background-repeat: no-repeat;
        background-position: 0px 60px;
        background-size: 1183px;
        min-height: 610px;
    }
    .main-nav-box li:first-child a span.menu-text {
        width: 95px;
    }
}
.first-prev {
    width: auto !important;
    right: auto !important;
    left: 11px !important;
}
.first-prev::after {
    font-size: 14px;
}
.first-next {
    width: auto !important;
    left: auto !important;
    right: 3px !important;
}
.first-next::after {
    font-size: 14px;
    content: "next" !important;
    background-image: none !important;
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: inherit;
    width: auto !important;
    height: auto !important;
}