#search-icon {
    margin-right: 0px;
}


/* .header-right {
    float: right;
} */
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    display: none !important;
  }
.header-item {
    display: inline-block;
}

.header-right {
    float: right;
}

.header-item a {
    color: #131b5c;
    font-size: 15px;
    text-decoration: none;
}

.fixed-top {
    height: 90px;
}

.content {
    text-align: center;
    position: relative;
    display: inline-block
}

.search-form {
    left: auto;
    top: 1px;
    position: relative !important;
    display: inline-block !important;
    background-color: green;
    border-radius: 50%;
    padding: 1px 3px 1px 5px;
    margin-left: -11px;
}

.search-field {
    background-color: transparent;
    background-image: url(https://wp-themes.com/wp-content/themes/twentythirteen/images/search-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: none;
    cursor: pointer;
    height: 40px;
    margin: 0px 0;
    padding: 0 0 0 34px;
    position: relative;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition: width 400ms ease, background 400ms ease;
    width: 0px;
    cursor: pointer;
    position: relative !important;
    display: inline-block !important;
}

.search-field:focus {
    background-color: #000;
    border: 2px solid #c3c0ab;
    cursor: text;
    outline: 0;
    width: 250px;
    color: #fff;
    display: inline-block !important;
}

.search-form .search-submit {
    display: none;
}

.header-item-sec {
    position: relative;
}

.header-item-sec ul {
    position: relative;
    margin-left: auto;
}

.header-item-sec ul li {
    position: relative;
    display: inline-block;
}

.header-item-sec li a {
    margin-left: auto;
    text-decoration: none;
    color: #131b5c;
    font-size: 15px;
    padding-right: 13px;
}

.header-item-sec li a:hover {
    text-decoration: none;
    color: #131b5c;
}

.logo {
    width: 200px;
    height: auto;
    position: relative !important;
    float: left;
    margin-top: 8px;
    z-index: 111 !important;
}

.accordion a:hover {
    color: #009045;
}

.header-item {
    padding: 10px;
    position: relative;
    display: inline-block;
}
.dark .classynav ul li .dropdown li a{
    font-size: 15px ;
}
.hamburger hamburger--boring is-active {}

.header-item a {
    padding: 10px;
    position: relative;
    display: inline-block;
}

.Hotbg {
    position: absolute;
    width: 200px;
    height: auto;
    top: 0px;
    background: #2f3640;
    height: 40px;
    border-radius: 40px;
    padding: 10px;
    top: 0px;
    display: inline-block;
}

.Hotbg:hover>.Hotbg-txt {
    width: 240px;
    padding: 0 6px;
    display: inline-block;
}

.Hotbg:hover>.Hotbg-btn {
    background: azure;
    color: black;
}

.Hotbg-btn {
    color: #e84118;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f3640;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    color: azure;
    cursor: pointer;
}

.Hotbg-btn>i {
    font-size-adjust: 30px;
}

a {
    text-decoration: none;
}

.Hotbg-txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: azure;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
    font-weight: bold;
}


/*
Inspiration for this menu: https://dribbble.com/shots/2962837-Header-Nav by Scout: https://dribbble.com/scout
*/

@import 'https://fonts.googleapis.com/css?family=Roboto:400,500';
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
ol,
ul,
li,
form,
legend,
label,
table,
header,
footer,
nav,
section,
figure {
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.container:after {
    content: "";
    display: table;
    clear: both;
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}


/* 
Full screen background image
*/

.hero {
    width: 100%;
    height: 100%;
    position: relative;
}


/*
Blueish tint overlay
*/

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


/* 
Making sure everything in .hero sits above our :after elements 
*/

.hero * {
    position: relative;
    z-index: 1;
}

#masthead {
    padding: 0em 0;
    position: relative;
}

#masthead.is-active {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}


/*
Using this method because browsers can transition opacity very cheaply as opposed to using background: rgba
https://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
*/

#masthead:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#masthead.is-active:after {
    opacity: 1;
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    background-color: #131b5c;
    border: 0;
    color: inherit;
    cursor: pointer !important;
    display: inline-block;
    font: inherit;
    margin: 0em;
    overflow: visible;
    outline: none;
    padding: 0;
    padding: 21px 29px;
    text-transform: none;
    transition: opacity 0.15s;
    -webkit-appearance: none;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    color: white;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -3px;
    float: left;
}

.hamburger-inner {
    width: 25px;
    height: 2px;
    bottom: 5px;
    padding: 2px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before {
    width: 30px;
    height: 2px;
    left: -7px;
    bottom: 5px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    padding: 2px;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::after {
    width: 15px;
    height: 2px;
    left: 10px;
    padding: 2px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    bottom: 5px;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

#masthead.is-active .hamburger-inner,
#masthead.is-active .hamburger-inner::before,
#masthead.is-active .hamburger-inner::after {
    background-color: white;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}


/*
 * Boring
 */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.hamburger-label {
    color: White;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-left: 0.3125em;
}

#masthead.is-active .hamburger-label {
    color: white;
}

.hamburger-box,
.hamburger-label {
    color: white;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-family: Roboto;
    font-weight: 500;
}

#site-nav {
    clear: both;
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    padding-top: 2.5em;
}

#site-nav.is-active {
    height: auto;
    overflow: visible;
    margin-top: 53px;
}

#site-nav .col {
    padding-bottom: 2.5em;
}

@media screen and (min-width: 550px) {
    #site-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    #site-nav .col {
        flex: 0 0 100%;
    }
}

@media screen and (min-width: 768px) {
    #site-nav .col {
        flex: 0 0 33.333333333%;
    }
}

@media screen and (min-width: 960px) {
    #site-nav {
        flex-wrap: nowrap;
    }
    #site-nav .col {
        flex: 0 0 35%;
    }
    #site-nav .col:last-child {
        justify-content: flex-end;
    }
}

#site-nav h4 {
    letter-spacing: 0.05em;
    font-size: 1.8em;
    font-weight: 500;
    font-family: parta;
}

#site-nav h2 {
    font-family: parta;
}

#site-nav ul {
    list-style-type: none;
    margin-top: 1em;
}

#site-nav li {
    margin-bottom: 0.3125em;
}

#site-nav li a {
    color: #b4b9ba;
    text-decoration: none;
    transition: color 0.3s ease;
}

#site-nav li a:hover,
#site-nav li a:focus {
    color: #686d6e;
}

#site-nav .social {
    margin: 0;
    overflow: hidden;
}

#site-nav .social li {
    float: left;
    margin: 0 0.3125em;
    width: 32px;
    height: 32px;
}

#site-nav .social li svg {
    display: block;
    fill: #b4b9ba;
    width: 100%;
    height: 100%;
    transition: fill 0.3s ease;
}

#site-nav .social li:hover svg {
    fill: #686d6e;
}

#masthead-search ::-webkit-input-placeholder {
    color: #fff;
}

.wrapper ::-webkit-input-placeholder {
    color: white;
}

#masthead-search :-moz-placeholder {
    color: #fff;
    opacity: 1;
}

#masthead-search ::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

#masthead-search :-ms-input-placeholder {
    color: #fff;
}

#masthead.is-active #masthead-search ::-webkit-input-placeholder {
    color: #b4b9ba;
}

#masthead .col {
    opacity: 0;
}

#masthead.is-active .col {
    transform: translateY(40px);
    transition: opacity 0.3s ease;
    animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
    -webkit-animation-delay: 0;
}

.clr {
    clear: both;
}

#masthead.is-active .col:nth-child(3) {
    -webkit-animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(4) {
    -webkit-animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child() {
    -webkit-animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
    -webkit-animation-delay: 0.4s;
}

@keyframes fade-in-stagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {}

h1 {
    color: #fff;
    font-weight: normal;
    font-size: 2.5rem;
    text-align: center;
}


/*_________________  Accordion
________________________________________*/

.accordion {
    position: relative;
    margin: 10px auto 20px;
    width: 100%;
    color: black;
}

.lines {
    width: auto;
    display: block;
    background-color: black !important;
    opacity: .3;
    margin-top: 15px;
    margin-bottom: 17px;
    border-bottom: 1px solid #000;
}

#site-nav.is-active {
    overflow: visible;
    overflow-x: visible;
    margin-top: 53px;
    height: 400px !important;
    overflow-x: hidden !important;
}

[id*="open-accordion"],
[id*="close-accordion"] {
    border-bottom: 1px solid #fff;
    line-height: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

[id*="close-accordion"] {
    display: none;
}

.accordion a {
    color: #333;
    font-size: 1.5em;
    font-weight: normal;
    text-decoration: none;
    text-shadow: none;
}

.accordion p a {
    color: #333!important;
    font-size: 1.25em !important;
    font-weight: normal;
    text-decoration: none;
    text-shadow: none;
}

.about p {
    margin-bottom: 4px !important;
}

.about p a {
    color: #333!important;
    font-size: 1.25em !important;
    font-weight: normal;
    text-decoration: none;
    text-shadow: none;
}

#nav {}

[id*="open-accordion"]:after,
[id*="close-accordion"]:after {
    content: '';
    display: inline-block;
    margin-top: 0.5em;
    margin-left: 0.6em;
    width: 8px;
    height: 8px;
    border-top: 0.01em solid #333;
    border-right: 0.01em solid #333;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(133deg);
}

.target-fix {
    display: block;
    top: 0;
    left: 0;
    position: fixed;
}

.accordion-content {
    background: #fff;
    height: 0;
    margin: -1px 17px 0;
    position: relative;
    overflow: hidden;
    width: 90%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.accordion span:target~.accordion-content {
    display: block;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.accordion span:target~[id*="close-accordion"] {
    display: block;
}

.accordion span:target~[id*="open-accordion"] {
    display: none;
}

.accordion span:target~[id*="close-accordion"]:after {
    border-top: 10px solid #333;
    transform: rotate(317deg);
    -webkit-transform: rotate(deg);
    content: '';
    display: inline-block;
    margin-top: 0.5em;
    margin-left: 0.6em;
    width: 10px;
    height: 10px;
    border-top: 0.01em solid #333;
    border-right: 0.01em solid #333;
}

.col {
    width: 33.33%;
    padding: 0 15px;
    float: left;
}

#search-form {
    display: none;
}

.hero {
    position: relative;
    z-index: 2;
}

.container-fluid1 {
    background-color: gray;
    position: relative;
    margin: auto;
}

.carousel-caption {
    right: auto !important;
    left: 6.6% !important;
    color: black !important;
    text-align: left !important;
    top: auto !important;
    bottom: 25% !important;
}

.carousel-caption h3 {
    font-size: 34px !important;
    font-weight: 300;
    font-family: Roboto !important;
    color: #009045;
    color: #131b5c;
    padding-bottom: 3px;
}

.carousel-caption h5 {
    font-size: 60px;
    color: #131b5c;
    font-family: Prata;
    font-weight: 500;
    color: #009045;
}

.logo img {
    width: 100%
}

.our-left {
    padding-top: 30px;
    padding-bottom: 50px;
}

.our-left h2 {
    font-family: Prata;
    font-weight: 400;
    font-size: 45px;
    color: #131b5c;
}

.our-left p {
    font-weight: 300;
    font-size: 20px;
    font-family: Roboto;
    line-height: 31px;
    padding-bottom: 10px;
    text-align: justify;
}

.our {
    background: url(../images/our-background.png) no-repeat;
    width: 100%;
    margin: auto;
    position: relative;
    background-size: 100%;
    position: relative;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.our-left .button {
    font-size: 18px;
    font-weight: 500;
    color: #009145;
    font-family: Roboto;
}

.button a {
    color: #009145;
    text-decoration: none;
    font-weight: 500;
    font-family: Roboto;
}

.button a:hover {
    font-weight: 500;
    color: #131b5c;
    text-decoration: none;
}

.container {
    max-width: 1200px !important;
}
/* 
.our-right {
    padding-right: 44px;
} */

.our-right img {
    width: 100%;
    position: relative;
    margin: auto;
}

.intro {
    margin-top: 119px;
    position: relative;
    padding: 0!important;
}

.intro h2 {
    font-family: Prata;
    font-weight: 500;
    font-size: 35px;
    line-height: 15px;
    color: #131b5c;
    padding-bottom: 15px;
}

.intro p {
    font-size: 18px;
    font-weight: 300;
    font-family: Roboto;
    line-height: 30px;
    text-align: justify;
}

.doctor {
    margin-top: 51px;
}

.doctor img {
    width: 100%;
    height: auto;
}

.intro .button {
    font-size: 18px;
    font-weight: 500;
    color: #009145;
    font-family: Roboto;
    padding-bottom: 0px;
    margin-top: -8px;
}

.intro .button a {
    padding-bottom: 0px;
}

.Harness {
    width: 100%;
    height: 380px;
    padding-right: 20px;
    position: relative;
    margin-top: 100px;
}

.Harness i {
    font-size: 100px !important;
    padding: 5px;
    color: #022f6a;
}

.careers {
    background: url(../images/career-background.png) no-repeat;
    width: auto;
    margin: auto;
    position: relative;
    background-size: cover;
    position: relative;
    height: auto;
}

.Tecnology {
    margin-bottom: 60px;
}

.Focus-content h2 {
    font-size: 28px !important;
    font-weight: 400;
    font-family: Prata;
    color: #009045;
    padding-bottom: 3px;
    margin-top: 50px;
}

.Tecnology h2 {
    font-size: 28px !important;
    font-weight: 400;
    font-family: Prata;
    color: #009045;
    padding-bottom: 3px;
}

.Tecnology p {
    position: relative;
    display: block;
    padding-left: 0rem !important;
    font-weight: 300;
    font-size: 20px;
    font-family: Roboto;
    line-height: 40px;
}

.banner-sec {
    width: 100%;
    padding-top: 108px;

}

.Focus-content ul {
    list-style: none !important;
    position: relative;
    display: block;
    padding-left: 0rem !important;
}

.Focus-content ul li {
    position: relative;
    display: block;
    padding-left: 0rem !important;
    list-style: none !important;
    font-weight: 300;
    font-size: 20px;
    font-family: Roboto;
    line-height: 40px;
}

.header {
    padding: 10px 16px;
    background: #555;
    color: #f1f1f1;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky+.content {
    padding-top: 102px;
}

.careers-right h4 {
    font-family: Roboto;
    font-size: 32px;
    font-weight: 300;
    color: #009045;
    line-height: 35px;
    margin-top: 80px;
    padding-bottom: 10px;
}

.careers-right h3 {
    font-family: Prata;
    font-size: 45px;
    font-weight: 400;
    color: #009045;
    line-height: 45px;
    padding-bottom: 15px;
    padding-top: 50px;
}

.Team-work-sec h5 {
    font-family: Prata;
    font-size: 32px;
    font-weight: 400;
    color: #131b5c;
    line-height: 45px;
    padding-bottom: 15px;
    padding-top: 35px;
}

.Team-work-sec p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify
}

.careers-right h5 {
    font-family: Prata;
    font-size: 28px;
    font-weight: 400;
    color: #131b5c;
    line-height: 35px;
}

.Team-work-sec ul {
    padding-left: 2px !important;
}

.Team-work-sec ul li {
    font-family: Roboto;
    font-size: 19px;
    font-weight: 300;
    line-height: 28px;
    text-align: justify
}

.careers-right p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
}
.contact-sec {
    padding-top: 40px;
}
.contact-left h5 {
    font-family: Prata;
font-size: 45px;
font-weight: 400;
color: #009045;
line-height: 45px;
padding-bottom: 15px;
padding-top: 50px;
}
.contact-left h4 {
    font-size: 30px;
}
.contact-left h3 {
    font-size: 30px;
    font-weight: bold;
    padding-top: 10px;
    color: #0e1955;
}
.contact-left p a {
    font-size: 18px;
    
    padding-top: 10px;
  text-decoration: none;
}

.map-btn {
    margin-top: 30px;
}
.map-btn a:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
}
.map-btn a {
    padding: 12px 24px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    background-color: #0e1955;
    color: white;
    text-decoration: none;
    border-radius: 15px;
}
.press-inner_sec p{
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
    padding-top: 40px;
}
.event-inner p{
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
    padding-top: 40px;
}
.event-inner h6{
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
   
}
.Advisors-sec h3{
font-family: Prata;
font-weight: 500;
font-size: 35px;
line-height: 15px;  
color: #131b5c;
padding-bottom: 15px;
text-align: center;
padding-top: 30px;

}
.Advisors-sec-img h6{
    font-family: Roboto;

    font-weight: 700;
    font-size: 17px;
line-height: initial;
    text-align: center;
    padding-top: 30px;
    
    }
    .Advisors-sec-img {
       margin-top: 20px;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        height: 395px;
    }
    .Advisors-sec-img p {
  font-family: Roboto;
  
 font-size: 15px;
line-height: 22px;
  margin-bottom: 0px !important;
  text-align: center;
  padding: 0px 10px;
        }
        .Advisors-sec-img  img {
            
            width: 100%;
        }
        .pipeline-sec {
            padding-top: 30px;
        }
        .pipeline-text p{
            font-family: Roboto;
font-size: 20px;
font-weight: 300;
line-height: 33px;
text-align: justify;

            }
            .pipeline-text h2{
            font-family: Prata;
font-weight: 500;
font-size: 35px;
line-height: 15px;
color: #131b5c;
padding-bottom: 15px;
            }
.event-inner h6 a{
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
    text-decoration: none;
    color: var(--bs-body-color);
   
}
.contact-rigth  img{

    width: 100%;
}
.event-inner h6 a:hover{
    color:#009145;
}

.misson-sec p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
    padding-top: 40px;
}
.about-right p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
  }
.Therapeutic-areas h5 {
    font-family: Prata;
    font-size: 32px;
    font-weight: 500;
    color: #131b5c;
    line-height: 35px;
}

.Team-work {
    margin-bottom: 70px;
}

.Team-work h5 {
    font-family: Prata;
    font-size: 25px;
    font-weight: 400;
    color: #131b5c;
    line-height: 35px;
}

.our-left-sec {
    margin-top: 10px;
}

.our-left-sec h2 {
    font-size: 31px;
    font-family: Prata;
    font-weight: 400;
    font-size: 45px;
    color: #131b5c;
}

.our-left-sec p {
    font-weight: 300;
    font-size: 22px;
    font-family: Roboto;
    line-height: 32px;
    text-emphasis: justify;
}

.overview-inner p {
    padding-top: 30px;
    font-weight: 300;
    font-size: 22px;
    font-family: Roboto;
    line-height: 32px;
    text-align: justify;
}

.Team-work p {
    font-family: Roboto;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}

.overview h5 {
    font-family: Prata;
    font-size: 32px;
    font-weight: 500;
    color: #131b5c;
    line-height: 35px;
}

.overview-sec h5 {
    font-family: Prata;
    font-size: 32px;
    font-weight: 500;
    color: #131b5c;
    line-height: 35px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.overview-sec p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 0rem !important;
    padding-bottom: 5px;
}

.Therapeutic-areas ul {
    display: block;
    position: relative;
    padding-left: 1.5rem !important;
}

.Therapeutic-areas li {
    font-weight: 300;
    font-size: 22px;
    font-family: Roboto;
    line-height: 35px;
}

.Therapeutic-areas p {
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 0rem !important;
}

.Therapeutic-areas {
    margin-bottom: 15px;
}

.overview p {
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 0rem;
    text-align: justify;
}

.careers-left img {
    width: 97%;
}

.careers .row {
    margin-right: 0 !important;
    padding-left: 0px !important;
}

.focus {
    background: url(../images/focus-banner.png) no-repeat;
    width: auto;
    margin: auto;
    position: relative;
    background-size: cover;
    position: relative;
    color: white;
    background-attachment: fixed;
    padding: 70px 0 20px;
}

.focus h3 {
    text-align: center;
    font-family: Prata;
    font-size: 45px;
    font-weight: 400;
}

.focus p {
    text-align: center;
    font-family: Roboto;
    font-size: 26px;
    font-weight: 300;
   
    margin-bottom: 10px;
    padding-top: 14px;
}

.our-focus {
    width: auto;
    height: 471px;
    position: relative;
    display: block;
    margin: auto;
    padding-top: 5px;
}

.our-focus img {
   
    width: 100%;
    position: relative;
    display: block;
    margin: auto;
}

.our-rights img {
    max-width: 557px;
    width: 100%;
    position: relative;
    display: block;
    margin: auto;
}

.our-rights-sec img {
    max-width: 404px;
    width: 100%;
    position: relative;
    display: block;
    margin: auto;
}

.Our-Focus h4 {
    padding-top: 23px;
    font-family: Prata;
    font-size: 22px;
    font-weight: 400;
    padding-right: 30px;
}

.Our-Focus {
    display: inline-block;
}

.Malaria-sec {
    background-color: #009045;
    padding: 7px;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: inline-block;
    float: right;
}

.Malaria-sec img {
    width: 100%;
    position: relative;
    margin: auto;
}

.zika {
    display: flex;
    position: relative;
    margin-bottom: 34px;
    place-content: flex-end;
}

.sars {
    padding-top: 0px;
}

.dengue {
    padding-top:0px;
}

.SARS-CoV-2 {
    display: block;
    display: block;
    padding-top: 0px;
    padding-bottom: 49px;
}

.SARS-img {
    display: flex;
    float: left;
    background-color: #009045;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin-right: 31px;
}

.SARS-img img {
    margin: auto;
    padding: 15px 0px 15px 5px;
}

.SARS-content h4 {
    padding-top: 23px;
    font-family: Prata;
    font-size: 22px;
    font-weight: 400;
}

.Malaria-sec-img {
    display: flex;
    float: right;
    background-color: #009045;
    border-radius: 50%;
    width: 75px;
    height: 75px;
}

.Malaria-sec-img img {
    margin: auto;
    padding: 15px 5px 15px 0px;
}

.event-and-news {
    background: #e0e3ec;
    width: 100%;
    margin: auto;
    position: relative;
    background-size: cover;
    height: auto;
    padding: 91px 0px 63px;
}

.events::before {
    content: "";
    position: absolute;
    left: 70px;
    right: 0px;
    top: 80px;
    width: 100%;
    max-width: 375px;
    height: 100%;
    background: #009045;
    color: white;
    opacity: 0.8;
    background: url(../images/events-bg.png) no-repeat;
    background-size: 80% 80%;
}

.event-and-news::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -250px;
    width: 53%;
    height: 456px;
    background: #009045;
    color: white;
    opacity: 0.8;
    z-index: 2;
}

.container1 {
    width: 1100px;
    margin: auto;
    position: relative;
}

.card {
    padding: 40px 30px 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.card-sec {
    padding: 10px;
}

.events {
    padding-top: 41px;
}

.events h2 {
    color: white !important;
    position: relative;
    font-family: Prata;
    font-size: 50px;
    font-weight: 400;
    z-index: 3;
}

.card h4 {
    color: white;
    font-family: Prata;
    font-size: 28px;
    font-weight: 500;
    color: #0e1955;
}

.card p {
    color: white;
    font-family: Roboto;
    font-size: 15.5px;
    font-weight: 400;
    color: #60636c;
}

.btnone {
    margin-top: 20px;
}

.btnone a {
    padding: 10px 20px;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    background-color: #0e1955;
    color: white;
    text-decoration: none;
    border-radius: 20px;
}

.btnone a:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
}

.card p span {
    padding-left: 5px;
    font-size: 15.5px;
}

.btntwo {
    margin-top: 35px;
    position: relative;
}

.btntwo a {
    padding: 12px 30px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    background-color: #0e1955;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    display: table;
    margin: auto;
    text-align: center;
}

.btntwo a:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
}

.our-services {
    background: url(../images/product-banner.png) no-repeat;
    width: 100%;
    margin: auto;
    position: relative;
    background-size: cover;
    height: 786px;
    padding-top: 61px;
}

.our-services h4 {
    text-align: center;
    color: white;
    font-size: 22px;
    font-family: Roboto;
    font-weight: 400;
    padding-bottom: 35px;
}

.button-two {
    margin-top: 18px;
    position: absolute;
    bottom: 19px;
}

.button-two a {
    padding: 8px 16px;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    background-color: #009045;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin: auto;
}

.button-two a:hover {
    background-color: #0e1955;
    color: white;
    text-decoration: none;
}

.card-section {
    padding: 6px 6px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: white;
    height: 520px;
}

.card-section h4 {
    font-family: Prata;
    font-size: 17px;
    font-weight: 400;
    color: #0e1955;
    padding: 18px 0px 7px;
}

.OUR-FOCUS-SEC-right img {
    max-width: 380px;
    width: 100%;
    margin: auto;
    position: relative;
}

.card-section p {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    color: #4d4d4d;
    text-align: justify;
}

.discovery-sec {
    position: relative;
    margin: auto;
    display: block;
}

.discovery-left {
    width: 23.5%;
    float: left;
    position: relative;
    display: inline-block;
    margin: auto;
    margin-left: 1.5%;
}

.clr {
    clear: both;
}

.Drug img {
    width: 100%;
}

.Drug h4 {
    font-family: Prata;
    font-size: 19px;
    font-weight: 500;
    color: #0e1955;
    text-align: left;
}

.laboratory-sec {
    margin-top: -156px;
    position: relative;
}

.laboratory-content {
    background-color: white;
    color: black;
    padding: 50px 30px;
}

.laboratory-left {
    position: relative;
    float: left;
    display: flex;
    width: 67%;
}

.laboratory-right {
    position: relative;
    float: right;
    display: flex;
    width: 33%;
}

.hours {
    width: 100%;
    position: relative;
    margin: auto;
    padding-bottom: 70px;
}

.laboratory-content h4 {
    font-family: Roboto;
    font-size: 24px;
    font-weight: bold;
    color: #0e1955;
    padding-top: 71px;
}

.laboratory-sec-img img {
    width: 100%;
}

.laboratory-content p {
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: #c3c3c3;
}

.button-one {
    margin-top: 37px;
}

.button-one a {
    padding: 17px 67px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 600;
    background-color: #0e1955;
    color: white;
    text-decoration: none;
    margin: auto;
}

.button-one a:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
}

.opening-hours {
    background-color: #009045;
    color: black;
    padding: 33px 33px;
}

.hours .laboratory-left {
    padding-top: 30px;
}

.hours {
    padding-bottom: 30px;
    height: 49px;
}

.opening-hours h4 {
    margin-top: 60px;
    padding-top: 30px;
    color: white;
    padding-bottom: 10px;
}

.days {
    display: block;
    margin: auto;
    position: relative;
    color: white;
    padding-top: 10px;
}

.day-left {
    display: flex;
    position: relative;
    float: left;
    width: 50%;
}

.day-right {
    display: flex;
    position: relative;
    float: left;
    width: 50%;
    place-content: flex-end;
}

.clr {
    clear: both;
}

.services-content {
    margin: 8px 0px 12px;
}

.footer-sec {
    padding: 50px 0px 0px;
    background-color: #0e1955;
    margin-top: 75px;
}

.footer-head {
    background-color: #009045;
    color: white;
    padding: 25px 20px 25px 40px;
    width: 100%;
    margin: auto;
    position: relative;
}

.footer-head-icon {
    display: flex;
    float: left;
    position: relative;
}

.footer-head-icon i {
    font-size: 55px;
    padding: 0px 20px;
    font-family: 300 !important;
}

.footer-content-sec {
    display: flex;
    position: relative;
}

.footer-head-content {
    display: block;
}

.footer-content-sec h3 {
    font-size: 22px;
    font-weight: 500;
    padding-top: 7px;
}

.footer-link-sec {
    color: white;
    width: 23%;
    position: relative;
    float: left;
    margin-right: 2%;
}
.solutions h5  li a {
    padding-bottom: 12px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
  }
.footer-link {
    display: block;
    margin: auto;
    position: relative;
    
}

.solutions {
    margin-top: 55px;
}

.solutions h5 {
    padding-bottom: 0px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.solutions p{
    color: #fff;
    text-align: justify;
    padding-right: 10px;
}
.solutions ul {
    display: block;
    padding-left: 0rem !important;
}

.solutions li {
    list-style: none;
    font-size: 15px;
    font-weight: 300;
    font-family: Roboto;
    line-height: 30px;
}

.solutions li a {
    list-style: none;
    font-size: 15px;
    font-weight: 300;
    font-family: Roboto;
    line-height: 30px;
    text-decoration: none;
    color: #fff;
}

.email-sec #form {
    max-width: 700px;
    padding: 2rem;
    box-sizing: border-box;
}

.email-sec .form-field {
    margin-top: 0px;
}

.email-sec label,
input {
    box-sizing: border-box;
    justify-content: space-between;
    font-size: 1.1rem;
    background-color: inherit;
    color: black !important;
    border: none;
}

.email-sec label {
    text-align: right;
    width: 30%;
}

.email-sec input {
    padding: 0.5rem;
    border-bottom: 1px solid #20bb6a;
    border-radius: 2px;
    color: white !important;
    width: 66%;
    display: flex;
    float: left;
    position: relative;
    padding-left: 35px;
}

.wrapper #form {
    top: 50%;
    position: relative;
    padding-top: 6%;
}

.email-sec .input {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #1e2b71;
    margin-top: 35px;
}

.footer-bottom p {
    color: white;
    font: 15px;
    font-family: Roboto;
    text-align: center;
    padding-top: 20px
}

.subscribe {
    margin-top: 5px;
    display: flex;
}

.subscribe a {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    margin: auto;
    background-color: #0e1955;
}

.subscribe a:hover {
    background-color: #0e1955;
    color: white;
    text-decoration: none;
}

body {
    background-color: #212121;
    background-image: url("http://wallpanda.com/wp-content/uploads/2015/05/Hd-backgrounds-premium-widescreen-hd-4-backgrounds-for-free-download-hd.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    font-family: "Open Sans", sans-serif;
}

.drug-design {
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 0rem !important;
    padding-top: 32px;
}

.drug-design p {
    margin-bottom: 0rem;
    padding-bottom: 0px !important;
    padding-top: 5px;
}

.discovery p {
    margin-bottom: 0rem;
    padding-bottom: 0px !important;
    padding-top: 5px;
}

.discovery {
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 0rem !important;
    padding-top: 25px;
}

#search-menu {
    position: fixed;
    width: 100%;
    height: 40em;
    top: 0em;
    left: 0;
    white-space: nowrap;
    z-index: 9999;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.01)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#cc000000", endColorstr="#1a000000", GradientType=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#search-menu .wrapper {
    position: relative;
    margin: 3em auto 0 auto;
    padding: 0 1em;
    max-width: 1200px;
}

#search-menu .wrapper input {
    width: 90%;
    padding: 40px 0 0.125em 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid #bfbfbf;
    font-size: 2em;
    color: #bfbfbf;
}

.wrapper #form i {
    font-size: 2.5rem;
}

#search-menu .wrapper input:focus {
    outline: none;
}

#search-menu .wrapper button {
    position: absolute;
    display: block;
    width: 10%;
    right: 0;
    top: 48%;
    background: transparent;
    border: none;
    color: #bfbfbf;
    font-size: 4em;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu .wrapper button:hover {
    color: #fff;
}

#search-menu .wrapper button:focus {
    outline: none;
}

#search-icon {
    padding: 0.2em 0.5em 0.23em 0.5em;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    background: #009045;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-icon:hover {
    color: #fff;
}

video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    color: red;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffdb52;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffdb52;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: #15c977;
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 20px solid #022f67 !important;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: #da0528;
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    margin: auto;
    margin-top: 10px;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
    z-index: 5555 !important;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.bg-scrolling {
    background: white;
}

.bg-scrolling .logo {
    width: 200px;
    margin-top: 8px;
}

.form-filed input {
    padding-left: 10px;
}

.email-sec .fa {
    float: left;
    padding-top: 10px;
    font-size: 25px;
    margin-right: -45px;
    color: #4db27d;
}

 ::-webkit-input-placeholder {
    color: #4db27d;
}

.email-sec input {
    outline: thin #fff !important;
}


}
.email-sec input .company-sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -250px;
    width: 55%;
    height: 450px;
    background: green;
    opacity: 0.8;
}
.career-sec {
    margin-top: 48px;
}
.about-sec {
    margin-top: 48px;
}

.company-content-inner {
    height: 264px;
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
    margin-top: 30px;
}
.company-content {
    position: absolute;
    top: 37%;
    bottom: auto;
    left: 0;
    right: 0;
    text-align: center;
}
.company-inner {
    position: relative;
    height: 250px;
}
.COMPANY {
    height: 260px;
    position: relative;
    margin: auto;
    background-color: #cac9c9;
    margin-bottom: 20px;
}
.COMPANY img {
    height: 260px !important;
}
.company-sec {
    margin-top: 40px;
}
.OUR-FOCUS-SEC h3 {
    font-size: 32px !important;
    font-weight: 500;
    font-family: Prata;
    color: #009045;
    text-transform: uppercase;
    padding-bottom: 3px;
    margin-top: 104px;
}
#site-nav h4 a {
    color: black;
    letter-spacing: 0.05em;
    /*text-transform: uppercase;*/
    
    text-decoration: none;
}
.OUR-FOCUS-SEC h5 {
    font-size: 60px;
    color: #131b5c;
    font-family: Prata;
    font-weight: 300 !important;
}
.OUR-FOCUS-SEC-right {
    padding-top: 20px;
}
.OUR-FOCUS-SEC-right img {
    max-width: 367px;
    width: 100%;
    position: relative;
    display: block;
}
.introduction h2 {
    font-size: 28px !important;
    font-weight: 400;
    font-family: Prata;
    color: #131b5c;
    padding-bottom: 3px;
}
.OUR-SERVICES h2 {
    font-size: 28px !important;
    font-weight: 400;
    font-family: Prata;
    color: #131b5c;
    padding-bottom: 3px;
    margin-top: 10px;
}
.vision {
    margin-top: 10px;
}
.vision h2 {
    font-size: 32px !important;
    font-weight: 500;
    font-family: Prata;
    color: #131b5c;
    padding-bottom: 3px;
    margin-top: 15px;
}
.vision p {
    font-family: Roboto;
    font-size: 21px;
    font-weight: 300;
    line-height: 32px;
    padding-right: 10px;
    text-align: justify;
}
.OUR-SERVICES ul {
    list-style: none !important;
    position: relative;
    display: block;
    padding-left: 0rem !important;
}
.OUR-SERVICES ul li {
    position: relative;
    display: block;
    padding-left: 0rem !important;
    list-style: none !important;
    font-weight: 300;
    font-size: 22px;
    font-family: Roboto;
    line-height: 40px;
}

/*.introduction p {
   font-weight: 300;
    font-size: 22px;
    font-family: Roboto;
}*/
.introduction p {
    font-family: Roboto;
    font-size: 22px;
    font-weight: 300;
    line-height: 40px;
}
.company-content span {
    color: red;
}
.company-content h3 {
    font-weight: bold;
    color: #009045;
    font-size: 35px;
    font-family: Roboto !important;
}
.company-content h5 {
    font-weight: 500;
    font-weight: 16px;
}
.hamburger-inner {
    width: 25px;
}
.hamburger-inner::before {
    width: 25px;
    left: 0;
}
.hamburger-inner::after {
    width: 25px;
    left: 0;
}
.Our-Approach {
    padding-top: 50px;
    padding-bottom: 3px;
}
.career-sec {
    padding-bottom: 40px;
}
.about-sec {
    padding-bottom: 40px;
}
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .contact-box {
    width: clamp(100px, 90%, 1000px);
    margin: 80px 50px;
    display: flex;
    flex-wrap: wrap;
}
#contact .contact-links,
.contact-form-wrapper {
    width: 50%;
    padding: 5% 5% 3% 5%;
}
#contact .contact-links {
    color: white;
    padding-top: 148px;
}
#contact .contact-links {
    background-color: #1f2e43;
    background: radial-gradient( circle at 55% 92%, #426691 0 12%, transparent 12.2%), radial-gradient( circle at 94% 72%, #426691 0 10%, transparent 10.2%), radial-gradient( circle at 20% max78%, 350px, #263a53 0 7%, transparent 7.2%), radial-gradient( circle at 0% 0%, #263a53 0 40%, transparent 40.2%), #1f2e43;
    border-radius: 10px 0 0 10px;
}
#contact .contact-form-wrapper {
    background-color: #ffffff8f;
    border-radius: 0 10px 10px 0;
}
@media only screen and (max-width: 800px) {
    .contact-links,
    .contact-form-wrapper {
        width: 100%;
    }
    
    .contact-links {
        border-radius: 10px 10px 0 0;
    }
    
    .contact-form-wrapper {
        border-radius: 0 0 10px 10px;
    }
}
@media only screen and (max-width: 400px) {
    .contact-box {
        width: 95%;
        margin: 8% 5%;
    }
}
.Harness img {
    width: 100%;
}
#contact .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
}
#contact .link {
    margin: 10px;
    cursor: pointer;
}
#contact img {
    width: 45px;
    height: 45px;
    filter: hue-rotate(220deg) drop-shadow(2px 4px 4px #0006);
    transition: 0.2s;
    user-select: none;
}
#contact img:hover {
    transform: scale(1.1, 1.1);
}
#contact img:active {
    transform: scale(1.1, 1.1);
    filter: hue-rotate(220deg) drop-shadow(2px 4px 4px #222) sepia(0.3);
}
#contact .form-item {
    position: relative;
}
#contact label,
input,
textarea {
    font-family: 'Poppins', sans-serif;
}
#contact label {
    position: absolute;
    top: 10px;
    left: 2%;
    color: #999;
    font-size: clamp(14px, 1.5vw, 18px);
    pointer-events: none;
    user-select: none;
}
#contact input,
textarea {
    width: 100%;
    outline: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 31px;
    padding: 12px;
    font-size: clamp(15px, 1.5vw, 18px);
}
#contact input:focus+label,
input:valid+label,
textarea:focus+label,
textarea:valid+label {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #777;
    top: -20px;
    transition: all .225s ease;
}
#contact .submit-btn {
    /*background-color: #fd917e;
    filter: drop-shadow(2px 2px 3px #0003);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 1.6vw, 18px);
    display: block;
    padding: 12px 20px;
    margin: 2px auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;*/
    
    background-color: #fd917e;
    filter: drop-shadow(2px 2px 3px #0003);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 1.6vw, 18px);
    display: block;
    padding: 12px 20px;
    margin: 2px auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
}
#contact .submit-btn:hover {
    transform: scale(1.1, 1.1);
}
#contact .submit-btn:active {
    transform: scale(1.1, 1.1);
    filter: sepia(0.5);
}
@media only screen and (max-width: 400px) {
    #contact img {
        width: 38px;
        height: 38px;
    }
}
#contact .contact-links {
    color: white;
}
#contact .contact-links h2 {
    text-align: center;
}

/*@media only screen and (max-width: 800px) {
    #contact .contact-links h2 {
        font-size: clamp(40px, 10vw, 60px);
    }
}


*/
@media only screen and (min-width: 320px) and (max-width:340px) {
    .accordion-line {
        width: 80%;
        height: .9px;
        display: block;
        background-color: black;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .discovery-left{
        width: 100% !important;
    }
    .Advisors-sec-img {
       
         height:auto;
     }
    .carousel-item {
        height: auto !important;
      }
      .banner-sec h5 {
        font-size: 24px !important;
      }
      .banner-sec img {
        width: 30%;
      }
      .banner-sec{
        padding-top: 21px;
      }
    .banner-right-sec{
        margin: auto;
        position: relative;
        float: none;
        align-items: center;
        
    }
    .banner-right-sec img{
        width: 93%;
    }
    #nav {
        padding-left:0px !important;

    }
    .our-focus{
        margin-bottom: 50px;
    }
    .footer-link{
        width: 100%;
    }
    .card-section {
        height: auto;
      }
    .banner-sec {
        width: 100%;
    }
    
    .carousel-inner {
        padding: 50px 0px 0px 0px;
        background: #e9eaec;
    }
    
    .lineone {
        width: auto;
        display: block;
        background-color: black !important;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 17px;
        border-bottom: 1px solid #000;
    }
    
    .company-sec {
        margin-top: 9px;
    }
    
    .Focus-content h2 {
        font-size: 25px !important;
    }
    
    .Focus-content ul li {
        font-size: 18px !important;
        line-height: 35px;
    }
    
    .Tecnology h2 {
        font-size: 25px !important;
    }
    
    .Tecnology p {
        font-size: 18px;
    }
    
    .our-left-sec h2 {
        font-size: 36px;
    }
    
    .our-left-sec p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Team-work p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .our-left-sec {
        margin-top: 0px;
    }
    
    .Our-Approach {
        padding: 30px 0px;
    }
    
    #site-nav .col {
        padding-bottom: 0px;
    }
    
    .col:nth-child(3) .lines {
        margin-bottom: 10px;
    }
    
    #contact .links {
        padding-top: 16px;
    }
    
    .OUR-FOCUS-SEC h3 {
        font-size: 27px !important;
        margin-top: 22px;
    }
    
    .introduction p {
        font-size: 18px;
    }
    
    .OUR-SERVICES p {
        font-size: 21px;
        line-height: 20px;
    }
    
    .OUR-SERVICES h2 {
        font-size: 27px !important;
        /*margin-bottom: 15px;*/
    }
    
    .introduction h2 {
        font-size: 27px !important;
        margin-top: 26px;
    }
    
    .vision p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-SERVICES ul li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .overview p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .COMPANY {
        background-color: none;
        height: 194px;
    }
    
    .COMPANY img {
        height: 194px !important;
    }
    
    #contact .contact-box {
        width: 100%;
        margin: 34px 23px;
    }
    
    #contact .contact-links {
        padding-top: 27px;
    }
    
    #contact .contact-links,
    .contact-form-wrapper {
        width: 100%;
        padding: 10% 5%;
        border-radius: 10px
    }
    
    .careers-right h3 {
        font-size: 36px;
        padding-bottom: 9px;
        padding-top: 31px;
    }
    
    .company-content {
        top: auto;
        bottom: 24%;
    }
    
    .company-content h3 {
        font-size: 21px;
    }
    
    .company-content-inner {
        height: 197px;
    }
    
    .company-content h5 {
        font-size: 16px;
    }
    
    .header-item {
        padding: 0px 5px;
    }
    
    .our-focus {
        height: 100%;
    }
    
    .carousel-caption {
        top: 0% !important;
        bottom: auto !important;
    }
    
    .carousel-caption h3 {
        font-size: 14px !important;
        padding-bottom: 0px !important;
    }
    
    .carousel-caption h5 {
        font-size: 32px;
    }
    
    .footer-link-sec {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC-right img {
        width: 100%;
        margin-top: auto;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 32px;
    }
    
    .header-item a {
        display: none;
    }
    
    .discovery-left {
        width: 100%;
        margin-left: 0px !important;
    }
    
    .careers {
        height: auto;
        padding: 40px 0px;
    }
    
    .focus {
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
        height: auto;
    }
    
    .our-services {
        height: auto;
        position: relative;
        padding: 61px 0px;
    }
    
    .banner {
        width: 100%;
        position: relative;
        margin: auto;
        height: 100%;
    }
    
    .event-and-news {
        height: auto;
        padding-top: 0px;
    }
    
    .Our-Focus h4 {
        color: white;
    }
    
    .SARS-content h4 {
        color: white;
    }
    
    .events h2 {
        font-size: 37px;
        margin-top: 112px;
        padding: 0px 15px;
    }
    
    .events::before {
        left: 0px;
    }
    
    .events {
        padding-top: 32px;
        position: relative;
        margin: auto;
    }
    
    .laboratory-sec {
        margin-top: 0px;
    }
    
    .focus {
        padding-top: 42px;
    }
    
    .focus h3 {
        font-size: 29px;
    }
    
    .focus p {
        font-size: 14px;
    }
    
    .dengue {
        padding-top: 0px;
    }
    
    .footer-head-icon i {
        font-size: 41px;
    }
    
    .footer-content-sec h3 {
        font-size: 17px;
    }
    
    .footer-sec {
        padding: 15px 0px 0px;
        background-color: #0e1955;
        margin-top: 61px;
    }
    
    .footer-head {
        padding: 25px 6px 25px 15px;
    }
    
    .email-sec input {
        width: 96%;
    }
    
    .subscribe {
        margin-top: 0px;
        display: block;
        padding-top: 64px;
        text-align: center;
    }
    
    .subscribe a {
        font-size: 13px;
        padding: ;
    }
    
    .our-left h2 {
        font-size: 28px;
    }
    
    .our-left p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .intro {
        margin-top: 26px;
    }
    
    .intro p {
        font-size: 17px;
        line-height: 29px;
    }
    
    .intro h2 {
        font-family: Prata;
        font-weight: 500;
        font-size: 31px;
        line-height: 3px;
        color: #131b5c;
        padding-bottom: 15px;
    }
    
    .careers-right h5 {
        font-size: 24px;
        line-height: 28px;
    }
    
    .careers-right {
        padding: 0px 0px 0px 5%;
    }
    .about-right {
        padding: 0px 0px 0px 5%;
    }
    
    .our-left .button {
        margin-bottom: 20px;
    }
    
    .sars {
        padding-top: 50px;
    }
    
    .our-focus img {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .Harness {
        padding-right: 0px;
        margin-top: 29px;
        height: auto;
    }
    
    .our-left {
        padding-top: 0px;
    }
    
    .card {
        margin-top: 15px;
    }
    
    .discovery-left {
        margin-top: 10px;
    }
    
    .laboratory-sec-img {
        margin-top: 44px;
    }
    
    .footer-link {
        margin-top: 20px;
    }
    
    .solutions {
        margin-top: 12px;
    }
    
    .events {
        position: relative;
        margin: auto;
        height: 430px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
        height: 430px;
    }
    
    .event-and-news {
        height: 100%;
        position: relative;
    }
    
    .careers-right p {
        font-size: 18px;
        line-height: 32px;
    }.about-right p {
        font-size: 18px;
        line-height: 32px;
    }
    .hamburger-label {
        margin-left: 0px;
        display: none;
    }
    
    .hamburger-inner {
        padding: 1.5px;
    }
    
    .hamburger {
        padding: 10px 8px 10px 12px;
    }
    
    .bg-scrolling .logo {
        width: 113px;
        margin-top: 8px;
    }
    
    .fixed-top {
        height: 62px;
    }
    
    .col {
        width: 100%;
        margin: auto;
        position: relative;
    }
    
    #site-nav {
        padding-top: 0px;
    }
    
    #search-icon {
        position: relative;
        display: inline-block;
        float: left;
        margin-right: 0px;
        top: 12px;
        padding: 0.2em 0.6em 0.2em 0.6em;
        font-size: 16px;
    }
    
    #search-menu .wrapper input {
        width: 80%;
        font-size: 24px;
    }
    
    .wrapper #form i {
        font-size: 1.5rem;
    }
    
    #search-menu .wrapper button {
        top: 17%;
    }
    
    .our {
        background-image: none;
        background-color: #e0e3ec;
    }
    
    .logo img {
        width: 113px;
    }
    
    .our-right {
        padding-right: 0px;
    }
    
    .careers-left img {
        width: 100%;
    }
    
    .doctor img {
        max-width: 298px;
        width: 100%;
        margin: auto;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
        padding: 14px;
    }
    
    .our-right {
        padding-right: 0px;
        margin: auto;
    }
    
    .video-overlay iframe {
        width: 94%;
    }
    
    .our-focus img {
        margin: auto;
    }
    
    .accordion {
        margin-bottom: 0px;
    }
    .card-section {
        height: auto;
      }
      .Drug img {
        width: 100%;
      
        position: relative;
      }
      
}
@media only screen and (min-width: 341px) and (max-width:480px) {
    .carousel-item {
        height: auto !important;
      }
      .banner-sec h5 {
        font-size: 26px !important;
      }
      .banner-sec img {
        width: 35%;
      }
      .banner-sec{
        padding-top: 21px;
      }
      .Advisors-sec-img {
       
        height:auto;
    }
    .accordion-line {
        width: 250px;
        height: .9px;
        display: block;
        background-color: black;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .banner-right-sec{
        margin: auto;
        position: relative;
        float: none;
        align-items: center;
        
    }
    .banner-right-sec img{
        width: 93%;
    }
    #nav {
        padding-left:0px !important;

    }
    .footer-link{
        width: 100%;
    }
    .our-focus{
        margin-bottom: 50px;
    }
    .Drug img {
        width: 100%;
        height: 200px;
        position: relative;
      }
      .card-section {
        height: auto;
      }
    .banner-sec {
        width: 100%;
    }
    
    .carousel-inner {
        padding: 50px 0px 0px 0px;
        background: #e9eaec;
    }
    
    .lineone {
        width: auto;
        display: block;
        background-color: black !important;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 17px;
        border-bottom: 1px solid #000;
    }
    
    .introduction p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-FOCUS-SEC h3 {
        margin-top: 0px;
    }
    
    .OUR-FOCUS-SEC-right {
        margin-bottom: 15px;
    }
    
    .company-sec {
        margin-top: 30px;
    }
    
    .Focus-content h2 {
        font-size: 25px !important;
    }
    
    .Focus-content ul li {
        font-size: 18px !important;
        line-height: 35px;
    }
    
    .Tecnology h2 {
        font-size: 25px !important;
    }
    
    .Tecnology p {
        font-size: 18px;
    }
    
    .our-left-sec h2 {
        font-size: 36px;
    }
    
    .our-left-sec p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Team-work p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .vision p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-SERVICES ul li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .overview p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Our-Approach {
        padding: 30px 0px;
    }
    
    .our-left-sec {
        margin-top: 0px;
    }
    
    #site-nav .col {
        padding-bottom: 0px;
    }
    
    .col:nth-child(3) .lines {
        display: none;
        margin-bottom: 10px;
    }
    
    .accordion {
        margin-bottom: 0px;
    }
    
    .lines {
        width: 250px;
    }
    
    #contact .contact-box {
        width: 100%;
        margin: 34px 23px;
    }
    
    #contact .contact-links {
        padding-top: 27px;
    }
    
    #contact .links {
        padding-top: 15px;
    }
    
    #contact .contact-links,
    .contact-form-wrapper {
        width: 100%;
        padding: 10% 5%;
        border-radius: 10px
    }
    
    .company-content h3 {
        font-size: 21px;
    }
    
    .company-content h5 {
        font-size: 15px;
    }
    
    .COMPANY {
        height: 190px;
    }
    
    .COMPANY img {
        height: 190px !important;
    }
    
    .company-content-inner {
        height: 193px;
    }
    
    .company-content {
        top: auto;
        bottom: 25%;
    }
    
    .carousel-caption {
        top: 0% !important;
        bottom: auto !important;
    }
    
    .our-focus {
        height: 100%;
    }
    
    .carousel-caption h3 {
        font-size: 16px !important;
        padding-bottom: 0px !important;
    }
    
    .carousel-caption h5 {
        font-size: 39px;
    }
    
    .footer-link-sec {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC-right img {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 36px;
    }
    
    .header-item a {
        display: none;
    }
    
    .discovery-left {
        width: 100%;
        margin-left: 0px !important;
    }
    
    .careers {
        height: auto;
        padding: 40px 0px;
    }
    
    .focus {
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
        height: auto;
    }
    
    .our-services {
        height: auto;
        position: relative;
        padding: 61px 0px;
    }
    
    .banner {
        width: 100%;
        position: relative;
        margin: auto;
        height: 100%;
    }
    
    .event-and-news {
        height: auto;
        padding-top: 0px;
    }
    
    .Our-Focus h4 {
        color: white;
    }
    
    .SARS-content h4 {
        color: white;
    }
    
    .events h2 {
        font-size: 39px;
        margin-top: 95px;
        padding: 0px 15px;
    }
    
    .events::before {
        left: 0px;
        top: 55px;
        height: 345px;
    }
    
    .events {
        padding-top: 32px;
        height: 420px;
    }
    
    .laboratory-sec {
        margin-top: 0px;
    }
    
    .focus {
        padding-top: 42px;
    }
    
    .focus h3 {
        font-size: 29px;
    }
    
    .focus p {
        font-size: 14px;
    }
    
    .dengue {
        padding-top: 0px;
    }
    
    .footer-head-icon i {
        font-size: 41px;
    }
    
    .footer-content-sec h3 {
        font-size: 17px;
    }
    
    .footer-sec {
        padding: 15px 0px 0px;
        background-color: #0e1955;
        margin-top: 61px;
    }
    
    .footer-head {
        padding: 25px 6px 25px 15px;
    }
    
    .email-sec input {
        width: 96%;
    }
    
    .subscribe {
        margin-top: 0px;
        display: block;
        padding-top: 64px;
        text-align: center;
    }
    
    .subscribe a {
        font-size: 13px;
    }
    
    .our-left h2 {
        font-size: 31px;
    }
    
    .our-left p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .intro {
        margin-top: 26px;
    }
    
    .intro p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .careers-right {
        padding: 0px 0px 0px 5%;
    }
    
    .our-left .button {
        margin-bottom: 20px;
    }
    
    .sars {
        padding-top: 50px;
    }
    
    .our-focus img {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .Harness {
        padding-right: 0px;
        margin-top: 29px;
        height: auto;
    }
    
    .our-left {
        padding-top: 0px;
    }
    
    .card {
        margin-top: 15px;
    }
    
    .discovery-left {
        margin-top: 10px;
        width: 100% !important;
    }
    
    .laboratory-sec-img {
        margin-top: 44px;
    }
    
    .footer-link {
        margin-top: 20px;
    }
    
    .solutions {
        margin-top: 12px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
        height: 372px;
    }
    
    .event-and-news {
        height: auto;
        position: relative;
    }
    
    .careers-right p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .hamburger-label {
        margin-left: 0px;
        display: none;
    }
    
    .hamburger-inner {
        padding: 1.5px;
    }
    
    .hamburger {
        padding: 10px 8px 10px 12px;
    }
    
    .bg-scrolling .logo {
        width: 113px;
        margin-top: 8px;
    }
    
    .fixed-top {
        height: 62px;
    }
    
    .col {
        width: 100%;
        margin: auto;
        position: relative;
    }
    
    #site-nav {
        padding-top: 0px;
    }
    
    #search-icon {
        position: relative;
        display: inline-block;
        float: left;
        margin-right: 0px;
        top: 12px;
        padding: 0.2em 0.6em 0.2em 0.6em;
        font-size: 16px;
    }
    
    #search-menu .wrapper input {
        width: 80%;
        font-size: 24px;
    }
    
    .wrapper #form i {
        font-size: 1.5rem;
    }
    
    #search-menu .wrapper button {
        top: 17%;
    }
    
    .our {
        background-image: none;
        background-color: #e0e3ec;
    }
    
    .logo img {
        width: 113px;
    }
    
    .our-right {
        padding-right: 0px;
    }
    
    .careers-left img {
        width: 100%;
    }
    
    .doctor img {
        max-width: 298px;
        width: 100%;
        margin: auto;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
        padding: 14px;
    }
    
    .our-right {
        padding-right: 0px;
        margin: auto;
    }
    
    .video-overlay iframe {
        width: 94%;
    }
    
    .our-focus img {
        margin: auto;
    }
}
@media only screen and (min-width: 401px) and (max-width: 480px) {

    .carousel-item {
        height: auto !important;
      }
      .banner-sec{
        padding-top: 17px !important;
      }
      .Advisors-sec-img {
       
        height:auto;
    }
    .carousel-caption {
        top: 2% !important;
        bottom: auto !important;
    }
    .banner-right-sec{
        margin: auto;
        position: relative;
        float: none;
        align-items: center;
        
    }
    .banner-right-sec img{
        width: 93%;
    }
    #nav {
        padding-left:0px !important;

    }
    .footer-link{
        width: 100%;
    }
    .our-focus{
        margin-bottom: 50px;
    }
    .Drug img {
        width: 100%;
        height: 300px;
        position: relative;
      }
    .carousel-caption h3 {
        font-size: 20px !important;
        padding-bottom: 0px;
    }
    
    .carousel-caption h5 {
        font-size: 44px;
    }
    
    .our-focus img {
        margin: auto;
    }
    .Advisors-sec-img img {
        width: 100%;
    }
}
@media only screen and (min-width: 481px) and (max-width: 600px) {
    .accordion-line {
        width: 262px;
        height: .9px;
        display: block;
        background-color: black;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .Advisors-sec-img img {
        width: 100%;
    }
    .Advisors-sec-img {
       
        height:auto;
    }   
    .carousel-item {
        height: auto !important;
      }
      .banner-sec{
        padding-top: 25px;
      }
      .banner-sec h5 {
        font-size: 36px;
      }
    #nav {
        padding-left:0px !important;

    }
    .our-focus{
        margin-bottom: 50px;
    }
    .footer-link{
        width: 100%;
    }
    .card-section {
        height: auto;
      }
      .Drug img {
        width: 100%;
        height: 300px;
        position: relative;
      }
    
    .banner-sec {
        width: 100%;
    }
    
    .carousel-inner {
        padding: 36px 0px 6px 0px;
        background: #e9eaec;
    }
    
    .lines {
        width: auto;
        display: block;
        background-color: black !important;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
        border-bottom: 1px solid #000;
    }
    
    .introduction p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-FOCUS-SEC-right {
        margin-bottom: 20px;
    }
    
    .company-sec {
        margin-top: 30px;
    }
    
    .Focus-content h2 {
        font-size: 25px !important;
    }
    
    .Focus-content ul li {
        font-size: 18px !important;
        line-height: 35px;
    }
    
    .Tecnology h2 {
        font-size: 25px !important;
    }
    
    .Tecnology p {
        font-size: 18px;
    }
    
    .our-left-sec h2 {
        font-size: 36px;
    }
    
    .our-left-sec p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Team-work p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .vision p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-SERVICES ul li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .overview p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Our-Approach {
        padding: 30px 0px;
    }
    
    .our-left-sec {
        margin-top: 0px;
    }
    
    #site-nav .col {
        padding-bottom: 0px;
    }
    
    .lines {
        width: 262px;
    }
    
    .accordion {
        margin-bottom: 0px;
    }
    
    .COMPANY {
        height: 202px;
    }
    
    .COMPANY img {
        height: 202px !important;
    }
    
    .company-content-inner {
        height: 205px;
    }
    
    .company-content {
        top: auto;
        bottom: 25%;
    }
    
    .OUR-FOCUS-SEC h3 {
        margin-top: 13px;
    }
    
    #contact .contact-box {
        width: 100%;
        margin: 34px 23px;
    }
    
    #contact .contact-links {
        padding-top: 27px;
    }
    
    #contact .contact-links,
    .contact-form-wrapper {
        width: 100%;
        padding: 7% 5%;
        border-radius: 10px
    }
    
    #contact .links {
        padding-top: 15px;
    }
    
    .company-content h3 {
        font-size: 29px;
    }
    
    .company-content h5 {
        font-size: 18px;
    }
    
    .our-focus {
        height: 100%;
    }
    
    .events {
        position: relative;
        margin: auto;
        height: 430px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
        height: 430px;
    }
    
    .event-and-news {
        height: 100%;
        position: relative;
    }
    
    .carousel-caption {
        top: 7% !important;
        bottom: 0% !important;
        left: 3% !important;
    }
    
    .carousel-caption h3 {
        font-size: 21px !important;
    }
    
    .carousel-caption h5 {
        font-size: 50px;
    }
    .banner-right-sec{
        float: none !important;
    }
    .banner-right-sec img{
        width: 90%;
        height: auto;
    }
    .banner-sec{
        padding-top: 44px;
    }
    
    .footer-link-sec {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC-right img {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 53px;
    }
    
    .discovery-left {
        width: 100%;
        margin-left: 0px !important;
    }
    
    .careers {
        height: auto;
        padding: 40px 0px;
    }
    
    .focus {
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
        height: auto;
    }
    
    .our-services {
        height: auto;
        position: relative;
        padding: 61px 0px;
    }
    
    .banner {
        width: 100%;
        position: relative;
        margin: auto;
        height: 100%;
    }
    
    .event-and-news {
        height: auto;
        padding-top: 0px;
    }
    
    .Our-Focus h4 {
        color: white;
    }
    
    .SARS-content h4 {
        color: white;
    }
    
    .events h2 {
        font-size: 45px;
        margin-top: 100px;
        padding-left: 80px;
        padding-right: 15px;
    }
    
    .events {
        padding-top: 32px;
    }
    
    .laboratory-sec {
        margin-top: 0px;
    }
    
    .focus {
        padding-top: 42px;
    }
    
    .focus h3 {
        font-size: 29px;
    }
    
    .focus p {
        font-size: 14px;
    }
    
    .dengue {
        padding-top: 0px;
    }
    
    .footer-head-icon i {
        font-size: 41px;
    }
    
    .footer-content-sec h3 {
        font-size: 17px;
    }
    
    .footer-sec {
        padding: 15px 0px 0px;
        background-color: #0e1955;
        margin-top: 61px;
    }
    
    .footer-head {
        padding: 25px 6px 25px 15px;
    }
    
    .email-sec input {
        width: 96%;
    }
    
    .subscribe {
        margin-top: 0px;
        display: block;
        padding-top: 64px;
        text-align: center;
    }
    
    .subscribe a {
        font-size: 13px;
        
    }
    
    .our-left h2 {
        font-size: 31px;
    }
    
    .our-left p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .intro {
        margin-top: 26px;
    }
    
    .intro p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .careers-right {
        padding: 0px 0px 0px 5%;
    }
    
    .our-left .button {
        margin-bottom: 20px;
    }
    
    .sars {
        padding-top: 50px;
    }
    
    .our-focus img {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .Harness {
        padding-right: 0px;
        margin-top: 29px;
        height: auto;
    }
    
    .our-left {
        padding-top: 0px;
    }
    
    .card {
        margin-top: 15px;
    }
    
    .discovery-left {
        margin-top: 10px;
        width: 48%;
        margin-right: 1%;
    }
    
    .laboratory-sec-img {
        margin-top: 44px;
    }
    .banner-sec h5 {
        font-size: 35px !important;
    }
    .footer-link {
        margin-top: 20px !important;
    }
    .banner-sec img {
        width: 33%;
    }
    
    .solutions {
        margin-top: 12px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
        height: 430px;
    }
    
    .event-and-news {
        height: auto;
        position: relative;
    }
    
    .careers-right p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .hamburger-label {
        margin-left: 0px;
        display: none;
    }
    
    .hamburger-inner {
        padding: 1.5px;
    }
    
    .hamburger {
        padding: 10px 8px 10px 12px;
    }
    
    .bg-scrolling .logo {
        width: 113px;
        margin-top: 8px;
    }
    
    .fixed-top {
        height: 62px;
    }
    
    .col {
        width: 100%;
        margin: auto;
        position: relative;
    }
    
    #site-nav {
        padding-top: 0px;
    }
    
    #search-icon {
        position: relative;
        display: inline-block;
        margin-right: 0px;
        top: 0px;
        margin-right: 15px;
        padding: 0.2em 0.51em 0.2em 0.51em;
        font-size: 16px;
    }
    
    .header-item a {
        padding: 0px 5px;
    }
    
    #search-menu .wrapper input {
        width: 80%;
        font-size: 24px;
    }
    
    .wrapper #form i {
        font-size: 1.5rem;
    }
    
    #search-menu .wrapper button {
        top: 17%;
    }
    
    .our {
        background-image: none;
        background-color: #e0e3ec;
    }
    
    .logo img {
        width: 113px;
    }
    
    .our-right {
        padding-right: 0px;
    }
    
    .careers-left img {
        width: 100%;
    }
    
    .doctor img {
        max-width: 298px;
        width: 100%;
        margin: auto;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
        padding: 14px;
    }
    
    .our-right {
        padding-right: 0px;
        margin: auto;
    }
    
    .video-overlay iframe {
        width: 94%;
    }
    
    .our-focus img {
        margin: auto;
    }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {

  .banner-sec img {
    width: 40% ;
  }
.product-img img {
    width: 100% ;
    height: auto;
}
    
    .accordion-line {
        width: 300px;
        height: .9px;
        display: block;
        background-color: black;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .Advisors-sec-img img {
        width: 100%;
    }
    .Advisors-sec-img {
       
        height:auto;
    }  
    .carousel-item {
        height: 400px !important;
      }
      .banner-sec{
        padding-top: 21px;
      }
    #nav {
        padding-left:0px !important;

    }
    .our-focus{
        margin-bottom: 50px;
    }
    .footer-link{
        width: 100%;
    }
    .card-section {
        height: auto;
      }
      .Drug img {
        width: 100%;
        height: 300px;
        position: relative;
      }
    .banner-sec {
        width: 100%;
    }
    .banner-sec h5 {
        font-size: 36px !important;
    }
   
    .carousel-inner {
        padding: 50px 0px 0px 0px;
        background: #e9eaec;
    }
    
    .introduction p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-FOCUS-SEC-right {
        margin-bottom: 20px;
    }
    
    .OUR-FOCUS-SEC h3 {
        margin-top: 0px;
    }
    
    .Focus-content h2 {
        font-size: 25px !important;
    }
    
    .Focus-content ul li {
        font-size: 18px !important;
        line-height: 35px;
    }
    
    .Tecnology h2 {
        font-size: 25px !important;
    }
    
    .Tecnology p {
        font-size: 18px;
    }
    
    .our-left-sec h2 {
        font-size: 36px;
    }
    
    .our-left-sec p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Team-work p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .vision p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .OUR-SERVICES ul li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Therapeutic-areas li {
        font-size: 18px;
        line-height: 35px;
    }
    
    .overview p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .Our-Approach {
        padding: 30px 0px;
    }
    
    .our-left-sec {
        margin-top: 0px;
    }
    
    .lines {
        width: 320px;
    }
    
    .lineone {
        width: 320px;
        display: block;
        background-color: black !important;
        opacity: .3;
        margin-top: 15px;
        margin-bottom: 30px;
        border-bottom: 1px solid #000;
    }
    
    .accordion {
        margin-bottom: 0px;
    }
    
    .COMPANY {
        height: 206px;
    }
    
    .COMPANY img {
        height: 206px !important;
    }
    
    .company-content-inner {
        height: 209px;
    }
    
    .company-content {
        top: auto;
        bottom: 26%;
    }
    
    #contact .contact-box {
        width: 100%;
        margin: 34px 23px;
    }
    
    #contact .contact-links {
        padding-top: 27px;
    }
    
    #contact .contact-links,
    .contact-form-wrapper {
        width: 100%;
        padding: 6% 5%;
        border-radius: 10px
    }
    
    #contact .links {
        padding-top: 15px;
    }
    
    .company-content h3 {
        font-size: 31px;
    }
    
    .events {
        position: relative;
        margin: auto;
        height: 430px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
        height: 430px;
    }
    
    .event-and-news {
        height: 100%;
        position: relative;
    }
    
    .carousel-caption {
        top: 14% !important;
        bottom: 0% !important;
        left: 3% !important;
    }
    
    .carousel-caption h3 {
        font-size: 27px;
    }
    
    .carousel-caption h5 {
        font-size: 41px;
    }
    .banner-right-sec {
        padding-right: 20px;
    }
    .footer-link-sec {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC-right img {
        width: 100%;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 36px;
    }
    
    .discovery-left {
        width: 100%;
        margin-left: 0px !important;
    }
    
    .careers {
        height: auto;
        padding: 40px 0px;
    }
    
    .focus {
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
        height: auto;
    }
    
    .our-services {
        height: auto;
        position: relative;
        padding: 61px 0px;
    }
    
    .banner {
        width: 100%;
        position: relative;
        margin: auto;
        height: 100%;
    }
    
    .event-and-news {
        height: auto;
        padding-top: 0px;
    }
    
    .Our-Focus h4 {
        color: white;
    }
    
    .SARS-content h4 {
        color: white;
    }
    
    .events h2 {
        font-size: 50px;
        margin-top: 100px;
        padding-left: 81px;
        padding-right: 15px;
    }
    
    .events {
        padding-top: 32px;
    }
    
    .laboratory-sec {
        margin-top: 0px;
    }
    
    .focus {
        padding-top: 42px;
    }
    
    .focus h3 {
        font-size: 29px;
    }
    
    .focus p {
        font-size: 22px;
    }
    
    .dengue {
        padding-top: 0px;
    }
    
    .footer-head-icon i {
        font-size: 41px;
    }
    
    .footer-content-sec h3 {
        font-size: 17px;
    }
    
    .footer-sec {
        padding: 15px 0px 0px;
        background-color: #0e1955;
        margin-top: 61px;
    }
    
    .footer-head {
        padding: 25px 6px 25px 15px;
    }
    
    .email-sec input {
        width: 73%;
        margin-right: 21px;
    }
    
    .subscribe {
        margin-top: 10px;
        display: inline-block;
    }
    
    .subscribe a {
        font-size: 13px;
        padding-top: 13px;
        padding-bottom: 13px;
    }
    
    .our-left h2 {
        font-size: 31px;
    }
    
    .our-left p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .intro {
        margin-top: 26px;
    }
    
    .intro p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .careers-right {
        padding: 0px 0px 0px 5%;
    }
    .about-right {
        padding: 0px 0px 0px 5%;
    }
    
    .our-left .button {
        margin-bottom: 20px;
    }
    
    .sars {
        padding-top: 50px;
    }
    
    .our-focus img {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .Harness {
        padding-right: 0px;
        margin-top: 29px;
        height: auto;
    }
    
    .our-left {
        padding-top: 0px;
    }
    
    .card {
        margin-top: 15px;
    }
    
    .discovery-left {
        margin-top: 10px;
    }
    
    .laboratory-sec-img {
        margin-top: 44px;
    }
    
    .footer-link {
        margin-top: 20px;
    }
    
    .solutions {
        margin-top: 12px;
    }
    
    .event-and-news::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0px;
        width: 100%;
        background: #009045;
        color: white;
        opacity: 0.8;
    }
    
    .event-and-news {
        height: auto;
        position: relative;
    }
    
    .careers-right p {
        font-size: 18px;
        line-height: 35px;
    }
    .about-right p {
        font-size: 18px;
        line-height: 35px;
    }
    
    .hamburger-label {
        margin-left: 0px;
    }
    
    .hamburger-inner {
        padding: 1.5px;
    }
    
    .hamburger {
        padding: 13px 12px 10px 12px;
    }
    
    .bg-scrolling .logo {
        width: 113px;
        margin-top: 8px;
    }
    
    .fixed-top {
        height: 62px;
    }
    
    .col {
        width: 100%;
        margin: auto;
        position: relative;
    }
    
    #site-nav {
        padding-top: 0px;
    }
    
    #search-icon {
        position: relative;
        display: inline-block;
        margin-right: 0px;
        top: 0px;
        margin-right: 15px;
        padding: 0.2em 0.51em 0.2em 0.51em;
        font-size: 16px;
    }
    
    .header-item a {
        padding: 0px 5px;
    }
    
    #search-menu .wrapper input {
        width: 80%;
        font-size: 24px;
    }
    
    .wrapper #form i {
        font-size: 1.5rem;
    }
    
    #search-menu .wrapper button {
        top: 17%;
    }
    
    .our {
        background-image: none;
        background-color: #e0e3ec;
    }
    
    .logo img {
        width: 141px;
    }
    
    .our-right {
        padding-right: 0px;
    }
    
    .careers-left img {
        width: 100%;
    }
    
    .doctor img {
        max-width: 298px;
        width: 100%;
        margin: auto;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
        padding: 14px;
    }
    
    .our-right {
        padding-right: 0px;
        margin: auto;
    }
    
    .video-overlay iframe {
        width: 94%;
    }
    
    .carousel-caption h3 {
        font-size: 27px !important;
    }
    
    .our-focus img {
        margin: auto;
    }
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .lines {
        width: 100%;
    }
    /* #nav ul {
        padding-left:0px !important;

    } */
    #nav {
        padding-left:0px !important;

    }
   
    .careers-left img {
        width: 100%;
      }
    .carousel-caption {
        right: auto !important;
        left: 3% !important;
        color: black !important;
        text-align: left !important;
        top: auto !important;
        bottom: 5% !important;
    }
    
    .company-content {
        top: auto;
        bottom: 27%;
    }
    
    .COMPANY {
        height: 240px;
    }
    
    .COMPANY img {
        height: 240px !important;
    }
    
    .company-content-inner {
        height: 243px;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 42px;
    }
    
    .introduction h2 {
        font-size: 29px !important;
    }
    
    .introduction p {
        line-height: 36px;
    }
    
    .OUR-SERVICES h2 {
        font-size: 29px !important;
    }
    
    .contact-links,
    .contact-form-wrapper {
        width: 50%;
    }
    
    .company-content h3 {
        font-size: 31px;
    }
    
    .events::before {
        left: 33px;
        right: 0px;
        top: 30px;
        width: 80%;
        height: 100%;
        background-size: 70% 70%;
    }
    
    .our-focus img {
        margin: auto;
    }
    
    .hamburger {
        padding: 14px 25px;
    }
    
    .fixed-top {
        height: 75px;
    }
    
    .logo {
        width: 150px;
    }
    
    .bg-scrolling .logo {
        width: 150px;
        margin-top: 8px;
    }
    
    .sars {
       
        display: block;
        float: right;
    }
    .card-section p {
        font-size: 13px;
    }
    
    
    .zika {
        position: relative;
        margin-bottom: 44px;
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
    }
    
    .Our-Focus {
        display: block;
    }
    
    .Our-Focus h4 {
        padding-right: 0px;
        padding-top: 14px;
        font-size: 18px;
        text-align: center;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        font-size: 18px;
    }
    
    .SARS-CoV-2 {
        /* padding-top: 37px; */
        padding-bottom: 33px;
    }
    
    .Malaria-sec-img {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .Malaria-sec {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        text-align: center;
    }
    
    .SARS-img {
        float: none;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-img img {
        width: 85%;
    }
    
    .Malaria-sec-img img {
        width: 100%;
    }
    
    .denger img {
        width: 100% !important;
    }
    
    .carousel-caption {
        top: 13% !important;
        bottom: auto !important;
        left: 2% !important;
    }
    
    .carousel-inner {
        padding: 50px 0px 0px 0px;
        background: #e9eaec;
    }
    
    .carousel-caption h3 {
        font-size: 27px !important;
    }
    
    .carousel-caption h5 {
        font-size: 37px
    }
    
    .card-section {
        margin-bottom: 40px;
        height: auto;
        min-height: 515px;
        
    }
    .button-two{
       
            margin-top: 18px;
            position: absolute;
            bottom: 52px;

    }
    .email-sec input {
        width: 96%;
        margin: auto;
    }
    
    .subscribe {
        margin-top: 20px;
        display: inline-block;
        text-align: center;
    }
    
    .our {
        background-image: none !important;
        background-color: #e0e3ec !important;
        padding-top: 0px;
    }
    
    .our-right img {
        padding-top: 69px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .our-left p {
        line-height: 29px;
font-size: 18px;
padding-top: 10px;
    }
    .intro p {
        font-size: 19px;
    }
    .laboratory-sec {
        margin-top: 59px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .event-and-news::before {
        width: 33%;
        margin-left: 0px;
    }
    
    .events {
        padding-top: 0px;
    }
    
    .events h2 {
        margin: 80px 0px 0px 25px;
        font-size: 43px;
    }
    
    .event-and-news {
        padding-top: 33px;
    }
    
    .card {
        margin-bottom: 25px;
    }
    
    .btntwo {
        margin-top: 13px;
    }
    
    .card-sec {
        padding: 0px;
    }
    
    .our-services {
        width: 100%;
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
    }
    
    .carousel-caption h3 {
        font-size: 28px !important;
        margin-top: 8px;
    }
    
    .carousel-caption h5 {
        font-size: 30px
    }
    .banner-sec{
        padding-top: 35px;
    }
    .carousel-caption h5 {
        font-size: 52px;
      }
      .banner-sec h5 {
        font-size: 39px !important;
      }
      .banner-sec {
        width: 100%;
      }
      .banner-sec img {
        width: 40%;

      }
      .carousel-item {
        height: auto !important;
      }
}
@media only screen and (min-width:992px) and (max-width:1024px) {

    .card-section p{
        font-size: 12.5px;
    }
     .banner-sec{
        padding-top: 52px;
    }
    .banner-sec img {
        width: 36% !important;
    }
    .banner-sec {
        width: 100%;
      }
      .carousel-item {
        height: 500px !important;
      }
    .carousel-caption h5 {
        font-size: 52px;
      }
      .banner-right-sec img{
        width: 95%;
      }
    #nav {
        padding-left:0px !important;

    }
    .COMPANY {
        height: 250px;
    }
    
    .COMPANY img {
        height: 250px !important;
    }
    
    .carousel-inner {
        padding: 30px 0px 10px 0px;
        background: #e9eaec;
    }
    
    .company-content-inner {
        height: 253px;
    }
    
    .company-content {
        top: auto;
        bottom: 27%;
    }
    
    .OUR-FOCUS-SEC h3 {
        font-size: 33px !important;
    }
    
    .OUR-FOCUS-SEC h5 {
        font-size: 55px;
    }
    
    .company-content h3 {
        font-size: 31px;
    }
    
    .hamburger {
        padding: 14px 25px;
    }
    
    .fixed-top {
        height: 75px;
    }
    
    .logo {
        width: 160px;
    }
    
    .bg-scrolling .logo {
        width: 160px;
        margin-top: 8px;
    }
    
    .sars {
        
        display: block;
        float: right;
    }
    
    .zika {
        position: relative;
        margin-bottom: 44px;
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
    }
    
    .Our-Focus {
        display: block;
    }
    
    .Our-Focus h4 {
        padding-right: 0px;
        padding-top: 14px;
        font-size: 18px;
        text-align: center;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        font-size: 18px;
    }
    
    .SARS-CoV-2 {
       padding-bottom: 33px;
    }
    
    .Malaria-sec-img {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .Malaria-sec {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        text-align: center;
    }
    
    .SARS-img {
        float: none;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-img img {
        width: 85%;
    }
    
    .Malaria-sec-img img {
        width: 100%;
    }
    
    .denger img {
        width: 100% !important;
    }
    
    .carousel-caption {
        top: auto !important;
        bottom: 3% !important;
        left: 2% !important;
    }
    
    .card-section {
        margin-bottom: 40px;
        height: auto;
        min-height: 418px;
        
    }
   
    .button-two{
        bottom: 54px;
    }
    .email-sec input {
        width: 70%;
        margin: auto;
    }
    
    .subscribe {
        margin-top: 6px;
    }
    
    .intro {
        margin-top: 118px;
    }
    
    .intro h2 {
        padding-bottom: 6px;
    }
    
    .intro .button {
        margin-top: 0px;
        margin-bottom: 20px;
    }
    
    .intro p {
        font-size: 18px;
        font-weight: 300;
        font-family: Roboto;
        line-height: 31px;
        padding-top: 10px;
    }
    .careers-left img {
        width: 100%;
      }
    .footer-head-icon i {
        font-size: 51px;
    }
    
    .footer-content-sec h3 {
        font-size: 19px;
    }
    
    .subscribe a {
        padding: 11px 24px;
    }
    
    .our {
        background-image: none !important;
        background-color: #e0e3ec !important;
        padding-top: 0px;
    }
    
    .our-right img {
        padding-top: 69px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .our-left p {
        line-height: 38px;
    }
    
    .laboratory-sec {
        margin-top: 59px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .event-and-news::before {
        width: 32%;
        height: 100%;
        margin-left: 0px;
    }
    
    .events::before {
        left: 0px;
        top: 35px;
    }
    
    .events {
        padding-top: 0px;
    }
    
    .events h2 {
        margin: 80px 0px 0px 18px;
        font-size: 38px;
    }
    
    .event-and-news {
        padding-top: 33px;
    }
    
    .card {
        margin-bottom: 25px;
    }
    
    .btntwo {
        margin-top: 13px;
    }
    
    .card-sec {
        padding: 0px;
    }
    
    .our-services {
        width: 100%;
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
    }
    
    .carousel-caption h3 {
        font-size: 33px !important;
    }
    
    .carousel-caption h5 {
        font-size: 50px
    }
}
@media only screen and (min-width:1025px) and (max-width:1140px) {
    .company-content {
        top: auto;
        bottom: 26%;
    }
    .banner-sec {
       
        padding-top: 60px;
      }
    .classy-navbar {
       
        padding: 0.5em 2em;
    }
    
    .carousel-inner {
        padding: 30px 0px 10px 0px;
        background: #e9eaec;
    }
    
    .company-content h3 {
        font-size: 31px;
    }
    
    .hamburger {
        padding: 14px 25px;
    }
    
    .fixed-top {
        height: 75px;
    }
    
    .logo {
        width: 160px;
    }
    
    .bg-scrolling .logo {
        width: 160px;
        margin-top: 8px;
    }
    
    .sars {
       
        display: block;
        float: right;
    }
    
    .zika {
        position: relative;
        margin-bottom: 44px;
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
    }
    
    .Our-Focus {
        display: block;
    }
    
    .Our-Focus h4 {
        padding-right: 0px;
        padding-top: 14px;
        font-size: 18px;
        text-align: center;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        font-size: 18px;
    }
    
    .SARS-CoV-2 {
       padding-bottom: 33px;
    }
    
    .Malaria-sec-img {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .Malaria-sec {
        display: block;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-content h4 {
        padding-top: 12px;
        text-align: center;
    }
    
    .SARS-img {
        float: none;
        width: 65px;
        height: 65px;
        position: relative;
        margin: auto;
    }
    
    .SARS-img img {
        width: 85%;
    }
    
    .Malaria-sec-img img {
        width: 100%;
    }
    
    .denger img {
        width: 100% !important;
    }
    
    .carousel-caption {
        top: auto !important;
        bottom: 8% !important;
        left: 2% !important;
    }
    .carousel-item {
        height: 550px !important;
      }
    .card-section {
        margin-bottom: 40px;
        height: auto;
        min-height: 431px;
        
    }
    .button-two {
        bottom: 57px;
    }
   
    .card-section p {
        font-size: 13px;
    }
    .email-sec input {
        width: 70%;
        margin: auto;
    }
    
    .subscribe {
        margin-top: 6px;
    }
    
    .intro {
        margin-top: 118px;
    }
    
    .intro h2 {
        padding-bottom: 6px;
    }
    
    .intro .button {
        margin-top: 0px;
        margin-bottom: 20px;
    }
    
    .intro p {
        font-size: 20px;
        font-weight: 300;
        font-family: Roboto;
        line-height: 36px;
    }
    
    .footer-head-icon i {
        font-size: 51px;
    }
    
    .footer-content-sec h3 {
        font-size: 19px;
    }
    
    .subscribe a {
        padding: 11px 24px;
    }
    
    .our {
        background-image: none !important;
        background-color: #e0e3ec !important;
        padding-top: 0px;
    }
    
    .our-right img {
        padding-top: 69px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .our-left p {
        line-height: 38px;
    }
    
    .laboratory-sec {
        margin-top: 59px;
    }
    
    .container1 {
        width: 100%;
        position: relative;
        margin: auto;
    }
    
    .event-and-news::before {
        width: 32%;
        height: 100%;
        margin-left: 0px;
    }
    
    .events::before {
        left: 0px;
        top: 35px;
    }
    
    .events {
        padding-top: 0px;
    }
    
    .events h2 {
        margin: 80px 0px 0px 18px;
        font-size: 38px;
    }
    
    .event-and-news {
        padding-top: 33px;
    }
    
    .card {
        margin-bottom: 25px;
    }
    
    .btntwo {
        margin-top: 13px;
    }
    
    .card-sec {
        padding: 0px;
    }
    
    .our-services {
        width: 100%;
        height: auto;
    }
    
    .our-focus img {
        width: 100%;
    }
    
    .carousel-caption h3 {
        font-size: 33px !important;
    }
    
    .carousel-caption h5 {
        font-size: 50px
    }
}
@media only screen and (min-width:1141px) and (max-width:1200px) {
    .company-content {
        top: auto;
        bottom: 26%;
    }
    .classy-navbar {
       
        padding: 0.5em 2em;
    }
    .carousel-item {
     
        width: 100%;
        margin: auto;
        position: relative;
      }
    
    .company-content h3 {
        font-size: 31px;
    }
    
    .event-and-news::before {
        width: 33%;
        height: 457px;
        margin-left: 0px;
    }
    
    .events::before {
        left: 0px;
    }
    
    .events h2 {
        font-size: 44px;
        padding-left: 40px;
    }
    
    .carousel-caption {
        left: 5.5% !important;
    }
    
    .careers-right h4 {
        padding-top: 51px;
    }
    
    .careers-right h4 {
        padding-top: 51px;
    }
    
    .our {
        background-image: none;
        background-color: #e0e3ec;
    }
    
    .card-section {
        height: 414px;
    }
}
@media only screen and (min-width:1201px) and (max-width:1240px) {
    .carousel-caption {
        left: 7.5% !important;
    }
    .carousel-item {
     
        width: 100%;
        margin: auto;
        position: relative;
      }
    .company-content {
        top: auto;
        bottom: 27%;
    }
    
    .our-right {
        padding-right: 89px;
    }
}
@media only screen and (min-width:1241px) and (max-width:1300px) {
    .carousel-caption {
        left: 8.5% !important;
    }
    .carousel-item {
     
        width: 100%;
        margin: auto;
        position: relative;
      }
    .company-content {
        top: auto;
        bottom: 27%;
    }
    
    .our-right {
        padding-right: 64px;
    }
}
@media only screen and (min-width:1300px) and (max-width:1366px) {
    .COMPANY {
        width: 100%;
        margin: auto;
        position: relative;
    }
    .carousel-item {
     
        width: 100%;
        margin: auto;
        position: relative;
      }
}
.header-area {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
}
.dark.classy-nav-container {
    background-color: rgba(25, 42, 86, 0.3);
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}
.classy-nav-container.classy-sticky {
    background-color: rgba(25, 42, 86, 1);
}
.classy-navbar {
    padding: 0.5em 5em;
}
.nav-brand {
    max-width: 120px;
}
.classy-btn {
    background-color: #4a7aec;
}
.classynav ul li.megamenu-item>a::after,
.classynav ul li.has-down>a::after {
    color: #fff;
}
.header-area {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
}
.dark.classy-nav-container {
    background-color: #131b5c;
    ;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}
.classy-nav-container.classy-sticky {
    background-color: #131b5c;
}
.classy-navbar {
    padding: 0.5em 5em;
}
.nav-brand {
    max-width: 120px;
}
.classy-btn {
    background-color: #4a7aec;
}
.classynav ul li.megamenu-item>a::after,
.classynav ul li.has-down>a::after {
    color: #fff;
}

/* [ -- Master Stylesheet -- ] */

/* ----------------------------------------------------------
:: Template Name: ClassyNav - Responsive Mega Menu Plugins
:: Author: Designing World
:: Author URL: https://themeforest.net/user/designing-world/portfolio
:: Version: 1.0.0
:: Created: May 16, 2018
:: Last Updated: May 16, 2018
---------------------------------------------------------- */

/* Base CSS */
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #f4f7f8;
}
ul,
ol {
    margin: 0;
}
ul li,
ol li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
}
.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-transparent {
    background-color: transparent !important;
}
.classy-nav-container {
    position: relative;
    z-index: 100;
    background-color: #ffffff;
    /* sticky */
}
.classy-nav-container * {
    box-sizing: border-box;
}
.classy-nav-container a {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #232323;
    display: inline-block;
}
.classy-nav-container a:hover,
.classy-nav-container a:focus {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    color: #ffffff;
    opacity: 1;
    transition: all 300ms ease;
}
.classy-nav-container.classy-sticky {
    position: fixed;
    z-index: 1010;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.classy-nav-container.box-skins .classynav>ul>li {
    background-color: #1abc9c;
}
.classy-nav-container.box-skins .classynav>ul>li>a {
    color: #fff;
}
.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.classy-navbar {
    width: 100%;
    height: 70px;
    padding: 0.5em 0em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.classy-navbar .nav-brand {
    font-size: 26px;
    font-weight: 500;
    color: #565656;
    display: inline-block;
    margin-right: 30px;
}
.classy-navbar .nav-brand:focus,
.classy-navbar .nav-brand:hover {
    font-size: 26px;
    font-weight: 500;
}
.classynav ul li {
    display: inline-block;
    clear: both;
    position: inherit;
    z-index: 10;
}
.classynav ul li.cn-dropdown-item {
    position: relative;
    z-index: 10;
}
.classynav ul li.cn-dropdown-item ul li {
    position: relative;
    z-index: 10;
}
.classynav ul li ul li {
    display: block;
}
.classynav ul li ul li a {
    padding: 0 20px;
}
.classynav ul li a {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    color: #ffffff;
    padding: 12px ;
    opacity: 1;
    transition: all 300ms ease;
}
.classynav ul li .megamenu li a {
    padding: 0 12px;
}
.classynav ul li div.single-mega a {
    height: auto;
    line-height: 1;
}

/* Down Arrow Icon for Megamenu */
@font-face {
    font-family: 'classyfonts';
    src: url("../fonts/classycb9b.eot?fftrrv");
    src: url("../fonts/classycb9b.eot?fftrrv#iefix") format("embedded-opentype"), url("../fonts/classycb9b.ttf?fftrrv") format("truetype"), url("../fonts/classycb9b.woff?fftrrv") format("woff"), url("../fonts/classycb9b.svg?fftrrv#classyfonts") format("svg");
    font-weight: normal;
    font-style: normal;
}
.icon-classy-nav-down-arrow {
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-classy-nav-down-arrow:before {
    content: "\f107";
}
.classynav ul li.megamenu-item>a:after,
.classynav ul li.has-down>a:after {
    font-family: 'FontAwesome';
    content: "\f107";
    font-size: 13px;
    color: #fff;
    padding-left: 3px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 600;
    display: none;;
}
.classynav ul li ul li.has-down>a::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 3px;
    right: 6px;
    z-index: 3;
}

/* button css */
.classy-btn {
    position: relative;
    z-index: 1;
    min-width: 120px;
    padding: 0 25px;
    line-height: 42px;
    height: 42px;
    background-color: #1abc9c;
    border-radius: 50px;
    color: #fff !important;
    margin-left: 30px;
    text-align: center;
}
.classy-btn:hover,
.classy-btn:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Toggle */
.dd-trigger {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    cursor: pointer;
    z-index: 500;
    border-radius: 0;
    display: none;
}

/* Close Icon */
.classycloseIcon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 12;
    display: none;
}
.classycloseIcon .cross-wrap {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
}
.classycloseIcon .cross-wrap span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 6px;
    background: #232323;
}
.classycloseIcon .cross-wrap span.top {
    top: 12px;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.classycloseIcon .cross-wrap span.bottom {
    bottom: 12px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* navbarToggler */
.classy-navbar-toggler {
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
}
.classy-navbar-toggler .navbarToggler {
    display: inline-block;
    cursor: pointer;
}
.classy-navbar-toggler .navbarToggler span {
    position: relative;
    background-color: #858585;
    border-radius: 3px;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(1) {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    top: 8px;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(2) {
    opacity: 0;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(3) {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    top: -8px;
}
.classynav ul li .megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    z-index: 200;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.classynav ul li .megamenu .single-mega.cn-col-5 {
    width: 20%;
    float: left;
    padding: 15px;
    border-right: 1px solid #f2f4f8;
}
.classynav ul li .megamenu .single-mega.cn-col-5:last-of-type {
    border-right: none;
}
.classynav ul li .megamenu .single-mega.cn-col-4 {
    width: 25%;
    float: left;
    padding: 15px;
    border-right: 1px solid #f2f4f8;
}
.classynav ul li .megamenu .single-mega.cn-col-4:last-of-type {
    border-right: none;
}
.classynav ul li .megamenu .single-mega.cn-col-3 {
    width: 33.3333334%;
    float: left;
    padding: 15px;
    border-right: 1px solid #f2f4f8;
}
.classynav ul li .megamenu .single-mega.cn-col-3:last-of-type {
    border-right: none;
}
.classynav ul li .megamenu .single-mega .title {
    font-size: 14px;
    border-bottom: 1px solid #f2f4f8;
    padding: 8px 12px;
}
.classynav ul li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
}
.classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}

/* Desktop Area CSS */
.breakpoint-off .classynav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.breakpoint-off .classynav ul li .dropdown {
    width: 190px;
    position: absolute;
    background-color: #ffffff;
    top: 130%;
    left: 0;
    z-index: 100;
    height: auto;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
}
.breakpoint-off .classynav ul li .dropdown li .dropdown {
    top: 10px;
    left: 189px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
}
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown {
    opacity: 0;
    visibility: hidden;
    top: 120%;
}
.breakpoint-off .classynav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.breakpoint-off .classynav ul li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: -10px;
}
.breakpoint-off .classynav ul li .megamenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    top: 120%;
    background-color: #ffffff;
    z-index: 200;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}
.breakpoint-off .classynav ul li.megamenu-item:hover .megamenu,
.breakpoint-off .classynav ul li.megamenu-item:focus .megamenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

/* Mobile/Tablet Nav CSS */
.breakpoint-on .classycloseIcon {
    display: block;
}
.breakpoint-on .classy-navbar-toggler {
    display: block;
}
.breakpoint-on .classy-navbar .classy-menu {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: -310px;
    z-index: 1000;
    width: 300px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
}
.breakpoint-on .classy-navbar .classy-menu.menu-on {
    left: 0;
}
.breakpoint-on .classynav ul li {
    display: block;
    position: relative;
    clear: both;
    z-index: 10;
}
.breakpoint-on .classynav ul li a {
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
}
.breakpoint-on .classynav ul li .dropdown {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
}
.breakpoint-on .classynav ul li .dropdown li .dropdown {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}
.breakpoint-on .classynav ul li.megamenu-item {
    position: relative;
    z-index: 10;
}
.breakpoint-on .dd-trigger {
    height: 38px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
.breakpoint-on .classynav ul li .dropdown,
.breakpoint-on .classynav ul li .megamenu {
    display: none;
}
.breakpoint-on .classynav {
    padding-top: 70px;
}
.breakpoint-on .classynav ul li .megamenu {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 200;
    box-shadow: none;
}
.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-5,
.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-4,
.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-3 {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f2f4f8;
}
.breakpoint-on .classynav>ul>li>a {
    background-color: #f2f4f8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.breakpoint-on .classynav ul li ul.dropdown li ul li {
    margin-left: 15px;
}
.breakpoint-on .classy-btn {
    width: calc(100% - 30px);
    margin: 30px 15px;
}
.breakpoint-on .classynav ul li.megamenu-item>a::after,
.breakpoint-on .classynav ul li.has-down>a::after {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 5;
}
.breakpoint-on .classynav ul li.has-down.active>a:after,
.breakpoint-on .classynav ul li.megamenu-item.active>a:after {
    color: #2ecc71;
}

/* Dark Theme CSS */
.dark.classy-nav-container {
    /* background-color: #192a56; */
    /* background: rgb(28,71,132);
    background: linear-gradient(180deg, rgba(28,71,132,1) 0%, rgba(113,224,103,1) 100%); */
}
.dark.classy-nav-container a {
    color: rgba(255, 255, 255, 0.7);
}
.dark.classy-nav-container a:hover,
.dark.classy-nav-container a:focus {
    color: #ffffff;
}
.dark .classynav ul li .dropdown {
    background-color: #131b5c;
}
.dark .classynav ul li .megamenu {
    background-color: #131b5c;
}
.dark .classynav ul li .megamenu .single-mega.cn-col-5,
.dark .classynav ul li .megamenu .single-mega.cn-col-4,
.dark .classynav ul li .megamenu .single-mega.cn-col-3 {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.dark .classynav ul li.megamenu-item ul li a {
    border-bottom: none;
}
.dark .classynav ul li .megamenu .single-mega .title {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dark .classy-navbar-toggler .navbarToggler span {
    background-color: #ffffff;
}
.dark.breakpoint-on .classy-navbar .classy-menu {
    background-color: #131b5c;
    padding: 0px 0px 10px;
    height: auto;
}
.dark .classycloseIcon .cross-wrap span {
    background-color: #ffffff;
}
.dark.breakpoint-on .classynav > ul > li > a {
    background-color: #131b5c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: left;
  }
.dark.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-5,
.dark.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-4,
.dark.breakpoint-on .classynav ul li .megamenu .single-mega.cn-col-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
}
.dark .classynav ul li.megamenu-item>a:after {
    color: #ffffff;
}
.dark .classynav ul li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
    text-align: left;
    width: 100%;
  }
.dark .classynav ul li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li a {
    border-bottom: 1px solid rgba(242, 244, 248, 0.1);
}
.dark .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:last-child a {
    border-bottom: none;
}

/* Right Side Menu Open CSS */
.right.breakpoint-on .classy-navbar .classy-menu {
    left: auto;
    right: -310px;
}
.right.breakpoint-on .classy-navbar .classy-menu.menu-on {
    left: auto;
    right: 0;
}

/* Dropdown RTL CSS */
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown {
    left: auto;
    right: 0;
}
.dropdown-rtl .classynav ul li a,
.dropdown-rtl .classynav ul li .megamenu .single-mega .title {
    text-align: right;
}
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown {
    right: 180px;
    left: auto;
    opacity: 0;
    visibility: hidden;
    top: 10px;
}
.dropdown-rtl.breakpoint-off .classynav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 90%;
}
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown,
.dropdown-rtl.breakpoint-off .classynav ul li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li .dropdown li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 0;
}
.dropdown-rtl.breakpoint-on .classynav ul li ul.dropdown li ul li {
    margin-left: 0;
    margin-right: 15px;
}
.classynav {
    padding-top: 20px;
}
@media only screen and (min-width: 1025px) and (max-width: 19000px) {
    .hd-fst {
        display: block !important;
    }
    
    .hd-snd {
        display: none !important;
    }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
    .hd-fst {
        display: none !important;
    }
    
    .hd-snd {
        display: block !important;
    }
    .classy-navbar {
       
        padding: 0.5em 2em;
    }
    
    #search-icon {
        position: relative;
        display: inline-block;
        float: right;
        margin-right: 20px;
        top: 0px !important;
        padding: 0.2em 0.6em 0.2em 0.6em;
        font-size: 16px;
    }
    
    .header-right {
        float: right;
        width: 100% !important;
    }
    
    .justify-content-between {
        justify-content: inherit !important;
    }
}
@media only screen and (min-width: 1366px) and (max-width: 1900px) {
    .carousel-caption {
        right: auto !important;
        left: 90px !important;
        color: black !important;
        text-align: left !important;
        top: auto !important;
        bottom: 7% !important;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .carousel-caption {
        right: auto !important;
  left: 4% !important;
  color: black !important;
  text-align: left !important;
  top: auto !important;
  bottom: 10% !important;
}
}
@media only screen and (min-width: 1901px) and (max-width: 2555px) {
    .carousel-caption {
        right: auto !important;
        left: 20.6% !important;
        color: black !important;
        text-align: left !important;
        top: auto !important;
        bottom: 25% !important;
        position: relative;
    }
}

@media only screen and (min-width:992px) and (max-width:1024px) { 
    .dark.breakpoint-on .classy-navbar .classy-menu {
        background-color: #131b5c;
        padding: 0px 0px 10px;
        height: auto;
      }
      .breakpoint-on .classy-navbar .classy-menu.menu-on {
        left: 0;
      }
      .breakpoint-on .classy-navbar .classy-menu {
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: -310px;
        z-index: 1000;
        width: 300px;
        height: 100%;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: block;
        overflow-x: hidden;
        overflow-y: scroll;
      }
      .classy-nav-container * {
        box-sizing: border-box;
      }

  
}
@media only screen and (min-width:1025px) and (max-width:1200px) { 

    .classy-navbar {
       
        padding: 0.5em 2em;
    }
    


}





.product-img img {
    height: 260px;
}
.product-img{
    margin-bottom: 50px;
}



.contact-section {
    position: relative;
    padding: 50px 0px 0px;
    background: #ffffff;
  }
  .contact-section .form-box {
    position: relative;
    display: block;
    max-width: 770px;
    margin: 0 auto;
    text-align: center;
  }
  .sec-title {
    position: relative;
    margin-bottom: 50px;
  }
  .sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #031b4e;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
  }
  .default-form {
    position: relative;
  }
  .contact-section .form-box {
    text-align: center;
  }
  .contact-section .form-box form .form-group {
    padding: 0px 10px;
    margin-bottom: 20px;
  }
  .default-form .field-inner {
    position: relative;
    display: block;
  }
  .default-form .form-group input[type="text"], .default-form .form-group input[type="email"], .default-form .form-group input[type="password"], .default-form .form-group input[type="tel"], .default-form .form-group input[type="url"], .default-form .form-group input[type="file"], .default-form .form-group input[type="number"], .default-form .form-group textarea, .default-form .form-group select {
    position: relative;
    display: block;
    height: 70px;
    width: 100%;
    font-size: 14px;
    color: #686a6f;
    line-height: 40px;
    font-weight: 400;
    padding: 14px 30px;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    border-radius: 7px;
    font-family: var(--thm-b-font);
    transition: all 300ms ease;
  }
  .btn-style-one {
    padding: 17px 30px;
font-family: Roboto;
font-size: 20px;
font-weight: 600;
background-color: #0e1955;
color: white;
text-decoration: none;
margin: auto;
border-radius: 5px;
  }

  .btn-style-one:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
  }
  .default-form .form-group textarea {
    height: 220px;
    resize: none;
  }



 
  .carousel-item {
    height: 600px;
    width: 100%;
    margin: auto;
    position: relative;
  }
  .banner-right-sec{
    float: right;
  }
  
  
  .about-right p {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
  }



  .testimonial::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #29d18b;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
  }
  .testimonial::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    border-top: 25px solid #29d18b;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
  }
 
  .testimonial {
    box-shadow: 0px -1px 24px rgba(0, 0, 0, 0.1);
    padding: 50px 30px 50px 240px;
    margin: 0 15px 30px 15px;
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 30px;
    margin-left: 15px;
    overflow: hidden;
    position: relative;
    border-radius: 80px 0px;
  }
  .testimonial:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    border-top: 25px solid #29d18b;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
  }
  .testimonial:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #29d18b;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
  }
  .testimonial .pic {
    display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 60px;
  }
  .testimonial .pic img {
    width: 100%;
    height: auto;
  }
  .testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #6f6f6f;
    line-height: 25px;
    margin-bottom: 15px;
	height: 110px;
  }
  .testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #29d18b;
    margin: 0;
  }
 
  .description span {
    display: block;
  }
  .testimonial .description  {
    font-size: 22px;
    font-family: Roboto;
    font-size: 16px;
font-weight: 300;
line-height: 28px;
text-align: justify;
  }
  .owl-theme .owl-controls .owl-page span {
    border: 2px solid #2a3d7d;
    background: #fff !important;
    border-radius: 0 !important;
    opacity: 1;
  }
  .owl-theme .owl-controls .owl-page.active span,
  .owl-theme .owl-controls .owl-page:hover span {
    background: #29d18b !important;
    border-color: #29d18b;
  }
  @media only screen and (max-width: 767px) {
    .testimonial {
      padding: 20px;
      text-align: center;
    }
    .testimonial .pic {
    display: block;
    position: static;
    /* margin: 0 auto 15px; */
    margin: 0 auto;
}
  }
 
  .owl-item {
    display: flex;
  }
 #testimonial-slider{
    padding-top:30px;
 }
 .join-content h2{
    text-align: center;
    padding-top: 70px;
    font-family: Prata;
font-weight: 500;
font-size: 35px;
line-height: 15px;
color: #131b5c;
padding-bottom: 15px;
 }
.testimonial-inner{
    width: 950px !important;
    margin: auto;
    position: relative;
}
.testimonial .post {
    display: inline-block;
    font-size: 21px;
    color: #29d18b;
    font-style: italic;
    padding-bottom: 5px;
  }
  .team-content p{
    font-family: Roboto;
font-size: 20px;
font-weight: 300;
line-height: 33px;
text-align: justify;
margin-bottom: 5px;
  }

  .team-content h3 {
    font-family: Prata;
font-size: 28px;
font-weight: 400;
color: #131b5c;
line-height: 35px;
padding-top: 30px;

  }
  .team-img {
   
    padding-top: 30px;
  }
  .advisory-Board h3{
    font-family: Prata;
    font-size: 35px;
    font-weight: 400;
    color: #131b5c;
    line-height: 35px;
  
    text-align: center;
  }
  .carousel-caption {
    position: absolute;
    right: 15% !important;
    bottom: 1.25rem;
    left: 0% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 100% !important;
  }
   

  .main-bannr { position:absolute; z-index: 9999; top:15px;left: 0;}
  .banner-sec h5 {
    font-size: 48px;
color: #fff;
font-family: Prata;
font-weight: 500;
color: #fff;
    
  }
  .card-section img {
    height: 200px;
  }
  .careers-left {max-height: 442px;
    overflow: hidden;
} 
.company-content h5 {

display:none;

}
.Pub-sec p{
    font-family: Roboto;
    font-size: 20px;
    font-weight: 300;
    line-height: 33px;
    text-align: justify;
}
.news_P p{
    font-family: Roboto;
font-size: 34px;
font-weight: 300;
line-height: 33px;
padding-top: 20px;
text-align: justify;
}




@media only screen and (min-width:481px) and (max-width:991px) {


.discovery-left { width: 49% !important; margin-right: 1%;}
.card-section {
    height: 585px !important;
  }

}




@media only screen and (min-width:320px) and (max-width:767px) {

.testimonial-inner {
    width: 100% !important;
    margin: auto;
    position: relative;
}
.events::before{
    top: 26px;
}
.event-and-news::before{

    height: 353px;
}


.testimonial .description {
    font-size: 22px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    text-align: justify;
    margin: 20px 0px;
}

.testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #6f6f6f;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 70px;
    height: auto !important;
}



.posts {
    position: fixed;
    z-index: 999;
    top: initial !important;
    width: auto !important;
    left: initial !important;
    color: #29d18b;
    font-weight: 600;
	    margin: 0 auto;
    display: block;
}

.pic p {
    position: fixed;
    bottom: initial !important;
    width: inherit !important;
    font-size: 9px;
    left: initial !important;
    margin-top: 22px;
}

}



@media only screen and (min-width:768px) and (max-width:1024px) {

    .testimonial-inner {
        width: 100% !important;
        margin: auto;
        position: relative;
    }
    .discovery-left {
        width:22.5% !important;
        
      }
      .card-section {
        height: 599px !important;
      }
      .solutions h5 {
        font-size: 16px;
      }
      .card p span {
        padding-left: 5px;
        font-size: 14.5px;
      
   
}
    
.card p {
    font-size: 14.3px;
}
.card {
    padding: 40px 20px 50px;
}
.events::before {
    left: 0px;
    right: 0px;
    top: 30px;
    width: 47%;
    height: 100%;
    background-size: 70% 70%;
  }
  .event-and-news{
    padding-bottom: 36px !important;
  }
  .event-and-news::before {
    height: 436px !important;
  }
  
  
  
 
}





#more {display: none;}
#more1 {display: none;}
#more2 {display: none;}



.btsd {
    padding: 10px 20px;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    background-color: #0e1955;
    color: white;
    text-decoration: none;
    border-radius: 20px;
	border:none;
	
}

.btsd:hover {
    background-color: #009045;
    color: white;
    text-decoration: none;
	border:none;
}




 .cards {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
   margin-bottom:15px;
  
}

.tm-name {
  position: absolute;
  bottom: 0;
  width: 88%;
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 10;
  background-image: linear-gradient(0deg, #06c3ff 10%, #ffffff05 99%);
  flex-direction: column;
  border-radius: 0px;
  padding: 0px 10px;
}

.tm-name h2 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
  line-height: 1.2;
}
.tm-name p {
  color: #fff;
  font-size: 10px;
  margin-bottom: 5px;
}


.tm-name i {
  float: right;
  margin-top: -20px;
  font-size: 18px;
  margin-right: 0px;
}


.tm-name i:hover {float: right;
margin-top: -20px;
font-size: 18px;
color:#CCC;
margin-right: 0px;}


.ttls h2 {   font-weight: bold;
  color: #131b5c; padding:40px 0px;
}


.posts {
  position: fixed;
  z-index: 999;
  top: 62%;
  width: 250px;
  left: 85px;
  color: #29d18b;
font-weight:600;
}

.pic p {
  position: fixed;
  bottom: 10%;
  width: 175px;
  font-size: 9px;
  left: 9%;
}



.sect { margin-top:40px;}


.mtss {
  position: absolute;
  margin-top: 25px;
  margin-left: -12px;
}

.mts {
  position: absolute;
  margin-top: -18px;
  margin-left: -10px;}

.description i { font-size: 24px;}
