/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  
  --color-11: #009284;
  --color-12: #001822;
  --space-xl: 2rem;
  --font-primary: "Montserrat", sans-serif;
}

.about-us {
  /* border: 1px solid white; */
  padding-top: 100px;
  font-family: var(--font-primary);
  color: #C2E0DF;
  background-color: var(--color-12);
}

.about-us .container-fluid {
  padding-top: 2rem !important;
  padding-inline: 5vw !important;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 42px);
  font-weight: 300;
  line-height: 1;
  /* color: #fff;*/
}

h6.title {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: inline-grid;
}

h6.title.for_darkbg .overlays_title {
  background: var(--color-12);
}

h6.title .overlays_title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9;
}

h6.title.for_darkbg .txt {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

h6.title .txt {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 15px 6px 30px;
  border-radius: 100px;
  background: rgb(0 24 34 / 10%);
  position: relative;
  z-index: 3;
}

h6.title.for_darkbg .txt:before {
  background: #fff;
}

h6.title .txt:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.about-us .sec-01 {
  aspect-ratio: 21 / 11;
  background-image: url("dots-01-green 2.png");
  background-repeat: no-repeat;

}

.about-us .sec-01 p {
  max-width: 1080px;
  font-size: clamp(1.25rem, 3vw, 28px);
  padding-top: 3vw;

}

.about-us .sec-02 {
  padding-block: 4vw;
}

.about-us .sec-02 article {
  border-top: 1px solid #405159;
  padding-block: 1.5rem;
  max-width: 90%;
  color: #78858A;
  transition: color .7s ease;
}

.about-us .sec-02 article:hover {
/*  color: #C2E0DF;*/
  color: var(--color-11);

}

.about-us .sec-02 article h5 {
  font-size: clamp(1.2rem, 2vw, 20px);
}

.about-us .sec-02 article p {
  font-size: 14px;
  max-width: 75%;
  margin-bottom: 0px;

}

.about-us .sec-02 img {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 24px;
  display: block;
  margin-left: auto;
}

.about-us .sec-02 .main-row article:nth-of-type(5) {
  margin-bottom: 1rem;
}

.about-us .sec-02 a {
  text-decoration: none;
  color: #fff;
  background-color: var(--color-11);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}
.about-us .sec-02 a i.bi-telephone-fill {
	margin-right:12px;
}

.about-us .sec-03 {
  min-height: 100vh;
  background-image: url("dots-01-green 2.png");
  background-repeat: no-repeat;
}

.about-us .sec-03 button.your-doctor {
  background-color: transparent;
  border: 1px solid #009284;
  padding: 8px 18px;
  border-radius: 14px;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease, border 0.5s ease;
	font-weight:300;
	font-size: 14px;
}

.about-us .sec-03 button.your-doctor.active {
  background-color: var(--color-11);
  border: none;
  transform: scale(1.05);
}

.about-us .sec-03 button.your-doctor+.your-doctor {
  margin-left: 25px;
}

.about-us .sec-03 .tabs-container {
  position: relative;
  min-height: 400px;
  /* adjust based on your tallest tab */
}

.about-us .sec-03 .tabs-container .tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.about-us .sec-03 .tabs-container .tab-pane.active.show {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.6s ease;
  display: flex;
  /* keep your flex layout */
  justify-content: flex-start;
  gap: 24px;
}

.about-us .sec-03 .tabs-container .tab-pane .box {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
	position: relative;
}

.about-us .sec-03 .box h4.quotes::before{
	    content: "";
    width: 30px;
    height: 30px;
    background: url(../icons/quotes-team-member.png) no-repeat top left;
    position: absolute;
    bottom:65%;
}




.about-us .sec-03 .tabs-container .tab-pane .box article {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  padding-inline: 16px;
}

.about-us .sec-03 .tabs-container .tab-pane .box:not(:nth-of-type(1)) {
  padding-block: 2.5rem;
  padding-inline: 24px;
}

.about-us .sec-03 .tabs-container .tab-pane .box:nth-of-type(1) {
  background-color: #C2E0DF;
  color: #000;
}

.about-us .sec-03 .tabs-container .tab-pane .box:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-11);
  color: #fff;
}

.about-us .sec-03 .tabs-container .tab-pane .box:nth-of-type(3) {
  align-content: center;
  background-color: #DEF0EF;
  color: #000;
}

.about-us .sec-03 .tabs-container .tab-pane .box h4 {
  line-height: 1.2;
	font-size: clamp(1.2rem, 2vw, 22px);
}

.about-us .sec-03 .tabs-container .tab-pane .box:nth-of-type(2) h4 {
  font-weight: 300;
}

.about-us .sec-03 .tabs-container .tab-pane .box article p {
  font-size: 14px;
}

.about-us .sec-04 {
  padding-block: 3rem !important;
  min-height: 100vh;
  padding-right:0px;
  background: linear-gradient(222deg, #001822 18.7%, #009284 81.3%);
  color: #fff;
}
.about-us .sec-04 .country-list{
	display: flex;
	flex-direction: column;
	flex-direction: row;
	gap:24px;
	margin-bottom: 24px;
	
}
.about-us .sec-04 .country-list li {

  border: 1px solid white;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 14px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
	font-size: 14px;

}

.about-us .sec-04 .country-list li.active {
  background-color: #000;
  border: none;
}

.about-us .sec-04 .scroll-container {
  position: relative;
  display: flex;
  align-items: center;
}

.about-us .sec-04 .scroll-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  -ms-overflow-style: none;  
  scrollbar-width: none;   

}

.about-us .sec-04 .scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.about-us .sec-04 .box {
  flex: 0 0 calc((100% / 2.5) - 36px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  scroll-snap-align: start;
  min-width: 250px;
  min-height: 600px;
  box-sizing: border-box;
  padding-top:100px;
}

.about-us .sec-04 .box li{
	    line-height: 2.5;
    font-size: 14px;
}

.about-us .sec-04 .box:nth-of-type(3n + 1) {
  background-color: #DEF0EF; 
	color:#000;
}
.about-us .sec-04 .box:nth-of-type(3n + 2) {
  background-color: #001822;
}
.about-us .sec-04 .box:nth-of-type(3n + 3) {
  background-color: #C2E0DF; 
	color:#000;
}


.about-us .sec-04 .box:nth-of-type(3n + 2) h4 ,
.about-us .sec-04 .box:nth-of-type(3n + 2) h6 {
	color: #fff;
	font-size: 14px;
}


.about-us .sec-04 .box:nth-of-type(3n + 1) h4,
.about-us .sec-04 .box:nth-of-type(3n + 1) h6,
.about-us .sec-04 .box:nth-of-type(3n + 3) h4,
.about-us .sec-04 .box:nth-of-type(3n + 3) h6{
	color: rgba(32, 40, 46, 0.75);
	font-size: 14px;
}
.about-us .sec-04 .box h4{
	margin-top:2rem;
}
.about-us .sec-04 .box h3{
	margin-bottom:2rem;
}

.about-us .sec-04 .counter {
  text-align: right;
  margin-top: 10px;
	margin-right: 250px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
}

.about-us .sec-04 .scroll-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  transition: 0.3s;
}

.about-us .sec-04 .scroll-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}


.about-us .sec-04 .scroll-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.about-us .sec-04 .scroll-btn.left {     
	top: 100%;
    right: 200px; }
.about-us .sec-04 .scroll-btn.right {     
	top: 100%;
    right: 156px; }



.about-us .sec-05 {
  padding-block: 3rem !important;
  min-height: 100vh;
	background-color: var(--color-12);
}

.about-us .sec-05 .picture-gallery {
  border-radius: 20px;
  border: 1px solid #009284;
  background: var(--Gradient, linear-gradient(222deg, #001822 18.7%, #009284 81.3%));

  margin-top: 3rem;
}

.about-us .sec-05 h4 {
  width: fit-content;
  /*    border-bottom: 0.5px solid #ffffff84;*/
  font-size: clamp(1.2rem, 2vw, 30px);
  margin: 3rem auto 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}

.about-us .sec-05 ul {
  gap: 24px;
  margin-block: 2rem;
}

.about-us .sec-05 .nav-pills .nav-link {
  border-radius: 100px;
  border: 1px solid #C2E0DF;
  padding: 6px 14px;
  font-size: 12px;
  color: #DEF0EF;
  font-weight: 500;
  transition: all 0.4s;
  background: transparent;
}

.about-us .sec-05 .nav-pills .nav-link.active {
  /*  background-color: #009284;*/
  background-color: #000;
  border: none;
  color: #fff;
	box-shadow: 0px 0px 5px #ffffff82;
}

.about-us .sec-05 .tab-pane {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0.5rem 0 3rem;
  transition: opacity 0.4s ease;
}


.about-us .sec-05 .cards-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0.5rem 0 3rem;
  transition: all 0.4s;
}

.about-us .sec-05 .cards-wrapper:not(.active) {
  display: none;
}

.about-us .sec-05 .cards-wrapper .cards {
  width: 480px;
  height: 280px;
  /*	border:1px solid white;*/
  border-radius: 14px;
  overflow: hidden;
}
@media(max-width:1366px){
	.about-us .sec-02 article p {max-width: 95%;}
	.about-us .sec-02 img { width: 100%;}
	.about-us .sec-03 .tabs-container .tab-pane .box h4 br{
		display: none;
	}
	.about-us .sec-03 .box h4.quotes1::before{
	bottom:69%;
}

	
	h2{margin-bottom: 2rem;}
	
	.about-us .sec-03 .tabs-container .tab-pane .box:not(:nth-of-type(1)){
		padding-inline:16px;
	}
}
@media(max-width:1280px){
		.about-us .sec-03 .box h4.quotes1::before{
	bottom:71%;
}
}
@media (max-width:768px) {
	.about-us .sec-02 .main-row{
		gap:24px;
	}
	.about-us .sec-02 .columns:nth-of-type(1){
		order:2;
	}
	.about-us .sec-02 .columns:nth-of-type(2){
		order:1;
	}
	    .about-us .sec-03 .box h4.quotes1::before {
        bottom: 67%;
    }	    .about-us .sec-03 .box h4.quotes2::before {
        bottom: 63%;
    }
	.about-us .sec-03 .tabs-container .tab-pane.active.show{gap:16px;}
	
	.about-us .sec-03 .tabs-container {
		margin-top: 2rem;}
	
	.about-us .sec-04 .box li {
		line-height: 1.8;}

/*	  .about-us .sec-04 .scroll-btn {*/
/*    display: none;  hide on mobile, use touch scroll */
/*  }*/
	
	.about-us .sec-04 .country-list{
	flex-direction: row;}
	  .about-us .sec-05 h4 {
    margin: 2rem auto 1.5rem;
  }
	

}

@media(max-width:576px) {
  .about-us {
    padding-top: 50px;
  }
	
.about-us .sec-03 .tabs-container .tab-pane.active.show{flex-direction: column;}
	
	.about-us .sec-03 .tabs-container .tab-pane .box img{ width:100%;}
	
	    .about-us .sec-03 .box h4.quotes1::before {
        bottom: 78%;
    }	    .about-us .sec-03 .box h4.quotes2::before {
        bottom: 75%;
    }
	
	.about-us .sec-04 .box { min-height: 500px; padding-top: 50px;}

}

@media (max-width:400px) {
	
	
	.about-us .sec-02 article {max-width:100%;}

	.about-us .sec-03 button.your-doctor+.your-doctor{
		margin-left:0px;
		margin-top:20px;
	}
	
	    .about-us .sec-03 .box h4.quotes1::before {
        bottom: 83%;
    }
	
	    .about-us .sec-03 .box h4.quotes2::before {
        bottom: 78%;
    }
	
	.about-us .sec-04 .counter {margin-right:120px;}
	.about-us .sec-04 .scroll-btn.left {
    top: 100%;
    right: 48px;
}
	.about-us .sec-04 .scroll-btn.right {
    top: 100%;
    right: 0px;
}

	
	.about-us .sec-04 .box h4{
	margin-top:1rem;
}
.about-us .sec-04 .box h3{
	margin-bottom:1rem;
}
.about-us .sec-04 .box { min-height: 430px;}
	.about-us .sec-04 .country-list {gap: 16px 24px;}
	
	.about-us .sec-04 .scroll-wrapper {gap: 10px;}
	.about-us .sec-04 .box ul{
		padding-left: 1rem;
	}
	
  .about-us .sec-05 ul {
    gap: 10px;
    padding: 0 5px;
  }

  .about-us .sec-05 .nav-pills .nav-link {
    font-size: 10px;
  }

  .about-us .sec-05 .cards-wrapper {
    padding: 0 10px 30px;
    gap: 20px;
  }

  .about-us .sec-05 .cards-wrapper .cards {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-us .sec-05 .cards-wrapper .cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
	
	.about-us .sec-04 .country-list li {padding: 8px 14px; font-size: 12px;}

}