.loading.text-center {
  text-align: center;
}
/* Our Team Page */

.about-overview .tab-container ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.about-overview .tab-container ul li.current_page_item {
  position: relative;
}
.about-overview .tab-container ul li.current_page_item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #52afc7;
}

.about-overview .tab-container ul li a {
  font-size: 15px;
  color: #000 !important;
  padding: 30px 0;
  display: inline-block;
  white-space: nowrap;
}

.our-team {
  padding-top: 61px;
  padding-bottom: 121px;
}
.our-team .team-member-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
}
.our-team .team-member {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height:278px;
  border: 1px solid #ABCAD3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(82, 175, 199, 0.6) 100%);	
}
.our-team .team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.our-team .team-member .content {
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 100%;
  padding-left: 40px;
  padding-right: 20px;
}
.our-team .team-member .content .title {
  color: #7cdbf3;
  margin: 0;
  margin-bottom: 6px;
  line-height: 1;
  font-size: 26px;
  font-weight:600;
  transition: all 0.3s ease-in-out;	
}
.our-team .team-member .content p {
  color: #585858;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.our-team .team-member .content p + p {
  margin-top: 20px;
  margin-bottom: 25px;
}
.our-team .team-member .content a {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.our-team .team-member .content a span {
  font-size: 20px;
}
.our-team .team-member .content a span::before{
	color:#585858;
}
.our-team .team-member:hover img {
  transform: scale(1.1);
}
.our-team .team-member:hover .content .title{
	transform:translatey(-10px);
}
/*-------Awards Listing new section ------*/
.awards-year-listing{
	display:flex;
	flex-wrap:wrap;
	padding-left:0px;
}
.awards-year-listing li{
	width:100%;
	display:flex;
	list-style-type:none;
	/*border:1px solid #025d78;
	border-radius:300px;*/
	min-height:393px;
	padding-left:170px;
	position:relative;
	justify-content:space-between;
}
.awards-year-listing > li::before{
	content:"";
	position:absolute;
	height:50%;
}
.awards-year-listing > li::after{
	content:"";
	position:absolute;
	height:50%;
}
.awards-year-listing > li:nth-child(even)::before{
	left: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 300px 0 0 300px;
    width: 50%;
    border:1px solid #025d78;
    height: 100%;
    border-right: 0px;
}

/*.awards-year-listing > li:nth-child(odd)::before{
	left:0px;
	background:#fff;
	top:-2px;
}*/
.awards-year-listing > li:nth-child(odd)::after{
	right: 0px;
    top: 1px;
    bottom: 0px;
    border-radius: 0px 300px 300px 0px;
    width: 50%;
    border:1px solid #025d78;
    height: 100%;
    border-left: 0px;
}
.awards-year-listing > li:first-child::before{
	border-top:1px solid #025d78;
	width:50%;
	top:-1px;
}
.awards-year-listing > li:first-child::after{
	right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 0px 300px 300px 0px;
    width: 50%;
    border:1px solid #025d78;
    height: 100%;
    border-left: 0px;
	top:-1px;
}
.awards-year-listing > li:last-child::before{
	top:2px;
}
.awards-year-listing > li:last-child .award-content-box::before{
	top:70px;
}
.awards-year-listing li:nth-child(even){
	flex-direction:row-reverse;
}
.awards-year-listing > li:first-child{
	padding-left:0px;
}

/*.awards-year-listing li:nth-child(odd){
	border-left:0px;
	border-top-left-radius:0px;
	border-bottom-left-radius:0px;
	border-bottom:0px;
	border-top:0px;
	margin-top:-1px;
}

*/


.award-content-box{
	width:26%;
	position:relative;
	top:-75px;
	padding-right:70px;
}
.award-content-box::before{
	position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #025d78;
    border-radius: 100%;
    left: 0px;
    top: 68px;
}
.awrd-year{
	font-size: 35px;
    font-weight: 600;
    line-height: 1;
    display: block;
}
.awrd-label{
	font-size: 15px;
    font-weight: 400;
}
.awrd-content{
	padding-top:57px;
}
.awrd-content ul{
	padding-left:0px;
}
.awrd-content ul li{
	list-style-type:none;
	border-radius:0px;
	min-height:auto;
	border:0px !important;
	padding-left:0px;
	flex-direction:unset !important;
}
.awrd-content p,
.awrd-content ul li{
	font-size: 15px;
    font-weight: 400;
}


@media screen and (max-width: 1450px) {
  .our-team .team-member-wrap {
    grid-template-columns: repeat(3, 1fr); /* 4 equal columns */
  }
}
@media screen and (max-width: 1199px){
	.awards-year-listing li{
		padding-left:0px;
		border-radius:0px;
		border-right:0px;
		border-left:0px;
		border-top:1px solid #025d78;
	}
	.awards-year-listing > li:last-child .award-content-box::before{
		top:68px;
	}
	.awards-year-listing > li::before,
	.awards-year-listing > li::after{
		content:none;
	}
	.award-content-box{
		width:31%;
		padding-right:0px;
	}
	
}
@media screen and (max-width: 1024px) {
  .our-team .team-member-wrap {
    grid-template-columns: repeat(2, 1fr); /* 4 equal columns */
  }
  .our-team .team-member .content {
    padding: 0 30px;
  }
  .our-team .team-member .content p {
    font-size: 16px;
    line-height: 25px;
  }
  .about-overview .tab-container ul {
    gap: 65px;
  }

  .about-overview .tab-container ul li a {
    padding: 30px 5px;
  }
	.awards-year-listing{
		row-gap:50px;
	}
	.awards-year-listing li{
		flex-wrap:wrap;
		border:0px !important;
		row-gap: 50px;
	}
	.award-content-box{
		width:100%;
		top:0px;
		position:relative;
	}
	.award-content-box::after{
		content:"";
		position:absolute;
		top:75px;
		left:0px;
		border-top:1px solid #025d78;
		width:100%;
	}
	.awrd-content{
		padding-top:50px;
	}
}
@media screen and (max-width: 600px) {
  .our-team .team-member-wrap {
    grid-template-columns: repeat(1, 1fr); /* 4 equal columns */
  }
  .our-team .team-member .content {
    padding: 0 20px;
  }
  .about-overview .tab-container ul {
    gap: 50px;
    justify-content: left;
  }
  .about-overview .tab-container ul li {
    padding: 0 10px;
  }
  .about-overview .tab-container ul li a {
    padding: 25px 0;
  }
}

/* Our History Page */
.our-history {
  padding-top: 100px;
  padding-bottom: 121px;
}

.our-history .histrory-wrap {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.our-history .dot {
  position: absolute;
  width: 17px;
  height: 17px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.our-history .histrory-wrap .history-item {
  position: relative;
  padding-right: 70px;
  width: 50%;
  text-align: right;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
.our-history .histrory-wrap .history-item:nth-child(odd) {
  margin-left: auto;
  padding-left: 70px;
  text-align: left;
}
.our-history .histrory-wrap .history-item::before {
  position: absolute;
  content: "";
  left: calc(100% - 8.5px);
  top: 5px;
  width: 17px;
  height: 17px;
  background-color: #025d78;
  border-radius: 100%;
}
.our-history .histrory-wrap .history-item:nth-child(odd)::before {
  left: -8.5px;
}
.our-history .histrory-wrap .history-item::after {
  position: absolute;
  content: "";
  right: -2px;
  bottom: 0;
  width: 4px;
  height: calc(100% - 55px);
  background-color: #025d78;
  border-radius: 2px;
}
.our-history .histrory-wrap .history-item:nth-child(odd)::after {
  left: -2px;
  right: auto;
}
.our-history .histrory-wrap .history-item .title {
  font-size: 26px;
  line-height: normal;
  font-weight: 600;
  margin: 0;
  margin-bottom: 50px;
  color: #000;
}
.our-history .histrory-wrap .history-item .content {
  padding-right: 50px;
  color: #000;
  position: relative;
  border-right: 2px dashed transparent; /* Initial dashed border */
  border-image: repeating-linear-gradient(
      to bottom,
      #cdcdcd 0,
      #cdcdcd 5px,
      transparent 5px,
      transparent 10px
    )
    1;
}
.our-history .histrory-wrap .history-item:nth-child(odd) .content {
  padding-left: 50px;
  padding-right: 0;
  border-right: none;
  border-left: 2px dashed transparent; /* Initial dashed border */
  border-image: repeating-linear-gradient(
      to bottom,
      #cdcdcd 0,
      #cdcdcd 5px,
      transparent 5px,
      transparent 10px
    )
    1;
}

.our-history .histrory-wrap .history-item .content .sub-title {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  margin-bottom: 15px;
  color: #000;
}
.our-history .histrory-wrap .history-item .content p {
  font-size: 16px;
  color: #555555;
  line-height: 26px;
  font-weight: 300;
}

@media screen and (max-width: 1450px) {
}
@media screen and (max-width: 1024px) {
  .our-history .histrory-wrap .history-item:nth-child(odd) {
    margin-left: 0;
    width: 100%;
  }
  .our-history .histrory-wrap .history-item {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 70px;
  }
  .our-history .histrory-wrap .history-item .content {
    padding-left: 50px;
    padding-right: 0;
    border-right: none;
    border-left: 2px dashed transparent;
  }
  .our-history .histrory-wrap .history-item::before {
    left: -8.5px;
  }
  .our-history .histrory-wrap .history-item::after {
    left: -2px;
    right: auto;
  }
  .our-history .dot {
    transform: none;
    left: -8.5px;
  }
}
@media screen and (max-width: 600px) {
  .our-history .histrory-wrap {
    width: 90%;
  }
  .our-history .histrory-wrap .history-item:nth-child(odd) {
    padding-left: 30px;
  }
  .our-history .histrory-wrap .history-item {
    padding-left: 30px;
  }
  .our-history .histrory-wrap .history-item .content {
    padding-left: 20px;
  }
  .our-history .histrory-wrap .history-item:nth-child(odd) .content {
    padding-left: 20px;
  }
}

/* Our Partners */

.our-partners {
  padding-top: 61px;
  padding-bottom: 121px;
  overflow: hidden;
}

.partners-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 30px;
  padding: 0;
  margin: 0;
}
.partners-list {
  padding: 0 64px;
}

.partners-list li {
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 210px;
  min-height: 135px;
}

.partners-list img {
  width: 100%;
  max-width: max-content;
  object-fit: contain;
}
@media screen and (max-width: 1450px) {
  .partners-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
  .partners-list {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .partners-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .partners-list {
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .partners-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .partners-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Our awards */
.our-awards {
  padding: 180px 0;
}
.our-awards .awards-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #025d78;
  border-left: none;
  border-radius: 0 300px 300px 0;
  gap: 180px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 393px;
  position: relative;
}
.our-awards .awards-list::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 25%;
  height: 10px;
  background-color: #fff;
}
.our-awards .awards-list li {
  position: relative;
  top: -77px;
}
.our-awards .awards-list li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #025d78;
  border-radius: 100%;
  left: 0;
  top: 70px;
}
.our-awards .awards-list li:nth-child(4),
.our-awards .awards-list li:last-child {
  top: -107px;
}
.our-awards .awards-list li:nth-child(4) {
  margin-left: auto;
}
.our-awards .awards-list li .year {
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.our-awards .awards-list li .year-label {
  font-size: 15px;
  font-weight: 400;
}
.our-awards .awards-list li ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-width: 638px;
  margin-top: 55px;
}
.our-awards .awards-list li ul li {
  font-size: 15px;
  font-weight: 400;
  top: 0 !important;
  width:100%;	
}
.our-awards .awards-list li ul li + li {
  margin-top: 5px;
}
.our-awards .awards-list li ul li::before {
  display: none;
}

@media screen and (max-width: 1450px) {
  .our-awards .awards-list li:nth-child(4),
  .our-awards .awards-list li:last-child {
    top: 3px;
  }
  .our-awards .awards-list {
    gap: 70px;
  }
  .our-awards .awards-list li ul {
    max-width: 465px;
  }
  .our-awards .awards-list::before {
    width: 22%;
  }
}
@media screen and (max-width: 1199px){
	.our-awards{
		padding:100px 0px;
	}
}
@media screen and (max-width: 870px){
	.our-awards{
		padding:70px 0px;
	}
}
@media screen and (max-width: 480px){
	.our-awards{
		padding:50px 0px;
	}
}