@import url("./font.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cbcbcb;
}
header .headerInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;

  padding: 10px 100px;
  margin: 0 auto;
}
header .header_left {
  
  justify-content: flex-start;
  align-items: center;
}
.header_left img.logo {
  width: 280px;
}

header .header_mid {
  width: 100%;
}
.header_mid ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 15px;
	margin:0px;
}
.header_mid ul li a {
  color: #000;
  text-decoration: none;
  font-family: "thickbow";
  font-weight: 500;
  padding: 5px 15px;
  word-break: keep-all;
  font-size: 18px;
}
.header_mid ul li a.active {
  background-color:rgb(188 226 235);
  border-radius: 50px;
}
header .header_right {
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_right img.logo {
  width: 230px;
}

.mobile-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  display: none;
  border-bottom: 1px solid #cbcbcb;
}
.mobile-head img {
  width: 150px;
}
.mobile-head .menu-btn {
  color: #454545;
  font-size: 1.5rem;
  cursor: pointer;
	position: absolute;
    left: 10px;
}
.mobile-nav {
  width: 64%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  left: -100%;
  top: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  
  z-index: 9;
  transition: left 0.4s ease-in-out;
}
.mobile-nav.active {
  display: block;
  display: flex;
	left:0;
}
.mobile-nav .top-btn {
  color: #fff;
  font-size: 1.5rem;
	display: flex;
	justify-content: flex-end;
}
.mobile-nav .top-btn i {
	transform:rotate(180deg);
	padding: 10px;
}
.mobile-nav ul {
  list-style: none;
  width: 100%;
}
.mobile-nav li {
  border-bottom: 1px solid rgb(255 255 255 / 46%);
}
.mobile-nav li:first-child{
	border-top:1px solid rgb(255 255 255 / 46%);
}
.mobile-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "thickbow";
  font-weight: 500;
	padding: 10px 17px;
    width: 100%;
    display: inline-block;
	    background: rgb(0 0 0 / 30%);
	
}
.mobile-nav .center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
 padding-left: 0px;
}
.mobile-nav img.logo {
  width: 80%;
}

section.banner {
  width: 100%;
  height: calc(100vh - 70px);
  background-image: url("../img/Landingpageimage.jpg");
  background-size: cover;
  background-repeat: no-repeat;

}
section.banner .bannerInner{
  padding: 10px 100px;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
}

section.banner .banner_left {
  width:680px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 100%;

}

.banner_left button.btn-about {
  width: fit-content;
  border: none;
  outline: none;
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  font-family: "thickbow";
}

.banner_left h1.banner-text {
  font-size: 70px;
  font-family: "thickbow";
  font-weight: 500;
}
.banner_left p.banner-para {
  font-family: "thickbow";
  font-size: 30px;
  line-height: 2.2rem;
  font-weight: 400;
  color: #454545;
}

.banner_left .btn-explore {
  width: fit-content;
  background: transparent;
  border: 1px solid #454545;
  color: #454545;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-size: 18px;
  font-family: "thickbow";
  text-decoration: none;
}

section.about {
  width: 100%;
  height: 70vh;
  display: flex;
  padding-left: 100px;
}
section.about .about_left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_left h1.about-head, .about_left h2.about-head  {
  font-size: 2.8rem;
  font-family: "thickbow";
  font-weight: 300;
}
h1.about-head span, h2.about-head span {
  font-weight: 500;
}
p.about-p {
  font-size: 1.3rem;
  font-family: "barlow";
  font-weight: 400;
  line-height: 1.8rem;
  margin-top: 1.5rem;
}
p.bold-text {
  font-size: 1.3rem;
  font-family: "barlow";
  font-weight: 500;
  line-height: 1.8rem;
  margin-top: 1.5rem;
}
:root {
  --ploy:  polygon(42% 100%, 100% 0%, 4% 0%);
}
.newAbout{
  width: 100%;
}
.newAbout img, .newAbout2 img{
   width: 100%;
}
.newAbout2{
  padding-left: 0;
}

section.about .about_right {
  width: 60%;
  height: 100%;
}
.about_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.about2 {
  width: 100%;
  height: 70vh;
  display: flex;
  padding-right: 100px;
}
section.about2 .about2_right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about2_right h1.about2-head, .about2_right h2.about2-head {
  font-size: 2.8rem;
  font-family: "thickbow";
  font-weight: 300;
}

@media (max-width: 500px) {
	.about2_right h1.about2-head, .about2_right h2.about2-head {
  		font-size: 34px;
	}
	p.about-p, .about2_right p.about2-p{
		margin-top: 8px;
	}
}

h1.about2-head span, h2.about2-head span {
  font-weight: 500;
}
p.about2-p {
  font-size: 1.3rem;
  font-family: "barlow";
  font-weight: 400;
  line-height: 1.8rem;
  margin-top: 1.5rem;
}
p.bold2-text {
  font-size: 1.3rem;
  font-family: "barlow";
  font-weight: 500;
  line-height: 1.8rem;
  margin-top: 1.5rem;
}

section.about2 .about2_left {
  width: 60%;
  height: 100%;
}
.about2_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.expertise {
  width: 100%;
  height: auto;
  padding: 10px 100px;
  padding-top: 4rem;
  max-width: 1600px;
  margin: 0 auto;
}
section.expertise h1, section.expertise h2  {
  text-align: center;
  font-family: "thickbow";
  font-size: 56px;
  font-weight: 500;
}
section.expertise h1 span, section.expertise h2 span  {
  font-weight: 600;
}
.eslider {
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}
.eslider-wrap {
  width: 100%;
  height: 100%;
  border: 1.5px solid rgb(197, 228, 255);
  border-radius: 20px;
  padding: 3.5rem 1.5rem;
}
.slider-btn {
  background: rgb(215, 236, 255);
  padding: 15px 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

h2.eh2 {
  text-align: center;
  font-family: "barlow";
  font-weight: 500;
  font-size: 3rem;
}
p.ehp {
  text-align: center;
  font-family: "barlow";
  font-weight: 400;
  font-size: 1.9rem;
  color: #454545;
  margin-top: 10px;
  margin-bottom: 0;
}

.slide-wrapper {
  width: 100%;
  margin: auto;
}
.slide-wrapper .slider-card {
  width: 30%;
  display: flex;
  /* border: 1px solid #e4e4e4; */
  margin: 0 10px;
  padding: 1rem;
}
.slide-wrapper .slider-card h5 {
  text-align: center;
  font-family: "thickbow";
  color: #484848;
  font-size:27px;
  font-weight: 500;
}
.slider-card .slider-img {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.slider-card img {
  width: 70%;
  object-fit: contain;
}
.slider-card .bar {
  width: 110px;
  border: 1px solid #a4a4a4;
  margin: auto;
  margin-top: 8px;
  border-top: none;
}
.slider-card p {
  color: #454545;
  text-align: center;
  margin-top: 10px;
  font-family: "thickbow";
  font-weight: 400;
  font-size: 22px;
}

section.partners {
  width: 100%;
  padding: 10px 100px;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 60px;
}
section.partners h1, section.partners h2 {
  text-align: center;
  font-family: "thickbow";
  font-size: 60px;
  font-weight: 400;
}
section.partners h1 span, section.partners h2 span {
  font-weight: 600;
}
.partners-img {
  width: 100%;
  border: 1.5px solid rgb(197, 228, 255);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  margin-top: 2rem;
}
.partners-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.partners .carousel {
    width:100%;
    overflow: hidden;
    position: relative;
}
section.partners .carousel .slick-slide{
  padding: 0 15px;
}
section.partners .carousel img{
  filter: grayscale(100%);
  cursor: pointer;
  height: 75px;
  opacity: .7;
}
section.partners .carousel img:hover{
  filter: grayscale(0%);
  opacity: 1;
}

footer .foot-left ul li a.bx-logo {
  background-image: url(./../img/SocialmedicaIcons.svg);
  height: 45px;
  width: 45px;
}
.linkedin{
  background-position: -4px, 0;
}
.facebook{
  background-position: -66px, 0px;
}
.youtube{
  background-position: -129px, 0px;
}
.twitter{
  background-position: -191px, 0px;
}
.whatsapp{
  background-position: -317px, 0px;
}
.message-dots{
  background-position:  -254px, 0px; 
}

footer {
  width: 100%;
  background-color: #000;
  padding: 10px 0;
  padding-top: 50px;
  margin-top: 5rem;
}
.footer-wrap-first {
  width: 100%;
  display: flex;
}

.foot-left {
  width: 100%;
}

.foot-left .group {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}
.foot-left .group input {
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  outline: none;
  width: 300px;
  max-width: 70%;
  
}
.foot-left .group button {
  border: none;
  outline: none;
  background: #8dd7f7;
  padding: 15px 30px;
  border-radius: 50px;
  color: #000;
  font-family: "thickbow";
  font-weight: 600;
  cursor: pointer;
}
.foot-left p {
  color: #fff;
  font-family: "thickbow";
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.9rem;
}

.foot-left ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 2rem;
}
.foot-left ul li {
  color: #000;
  background: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-left ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot-left ul li a i {
  font-size: 1.5rem;
}

.foot-right {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.foot-right ul {
  list-style: none;
}

.foot-right ul li {
  margin-bottom: 10px;
}
.foot-right ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "thickbow";
  font-weight: 400;
  font-size: 1.2rem;
}
.foot-right img.foot-right-logo {
  width: 15rem;
  object-fit: contain;
}

.footer-wrap-second {
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 5rem;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
}

.footer-wrap-second .bar {
  width: 100%;
  border-top: 1px solid rgb(159, 210, 254);
}
.footer-wrap-second p {
  color: #fff;
  margin-top: 10px;
  font-family: "thickbow";
  font-weight: 400;
  font-size: 0.8rem;
}

section.aboutText, .testimonial-container, .ourClient{
  display: none;
}

section.expertise.policyPage h1{
	font-size:40px;
	margin-bottom:10px;
}

.policyPage	p{
		font-size:18px;
		font-family: "thickbow";
		margin-bottom:10px;
	}

.policyPage	ul, 
.policyPage ol {
		font-size:18px;
		font-family: "thickbow";
		margin-bottom:10px;
	    padding-left: 20px;
	}

.policyPage	ul li, 
.policyPage	ol li {
		font-size:18px;
		font-family: "thickbow";
		margin-bottom:5px;
	}
.policyPage	ul ul, .policyPage	ul ol, .policyPage	ol ul, .policyPage	ol ol {
	margin-left:20px;
}
.policyPage strong {
	    margin-bottom: 2px;
    display: inline-block;
    width: 100%;
}

.footerNew .footer-wrap-first{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
}
.footerNew .footer-wrap-first .foot-right{
  width: auto;
}
.footerNew .footer-wrap-first .foot-left{
  width: auto;
}
.footerNew .footer-wrap-first .middle-foot{
  width: auto;
}
.footerNew .footer-wrap-first .middle-foot ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footerNew .footer-wrap-first .middle-foot ul li {
  margin-bottom: 10px;
}
.footerNew .footer-wrap-first .middle-foot ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "thickbow";
  font-weight: 400;
  font-size: 1.2rem;
}
.footerNew .footer-wrap-first .middle-foot ul li a:hover{
  color: #7ccdf3;
    text-decoration: underline;
}

:not(:empty).wpcf7-response-output{
	border: 1px solid black;
	color:black;
	padding:20px;
	margin-top:20px;
	font-family: "thickbow";
	border-radius: 5px;
}
.wpcf7-not-valid-tip{
	color: red;
    margin-top: 2px;
    font-family: "thickbow";
    display: block;
    padding-left: 15px;
    font-size: 12px;
}


@media (max-width: 1199px){
  header .header_mid ul{
    gap: 5px;
  }
  .header_mid ul li a{
    font-size: 16px;
    padding: 5px 5px;
  }
  section.banner .banner_left{
    width: 100%;
  }
  .banner_left h1.banner-text{
    font-size: 60px;
  }
  .banner_left p.banner-para{
    font-size: 24px;
  }
  section.expertise h1, section.expertise h2{
    font-size: 40px;
  }
  p.ehp{
    font-size: 1.2rem;
  }
  .slide-wrapper .slider-card h5{
    font-size: 1.2rem;
  }
  .slider-card p{
    font-size: 1rem;
  }
  section.expertise{
    height: auto;
  }
  section.partners h1, section.partners h2{
    font-size: 40px;
  }
}


@media (max-width: 900px) {
  header {
    display: none;
  }
  section.banner {
    padding: 10px;
  }
  section.banner .banner_left {
    width: 100%;
  }
  section.about {
    padding-left: 10px;
  }
  section.about .about_left {
    width: 50%;
  }
  section.about .about_right {
    width: 50%;
    padding-left: 20px;
  }
  section.about2 {
    padding-right: 10px;
  }
  section.about2 .about2_left {
    width: 50%;
    padding-right: 20px;
  }
  section.about2 .about2_right {
    width: 50%;
  }
  section.expertise {
    padding: 10px 80px;
    margin-top: 2rem;
  }
  section.partners {
    padding: 10px;
  }
  footer {
    padding: 10px;
    padding-top: 30px;
  }
  .footerNew .footer-wrap-first{
    padding: 0 10px;
  }

  .mobile-head {
    display: block;
    display: flex;
	  align-items: center;
	  justify-content:center;
  }
}

@media (max-width: 500px) {
	.footer-wrap-second{
		padding:0;
		margin-top:2rem;
	}
  section.banner .banner-text {
    font-size: 50px;
  }
  .banner_left p.banner-para {
    font-size: 20px;
  }

  section.about {
    flex-direction: column;
    height: fit-content;
    margin-top: 1.5rem;
    padding: 10px 20px;
  }
  section.about .about_left {
    width: 100%;
    padding: 0;
  }
  section.about .about_right {
    display: none;
  }
  section.about2 {
    flex-direction: column;
    padding: 10px 20px;
    margin-top: 1.5rem;
    height: fit-content;
  }
  section.about2 .about2_left {
    display: none;
  }
  section.about2 .about2_right {
    width: 100%;
    padding: 0;
  }
  section.expertise {
    padding: 10px 20px;
    height: fit-content;
  }
  section.expertise h1 {
    font-size: 30px;
  }
  section.expertise .eslider {
    height: fit-content;
	  margin-top: 1rem;
  }
	.eslider-wrap{
		padding: 2rem 1.5rem;
	}
  section.expertise .eslider .slider-btn {
    display: none;
  }
  section.expertise .eh2 {
    font-size: 1.5rem;
  }
  section.expertise .slider-card {
    padding: 0;
  }
  section.partners {
    margin-top: 1.5rem;
	padding: 10px 20px;
  }
  section.partners h1 {
    font-size: 30px;
  }
  footer .footer-wrap-first {
    flex-direction: column;
  }
  footer .foot-left img {
    width: 200px;
  }
  footer .foot-left p {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
  .footer-wrap-second p {
    text-align: center;
  }
  .foot-right {
    flex-direction: column;
  }
  .foot-right img.foot-right-logo {
    width: 180px;
    margin-top: 1.5rem;
  }
  
  section.banner {
    height: auto;
	background-size: 1200px;
  }
  section.banner .bannerInner{
    padding: 10px;
  }
  .banner_left button.btn-about{
    font-size: 14px;
  }
  section.banner .banner-text {
    font-size: 24px;
  }
  section.banner .banner_left{
    width: 91%;
  }
  .banner_left p.banner-para {
    font-size: 14px;
    line-height: 22px;
  }
  .banner_left .btn-explore {
    padding: 0.5rem 1rem;
    font-size: 14px;
    text-decoration: none;
  }
  .newAbout, .newAbout2{
    display: none;
  }
  section.expertise h1, section.expertise h2, .about_left h1.about-head, .about_left h2.about-head, section.partners h1, section.partners h2 {
    font-size: 34px;
  }
	p.bold-text{
		margin-top: 12px;
	}
  .slider-card .slider-img {
    height: 205px;
	padding-top: 15px;
  }
	.partners-img{
	    padding: 1.5rem 2rem;
		margin-top: 1rem;
	}
  section.aboutText{
    display: block;
	margin-top:3rem;
  }
	.footerNew .footer-wrap-first .middle-foot ul{
		justify-content: center;
	}

  section.expertise.expertisePage{
    padding: 10px 20px !important;
  }
	.footerNew .footer-wrap-first .middle-foot ul li a{
		background: #fffffff0;
		border-radius: 36px;
		padding: 5px 15px;
		color: #000;
	}
	.footerNew .footer-wrap-first{
		gap:25px;
	}
	section.partners .carousel img{
	
		opacity: 1;
    filter: none;
		
	}
}
