/* About Section */
.about-section {
  background: #fff;
  padding: 60px 0 0;
}

.about-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.about-img {
  width: 45%;
  position: relative;
}
.about-img img:first-child {
  border-radius: 50px;
}
.about-img img:last-child {
	/* width: 340px; */
	/* position: absolute; */
	/* bottom: -115px; */
	/* right: -100px; */
}
.about-content {
	width: 55%;
}
.about-content h3 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 50px;
  font-weight: 600;
  color: #1387a2;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #515151;
  font-weight: 300;
  text-align: justify;
}

.highlight {
  color: #1387a2;
  font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: url(/assets/images/bg_about_01.svg) no-repeat;
	background-size: cover;
    padding: 60px 0;
    overflow: hidden;
}

/* grid full width */
.vision-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

/* ná»™i dung náº±m trong container */
.vision-content {
    max-width: 1300px;
    padding-left: calc(((100vw - 1300px) / 2) + 23px);
    /* padding-left: 15px; */
    color: #fff;
}


.vision-content {
  color: white;
}

.vision-content h2 {
    color: #fff;
    font-size: 44px;
}
.vision-content h2 .small {
	color: #fff;
}
.vision-list {
  list-style: none;
}

.vision-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  font-weight: 300;
}
.vision-list li::before {
	content:'';
    width: 25px;
    height: 25px;
	position: absolute;
	background: url(/assets/images/ico_tick.svg);
	left: 0;
    top: 3px;
}

.vision-img img {
  width: 100%;
  border-radius: 0 0 0 90px;
}

/* Mission Section */
.mission-section {
    padding: 90px 0;
    overflow: hidden;
	background: #fff;
}

/* grid full width */
.mission-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

/* ná»™i dung náº±m trong container */
.mission-content {
    max-width: 1300px;
    padding-right: calc(((100vw - 1300px) / 2) + 23px);
	padding-left: 30px;
	
}

/* hÃ¬nh náº±m ngoÃ i container */
.mission-img {
    width: 100%;
    height: 100%;
}

.mission-content {
}

.mission-content h2 {
    font-size: 44px;
}
.mission-content h2 .small {
}
.mission-list {
  list-style: none;
}

.mission-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  font-weight: 300;
}
.mission-list li::before {
	content:'';
	width: 20px;
	height: 20px;
	position: absolute;
	background: url(/assets/images/ico_tick.svg);
	left: 0;
    top: 3px;
}

.mission-img img {
  width: 100%;
  border-radius: 0 0 100px 0;
}

.mission-content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

/* Core Values Section */
.values-section {
  padding: 0 0 80px;
}

.values-section .idx_ttl {
  text-align: center;
}
.values-section .idx_ttl .small {
	width: max-content;
    margin: 0 auto 5px;
}
.value-card {
  border-radius: 50px;
  margin-bottom: 20px;
  overflow: hidden;
}

.value-card-content {
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 30px;
  transition: transform 0.4s ease;
}

.value-card:nth-child(1) {
  /* background: #0c5f73; */
}

.value-card:nth-child(2) {
  /* background: #1387a2; */
}

.value-card:nth-child(3) {
  /* background: #5299aa; */
}

.value-text {
	position: sticky;
    top: 60px;
	color: white;
	width: 47%;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.value-text h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  margin-bottom: 15px;
}

.value-icon {
  width: 50px;
  height: 50px;
}

.value-text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}
.value-img {
	width: 53%;
}
.value-img img {
    object-fit: cover;
    border-radius: 10px;
}

.value-card:nth-child(even) .value-card-content {
  flex-direction: row;
}

/* Team Section */
.team-section {
  padding: 60px 0;
  background: url("/assets/images/about_team.svg") center/cover;
}
.team-section .idx_ttl {
  text-align: center;
}
.team-section .idx_ttl .small {
	width: max-content;
    margin: 0 auto 5px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
}
.team-img {
	overflow:hidden;
	  border-radius: 20px;
  margin-bottom: 20px;
}
.team-img:hover img {
	transform: scale(1.1);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
transition: all .3s;
  
}

/*.team-card:first-child .team-img {
  border-radius: 0;
*/

.team-role {
  color: #1387a2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  color: #212121;
}

/* Responsive */
@media (max-width: 1600px) {
	.about-section {
		/* padding: 60px 0; */
	}
	.about-img {
	  /* width: 45%; */
	  /* position: relative; */
	  /* text-align: center; */
	}
	.about-img img:first-child {
	  /* border-radius: 50px; */
	  /* height: 478px; */
	}
	.about-img img:last-child {
		/* width: 260px; */
		/* position: absolute; */
		/* bottom: -90px; */
		/* right: -100px; */
	}
	.vision-section, .mission-section {
		padding: 30px 0;
	}
}
@media (max-width: 1400px) {
	.about-section {
        padding: 30px 0 90px;
    }
	.about-img {
		/* width: 46%; */
	}
	.about-content {
		width: 54%;
	}
	.about-content h2, .about-content h3  {
		font-size: 40px;
	}
	.about-content p {
		/* font-size: 16px; */
	}
	.about-img img:first-child {
        border-radius: 50px;
        /* height: 380px; */
    }
	.about-img img:last-child {
		/* width: 199px; */
		/* position: absolute; */
		/* top: -65px; */
		/* right: 0; */
	}
	
}
@media (max-width: 1200px) {

  .about-grid,
  .vision-grid,
  .mission-grid {
    gap: 40px;
  }

  .value-img {
    width: 500px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .vision-grid,
  .mission-grid {
	flex-wrap: wrap;
  }

  .about-content h2,
  .about-content h3,
  .vision-content h2,
  .mission-content h2,
  .section-header h2 {
    font-size: 36px;
  }

  .value-card-content {
    flex-direction: column !important;
    min-height: auto;
  }

  .value-text {
    padding: 40px 30px;
  }

  .value-img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 30px 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section,
  .vision-section,
  .mission-section,
  .values-section,
  .team-section {
    padding: 30px 0;
  }
.values-section {
	padding: 0 0 30px;
}
  .about-content h2,
  .about-content h3,
  .vision-content h2,
  .mission-content h2,
  .section-header h2 {
    font-size: 28px;
  }

  .section-header h3,
  .section-title h3 {
    font-size: 24px;
  }

  .about-content p,
  .vision-list li,
  .mission-content p,
  .value-text p {
    font-size: 18px;
  }
    .about-img img:first-child {
		height: auto;
	}
	.about-content h2 {
		margin-bottom: 15px;
	}
  .value-card {
    border-radius: 30px;
  }

  .value-text {
    padding: 30px 20px;
  }

  .value-text h3 {
    font-size: 20px;
  }
    .value-text {
        padding: 0;
        width: 100%;
    }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
	.about-img {
		width: 100%;
		/* margin-bottom: 50px; */
	}
	.about-img img:last-child {
		/* width: 180px; */
		/* position: absolute; */
		bottom: -60px;
		right: -80px;
	}
	.about-content {
		width: 100%;
	}
	.vision-wrap ,.mission-wrap {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.vision-content, .mission-content {
		max-width: 100%;
		padding: 0 15px;
	}
	.vision-img {
	}
	.mission-img {
		padding-right: 15px;
		padding-bottom: 20px;
	}
	.value-text {
        padding: 0;
        width: 100%;
    }
	.value-card-content {
		padding: 20px;
		gap: 20px;
	}
	    .value-img {
			padding: 0;
		}
		.value-text p {
			margin: 0;
		}
  .about-content h2,
  .about-content h3,
  .vision-content h2,
  .mission-content h2,
  .section-header h2 {
    font-size: 24px;
  }

  .section-header h3,
  .section-title h3 {
    font-size: 20px;
  }

  .value-card {
    border-radius: 20px;
  }

  .value-card:nth-child(2),
  .value-card:nth-child(3) {
  }
}
