/* Footer Design CSS */
.footer-marker{
  display: flex;
  color: #fff;
}
.footer-marker .footer-mapmarker{
  margin-top: 1%;
}

.text-primary{
  color: #196CC2 !important;
}

.text-body{
  color: #fff !important;
}

a{
  color: #196CC2;
}

/* Home Icon */
.fact-icon img{
  border-radius: 50%;
}

/* Clients Part */
.clients {
  background-color: #f8f8f8;
  color: #333;
  font-family: "Roboto Mono", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
  overflow: hidden;
  margin: 0;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}

.counter {
  font-size: 60px;
  margin-top: 10px;
}

@media (max-width: 580px) {
  body {
    flex-direction: column;
  }
}

.counter-container .fa{
  color: #196CC2;
}

/* Image animation in client */

.anim-border {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f1f2f3;
}
@-webkit-keyframes rotate {
100% {
  transform: rotate(1turn);
}
}
@keyframes rotate {
100% {
  transform: rotate(1turn);
}
}
.anim-border {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}
.anim-border::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#e9836e, #09142e, #0a57b1);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
}
.anim-border::after {
content: "";
position: absolute;
z-index: -1;
left: 4px;
top: 4px;
width: calc(100% - 8px);
height: calc(100% - 8px);
background: white;
border-radius: 5px;
} 

.anim-2::before{
  background-position: 100% 0,0 0, 100% 100%, 0 100%;
}

.anim-3::before{
  background-position:100% 100%,0 0, 100% 0, 0 100%;
}

.anim-4::before{
  background-position:0 100%,100% 0,0 0,100% 100%;
}



/* What we Do Banner Font */
.whatwedo-banner{
  font-size: 16px;
  font-weight: bold;
  color: #f8f8f8;
}

/* 
.whatwedo-tab {
  display: flex;
  justify-items: center;
  align-content: center;
  padding: 1rem;
  min-height: 50vh;
  margin: 2rem auto;
}

.accordion {
  max-width: 100%;
}
.accordion .accordion-item .accordion-title {
  padding: 1rem;
  font-size: 1.5rem;
  background-color: #196CC2;
  color: white;
  transition: 0.5s;
  cursor: pointer;
  margin-top: 0.5rem;
  position: relative;
}
.accordion .accordion-item .accordion-title:hover {
  background-color: #0056AF;
}
.accordion .accordion-item .accordion-title:after {
  content: "↓";
  font-family: "dripicons-v2";
  position: absolute;
  color: white;
  right: 1rem;
  transition: transform 0.5s ease-in;
}
.accordion .accordion-item .accordion-content {
  position: relative;
  height: 0;
  opacity: 0;
  overflow: auto;
  overflow-y: auto;
  transition: all 0.5s ease-in;
  border-left: 2px solid white;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}
.accordion .accordion-item .accordion-content p {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}
.accordion .accordion-item.active .accordion-title {
  background-color: #0056AF;
}
.accordion .accordion-item.active .accordion-title:after {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in;
}
.accordion .accordion-item.active .accordion-content {
  height: auto;
  border-right: 2px solid #196CC2;
  border-bottom: 2px solid #196CC2;
  border-left: 2px solid #196CC2;
  opacity: 1;
  padding-left: 10px;
  padding-top: 10px;
  margin-bottom: 1rem;
  transition: all 0.5s ease-in;
}

.whatwedo-h{
  text-align: center;
  margin-top: 10%;
}

.accordion-item{
  border: 0;
}What We Do Page Tab */

/* What We Do Page Tab */

.accordionWrapper{
  padding:30px;
  background:#fff;
  border-radius: 5px;
  box-sizing:border-box;
  margin:30px;
  margin-left:100px;
  height: 100%;
  display: flex;
  justify-items: center;
  align-content: center;
  flex-direction: column;
}
  
.accordionItem{
    float:left;
    display:block;
    width:100%;
    box-sizing: border-box;
    font-family:'Open-sans',Arial,sans-serif;
}
.accordionItemHeading{
    cursor:pointer;
    margin:0px 0px 10px 0px;
    padding:10px;
    font-size: 22px;
    font-weight: 400;
    background:#2980b9;
    color:#fff;
    width:100%;
    border-radius: 3px;
    box-sizing: border-box;
}
.accordionItemHeading span{
  float: right;
  font-size: 25px;
}

.close .accordionItemContent{
    height:0;
    transition:height 1s ease-out;

  transform: scaleY(0);
    float:left;
    display:block;
}
.open .accordionItemContent{
    padding: 20px;
    background-color: #f0f1f1;
    border: 1px solid #ddd;
    width: 100%;

    margin: 0px 0px 10px 0px;
    display:block;

  transform: scaleY(1);

  transform-origin: top;

  transition: transform 0.4s ease;
        box-sizing: border-box;
}

.open .accordionItemHeading{
    margin:0px;

    border-top-left-radius: 3px;
    border-top-right-radius: 3px;

    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #073e63;
    color: #cdd7d8;
}

.whatwedo-tab{
  background: #16bbce;
}

.whatwedo-h{
  text-align: center;
  margin-top: 10%;
}

@media(max-width:768px){
  .accordionWrapper{
    margin: 0;
    width: 100%;
  }
}

/* Btn */

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background: #196CC2;
    border-color: grey;

}

.text-primary {
    color: #fff !important;
}

.btn-outline-body {
    color: #777777;
}

.border-primary {
    border-color: #777777 !important;
}


/* Footer */


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    /*text-align: center;*/
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    position: relative;
}

.text-body i{
    color: #196CC2 !important;
}

/* Custom Css */
.container .client{
    text-align: center;
}


/* Industry Page */
.container .industries{
    text-align: center;
    margin-top: 10%;
}

.icon-industry{
    color: #196CC2;
}

/* Services Page */

.toggle-text {
	display: none;
}

.uk-container {
	width: 100%;
	margin-left: 10%;
}
.uk-width-3 {
	margin: 8px;
	padding: 3px;
}
.hd1 {
	text-align: center;
}

.service-p p{
    margin-top: 1.5rem;
    line-height: 1.6rem;
  }

.service-p span{
    font-size: 3rem;
    color: #F05907;
}

/* Industries Page */
.industry-1 {
  margin-left: 18%;
  margin-top: 3%;
}

@media(max-width:768px){
  .industry-1{
    margin-left: 0;
  }
}

@media(max-width:768px){
  .clients{
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

/* About Page */
.section_all {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  height: 100%;
}
.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}

.about_icon img {
  font-size: 22px;
  height: 55px;
  width: 55px;
  line-height: 85px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: #196CC2;
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  max-width: 450px;
  font-size: 24px;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.about_content_box_all {
  padding: 28px;
}

.aboutus-img{
  height: 50vh;
}

.row-about{
  flex-wrap: nowrap;
}

@media(max-width:820px){
  .row-about{
    display: flex;
    flex-direction: column;
  }
}

/*Home Page + sign */
.text-home{
  color: #196CC2 !important;
}

@media(max-width:768px){
  .service-item .btn{
    width: 30px;
  }
}

/* Our Partners */
.container-partners {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --marquee-width: 100%;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  overflow: hidden;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
 
}
.marquee:after {
  right: 0;
 
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  padding: 50px;
  /* height: 100%; */
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}

@media(max-width:820px){
  .marquee-content li img{
    padding: 10px;
  }
}
/* Dropdown */
.dropdown-item.active, .dropdown-item:active{
  background-color: #196CC2;
}

/* Pharmacovigilance */
.blockquote{
  margin: 50px auto;
  color: #555555;
  padding: 1.0em 30px 1.2em;
  border-left: 3px solid #196CC2;
  position: relative;
  background: #ededed;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}

/* Cards */
.card-container ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 2rem;
  list-style: none;
  margin-top: 8%;
}
.card {
  display: flex;
  flex-direction: column;
  max-width: 15rem;
  --iconS: 6rem;
  --iconOffsetX: calc(var(--iconS) / 4);
  --iconOffsetY: calc(var(--iconS) / 2.5);
  margin-top: var(--iconOffsetY);
  margin-inline: var(--iconOffsetX);
  border-radius: 1rem;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fff;
  --shadowSurface: 0.5rem 0.5rem 0.5rem rgb(0 0 0 / .25);
  --bgGradient: radial-gradient(circle at bottom right, transparent, rgb(0 0 0 / .1));
  background-image:
    radial-gradient( circle at 
        calc(var(--iconOffsetX) * -1 + var(--iconS) / 2) 
        calc(var(--iconOffsetY) * -1 + var(--iconS) / 2), 
      rgb(0 0 0 / .4) calc(var(--iconS) / 2), 
      transparent calc(var(--iconS) / 1.6)
    ),
    radial-gradient( circle at 
        calc(var(--iconOffsetX) * -1 + var(--iconS) / 2)
        calc(var(--iconOffsetY) * -1 + var(--iconS) / 2),
      var(--accent-color) calc(var(--iconS) / 1.4),
      transparent calc(var(--iconS) / 1.4 + 1px)
    ),
    var(--bgGradient);
  --shadowInsetLight: inset 0.125rem 0.125rem 0.125rem rgb(255 255 255 / .5);
  --shadowInsetDark: inset -0.067rem -0.067rem 0.067rem rgb(0 0 0 / .5);
  box-shadow: 
    var(--shadowInsetLight),
    var(--shadowInsetDark),
    var(--shadowSurface)   
}
.card .icon {
  width: var(--iconS);
  aspect-ratio: 1;
  margin-top: calc(var(--iconOffsetY) * -1);
  margin-left: calc(var(--iconOffsetX) * -1);
  margin-bottom: calc(var(--iconS) / 4);
  display: grid;
  place-items: center;
  color: var(--accent-color);
  font-size: calc(var(--iconS) / 3);
  background-color: inherit;
  border-radius: 50%;
  box-shadow:
    var(--shadowInsetLight),
    var(--shadowInsetDark);
  background-image: var(--bgGradient);
}
.card .title{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  text-transform: uppercase
}
.card .content{
  padding: 1rem;
  padding-bottom: 2rem;
  font-size: 0.9em
}

/* Japan Practice */
.list-japan p {
  background-color: #eee;
  width: 500px;
  margin: 10px auto;
  padding: 15px;
  border-right: 5px solid #EBD671;
  position: relative;
}

.list-japan p::before {
  content: '☆';
  background-color: #EBD671;
  border-left: 1px solid #EBD671;
  border-radius: 5px;
  padding: 15px;
  color: white;
  position: absolute;
  left: -30px;
  top: 0px;
}

.japan-h{
  font-size: 2.5rem;
  margin-top: -3%;
}

@media(max-width:768px){
  .japan-container{
    margin-left: 8%;
    width: 90%;
  }

  .list-japan_2{
    margin-top: -14%;
  }

  .list-japan p{
    width: 100%;
    font-size: 0.9rem;
  }
}

@media(min-width:920px){
  .list-japan p{
    padding-left: 20px;
  }
}

/* Card In Trackwise */
.spacing a:not([class]) {
  text-decoration-skip-ink: auto;
}

.img-track img {
  display: block;
  max-width: 100%;
}

.trackwise-body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  color:#333;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 5%;
}

.container-trackwise {
  width: 80%;
  max-width: 90em;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.spacing > * + * {
  margin-top: 1rem;
}

.card-trackwise {
  display: flex;
  flex-direction: column;
  width: 40ch;
  margin: 0.5rem;
  padding-bottom: 0.5rem;
  background: whitesmoke;
  border: 1px solid hsl(217, 57%, 31%);
  border-radius: 0.5rem;
  transition: all 250ms ease-in-out;
}
.card-trackwise:hover, .card-trackwise:focus {
  transform: translateY(2%);
  box-shadow: 1px 4px 4px 0px hsla(217, 57%, 31%, 0.3);
}
.card-trackwise:hover .card__img, .card-trackwise:focus .card__img {
  filter: grayscale(1);
}
.card-trackwise a:hover, .card-trackwise a:focus {
  opacity: 0.4;
  text-decoration: underline solid seagreen 5px;
}
.card-trackwise figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.card__content {
  display: flex;
  flex-direction: column;
  margin: 2rem;
  font-style: normal;
  line-height: 1.6;
}
.card__img {
  background: aqua;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.card__img--3x2 {
  aspect-ratio: 3/2;
}

.card__text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #196cc2;
}

/* About - Our Industries */
.row-industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #196cc2;
}

.service h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.service:hover {
  background: #196CC2;
  color: #fff;
  transform: scale(1.05);
}

.service:hover i {
  color: #fff;
}

.industries-h{
  margin-top: 4%;
  margin-bottom: 5%;
}

/* Demo */
.hamburger {
  /*hamburger menu*/
  cursor: pointer;
  z-index: 3;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #050e23;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Carousel */
@media(min-width:820px){
  .head-carousel img{
    max-height:880px;
  }

  .p-3{
    margin-bottom: 20%;
  }
}

@media(max-width:768px){
  .text-white{
    font-size: 2rem;
  }
}

.text-white{
  color: #FFFFFF !important;
}


/* Harchan-home */
.service-home{
  background: #0a62b40d;
}

.key-points{
  margin-top: 20px;
}



.footer .btn.btn-link::before{
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  left:0;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  position: relative;
  padding: 0 1rem;
}
.foot-index{
    display:grid;
    /*align-items: left;*/
    justify-content: left;
}
@media (min-width:900px) {
  .footer .btn.btn-link::before{
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    left:0;
  }
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    position: relative;
    padding: 0 1rem;
  }
  .foot-index{
      display:grid;
      /*align-items: center;*/
      justify-content: center;
     
  }
}