@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");
@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
a {
  color: #333;
  text-decoration: none;
}

.btn {
  font-size: 16px;
  color: #333;
  border-radius: 0;
}

.btn,
a,
.btn:hover {
  transition: color 0.25s ease;
}

.btn:hover,
.btn.focus {
  color: #3D529D;
  transition: all 0.3s linear;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

button:focus {
  outline: none;
}

::-moz-selection {
  background: #3D529D;
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: #3D529D;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #3D529D;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #3D529D;
  color: #FFF;
  text-shadow: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: #FBFBFB;
  font-family: "SF Pro Display", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  line-height: 1.8em;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

.btn-link {
  color: #333;
  word-break: normal;
  word-break: break-all;
  word-break: keep-all;
  font-size: 0.75em;
  text-decoration: underline;
}

.btn-link:hover {
  color: #8B6D38;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #333;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 700;
  font-style: normal;
}

*,
:before,
:after {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  height: 100%;
}

p {
  word-wrap: break-word;
  line-height: 200%;
  font-size: 0.875em;
}

a:hover {
  text-decoration: none;
  color: #000;
  transition: all 0.3s linear;
}

.red {
  color: #eb5757;
}

.form-control {
  font-size: 0.875em;
  border-color: #828282;
  height: calc(1.5em + 0.75rem + 9px);
  border-radius: 4px;
  color: #BDBDBD;
}
.form-control::-moz-placeholder {
  color: #BDBDBD;
}
.form-control::placeholder {
  color: #BDBDBD;
}

.form-select {
  color: #BDBDBD;
  font-size: 0.875em;
  border-color: #828282;
  height: calc(1.5em + 0.75rem + 9px);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3e%3ccircle cx='10' cy='10.5' r='10' fill='url(%23paint0_linear_73_185)'/%3e%3cpath d='M5 8.5L10 13.5L15 8.5' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_73_185' x1='17.6928' y1='0.499998' x2='1.71848' y2='5.6129' gradientUnits='userSpaceOnUse'%3e%3cstop offset='0.04' stop-color='%23D5AF66'/%3e%3cstop offset='0.515' stop-color='%23B08436'/%3e%3cstop offset='1' stop-color='%23D5AF66'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-size: inherit;
}

.form-check-input {
  width: 20px;
  height: 20px;
}

section {
  padding: 60px 0;
}

.small,
small {
  font-size: 0.75em;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 920px;
  }
}
.title {
  color: #333;
  text-align: center;
  font-weight: 700;
  font-size: 2.25em;
  position: relative;
  margin-bottom: 50px;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff!important;
}
.navbar .container {
  max-width: 1300px;
}

.navbar-collapse {
  display: flex;
  justify-content: center;
  flex-grow: 0;
}

.navbar-nav {
  display: flex;
  justify-content: center;
}
.navbar-nav .dropdown-menu {
  display: block;
  /* Để không bị ảnh hưởng khi hover */
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-link {
  font-size: 13px;
  color: #333;
}

.box-nav-icon {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.box-nav-icon .nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #20B8CE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  line-height: 1em;
  color: #fff;
}
.box-nav-icon .nav-icon i {
  position: relative;
  top: 1px;
}
.box-nav-icon span {
  font-size: 32px;
  font-weight: 600;
  font-family: "din-2014", sans-serif;
}
.box-nav-icon span i {
  color: #24C619;
  font-size: 24px;
}
.box-nav-icon .btn {
  border-radius: 100px;
  background: var(--LINE, #24C619);
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: #fff;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
}
.box-nav-icon .btn:hover {
  background: #13890b;
}
.box-nav-icon .btn i {
  margin-right: 10px;
  font-size: 1.3em;
}

.section_banner {
  background-size: cover;
  height: auto;
  padding: 0;
  position: relative;
}
.section_banner .container {
  max-width: 1080px;
}
.section_banner .box-estecenter-info {
  position: relative;
  height: 100%;
}
.section_banner .estecenter-info {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  max-width: 500px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 13px;
  max-width: 370px;
  padding-left: 120px;
}
.section_banner .estecenter-info::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 10px;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
.section_banner .estecenter-info .info-image {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: -20px;
  left: 10px;
}
.section_banner .estecenter-info h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  color: #3D529D;
  text-align: justify;
  margin-bottom: 5px;
}
.section_banner .estecenter-info p {
  font-size: 10px;
  line-height: 1.3em;
  color: #3D529D;
  text-align: justify;
}

.section_infomations {
  padding: 0;
}
.section_infomations .container {
  max-width: 1080px;
}
.section_infomations .btn_line {
  border: none;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px 10px 0px 0px;
  background: #24C619;
  position: relative;
  width: 100%;
  padding: 10px 15px;
}
.section_infomations .btn_line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
  background: #24C619;
  top: -10px;
}
.section_infomations .btn_line i {
  margin-right: 10px;
  display: inline-block;
  position: relative;
}
.section_infomations .btn_line span {
  position: relative;
  color: #fff;
  font-weight: 700;
  line-height: 140%;
  font-size: 18px;
  text-align: left;
  margin-right: 10px;
  font-family: "Inter", sans-serif;
}
.section_infomations .info-circle {
  background-color: #0056b3;
  color: #fff;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.section_infomations p {
  font-size: 16px;
  color: rgb(61, 82, 157);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0;
  text-align: center;
}
.section_infomations .info_item {
  display: flex;
  align-items: center;
}
.section_infomations .info_item p span {
  display: block;
}
.section_infomations .info_item p span sub {
  bottom: 0;
  vertical-align: super;
  font-weight: 700;
}

.section_definitely {
  background: linear-gradient(101deg, rgba(98, 202, 192, 0.1) 0%, rgba(32, 184, 206, 0.1) 100%), #FFF;
}
.section_definitely .definitely_content {
  max-width: 605px;
  margin: 0 auto;
}
.section_definitely .definitely_content h3 {
  text-align: center;
  color: #3D529D;
  margin: 10px 0;
  font-weight: 700;
  line-height: normal;
  font-size: 20px;
}
.section_definitely .definitely_content h3 span {
  font-size: 32px;
}
.section_definitely .definitely_content .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (9 / 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}
.section_definitely .definitely_content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_turkishhair .container {
  max-width: 920px;
}
.section_turkishhair .card {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  background: var(--Gray-6, #F2F2F2);
}
.section_turkishhair .card .card-body {
  padding: 20px;
  padding-bottom: 0;
}
.section_turkishhair .card .card-footer {
  margin-top: 25px;
  border-radius: 0px 0px 10px 10px;
  background: linear-gradient(101deg, rgba(98, 202, 192, 0.1) 0%, rgba(32, 184, 206, 0.1) 100%);
  border-top: none;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #333;
}
.section_turkishhair .card .card-footer span {
  color: #3D529D;
  margin-left: 10px;
}
.section_turkishhair .before-after {
  position: relative;
}
.section_turkishhair .before-after img {
  border-radius: 5px;
}
.section_turkishhair .badge {
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 16px;
  padding: 5px 10px;
  max-width: 88px;
  border: 2px solid var(--white, #FFF);
  border-radius: 0;
  background: var(--primary, #3D529D);
}
.section_turkishhair .bg_before {
  background: #708DAC;
}
.section_turkishhair .bg_after {
  background: #3D529D;
}
.section_turkishhair .bi-arrow-right {
  font-size: 24px;
  color: #333;
  align-self: center;
}
.section_turkishhair .btn_viewTreatment {
  border-radius: 100px;
  background: var(--primary, linear-gradient(101deg, #62CAC0 0%, #20B8CE 100%));
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 294px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section_turkishhair .btn_viewTreatment:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
}

.section_eightAssurances {
  background: linear-gradient(101deg, rgba(98, 202, 192, 0.1) 0%, rgba(32, 184, 206, 0.1) 100%), #FFF;
  /* Custom Styles */
}
.section_eightAssurances .container {
  max-width: 940px;
}
.section_eightAssurances h2 {
  margin-bottom: 10px;
}
.section_eightAssurances h3 {
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #62CAC0;
  margin-bottom: 50px;
  text-align: center;
}
.section_eightAssurances .box-point {
  position: relative;
  margin: auto;
}
.section_eightAssurances .box_white {
  border-radius: 10px;
  background: var(--white, #FFF);
  padding: 50px;
  margin-top: 50px;
}
.section_eightAssurances .box_white h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.section_eightAssurances .box_white .box_white_top {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.section_eightAssurances .box_white .box_white_top img {
  margin-right: 20px;
}
.section_eightAssurances .box_white .box_white_top p {
  margin-bottom: 0;
}
.section_eightAssurances .card {
  border: none;
  background: none;
  position: relative;
}
.section_eightAssurances .card h5 {
  position: absolute;
  left: -20px;
  top: 0;
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  line-height: 1em;
  font-weight: 700;
  color: #62CAC0;
  margin-bottom: 0;
}
.section_eightAssurances .card h5 span {
  font-size: 12px;
  display: block;
  line-height: 1em;
  text-align: center;
  font-weight: 400;
}
.section_eightAssurances .card h6 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.section_eightAssurances .card .rounded-circle {
  width: 160px;
  height: 160px;
}
.section_eightAssurances img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section_eightAssurances .small {
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #333;
}
.section_eightAssurances .small a {
  color: #62CAC0;
  font-weight: 700;
}

.section_prosCons {
  background: linear-gradient(111deg, #62CAC0 0.01%, #20B8CE 100.01%);
}
.section_prosCons .container {
  max-width: 990px;
}
.section_prosCons h2 {
  color: #fff;
}
.section_prosCons .main_prosCons {
  border-radius: 10px;
  background: var(--white, #FFF);
  padding: 30px 30px 20px;
  margin-bottom: 30px;
  border: none;
}
.section_prosCons .main_prosCons h3 {
  font-size: 30px;
}
.section_prosCons .main_prosCons h3 span {
  color: #3D529D;
}
.section_prosCons .main_prosCons .subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 20px;
  color: #333;
}
.section_prosCons .main_prosCons h6 {
  border-radius: 100px;
  background: var(--primary, #3D529D);
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  color: #fff;
}
.section_prosCons .main_prosCons h6.disadvantages {
  background: #708DAC;
}
.section_prosCons .main_prosCons ul {
  list-style: disc outside;
  padding-left: 2rem;
}
.section_prosCons .main_prosCons ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  color: #333;
}
.section_prosCons .main_prosCons ul.merit li:nth-of-type(3), .section_prosCons .main_prosCons ul.merit li:nth-of-type(4), .section_prosCons .main_prosCons ul.merit li:nth-of-type(5) {
  font-size: 15px;
  font-weight: 700;
  color: #3D529D;
}
.section_prosCons .main_prosCons .flatRate {
  position: relative;
}
.section_prosCons .main_prosCons .flatRate span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  margin: 0 auto;
  display: block;
  width: 135px;
  height: 135px;
  border-radius: 135px;
  background: #3D529D;
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_prosCons .box_additionalOptions {
  margin-top: 115px;
}
.section_prosCons .box_additionalOptions .row {
  --bs-gutter-x: 20px;
  /* Thiết lập khoảng cách ngang giữa các cột */
  --bs-gutter-y: 20px;
  /* Thiết lập khoảng cách dọc giữa các cột (nếu cần) */
}
.section_prosCons .box_additionalOptions .card {
  border: none;
  padding: 90px 20px 20px 20px;
  border-radius: 10px;
  background: var(--white, #FFF);
  position: relative;
}
.section_prosCons .box_additionalOptions .card .img_options {
  position: absolute;
  left: 0;
  right: 0;
  top: -95px;
  margin: auto;
}
.section_prosCons .box_additionalOptions .card h5 {
  font-size: 24px;
  font-weight: 700;
}
.section_prosCons .box_additionalOptions .card h6 {
  border-radius: 100px;
  background: var(--primary, #3D529D);
  display: flex;
  padding: 2px 20px;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.section_prosCons .box_additionalOptions .card h6:nth-of-type(2) {
  background: #708DAC;
}
.section_prosCons .box_additionalOptions .card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: #3D529D;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_prosCons .box_additionalOptions .card ul {
  list-style: disc outside;
  padding-left: 2rem;
}
.section_prosCons .box_additionalOptions .card ul li {
  font-size: 14px;
  line-height: 1.5em;
  text-align: left;
  color: #333;
}

.section_unlimitedPlanting {
  background: linear-gradient(101deg, rgba(98, 202, 192, 0.1) 0%, rgba(32, 184, 206, 0.1) 100%), #FFF;
}
.section_unlimitedPlanting .box_greatContent {
  padding: 50px;
  border-radius: 10px;
  background: var(--white, #FFF);
  margin: 50px 0;
  text-align: center;
}
.section_unlimitedPlanting .box_greatContent .custom-gutter {
  --bs-gutter-x: 20px;
}
.section_unlimitedPlanting .box_greatContent h3 {
  font-size: 16px;
  color: #fff;
  border-radius: 100px;
  background: var(--primary, #3D529D);
  display: flex;
  padding: 5px 30px;
  justify-content: center;
  align-items: center;
  max-width: 160px;
  margin: 0 auto 10px;
}
.section_unlimitedPlanting .box_greatContent h4 {
  font-size: 24px;
  letter-spacing: 1.2px;
  color: var(--primary, #3D529D);
  margin-bottom: 10px;
}
.section_unlimitedPlanting .box_greatContent p {
  margin-bottom: 30px;
  line-height: 160%;
}
.section_unlimitedPlanting .box_greatContent:nth-of-type(2) {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
.section_unlimitedPlanting .box_greatContent:nth-of-type(2) .banner_offertours {
  /* box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1); */
}
.section_unlimitedPlanting .card {
  border-radius: 10px;
  border: none;
  position: relative;
}
.section_unlimitedPlanting .card .card-number {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px 0px;
  background: var(--primary, #3D529D);
  padding: 4px 10px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-family: "din-2014", sans-serif;
}
.section_unlimitedPlanting .card .card-title {
  font-size: 16px;
  line-height: 1em;
  color: #fff;
  margin: 0;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  background: var(--primary, #3D529D);
  padding: 10px 0;
  min-height: 36px;
}
.section_unlimitedPlanting .card .card-title span {
  color: #FFE356;
}
.section_unlimitedPlanting .card .card-title.card-title-custom {
  font-size: 13px;
}

.section_differences {
  background: url("../images/bg_differences.png") no-repeat bottom center;
  background-size: cover;
}
.section_differences h2 {
  margin-bottom: 20px;
  line-height: 1em;
}
.section_differences h3 {
  text-align: center;
  color: var(--Primary_text, #62CAC0);
  font-size: 24px;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}
.section_differences .box_differences {
  padding: 0px 20px 20px 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 50px;
}
.section_differences .box_differences p {
  margin-bottom: 0;
  margin-top: 20px;
}
.section_differences .box_differences p a {
  color: var(--primary, #3D529D);
  font-weight: 700;
  font-size: 16px;
}

.section_byTurkish {
  padding: 50px;
  background: linear-gradient(90deg, #FFF 50%, rgba(234, 249, 251, 0) 76.5%);
  background-image: url("../images/bg_ESTECENTER.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% top;
  text-align: left;
}
.section_byTurkish h1 {
  color: var(--Primary_text, #62CAC0);
  font-size: 24px;
}
.section_byTurkish h2 {
  text-align: left;
  margin-bottom: 20px;
}
.section_byTurkish h3 {
  color: #62CAC0;
  font-size: 1em;
  margin-bottom: 0;
}
.section_byTurkish p {
  margin-bottom: 20px;
}

.section_contact {
  background: linear-gradient(0deg, #3D529D 0%, #3D529D 100%), linear-gradient(339deg, rgba(255, 255, 255, 0) 52.79%, rgba(255, 255, 255, 0.25) 95.95%), linear-gradient(77deg, rgba(87, 98, 101, 0.25) 11.6%, rgba(158, 161, 161, 0.25) 25.31%, rgba(132, 139, 138, 0.25) 48.06%, rgba(87, 98, 101, 0.25) 55.72%, rgba(87, 98, 101, 0.25) 77.23%, rgba(117, 122, 123, 0.25) 85.34%, rgba(87, 98, 101, 0.25) 91.31%), #3D529D;
  background-blend-mode: color, overlay, normal, normal;
}
.section_contact h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.section_contact h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.section_contact .line-box {
  border-radius: 10px;
  background: var(--LINE, #24C619);
  padding: 10px 30px;
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section_contact .line-box:hover {
  background: #13890b;
}
.section_contact .line-box h5 {
  color: #fff;
  font-size: 24px;
  text-align: left;
}
.section_contact .line-box .btn {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  border-radius: 10px;
  background: var(--white, #FFF);
  color: var(--LINE, #24C619);
  display: flex;
  padding: 10px 20px 10px 52px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.section_contact .line-box .btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../images/arrow.svg") no-repeat;
}
.section_contact .line-box i {
  font-size: 2em;
}
.section_contact .line-box p {
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: -0.1em;
}
.section_contact .contact-box {
  border-radius: 10px;
  background: var(--white, #FFF);
  padding: 5px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-bottom: 20px;
  min-height: 80px;
}
.section_contact .contact-box i {
  color: var(--primary, #3D529D);
  font-size: 2em;
}
.section_contact .contact-box h5 {
  font-family: "din-2014", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  color: var(--primary, #3D529D);
}
.section_contact .contact-box h5 a {
  color: #3D529D;
}
.section_contact .contact-box .small {
  font-family: "din-2014", sans-serif;
  color: var(--primary, #3D529D);
  font-weight: 400;
  margin-bottom: 0;
}
.section_contact .contact-box .small span {
  font-size: 14px;
}
.section_contact .contact-email {
  min-height: 80px;
  border-radius: 10px;
  background: var(--white, #FFF);
  padding: 5px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.section_contact .contact-email i {
  color: var(--primary, #3D529D);
  font-size: 2em;
}
.section_contact .contact-email h6 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary, #3D529D);
}
.section_contact .contact-email h6 a {
  color: #3D529D;
}

.section_steps {
  background: #EAF9FA;
}
.section_steps .custom-gutter {
  --bs-gutter-x: 20px;
  /* Đặt khoảng cách ngang giữa các cột */
}
.section_steps .step-box {
  padding: 50px 15px 15px 15px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section_steps .step-box:hover {
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 198, 192, 0.3);
}
.section_steps .step-box::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 10px;
  background: url("../images/arrow_right.svg") no-repeat;
}
.section_steps .step-box.step-box-last::after {
  display: none;
}
.section_steps .step-box .step-number {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #62CAC0;
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_steps .step-box h5 {
  font-size: 1em;
  font-weight: 700;
  margin: 20px 0;
}
.section_steps .step-box p {
  margin-bottom: 0;
  font-size: 12px;
  text-align: left;
}
.section_steps .btn_learMore {
  font-weight: 700;
  color: #fff;
  border-radius: 100px;
  padding: 15px;
  background: var(--primary, linear-gradient(101deg, #62CAC0 0%, #20B8CE 100%));
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  min-width: 294px;
  margin: 50px auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section_steps .btn_learMore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
}
.section_steps .advisor {
  margin: 60px 0 0;
  border-radius: 10px;
  background: #FFF;
  padding: 30px;
}
.section_steps .advisor .advisor-card {
  display: flex;
  align-items: flex-end;
}
.section_steps .advisor .advisor-card .advisor-img {
  margin-right: 20px;
}
.section_steps .advisor .advisor-card .advisor-info h5 {
  font-size: 1em;
  color: #000;
}
.section_steps .advisor .advisor-card .advisor-info p {
  color: #000;
  font-size: 12px;
}
.section_steps .advisor .advisor-card .advisor-info p span {
  font-size: 16px;
}

.banner_B {
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.section_consultation {
  padding: 50px 0px;
  background: var(--primary, linear-gradient(101deg, #62CAC0 0%, #20B8CE 100%));
}
.section_consultation .container {
  max-width: 1200px;
}
.section_consultation .consult-box {
  text-align: center;
}
.section_consultation .consult-box .tag {
  padding: 6px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: var(--white, #FFF);
  color: var(--Primary_text, #62CAC0);
  font-weight: 700;
  line-height: 1em;
  min-width: 136px;
  max-width: 168px;
  margin: 0 auto 10px;
}
.section_consultation .consult-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.section_consultation .consult-box img {
  width: 100%;
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.section_consultation .consult-box img:hover {
  box-shadow: none;
}

.section_infomation h2 {
  margin-bottom: 30px;
  color: #0E0E0E;
}
.section_infomation .info-item {
  border-bottom: 1px dotted #BDBDBD;
  margin-bottom: 10px;
}
.section_infomation .info-item h5 {
  color: var(--Primary_text, #62CAC0);
  font-size: 1em;
  font-weight: 700;
}
.section_infomation .info-item a {
  color: #3D529D;
  font-weight: 700;
  position: relative;
}
.section_infomation .info-item a::before {
  content: "";
  width: 80%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #3D529D;
}

footer {
  background: var(--primary, #3D529D);
  padding: 70px 0px 30px 0px;
  color: #fff;
}

footer a{
  text-decoration: none;
}

footer a:hover{
  text-decoration: underline;
}

footer .container {
  max-width: 1120px;
}

.footer-row{
  padding: 0 1.8rem;
}

footer .address h6 {
  letter-spacing: 1.6px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}
footer .address p {
  margin-bottom: 10px;
  line-height: 1.5em;
}
footer .address .small {
  font-size: 9px;
}
footer .address .social-icons a {
  color: #fff;
}
footer .address .social-icons a:hover {
  color: #f1f1f1;
}
footer .address .social-icons i {
  font-size: 1.2em;
}
footer h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
footer h6:hover a {
  text-decoration: underline;
  color: #fff;
}
footer h6 a {
  color: #fff;
}
footer ul {
  list-style: disc outside;
  padding-left: 2rem;
}
footer ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}
footer ul li:hover a {
  text-decoration: underline;
  color: #fff;
}
footer ul li a {
  color: #fff;
}
footer .copyright {
  font-size: 10px;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0072ff;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 114, 255, 0.3);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.navbar-toggler {
  border: none;
  position: absolute;
  right: 5px;
  top: 15px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("../images/hamburger.svg");
}

.section_contact.contactus {
  background: linear-gradient(101deg, rgba(98, 202, 192, 0.1) 0%, rgba(32, 184, 206, 0.1) 100%);
}
.section_contact.contactus h2 {
  color: #62CAC0;
}
.section_contact.contactus .contact-box {
  background: #3D529D;
}
.section_contact.contactus .contact-box i {
  color: #fff;
}
.section_contact.contactus .contact-box h5 {
  color: #fff;
}
.section_contact.contactus .contact-box h5 a {
  color: #fff;
}
.section_contact.contactus .contact-box .small {
  color: #fff;
}
.section_contact.contactus .contact-email {
  background: #3D529D;
}
.section_contact.contactus .contact-email i {
  color: #fff;
}
.section_contact.contactus .contact-email h6 {
  color: #fff;
}

.box_line {
  padding: 10px 15px;
  border-radius: 10px 0px 10px 10px;
  background: #24C619;
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  max-width: 240px;
  position: fixed;
  z-index: 100;
  top: 70%;
  right: -300px;
  /* Ẩn hoàn toàn bên phải */
  transform: translateY(-50%);
  transition: right 0.5s ease;
}
.box_line:hover {
  background: #13890b;
  transition: all 0.3s linear;
}
.box_line.active {
  right: 20px;
  /* Vị trí khi box xuất hiện */
}
.box_line .btn_close {
  position: absolute;
  right: -10px;
  top: -10px;
}
.box_line .btn_line {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box_line .btn_line i {
  color: #fff;
}
.box_line .btn_line span {
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  color: #FFF;
  font-family: "Inter";
  text-align: left;
  margin-left: 10px;
}

/* Keyframe Animation (thêm nếu bạn muốn hiệu ứng mượt hơn) */
@keyframes slideIn {
  from {
    right: -300px;
  }
  to {
    right: 20px;
  }
}
.menu-close {
  display: none;
}

.menu-content-area {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .menu-content-area {
      align-items: baseline;
      flex-direction: column;
      width: 90%;
      max-width: 400px;
      padding: 60px 10px;
      border-radius: 10px;
      overflow-y: auto;
      max-height: 100vh;
  }
}


.dropdown-menu {
  border: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-menu .dropdown-item {
  font-size: 13px;
}

.dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.nav-box-contact {
  display: none;
  margin-top: 20px;
}
.nav-box-contact .line-box {
  display: block;
  border-radius: 5px;
  background: var(--LINE, #24C619);
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 20px;
  text-decoration: none;
}
.nav-box-contact .line-box h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  color: #fff;
}
.nav-box-contact .line-box .btn {
  border-radius: 10px;
  background: var(--white, #FFF);
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
  color: var(--LINE, #24C619);
  font-family: "Inter";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin: 10px auto;
  width: 100%;
  position: relative;
}
.nav-box-contact .line-box .btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../images/arrow.svg") no-repeat;
}
.nav-box-contact .line-box p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}
.nav-box-contact .contact-box {
  border-radius: 5px;
  background: var(--white, #FFF);
  padding: 5px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3D529D;
  margin-bottom: 20px;
  text-decoration: none;
}
.nav-box-contact .contact-box i {
  color: #3D529D;
}
.nav-box-contact .contact-box h5 {
  color: #3D529D;
  font-size: 32px;
  font-weight: 700;
  font-family: "din-2014", sans-serif;
}
.nav-box-contact .contact-box h5 a {
  color: #3D529D;
}
.nav-box-contact .contact-box p {
  margin-bottom: 0;
}
.nav-box-contact .contact-email {
  border-radius: 5px;
  background: var(--white, #FFF);
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-box-contact .contact-email i {
  color: #3D529D;
  font-size: 1.5em;
}
.nav-box-contact .contact-email h6 {
  font-size: 20px;
  color: #3D529D;
  line-height: 1em;
}
.nav-box-contact .contact-email h6 a {
  color: #3D529D;
}

.contact-footer {
  padding: 5px 10px;
  background: #fff;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}
.contact-footer.hidden {
  opacity: 0;
  transform: translateY(20px);
  /* Di chuyển phần tử xuống 20px khi ẩn */
}
.contact-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  color: #fff;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  width: 50%;
}
.contact-footer a:first-of-type {
  background: var(--primary, #3D529D);
  margin-right: 5px;
}
.contact-footer a:first-of-type:hover {
  background: #2a3c7e;
}
.contact-footer a:last-of-type {
  background: var(--LINE, #24C619);
  margin-left: 5px;
}
.contact-footer a:last-of-type:hover {
  background: #17980e;
}
.contact-footer a:last-of-type i {
  font-size: 1.5em;
}

@media (max-width: 1300px) {
  .box-nav-icon {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: #fff;
  }
  .dropdown-menu .dropdown-item {
    color: #fff;
    font-weight: 700;
    background: transparent;
  }
  .navbar-nav .dropdown-menu {
    background: transparent;
    list-style: disc outside;
    padding-left: 2em;
    color: #fff;
  }
  .navbar-nav .dropdown .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    position: static;
    /* Loại bỏ thuộc tính position để menu hiển thị đầy đủ trong mobile */
    visibility: visible;
  }
  .menu-overlay {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 82, 157, 0.95);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .menu-overlay.show {
    top: 0;
    transform: translateY(0);
  }
  /* .menu-content {
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 100vh;
  } */
  .menu-content-area .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2em;
  }
  .menu-close {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
  }
  .navbar-toggler {
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  .nav-box-contact {
    display: block;
  }
  .section_infomations {
    padding: 15px 0;
  }
  .section_infomations p {
    text-align: left;
    width: 90%;
    font-size: 12px;
  }
  .section_infomations .btn_line {
    display: none;
  }
  .section_infomations .info_item p span {
    display: inline-block;
  }
  .contact-footer {
    display: flex;
  }
}
@media (max-width: 843px) {
  .navbar-brand img {
    width: 142px;
  }
  .title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .section_eightAssurances {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section_eightAssurances .box_white {
    padding: 50px 20px;
    margin-left: -12px;
    margin-right: -12px;
  }
  .section_eightAssurances .box_white h2 {
    font-size: 20px;
    letter-spacing: -0.1em;
  }
  .section_eightAssurances .box_white .box_white_top {
    flex-direction: column;
  }
  .section_eightAssurances .card h6 {
    font-size: 16px;
  }
  .section_turkishhair .card .card-footer {
    font-size: 14px;
  }
  .section_prosCons .main_prosCons {
    padding: 30px 20px 20px 20px;
  }
  .section_prosCons .main_prosCons h3 {
    font-size: 24px;
    margin-top: 110px;
    text-align: center;
    letter-spacing: -0.1em;
  }
  .section_prosCons .main_prosCons .subtitle {
    font-size: 16px;
    text-align: center;
  }
  .section_prosCons .main_prosCons ul.merit {
    margin-bottom: 32px;
  }
  .box_additionalOptions .card {
    margin-bottom: 90px;
  }
  .box_additionalOptions .card.last-card {
    margin-bottom: 0;
  }
  .section_unlimitedPlanting .box_greatContent {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
  }
  .section_unlimitedPlanting .box_greatContent:nth-of-type(2) {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section_unlimitedPlanting .box_greatContent:nth-of-type(2) img {
    margin: auto;
  }
  .section_unlimitedPlanting .card .card-title {
    font-size: 12px;
    min-height: auto;
  }
  .section_unlimitedPlanting .card .card-title.card-title-custom {
    font-size: 12px;
  }
  .section_differences h2 {
    line-height: 1.5em;
  }
  .section_differences h3 {
    font-size: 20px;
  }
  .section_differences .box_differences p {
    text-align: left;
  }
  .section_byTurkish {
    padding-left: 20px;
    padding-right: 20px;
    background-image: url("../images/bg_ESTECENTER_sp.png");
  }
  .section_byTurkish h1 {
    font-size: 16px;
  }
  .section_contact h1 {
    font-size: 16px;
  }
  .section_steps .step-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
  }
  .section_steps .step-box::after {
    top: inherit;
    left: 0;
    bottom: -17px;
    transform: rotate(90deg);
  }
  .section_steps .step-box .step-number {
    position: relative;
    top: 0;
    margin: inherit;
    margin-right: 10px;
  }
  .section_steps .step-box .step-img {
    min-width: 80px;
  }
  .section_steps .step-box .step-content {
    text-align: left;
    padding-left: 10px;
    width: 50%;
  }
  .section_steps .step-box h5 {
    margin: 0;
  }
  .section_steps .advisor {
    padding: 15px;
  }
  .section_steps .advisor .advisor-card {
    flex-direction: column;
    align-items: normal;
  }
  .section_steps .advisor .advisor-card .advisor-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .section_consultation .consult-box {
    margin-bottom: 20px;
  }
  .section_consultation .consult-box:nth-of-type(2) {
    margin-bottom: 0;
  }
  footer .address {
    text-align: center;
  }
  footer h6 {
    margin-bottom: 5px;
  }
  footer .copyright {
    margin-top: 30px;
  }
}
@media (max-width: 434px) {
  .section_banner .estecenter-info {
    margin-left: -12px;
    margin-right: -12px;
    max-width: none;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -2px;
  }
  .section_banner .estecenter-info::after {
    right: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 375px) {
  .menu-content-area .nav-link {
    line-height: 1em;
  }
  .nav-box-contact .line-box {
    margin-bottom: 10px;
  }
  .nav-box-contact .contact-box {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=styles.css.map */