@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

.animate__animated.animate__fadeIn {
  --animate-duration: 5s;
}

ul {
  margin: 0;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.cta_yellowbtn, .cta_bluebtn, .cta_whitebtn, .lightbtn {
  background-color: #df9546;
  color: #fff !important;
  padding: 12px 20px;
  border: 1px solid #df9546;
  border-radius: 50px;
  height: 46px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
}

.cta_yellowbtn:hover, .cta_bluebtn:hover, .cta_whitebtn:hover, .lightbtn:hover {
  background-color: #fff;
  color: #df9546 !important;
}

.cta_bluebtn {
  background-color: #1d487d;
  border: 1px solid #1d487d;
}

.cta_bluebtn:hover {
  background-color: transparent;
  color: #1d487d !important;
  border: 1px solid #1d487d;
}

.cta_whitebtn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #1d487d !important;
}

.cta_whitebtn:hover {
  background-color: transparent;
  color: #1d487d !important;
  border: 1px solid #fff;
}

.lightbtn {
  background-color: #84c6c3;
  border: 1px solid #84c6c3;
}

.lightbtn:hover {
  background-color: transparent;
  color: #84c6c3 !important;
  border: 1px solid #84c6c3;
}

.common_bluebtn {
  color: #1d487d !important;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  padding-right: 10px;
  background-color: transparent;
  padding: 12px 30px 12px 20px;
  border: 1px solid transparent;
  border-radius: 50px;
  height: 46px;
  position: relative;
}

.common_bluebtn:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 17px;
  height: 12px;
  width: 12px;
  background: url("../images/bluearrow.svg") no-repeat 0 0/100%;
}

.common_bluebtn:hover {
  color: #1d487d !important;
  background-color: transparent;
  border: 1px solid #1d487d;
}

.center-para {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .center-para {
    width: 100% !important;
  }
}

.click {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  display: inline-block;
  padding-right: 20px;
  position: relative;
}

.click:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 5px;
  height: 12px;
  width: 12px;
  background: url("../images/arrows_white.svg") no-repeat 0 0/100%;
}

.click:hover {
  color: #fff;
  text-decoration: none;
}

.loader-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.loader {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.topnav {
  height: 40px;
  background: #1d487d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topnav span {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-bottom: 0;
}

.navbar {
  margin-top: 40px;
  height: 100px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar .logo {
  height: 100px;
  display: inline-block;
}

.navbar .navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .navlist li {
  margin: 0 16px;
}

.navbar .navlist li a {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #717171;
  font-weight: 400;
  text-transform: capitalize;
}

.navbar .navlist li a.active {
  color: #df9546;
}

.navbar .navlist li a:hover {
  color: #df9546;
}

.main-section {
  background: url("../images/hero_img.png") no-repeat;
  background-size: cover;
  text-align: center;
  width: 100% !important;
  height: calc(100vh - 140px);
  margin-top: 140px;
  background-position: 30%;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 992px) {
  .main-section {
    height: 95vh;
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .main-section {
    height: 92vh;
    background-position: center;
    margin-top: 50px;
    background: url("../images/mobilemain.png") no-repeat;
    background-size: cover;
  }
}

.main-section .content-box h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .main-section .content-box h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 1024px) {
  .main-section .content-box h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .main-section .content-box h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

.main-section .content-box .gradient-text {
  font-family: sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  background: linear-gradient(89.95deg, #11bed1 0.11%, #df9546 49.35%, #1d487d 100.59%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  text-shadow: none;
}

@media (max-width: 1200px) {
  .main-section .content-box .gradient-text {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 1024px) {
  .main-section .content-box .gradient-text {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .main-section .content-box .gradient-text {
    font-size: 24px;
    line-height: 32px;
  }
}

.main-section .content-box p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  width: 60%;
  margin: 0 auto 20px;
}

@media (max-width: 1024px) {
  .main-section .content-box p {
    width: 100%;
  }
}

.section-margin {
  margin-bottom: 140px;
}

@media (max-width: 1024px) {
  .section-margin {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .section-margin {
    margin-bottom: 50px;
  }
}

.section-heading {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 8px;
}

.section-heading span {
  display: block;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .section-heading {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 24px;
    line-height: 32px;
  }
}

.sub-heading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #df9546;
  margin-bottom: 20px;
}

.common-para {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .common-para {
    text-align: justify;
  }
}

.md-para {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .md-para {
    text-align: justify;
  }
}

.gradient-text {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  background: linear-gradient(89.95deg, #11bed1 0.11%, #df9546 49.35%, #1d487d 100.59%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .gradient-text {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 1024px) {
  .gradient-text {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .gradient-text {
    font-size: 24px;
    line-height: 32px;
  }
}

.cro_cards {
  margin-bottom: 48px;
}

.cro_cards .cro-heading {
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 6px;
  padding-left: 36px;
  position: relative;
}

.cro_cards .cro-heading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/cro_list.png") no-repeat 0 0/100%;
  height: 36px;
  width: 24px;
}

.cro_cards .cro-para {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin-bottom: 0;
  padding-left: 36px;
}

@media (max-width: 767px) {
  .cro_cards .cro-para {
    text-align: justify;
  }
}

.dream-section .girl-img {
  height: 25vw;
}

@media (max-width: 992px) {
  .dream-section .girl-img {
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .dream-section .girl-img {
    height: 220px;
    margin-top: 20px;
  }
}

.research_Area {
  display: block;
}

.research_Area .research_imgs {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.research_Area .research_imgs:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 750px) {
  .research_Area .research_imgs {
    height: 100%;
    width: 80vw;
    margin-bottom: 0px;
  }
}

@media (max-width: 600px) {
  .research_Area .research_imgs {
    width: 100%;
    margin-bottom: 0px;
  }
}

.research_Area p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171 !important;
  display: inline-block;
  margin: 12px 0px 0px;
  text-align: center;
}

.research_Area p:hover {
  color: #df9546;
  text-decoration: none;
}

@media (max-width: 993px) {
  .responsive_disable {
    display: none;
  }
}

@media (max-width: 993px) {
  .res_des {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .desktop_disable {
    display: none !important;
  }
}

@media (max-width: 993px) {
  .responsive_enable {
    display: block;
  }
}

@media (min-width: 993px) {
  .responsive_enable {
    display: none;
  }
}

.nav-tabs .nav-link.active {
  border: none !important;
}

.nav-tabs .nav-link:hover {
  border: none !important;
}

@media (max-width: 768px) {
  .desktop_view {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile_view {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile_view {
    display: block !important;
  }
}

.mobile_major_research {
  text-align: center;
}

.mobile_major_research img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.mobile_major_research p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #717171 !important;
  display: inline-block;
  margin: 12px 0px 24px;
  text-align: center;
}

.refer {
  margin: 40px 0;
  background: #df9546;
  padding: 40px 0px;
  width: 100%;
}

.refer h4 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.refer h4 span {
  font-weight: 800;
}

@media (max-width: 768px) {
  .refer h4 {
    font-size: 28px;
    line-height: 36px;
  }
  .refer h4 span {
    font-weight: 700;
  }
}

.refer p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .refer p {
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .refer .btn-gap {
    margin-top: 20px;
  }
}

.joinus {
  margin: 40px 0 100px;
  border: 1px dashed #84C6C3;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
}

@media (max-width: 1024px) {
  .joinus {
    margin: 40px 0;
  }
}

.joinus h4 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 8px;
}

.joinus h4 span {
  font-weight: 800;
}

@media (max-width: 768px) {
  .joinus h4 {
    font-size: 28px;
    line-height: 36px;
  }
  .joinus h4 span {
    font-weight: 700;
  }
}

.joinus p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .joinus p {
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .joinus .btn-gap {
    margin-top: 20px;
  }
}

.doc_intro {
  margin-top: 100px;
}

.doc_intro .intro {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .doc_intro .intro {
    font-size: 32px;
    line-height: 40px;
  }
}

.doc_intro .doc-name {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 8px;
}

.doc_intro .doc-name span {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #1d487d;
}

@media (max-width: 768px) {
  .doc_intro .doc-name {
    font-size: 32px;
    line-height: 40px;
  }
}

.doc_intro .doc_img {
  height: 32vw;
}

@media (max-width: 992px) {
  .doc_intro .doc_img {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .doc_intro .doc_img {
    height: 55vw;
  }
}

.testimonials .carousel .carousel-inner .carousel-item .review-msg {
  font-size: 32px;
  line-height: 50px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #84c6c3;
  margin-bottom: 8px;
  width: 100%;
}

@media (max-width: 992px) {
  .testimonials .carousel .carousel-inner .carousel-item .review-msg {
    font-size: 22px;
    line-height: 32px;
    text-align: justify;
  }
}

.testimonials .carousel .carousel-inner .carousel-item .client_name {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #4d4d4d;
  margin-bottom: 8px;
}

.testimonials .carousel .carousel-indicators {
  bottom: -60px;
}

.testimonials .carousel .carousel-indicators li {
  width: 6px;
  height: 6px;
  background: #1d487d;
  border: 1px solid #1d487d;
  border-radius: 10px;
  opacity: 1;
}

.testimonials .carousel .carousel-indicators li.active {
  background: #fff;
}

.footer .map-frame {
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .footer .contact_details {
    margin-top: 20px;
    text-align: center;
  }
}

.footer .contact_details h4 {
  font-size: 28px;
  line-height: 35px;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer .contact_details .call {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #717171;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.footer .contact_details .call:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/calling.svg") no-repeat 0 0/100%;
  height: 16px;
  width: 16px;
}

.footer .contact_details .call:hover {
  color: #df9546;
}

.footer .contact_details .email {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #717171;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}

.footer .contact_details .email:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/email_icon.svg") no-repeat 0 0/100%;
  height: 16px;
  width: 16px;
}

.footer .contact_details .email:hover {
  color: #df9546;
}

.footer .contact_details .social-media ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .footer .contact_details .social-media ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer .contact_details .social-media ul li {
  margin: 0 10px;
  list-style-type: none;
}

.footer .contact_details .social-media ul li a {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  height: 32px;
  width: 32px;
}

.footer .contact_details .social-media ul li a:hover {
  -webkit-transform: scale(1.2x);
          transform: scale(1.2x);
}

.footer .footer-bottom {
  background: #df9546;
  padding: 20px 0;
  color: #fff;
  margin-top: 0px;
}

.footer .footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
}

.footer .footer-bottom p span {
  color: #1d487d;
}

.major_researches {
  margin-bottom: 50px;
}

@media (max-width: 500px) {
  .major_researches {
    margin-bottom: 30px;
  }
}

.major_researches img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .major_researches img {
    width: 80%;
    display: block;
    margin: auto;
  }
}

.major_researches .normallink {
  text-decoration: none;
  position: relative;
}

.major_researches .normallink:after {
  display: none;
}

.major_researches h5 {
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin: 12px 0 6px;
}

@media (max-width: 767px) {
  .major_researches h5 {
    margin: 12px auto 6px;
  }
}

.major_researches .md-para {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #6b6b6b;
  margin-bottom: 4px;
}

.major_researches .view_moreone {
  display: none;
}

.major_researches .view_moretwo {
  display: none;
}

.major_researches .view_morethree {
  display: none;
}

.major_researches .view_morefour {
  display: none;
}

.major_researches .view_morefive {
  display: none;
}

.major_researches .view_moresix {
  display: none;
}

.major_researches .view_moreseven {
  display: none;
}

.major_researches .view_moreeight {
  display: none;
}

.major_researches .view_morenine {
  display: none;
}

.read_more a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #1d487d;
  display: inline-block;
  padding-right: 16px;
  position: relative;
  font-weight: 600;
}

.read_more a:hover:after {
  -webkit-animation: moveLeftright 1s infinite ease-in-out;
          animation: moveLeftright 1s infinite ease-in-out;
}

@-webkit-keyframes moveLeftright {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

@keyframes moveLeftright {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.read_more a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 5px;
  height: 12px;
  width: 12px;
  background: url("../images/arrows.svg") no-repeat 0 0/100%;
}

.gallary {
  margin-top: 100px;
}

.gallary .cover_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallary .cover_section a {
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

.gallary .cover_section a .gallary_imgs {
  width: 24vw;
}

.gallary .cover_section a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.common-wrapper {
  padding-top: 200px;
  width: 100%;
}

@media (max-width: 768px) {
  .common-wrapper {
    padding-top: 120px;
  }
}

@media (max-width: 2140px) {
  .common-wrapper .investi {
    height: 2390px;
  }
}

@media (max-width: 768px) {
  .common-wrapper .investi {
    height: 2420px;
  }
}

@media (max-width: 500px) {
  .common-wrapper .investi {
    height: 2470px;
  }
}

@media (max-width: 350px) {
  .common-wrapper .investi {
    height: 2610px;
  }
}

@media (max-width: 2140px) {
  .common-wrapper .spons {
    height: 1100px;
  }
}

@media (max-width: 768px) {
  .common-wrapper .spons {
    height: 1095px;
  }
}

@media (max-width: 500px) {
  .common-wrapper .spons {
    height: 1205px;
  }
}

@media (max-width: 350px) {
  .common-wrapper .spons {
    height: 1390px;
  }
}

@media (max-width: 2140px) {
  .common-wrapper .referee {
    height: 1100px;
  }
}

@media (max-width: 768px) {
  .common-wrapper .referee {
    height: 1095px;
  }
}

@media (max-width: 700px) {
  .common-wrapper .referee {
    height: 1100px;
  }
}

@media (max-width: 600px) {
  .common-wrapper .referee {
    height: 1200px;
  }
}

@media (max-width: 350px) {
  .common-wrapper .referee {
    height: 1270px;
  }
}

@media (max-width: 2140px) {
  .common-wrapper .voluntee {
    height: 6345px;
  }
}

@media (max-width: 768px) {
  .common-wrapper .voluntee {
    height: 6500px;
  }
}

@media (max-width: 600px) {
  .common-wrapper .voluntee {
    height: 6800px;
  }
}

@media (max-width: 350px) {
  .common-wrapper .voluntee {
    height: 7000px;
  }
}

.common-wrapper .cards, .common-wrapper .cards_md {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.common-wrapper .cards .card-heading, .common-wrapper .cards_md .card-heading {
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #717171;
  margin-bottom: 10px;
}

.common-wrapper .cards .card-heading span, .common-wrapper .cards_md .card-heading span {
  font-weight: 800;
  display: block;
}

.common-wrapper .cards .card-para, .common-wrapper .cards_md .card-para {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  margin-bottom: 10px;
}

.common-wrapper .cards_md {
  margin-bottom: 20px;
}

.common-wrapper .mission {
  background: #df9546;
  padding: 40px 0;
}

.common-wrapper .mission h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.common-wrapper .doc-section .jain_img {
  height: 450px;
}

@media (max-width: 992px) {
  .common-wrapper .doc-section .jain_img {
    height: 350px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .common-wrapper .doc-section .jain_img {
    height: 300px;
    margin-bottom: 20px;
  }
}

.common-wrapper .doc-section .doc-name {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  margin-bottom: 8px;
}

.common-wrapper .doc-section .doc-name span {
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #1d487d;
}

@media (max-width: 1024px) {
  .common-wrapper .doc-section .doc-name {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .common-wrapper .doc-section .doc-name {
    font-size: 24px;
    line-height: 32px;
  }
}

.common-wrapper .staff .staff-card {
  margin-top: 40px;
  text-align: center;
}

.common-wrapper .staff .staff-card img {
  height: 290px;
  margin: 0 auto;
  display: inline-block;
}

@media (max-width: 992px) {
  .common-wrapper .staff .staff-card img {
    height: 200px;
  }
}

.common-wrapper .staff .staff-card p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #717171;
  text-align: center;
  margin: 20px 0 0;
}

.common-wrapper .staff .staff-card p span {
  display: block;
  font-weight: 400;
}

.common-wrapper .pharma_list {
  margin: 20px auto;
  padding: 0;
  max-width: 60%;
}

@media (max-width: 1024px) {
  .common-wrapper .pharma_list {
    max-width: 100%;
  }
}

.common-wrapper .pharma_list .list_points {
  list-style-type: none;
  margin: 6px 10px;
  display: inline-block;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  padding-left: 30px;
  position: relative;
}

.common-wrapper .pharma_list .list_points:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
  background: url("../images/tube-icon.svg") no-repeat 0 0/100%;
}

.common-wrapper .tabes {
  border: 1px solid #df9546;
  border-radius: 12px;
  padding: 4px;
  display: inline-block;
  margin: 0px auto 50px;
}

.common-wrapper .tabes .nav-item {
  display: inline-block;
}

.common-wrapper .tabes .nav-link {
  border-radius: none;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #717171;
  padding: 12px 22px;
  border: none !important;
}

@media (max-width: 550px) {
  .common-wrapper .tabes .nav-link {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 430px) {
  .common-wrapper .tabes .nav-link {
    font-size: 14px;
    line-height: 18px;
    padding: 10px;
  }
}

@media (max-width: 355px) {
  .common-wrapper .tabes .nav-link {
    font-size: 12px;
    line-height: 16px;
    padding: 8px;
  }
}

.common-wrapper .tabes .nav-link.active,
.common-wrapper .tabes .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #df9546;
  border-radius: 12px;
  border: none !important;
  padding: 12px 22px;
}

@media (max-width: 550px) {
  .common-wrapper .tabes .nav-link.active,
  .common-wrapper .tabes .nav-pills .show > .nav-link {
    padding: 10px 20px;
  }
}

@media (max-width: 430px) {
  .common-wrapper .tabes .nav-link.active,
  .common-wrapper .tabes .nav-pills .show > .nav-link {
    padding: 10px;
  }
}

@media (max-width: 355px) {
  .common-wrapper .tabes .nav-link.active,
  .common-wrapper .tabes .nav-pills .show > .nav-link {
    padding: 8px;
  }
}

.common-wrapper .research_box {
  border: 1px solid #11bed1;
  border-radius: 20px;
  padding: 40px 32px 30px;
  position: relative;
  margin-bottom: 60px;
}

.common-wrapper .research_box:before {
  content: "";
  position: absolute;
  left: 32px;
  top: -40px;
  height: 80px;
  width: 80px;
  background: url("../images/tube-icon.svg") no-repeat 0 0/100%;
}

.common-wrapper .research_box h5 {
  font-family: "Montserrat", sans-serif;
  color: #1d487d;
  font-size: 16px;
  font-weight: 600;
}

.common-wrapper .research_box .md-para {
  margin-bottom: 8px;
}

.common-wrapper .research_list {
  margin: 8px auto;
  padding: 0;
}

.common-wrapper .research_list li {
  list-style-type: none;
  margin: 3px 0px;
  display: block;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #717171;
  padding-left: 12px;
  position: relative;
}

.common-wrapper .research_list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 5px;
  width: 5px;
  background: #717171;
  border-radius: 3px;
}

.common-wrapper .research_list .moretext {
  display: none;
}

.common-wrapper .research_list .moretextone {
  display: none;
}

.common-wrapper .research_list .moretexttwo {
  display: none;
}

.common-wrapper .research_list .moretextthree {
  display: none;
}

.common-wrapper .research_list .moretextfour {
  display: none;
}

.common-wrapper .research_list .moretextfive {
  display: none;
}

.common-wrapper .research_list .moretextsix {
  display: none;
}

.common-wrapper .research_list .moretextsevenn {
  display: none;
}

.common-wrapper .research_list .moretexteight {
  display: none;
}

@media (max-width: 993px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .navbar_mobile {
    height: 70px;
    background: #fff;
    margin-top: 40px;
  }
  .navbar_mobile .logo {
    height: 70px;
  }
  .navbar_mobile .menu-btn {
    color: #000;
    border: none;
    padding: 0px 9.5px;
    height: 32px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 32px;
    position: relative;
    margin-top: 5px;
  }
  .navbar_mobile .menu-btn .iconbars, .navbar_mobile .menu-btn .iconbars:after, .navbar_mobile .menu-btn .iconbars:before {
    width: 18px;
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    right: 0px;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
  }
  .navbar_mobile .menu-btn .iconbars:after {
    content: "";
    top: -5px;
  }
  .navbar_mobile .menu-btn .iconbars:before {
    content: "";
    bottom: -5px;
  }
  .navbar_mobile .menuList {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    background: #fff;
  }
  .navbar_mobile .menuList hr {
    margin: 0;
    border-top: 1px solid #ffe1d2 !important;
  }
  .navbar_mobile .menuList .sidemenu {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
    position: absolute;
    left: -414px;
    top: 0px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    background: rgba(36, 72, 140, 0.12);
  }
  .navbar_mobile .menuList .sidemenu.right-open {
    left: 0;
  }
  .navbar_mobile .menuList .sidemenu .btn,
  .navbar_mobile .menuList .sidemenu a {
    display: inline-block;
    font-size: 14px;
  }
  .navbar_mobile .menuList .sidemenu .dropdown-menu {
    position: relative;
    border: none;
    text-align: center;
    font-size: 10px;
    padding: 0 !important;
    width: 190px;
    margin: auto;
  }
  .navbar_mobile .menuList .sidemenu .dropdown-menu .dropdown-menu[data-bs-popper] {
    margin-top: 0px;
  }
  .navbar_mobile .menuList .sidemenu .dropdown-menu .dropdown-item {
    padding: 0.25rem 9px !important;
  }
  .navbar_mobile .menuList .sidemenu .dropdown-menu .dropdown-item:focus {
    background-color: #df9546 !important;
  }
  .navbar_mobile .menuList .sidemenu .nav-item {
    position: relative;
  }
  .navbar_mobile .menuList .sidemenu .nav-item::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.04);
    height: 2px;
    width: 190px;
    bottom: 0;
    left: calc(50% - 95px);
  }
  .navbar_mobile .menuList .sidemenu .nav-item:last-child:after {
    display: none;
  }
  .navbar_mobile .menuList .sidemenu .nav-item .nav-link {
    padding: 8px 13px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
  }
  .navbar_mobile .menuList .sidemenu .nav-item .nav-link a {
    color: #000 !important;
  }
  .navbar_mobile .menuList .sidemenu .nav-item .nav-link.dropdown:before {
    position: absolute;
    top: 17px;
    right: -13px;
    background: url("../images/dropdown-icon.svg") no-repeat 0px 0px/11px;
    content: "";
    height: 20px;
    width: 20px;
  }
  .navbar_mobile .menuList .sidemenu .close {
    border: 1px solid #df9546;
    border-radius: 9px;
    opacity: 1;
    display: inline-block;
    -webkit-transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    cursor: pointer;
    height: 27px;
    width: 27px;
    background: #df9546 url("../images/white-cross.svg") no-repeat 8px 8px/10px;
    z-index: 9;
    position: absolute;
    right: 24px;
    top: 12px;
  }
  .navbar_mobile .menuList .sidemenu .close:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    border: 1px solid #df9546;
    background: #df9546 url("../images/white-cross.svg") no-repeat 8px 8px/10px;
  }
  .navbar_mobile .menuList .blackSpace {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: calc(100% - 414px);
  }
}

@media (min-width: 993px) {
  .mobile-only {
    display: none;
  }
}

.blue-content-box {
  border-radius: 12px;
  padding: 20px;
  background: #84c6c3;
  margin-bottom: 50px;
  display: none;
}

.blue-content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.blue-content-box p {
  color: #fff;
  margin-bottom: 0;
}

.animate__fadeInLeft {
  -webkit-animation-duration: 2s !important;
          animation-duration: 2s !important;
  -webkit-animation-name: fadeInLeft !important;
          animation-name: fadeInLeft !important;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.animate__fadeInRight {
  -webkit-animation-duration: 2s !important;
          animation-duration: 2s !important;
  -webkit-animation-name: fadeInRight !important;
          animation-name: fadeInRight !important;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.animate__fadeInDown {
  -webkit-animation-duration: 2s !important;
          animation-duration: 2s !important;
  -webkit-animation-name: fadeInDown !important;
          animation-name: fadeInDown !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.animate__fadeInUp {
  -webkit-animation-duration: 2s !important;
          animation-duration: 2s !important;
  -webkit-animation-name: fadeInUp !important;
          animation-name: fadeInUp !important;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.shadow {
  -webkit-box-shadow: 0 4px 1rem 0 rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 4px 1rem 0 rgba(0, 0, 0, 0.15) !important;
}
/*# sourceMappingURL=style.css.map */