html { 
  scroll-behavior: smooth;
}
* {
box-sizing: border-box;
outline: none;
}
body {
  margin: 0;
  padding: 0 1rem;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: var(--background-color);
  color: #333333;
  font-family: 'Montserrat', sans-serif;
}
h1, h2, h3 {
font-weight: bold !important;
}
p {
text-align: justify;
}
:root {
  --background-color: #e0e0e0;
  --color-azka: #4caf50;
  --color-orange: #ff9800;
  --color-green: #388e3c;
  --color-text: #333333;
  --color-azkatreem: #9d2a44;
  --color-azkanguoilon: #18427f;
  --color-azkanhomui: #891d5b;
  --color-azkaxoang: #ca6928;
  --color-azkaxitxoang: #107493;
  --color-azkaphoi: #076535;
  --color-main: #373b69;
}

/* Header */
header {
width: 100%;
overflow: hidden;
position: fixed;
top: 0px;
left: 0px;
z-index: 99;
text-align: center;
justify-content: center;
align-items: center;
display: flex;
flex-wrap: wrap;
max-height: 7vh;
box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
transition: top 0.5s ease;
background-color: var(--color-main);
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
header .logo {
flex: 1;
}
header .content-header {
flex: 4;
}
header .menu {
flex: 1;
}
.content-header span {
font-size: 1.3rem;
text-transform: uppercase;
font-weight: bold;
color: var(--background-color);
}
.title {
display: flex;
width: 69ch;
overflow: hidden;
white-space: nowrap;
border-right: 4px solid white;
animation: typing 10s steps(69) 1s infinite alternate, flashin-border 0.75s step-end infinite alternate;
}
@keyframes typing {
0% {
  width: 0ch;
}
20% {
  width: 69ch;
}
80% {
  width: 69ch;
}
100% {
  width: 0ch;
}
}
@keyframes flashin-border {
0% {
  border-color: white;
}
50% {
  border-color: transparent;
}
100% {
  border-color: white;
}
}
.logo img {
width: 9vw;
}
#menu-hiden {
position: fixed;
z-index: 1;
top: 0;
left: 0;
display: none;
}
#menu-hiden .spinner {
background-color: var(--color-main);
}
.head-sticky {
z-index: 90;
position: sticky;
top: 0;
justify-content: center;
align-items: center;
background-color: var(--color-azka);
display: flex;
flex-wrap: wrap;
max-height: 9vh;
width: 39%;
border: solid white;
border-radius: 5px;
color: white;
}
.head-sticky .sidebarIconToggle {
top: 50%;
transform: translateY(-50%);
}

.fa-arrow-turn-up {
transform: rotate(90deg);
}
li:hover .fa-arrow-turn-up {
transform: rotate(180deg);
transition: 0.5s;
}

/* Sidebar */
input[type="checkbox"]:checked ~ #sidebarMenu {
transform: translateX(0);
}

input[type=checkbox] {
transition: all 0.3s;
box-sizing: border-box;
display: none;
}
.sidebarIconToggle {
transition: all 0.3s;
box-sizing: border-box;
cursor: pointer;
position: absolute;
z-index: 99;
height: 100%;
width: 100%;
top: 1rem;
left: 1rem;
height: 22px;
width: 22px;
}
.spinner {
transition: all 0.3s;
box-sizing: border-box;
position: absolute;
height: 3px;
width: 100%;
background-color: var(--background-color);
}
.horizontal {
transition: all 0.3s;
box-sizing: border-box;
position: relative;
float: left;
margin-top: 3px;
}
.diagonal.part-1 {
position: relative;
transition: all 0.3s;
box-sizing: border-box;
float: left;
}
.diagonal.part-2 {
transition: all 0.3s;
box-sizing: border-box;
position: relative;
float: left;
margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
transition: all 0.3s;
box-sizing: border-box;
opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
transition: all 0.3s;
box-sizing: border-box;
transform: rotate(135deg);
margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
transition: all 0.3s;
box-sizing: border-box;
transform: rotate(-135deg);
margin-top: -9px;
}

#sidebarMenu {
z-index: 99;
height: auto;
min-height: 109vh;
overflow: auto;
position: fixed;
left: 0;
width: 40vw;
margin-top: 4vh;
padding-top: 4vh;
transform: translateX(-40vw);
transition: transform 250ms ease-in-out;
background: linear-gradient(0deg, var(--color-main) 0%, var(--background-color) 100%);
}
#sidebarMenu ul li {
display: none;
font-size: 1.1rem;
font-weight: 500;
margin-left: 2.5rem;
list-style-type: decimal;
}
#sidebarMenu ul {
font-size: 1.3rem;
font-weight: bold;
text-align: start;
padding-left: 3rem;
padding-bottom: 1rem;
white-space: nowrap;
}
button {
all: unset;
cursor: pointer;
}

#sidebarMenu {
display: flex;
flex-wrap: wrap;
}
#sidebarMenu .list-Menu {
flex: 6;
padding-top: 3rem;
}
.list-Menu button {
  display: flex;
}
.list-Menu button span {
  width: 2rem;
}
#sidebarMenu .hiden-button {
flex: 1;
position: relative;
}
.fa-arrow-left {
color: var(--color-main);
font-size: 2rem;
border: solid 1px;
padding: 0.3rem;
border-radius: 50%;
margin: 0;
}
.hiden-button .sidebarIconToggle {
height: unset;
width: unset;
top: unset;
left: unset;
padding-top: 2rem;
}
.hiden-button {
display: flex;
justify-content: center;
}

main section {
  width: auto;
  height: auto;
  display: grid;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}
h2 {
text-transform: uppercase;
}
.button {
padding: 0.5rem 0.75rem;
border-radius: var(--border-radius);
box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #ffffff;
}

/* Section 1 */
.container-section1 {
  display: grid;
  grid-template-columns: 40% 60%;
  padding-top: 2rem;
}
.section-right {
  display: flex;
  width: 100%;
  align-items: center;
}
.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95%;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  -webkit-transition: all 700ms ease-in;
  box-shadow: 1px 18px 6px rgba(16, 16, 16, 0.2),
              1px 22px 10px rgba(16, 16, 16, 0.1),
              1px 25px 35px rgba(16, 16, 16, 0.1),
              1px 30px 60px rgba(16, 16, 16, 0.2);
}
.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
  backdrop-filter: blur(10px);
  background-color: #ffffff1a;
  border-radius: 25px;
}
.panel h3:hover {
  color: var(--color-main);
  background-color: var(--background-color);
}
.panel.active {
  flex: 3;
}
.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
.panel .button {
  padding: 0.3rem 0.5rem;
}
.section-left {
  padding: 5vh 5vw;
  font-size: 1rem;
  display: grid;
  font-size: 1.3rem;
}
.section-left h2 {
  font-size: 3rem;
  text-align: center;
}
.section-left p {
  font-size: 2rem;
  padding-top: 1rem;
}
#azka {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  text-shadow:  1px 1px 1px #919191,
                1px 2px 1px #919191,
                1px 3px 1px #919191,
                1px 4px 1px #919191,
                1px 5px 1px #919191,
                1px 18px 6px rgba(16,16,16,0.4),
                1px 22px 10px rgba(16,16,16,0.2),
                1px 25px 35px rgba(16,16,16,0.2),
                1px 30px 60px rgba(16,16,16,0.4);
}

/* Section 2 */
#doi-tuong {
  justify-content: center;
}
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.card {
  width: 350px;
  margin: 1rem;
  background-color: #373b69;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.card img {
  width: 100%;
}
.card-info {
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem 1rem;
  letter-spacing: 0.5px;
}
.card-info h3 {
  margin-top: 0;
}
.card-info span {
  background-color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-weight: bold;
}
.card-info span.green {
  color: lightgreen;
}
.card-info span.orange {
  color: orange;
}
.card-info span.red {
  color: red;
}
.overview {
  background-color: #ffffffe3;
  padding: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: 100%;
  transform: translateY(101%);
  transition: transform 0.3s ease-in;
  overflow: auto;
}
.card:hover .overview {
  transform: translateY(0);
}
.content-section2 {
  font-size: 2rem;
  justify-content: center;
  display: grid;
}

/* Section 3 */
:root {
--spacing: 1rem;
--border-radius: 12px;
--card-anim-time: 1s;
--anim-time: 0.5s;
}
.main-section3 {
display: grid;
grid-template-rows: auto min(80vh, 80vh);
gap: var(--spacing);
width: 80%;
padding: var(--spacing);
border-radius: var(--border-radius);
}
.container-section3 {
display: flex;
justify-content: center;
}
.nav {
position: relative;
}

.nav .triggers {
display: flex;
flex-flow: row;
user-select: none;
}

.nav .triggers .trigger-spec {
position: absolute;
height: 100%;
border-radius: var(--border-radius);
transition: transform var(--anim-time) ease-out;
box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #ffffff;
}

.nav .triggers .trigger {
text-align: center;
flex: 1 0 10ch;
margin: 0;
padding: 0.5rem 0.75rem;
border-radius: var(--border-radius);
color: rgba(0, 0, 0, 0.5);
transition: color var(--anim-time) ease-out;
z-index: 1;
}

.nav .triggers .trigger.active {
color: #000;
}

.nav .triggers .trigger:hover {
cursor: pointer;
}

.content {
border-radius: var(--border-radius);
padding: 1rem 0;
}
.content .targets {
position: relative;
height: 100%;
width: auto;
margin: auto;
border-radius: var(--border-radius);
overflow: visible;
box-shadow: inset 36px 36px 71px #cecece, inset -36px -36px 71px #f2f2f2;
}
.tracks-imgs {
display: flex;
width: 100%;
max-width: 900px;
gap: 5px;
padding-top: 1rem;
}
.tracks-imgs img {
flex: 1;
width: 300px;
border-radius: var(--border-radius);
border: solid 1px var(--color-main);
}
.tracks-imgs figure {
text-align: center;
font-style: italic;
font-size: 0.8rem;
}
figcaption {
padding-top: 5px;
}
.tracks-imgs img:hover {
transform: translateY(-1rem);
transition: 0.5s;
cursor: pointer;
}
.content .targets .target {
scrollbar-gutter: stable both-edges;
width: 100%;
height: 100%;
overflow: auto;
border-radius: var(--border-radius);
padding: var(--spacing);
position: absolute;
background-color: var(--background-color);
box-shadow: 5px 5px 15px #5a5a5a, -5px -5px 15px #ffffff;
transform-origin: bottom center;
}

.content .targets .target:not(.active) {
animation: goBack var(--card-anim-time) ease-in-out forwards;
}

.content .targets .target.active {
z-index: 2;
}

.content .targets .target.slideRight {
animation-duration: var(--card-anim-time);
animation-timing-function: ease-in-out;
animation-fill-mode: both;
animation-name: slideRight;
}

.content .targets .target.slideLeft {
animation-duration: var(--card-anim-time);
animation-timing-function: ease-in-out;
animation-fill-mode: both;
animation-name: slideLeft;
}

.content .targets .target::-webkit-scrollbar-thumb {
background-color: #c0c0c0;
border: 4px solid transparent;
border-radius: 8px;
background-clip: padding-box;
}

.content .targets .target::-webkit-scrollbar-thumb:hover {
background-color: #808080;
}

.content .targets .target::-webkit-scrollbar {
width: 16px;
}
.target li {
padding-left: 1rem;
text-indent: -1em;
}

@keyframes slideRight {
0% {
  transform: translateX(0%) rotateZ(0deg);
  z-index: 0;
}
49% {
  transform: translateX(100%) translateX(0.5rem) rotateZ(10deg);
  z-index: 0;
}
51% {
  z-index: 2;
}
100% {
  transform: translateX(0%) rotateZ(0deg);
  z-index: 2;
}
}

@keyframes goBack {
0% {
  z-index: 2;
}
1% {
  z-index: 1;
}
99% {
  z-index: 1;
}
100% {
  z-index: 0;
}
}

@keyframes slideLeft {
0% {
  transform: translateX(0%) rotateZ(0deg);
  z-index: 0;
}
49% {
  transform: translateX(-100%) translateX(-0.5rem) rotateZ(-10deg);
  z-index: 0;
}
51% {
  z-index: 2;
}
100% {
  transform: translateX(0%) rotateZ(0deg);
  z-index: 2;
}
}

/* Section 4 */
.container-section4 {
display: grid;
grid-template-columns: 50% 45%;
place-items: center;
gap: 60px;
max-height: 100vh;
padding: 20px 60px;
}

/* CONTENT */
.content-section4 {
max-width: 2400px;
}
.content-section4 h2 {
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 700;
line-height: 1.2;
letter-spacing: 1px;
margin-bottom: 36px;
}
.content-section4 p {
font-size: clamp(1.8rem, 2vw, 2rem);
font-weight: 300;
line-height: 1.5;
margin-bottom: 30px;
}
.content-section4 button {
font-size: clamp(0.9rem, 4vw, 1rem);
font-weight: 600;
border: 0;
transform: scale(1);
transition: all 0.4s ease-in;
cursor: pointer;
}
.content-section4 button:is(:hover, :focus) {
transform: scale(0.98);
background-color: #6f7aa6;
color: #eaeaea;
}

/* SLIDER */
.swiper-cube {
position: relative;
width: 400px;
height: 490px;
}
.swiper-slide {
position: relative;
border: 1px solid rgba(255, 255, 255, 0.3);
user-select: none;
border-radius: 20px;
}
.swiper-slide img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 15px #5a5a5a, -5px -5px 15px #ffffff;
}
.cost {
position: absolute;
top: 8px;
right: 6px;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
border-radius: 30px;
padding: 6px 10px;
color: var(--color-text);
font-size: clamp(0.8rem, 4vw, 0.9rem);
font-weight: 600;
}
.swiper-slide .germany-imgs {
width: 100%;
height: 100%;
border-radius: 20px;
box-shadow: 5px 5px 15px #5a5a5a, -5px -5px 15px #ffffff;
}
.overlay {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
left: 0;
bottom: 0;
width: 100%;
height: 165px;
padding: 10px 20px;
background: rgba(93, 95, 145, 0.2);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: #fff;
border-radius: 0 0 20px 20px;
}
.overlay h3 {
font-size: clamp(1.2rem, 4vw, 1.5rem);
font-weight: 600;
margin-bottom: 0;
text-transform: uppercase;
}
.overlay p {
font-size: clamp(0.8rem, 4vw, 0.9rem);
font-weight: 300;
line-height: 1.3;
transition: 0.5s;
}
.dau-tu .overlay p:hover {
  font-size: clamp(1.2rem, 4vw, 1.3rem);
  background: #ffffff7a;
  padding: 1rem;
  border-radius: var(--border-radius);
}
.ratings {
display: flex;
column-gap: 10px;
}
.ratings span {
font-size: clamp(0.8rem, 4vw, 0.9rem);
font-weight: 300;
}
.fa-star, .fa-star-half {
color: #afe312;
}

/* Section Ingredient */
.chart {
position: relative;
width: 25vw;
height: 25vw;
}
.doughnutTip {
position: absolute;
min-width: 30px;
max-width: 300px;
padding: 5px 15px;
border-radius: 1px;
background: rgba(0,0,0,.8);
color: #ddd;
font-size: 17px;
text-shadow: 0 1px 0 #000;
text-transform: uppercase;
text-align: center;
line-height: 1.3;
letter-spacing: .06em;
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
pointer-events: none;
&::after {
    position: absolute;
    left: 50%;
    bottom: -6px;
    content: "";
    height: 0;
    margin: 0 0 0 -6px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid rgba(0,0,0,.7);
    line-height: 0;
}
}
.doughnutSummary {
position: absolute;
top: 50%;
left: 50%;
color: var(--color-text);
text-align: center;
text-shadow: 0 -1px 0 #111;
cursor: default;
}
.doughnutSummary p {
text-align: inherit;
}
.doughnutSummaryTitle {
position: absolute;
top: 50%;
width: 100%;
margin-top: -27%;
font-size: 1rem;
letter-spacing: .06em;
}
.doughnutSummaryUnit {
position: absolute;
top: 50%;
width: 100%;
margin-top: 25%;
font-size: 1rem;  
letter-spacing: .06em;
}
.doughnutSummaryNumber {
position: absolute;
top: 50%;
width: 100%;
margin-top: -15%;
font-size: 3rem;
}
.chart path:hover {
opacity: 0.65;
}
.ingredient {
height: auto;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.ingredient-content {
position: relative;
flex: 1;
display: grid;
justify-content: center;
align-items: center;
text-align: center;
}
.ingredient-title {
display: grid;
justify-content: center;
font-size: 1.3rem;
text-transform: uppercase;
text-align: center;
}
.ingredient-content h4 {
font-style: italic;
}

/* Table */
.table-container {
display: grid;
justify-content: center;
align-items: center;
padding-top: 1rem;
}
table {
width: auto;
border-collapse: collapse;
overflow: hidden;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
th,
td {
padding: 10px;
background-color: rgba(255,255,255,0.2);
color: #fff;
}
td .fa-square {
position: absolute;
right: 0;
transform: translateY(-50%);
top: 50%;
}
.fa-square:before {
border: solid 1px #333;
}
th {
text-align: center;
}
tbody tr:hover {
background-color: rgba(255,255,255,0.3);
}
tbody td {
position: relative;
color: var(--color-text);
text-align: center;
border: dotted 1px #33333329;
white-space: nowrap;
}
tbody td:first-child {
text-align: left;
position: relative;
padding-right: 1rem;
}
tbody td:hover::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -9999px;
bottom: -9999px;
background-color: rgba(255,255,255,0.2);
z-index: -1;
}
.fa-check-double {
color: var(--color-azka);
}
tr {
font-size: 0.8rem;
line-height: 1.5;;
}
.title-table {
display: grid;
justify-content: center;
font-style: italic;
}
/* color icon table Azka Mũi Họng */
.sai-ho {
color: #2C3E50;
}
.cat-canh {
color: #FC4349;
}
.hoang-cam {
color: #6DBCDB;
}
.dang-sam {
color: #F7E248;
}
.bach-bo {
color: #64AD5C;
}
.thuong-xuan {
color: #D7DADB;
}
.hoa-ngu-sac {
color: #9F60A3;
}
.thuong-nhi-tu {
color: #91db6d;
}
.tan-di {
color: #8548f7;
}
.bo-gai {
color: #00aae3;
}
.tien-ho {
color: #69c36d;
}
.thanh-hao-hoa-vang {
color: #cd602a;
}
.trau-khong {
color: #FC4349;
}
.tan-di-hoa {
  color: #91db6d;
}

/* Section Prove */
.prove-section {
position: relative;
gap: 2rem;
display: grid;
}
.min-h-screen {
position: relative;
}
.button-prove {
position: absolute;
top: 0;
right: 9rem;
font-weight: bold;
font-style: italic;
font-size: 1.5rem;
padding: 0 2rem;
}
.text-gray-400 a {
font-weight: bold;
font-style: italic;
font-size: 1.2rem;
}
.px-8 {
gap: 1rem;
}
.card-prove {
position: relative;
}
.card-prove::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
transition: 0.6s;
z-index: 0;
background-color: #ffffff4f;
}

.bg-azkatreem {
background-color: var(--color-azkatreem) !important;
}
.color-azkatrem {
color: var(--color-azkatreem);
}
.bg-azkanguoilon {
background-color: var(--color-azkanguoilon);
}
.color-azkanguoilon {
color: var(--color-azkanguoilon);
}
.bg-azkanhomui {
background-color: var(--color-azkanhomui);
}
.color-azkanhomui {
color: var(--color-azkanhomui);
}
.bg-azkaxoang {
background-color: var(--color-azkaxoang);
}
.color-azkaxoang {
color: var(--color-azkaxoang);
}
.bg-azkaxitxoang {
background-color: var(--color-azkaxitxoang);
}
.color-azkaxitxoang {
color: var(--color-azkaxitxoang);
}
.bg-azkaphoi {
background-color: var(--color-azkaphoi);
}
.color-azkaphoi {
color: var(--color-azkaphoi);
}

.section-card .card-prove:nth-child(1) {
border-radius: var(--border-radius) 0 0 0;
}
.section-card .card-prove:nth-child(2) {
border-radius: 0 var(--border-radius) 0 0;
}
.section-card .card-prove:nth-child(3) {
border-radius: 0 0 0 var(--border-radius);
}
.section-card .card-prove:nth-child(4) {
border-radius: 0 0 var(--border-radius) 0;
}
.relative h4 {
font-weight: bold;
}
.card-prove:hover {
box-shadow: 0.063rem 0.063rem 1.25rem 0.375rem rgb(0 0 0 / 53%);
}

.card-prove:nth-child(1)::before {
bottom: 0;
right: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card-prove:nth-child(2)::before {
bottom: 0;
left: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card-prove:nth-child(3)::before {
top: 0;
right: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card-prove:nth-child(4)::before {
top: 0;
left: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.card-prove:hover::before {
clip-path: circle(110vw at 100% 100%);
}

.card-prove p {
transition: 0.8s;
color: white;
}

.card-prove:hover p {
color: #fff;
}

.card-prove:nth-child(1) .circle {
bottom: 0;
right: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.card-prove:nth-child(2) .circle {
bottom: 0;
left: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.card-prove:nth-child(3) .circle {
top: 0;
right: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.card-prove:nth-child(4) .circle {
top: 0;
left: 0;
clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.card-prove:nth-child(1) .circle-azkatreem {
background: url("imgs/sai-ho.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkatreem {
background: url("imgs/hoang-cam.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkatreem {
background: url("imgs/thuong-xuan.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkatreem {
background: url("imgs/dang-sam.jpg") no-repeat 50% 50% / cover;
}

.card-prove:nth-child(1) .circle-azkanguoilon {
background: url("imgs/cat-canh.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkanguoilon {
background: url("imgs/hoang-cam.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkanguoilon {
background: url("imgs/bach-bo.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkanguoilon {
background: url("imgs/dang-sam.jpg") no-repeat 50% 50% / cover;
}

.card-prove:nth-child(1) .circle-azkanhomui {
background: url("imgs/ngu-sac-1.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkanhomui {
background: url("imgs/ngu-sac-2.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkanhomui {
background: url("imgs/ngu-sac-3.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkanhomui {
background: url("imgs/ngu-sac-4.jpg") no-repeat 50% 50% / cover;
}

.card-prove:nth-child(1) .circle-azkaxoang {
background: url("imgs/sai-ho.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkaxoang {
background: url("imgs/ke-dau-ngua.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkaxoang {
background: url("imgs/cat-canh-2.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkaxoang {
background: url("imgs/tan-di.jpg") no-repeat 50% 50% / cover;
}

.card-prove:nth-child(1) .circle-azkaxitxoang {
background: url("imgs/tan-di-2.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkaxitxoang {
background: url("imgs/ngu-sac-1.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkaxitxoang {
background: url("imgs/trau-khong.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkaxitxoang {
background: url("imgs/tan-di.jpg") no-repeat 50% 50% / cover;
}

.card-prove:nth-child(1) .circle-azkaphoi {
background: url("imgs/tien-ho.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(2) .circle-azkaphoi {
background: url("imgs/hoang-cam.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(3) .circle-azkaphoi {
background: url("imgs/thanh-hao-hoa-vang.jpg") no-repeat 50% 50% / cover;
}
.card-prove:nth-child(4) .circle-azkaphoi {
background: url("imgs/dang-sam.jpg") no-repeat 50% 50% / cover;
}

/* Section Directions */
.directions {
display: grid;
justify-content: center;
gap: 5rem;
}
.container-directions {
width: 64rem;
}
.directions-element {
width: 64rem;
display: grid;
position: relative;
}
.directions-img {
position: absolute;
display: grid;
justify-content: center;
z-index: 1;
background-color: #ffffffba;
top: 50%;
transform: translateY(-50%);
border-radius: var(--border-radius);
box-shadow: 5px 5px 15px #5a5a5a, -5px -5px 15px #ffffff;
}
.directions-img img {
padding: 2rem;
}
.directions-content {
position: relative;
display: grid;
gap: 0.5rem;
}
.directions-content div {
color: white;
margin-left: 10rem;
padding-left: 7rem;
}
.directions-content div:first-child {
border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.directions-content div:last-child {
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.directions-content h4 {
padding: 1rem;
font-weight: bold;
}
.directions-content li {
padding: 0 1rem 1rem 2rem;
}
.feedback {
display: flex;
margin-top: 1rem;
padding: 1rem;
gap: 1rem;
color: white;
border-radius: var(--border-radius);
align-items: center;
}
.feedback h4 {
font-weight: bold;
display: flex;
}
.feedback h4:first-child::after {
content: "";
width: 2px;
height: 3rem;
background-color: white;
margin-left: 0.5rem;
}

/* Section Hiden Document */
.cd-popup {
position: fixed;
z-index: 1;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: rgba(94, 110, 141, 0.9);
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
-moz-transition: opacity 0.3s 0s, visibility 0s 0s;
transition: opacity 0.3s 0s, visibility 0s 0s;
}
.cd-popup-container {
position: relative;
padding: 2rem;
width: 90%;
max-width: 80vw;
margin: 4em auto;
background: #f3f3f3;
border-radius: .25em .25em .4em .4em;
text-align: justify;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-40px);
-moz-transform: translateY(-40px);
-ms-transform: translateY(-40px);
-o-transform: translateY(-40px);
transform: translateY(-40px);
-webkit-backface-visibility: hidden;
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.cd-popup-imgs {
  width: auto;
}
.cd-popup-clinical {
  display: grid;
  width: 100%;
  padding: 2rem 4rem;
  gap: 4rem;
}
.popup-imgs {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  overflow: auto;
}
.popup-clinical {
  z-index: 90;
  overflow: auto;
  background-color: var(--background-color);
}
.cd-popup-video {
position: relative;
padding: 2rem;
width: 60%;
background: #f3f3f3;
border-radius: .25em .25em .4em .4em;
text-align: justify;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(-40px);
-moz-transform: translateY(-40px);
-ms-transform: translateY(-40px);
-o-transform: translateY(-40px);
transform: translateY(-40px);
-webkit-backface-visibility: hidden;
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.cd-popup-container p {
padding: 1em;
text-align: center;
font-style: italic;
}
.cd-popup-video p {
padding: 0 1em 1em;
text-align: center;
font-style: italic;
}
.cd-popup-container li {
list-style: none;
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 4px;
text-decoration-thickness: 0px;
padding-bottom: 0.3rem;
}
.is-visible .cd-popup-container {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.is-visible .cd-popup-imgs {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.is-visible .cd-popup-clinical {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.is-visible .cd-popup-video {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}

.ingredient-total {
display: flex;
max-width: 64rem;
}
.ingredient {
flex: 0 0 40%;
}
.table-container {
flex: 0 0 60%;
}
.container-5 {
display: grid;
justify-content: center;
}

/* Section 4 (Vấn đề) */
.title-problem {
display: grid;
justify-content: center;
align-items: center;
font-size: 2rem;
}
.container-problem {
display: flex;
padding: 20px 60px;
overflow: auto;
}
.left-problem {
flex: 1;
}
.right-problem {
flex: 2;
}
details {
cursor: pointer;
}
.right-content {
margin: 1rem;
border-radius: var(--border-radius);
max-height: 80vh;
}
.blog-slider .button-giaiphap {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--color-main);
  color: var(--background-color);
  z-index: 1;
  transition: 0.5s;
}
.blog-slider .button-giaiphap:hover {
  background-color: var(--background-color);
  color: var(--color-main);
}

/* Right Problem */
.blog-slider {
width: 100%;
position: relative;
max-width: 800px;
margin: auto;
background: #fff;
box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
padding: 25px;
border-radius: var(--border-radius);
max-height: 80vh;
min-height: 65vh;
transition: all 0.3s;
cursor: pointer;
}
.blog-slider__item {
display: flex;
align-items: center;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
opacity: 1;
transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
transition-delay: 1.0s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
transition-delay: 1.7s;
}
.blog-slider__content {
padding-right: 25px;
}
.blog-slider__content > * {
opacity: 0;
transform: translateY(25px);
transition: all 0.4s;
}
.blog-slider__code {
color: #7b7992;
margin-bottom: 15px;
display: block;
font-weight: 500;
}
.blog-slider__code_2 {
position: absolute;
top: 0;
right: 0;
font-style: italic;
}
.blog-slider__title {
font-size: 24px;
font-weight: 700;
color: #0d0925;
margin-bottom: 20px;
}
.blog-slider__text {
color: #4e4a67;
margin-bottom: 30px;
line-height: 1.5em;
}
.blog-slider__pagination {
position: absolute;
z-index: 21;
right: 20px;
width: 11px !important;
text-align: center;
left: auto !important;
top: 50% !important;
bottom: auto !important;
transform: translateY(-50%);
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 8px 0;
}
.swiper-pagination-bullet {
width: 11px;
height: 11px;
display: block;
border-radius: 10px;
background: #062744;
opacity: 0.2;
transition: all 0.3s;
}
.swiper-pagination-bullet-active {
opacity: 1;
background: #fd3838;
height: 30px;
box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
.overview-2 {
display: grid;
justify-content: center;
gap: 1rem;
text-align: center;
}
.overview-2 h3 {
text-transform: uppercase;
}
.overview-2 img {
border-radius: var(--border-radius);
}
.overview-2 button {
font-weight: bold;
background-color: var(--color-azka);
color: white;
}
.sub-title {
display: grid;
justify-content: center;
align-items: center;
font-style: italic;
}
.blog-slider__content li {
padding-left: 1rem;
list-style-type: none;
}
.fa-exclamation {
padding-right: 1em;
color: red;
}

/* Footer */
footer {
background-color: var(--color-main);
color: var(--background-color);
height: auto;
width: 100%;
border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.container-footer {
display: flex;
padding: 1rem 2rem;
align-items: center;
}
.container-footer .saler {
display: grid;
flex: 2;
justify-content: center;
}
.container-footer div {
flex: 1;
}
.container-footer h3 {
text-align: center;
font-size: 1.5rem;
text-transform: uppercase;
padding-bottom: 0.5rem;
}
.container-footer li {
list-style-type: none;
}
.container-footer .fa-solid {
padding-right: 1rem;
}
.copyright {
justify-content: center;
align-items: center;
display: grid;
color: white;
border-top: dotted 1px white;
font-size: 0.9rem;
font-style: italic;
}

/* Youtube */
.video-container {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

#azka-mui-hong, #azka-xoang, #azka-phoi, #doi-tuong {
  border-top: solid 1px #373b6987;
}

.popup-footer {
  position: fixed;
  z-index: 2;
  right: -1000px;
  top: 80%;
  transform: translateY(-50%);
  width: auto;
  padding: 10px;
  background-color: #f9f9f9cc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.5s ease;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.popup-footer.show {
  right: 0;
}

.button-popup-footer {
  background-color: #008cba;
  color: white;
  border: none;
  padding: 0px 5px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.button-popup-footer:hover {
  background-color: #005f5f;
}

.fa-question {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  background-color: #008cba;
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
}
.fa-question:hover {
  color: #008cba;
  background-color: white;
}
#popup-question {
  overflow: auto;
}
.question-container li {
  background-color: #008cba4d;
  padding: 10px;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}
.question-container p {
padding: 0;
  text-align: justify;
  font-style: normal;
}
.question-container h3 {
padding-bottom: 5px;
font-size: 1.2rem;
}
.fa-number {
background: white;
  padding: 5px 10px;
  border-radius: 50%;
  color: #008cba;
}
blockquote {
  padding: 10px;
  background: white;
  border-radius: var(--border-radius);
}

/* Video nhà máy */
.anvy-factory {
  display: flex;
  padding: 2rem;
}
.title-factory {
  flex: 1;
  padding: 1rem;
  background: #cfcfcf;
  margin-right: 1rem;
  border-radius: 25px;
  border: solid 1px var(--color-main);
}
.title-factory h2 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.title-factory div {
  display: flex;
  justify-content: center;
}
.title-factory img {
  width: 100%;
  padding: 2rem;
  filter: drop-shadow(4px 8px 8px white);
}
.title-2 {
  display: flex;
  width: 34ch;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid white;
  animation: typing-2 10s steps(69) 1s infinite alternate, flashin-border 0.75s step-end infinite alternate;
  }
  @keyframes typing-2 {
  0% {
    width: 0ch;
  }
  20% {
    width: 34ch;
  }
  80% {
    width: 34ch;
  }
  100% {
    width: 0ch;
  }
  }
  @keyframes flashin-border {
  0% {
    border-color: white;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: white;
  }
  }
.video-factory {
  flex: 2;
  padding: 1rem;
  background-image: url(imgs/giphy.webp);
  background-size: cover;
  border-radius: 25px;
  position: relative;
  border: solid 1px var(--color-main);
}
.video-factory iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: solid 1rem #ffffff1a;
  position: absolute;
  top: 0;
  left: 0;
}

/* Slide đầu tư */
.title-dau-tu, .title-cong-nghe {
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
.swiper-coverflow {
  position: relative;
  width: 64rem;
  height: auto;
}
.swiper-coverflow .swiper-slide .germany-imgs {
  box-shadow: none;
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.germany-imgs-1 {
  box-shadow: none;
  width: 80%;
}
.germany-imgs-1 img {
  box-sizing: border-box;
  border: solid 2px #373b6952;
  border-radius: var(--border-radius);
  box-shadow: none;
}
.germany-imgs img {
  flex: 1 1 40%;
  box-sizing: border-box;
  border: solid 2px #373b6952;
  border-radius: var(--border-radius);
  box-shadow: none;
}
.position-imgs {
  position: relative;
}
.title-img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -0.6rem;
  background-color: #ffffff75;
  padding: 0 0.5rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 14px;
  font-style: italic;
  white-space: nowrap;
  border: solid 1px var(--color-main);
  transform: translateX(-50%);
}
.swiper {
  padding-bottom: 5px !important;
}
.swiper-coverflow .swiper-slide {
  border: none;
  display: flex;
  justify-content: flex-end;
}
.swiper-coverflow .swiper-slide .img-nomal {
  box-shadow: none;
  width: 80%;
  border-radius: 20px;
}
.swiper-coverflow .overlay {
  width: 80%;
  height: auto;
  border-radius: var(--border-radius);
  bottom: 1rem;
  color: black;
}
.swiper-coverflow .icon-arrow {
  position: absolute;
  font-size: 3rem;
  top: -4rem;
  color: var(--color-main);
}
.fa-right-long {
  animation: moveRight .5s ease-in alternate infinite;
  font-size: 2rem;
  color: var(--color-main);
}
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(8px);
  }
}
@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}

/* Slide Công nghệ EECV */
.title-cong-nghe {
  padding-top: 2rem;
  padding-bottom: 0;
  margin-bottom: -5rem;
}
.container-eecv {
  display: grid;
  justify-content: center;
  position: relative;
  padding-top: 2rem;
}
.slider-eecv {
  position: relative;
  width: 64rem;
  height: 600px;
  overflow: hidden; /* hidden slide */
  cursor: pointer;
}
.slider-eecv .icon-arrow {
  position: absolute;
  bottom: 0;
  right: 50%;
}
.slides-eecv {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin-top: 5rem;
}
.slide-eecv {
  min-width: 100%;
  height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 24px;
  position: relative;
}
.controls {
  text-align: center;
  position: absolute;
  bottom: 1rem;
  right: 5rem;
  transform: translateX(-50%);
}
.controls button {
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  background-color: var(--background-color);
  font-size: 2rem;
  font-weight: bold;
}
.controls button.active {
  background-color: #373b69a1;
  color: var(--background-color);
}
.controls button:hover:not(.active) {
  background-color: var(--background-color);
}
.slide-right {
  position: relative;
  overflow: hidden;
  width: 45rem;
  height: 444px;
  border-radius: 20px;
  border: solid 1px var(--color-main);
  filter: drop-shadow(rgba(51, 51, 51, 0.5) 0.1em 0.2em 0.1em);
}
.slide-right::before {
  content: '';
  position: absolute;
  width: 45rem;
  height: 444px;
}
.slide-left {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 1rem 1rem 1rem 0;
  width: 40%;
  height: 500px;
}
.background-left {
  background-color: rgb(255 255 255 / 50%);
  padding: 1rem;
  height: 100%;
  border-radius: 20px;
  border: solid 3px var(--color-main);
  filter: drop-shadow(rgba(51, 51, 51, 0.5) 0.2em 0.4em 0.2em);
}
.title-eecv {
  display: flex;
  align-items: baseline;
}
.germany-2 {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 0.5rem;
  width: 100px;
  background-color: rgb(255 255 255 / 50%);
  border-radius: 20px;
}
.title-eecv h3 {
  font-size: 10rem;
  margin-top: -8rem;
  color: var(--color-main);
}
.background-left h4 {
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.germany {
  position: absolute;
  z-index: 1;
  background-color: rgb(255 255 255 / 50%);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: bold;
  transform: translateX(-100%);
}
.kiem-dinh .germany {
  left: 19%;
  background: var(--color-main);
  color: whitesmoke;
}
.sub-imgs-title {
  display: grid;
  align-items: center;
  font-size: 1.3rem;
  background-color: white;
  border: solid 2px #373b6952;
  border-radius: var(--border-radius);
}
.sub-imgs-title ul {
  list-style-type: circle;
  padding-left: 2rem;
}
.sub-imgs-title h2 {
  text-align: center;
  padding-top: 1rem;
}

/* Step by step */
#frame {
  width: 100%;
  position: relative;
  transition: transform 1s;
  margin-top: 20px;
}
#frame-image {
  transition: opacity 0.5s;
  width: 200px;
  transform: translateX(-50%);
  padding: 10px;
  filter: drop-shadow(rgba(51, 51, 51, 0.5) 0.2em 0.4em 0.2em);
}
.step-4 img {
  border-radius: 50%;
}
.step-1 { transform: translateX(15%); }
.step-2 { transform: translateX(32.5%); }
.step-3 { transform: translateX(50%); }
.step-4 { transform: translateX(67.5%); }
.step-5 { transform: translateX(85%); }

.quy-trinh {
  display: grid;
  justify-content: center;
  padding-top: 2rem;
}
.title-quy-trinh {
  text-align: center;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}
.container-quy-trinh {
  width: 64rem;
  padding: 2rem 0;
  background-color: #ffffff91;
  border-radius: 20px;
  border: solid 1px #373b6957;
}
.button-step {
  display: flex;
  padding: 0 5%;
}
.button-step button {
  flex: 1;
  text-align: center;
  border: dotted 1px var(--color-main);
  padding: 3px;
  border-radius: var(--border-radius);
  background-color: #e0e0e0;
}
.button-step button:hover {
  background-color: var(--color-main);
  color: var(--background-color);
  font-weight: bold;
}
#progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 5px;
  padding: 0 5%;
}
#progress {
  height: 100%;
  width: 0;
  background-color: var(--color-main);
  transition: width 1s;
  position: relative;
}
#arrow {
  position: absolute;
  right: -8px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 12px solid var(--color-main);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: right 1s;
}
#content-box {
  margin-top: 20px;
  padding: 20px 40px;
  border: 1px solid #ddd;
  background-color: var(--background-color);
  font-size: 16px;
  width: 50%;
  height: 6rem;
  transform: translateX(50%);
  border-radius: 20px;
  box-shadow: 5px 5px 15px #cdcdcd, -5px -5px 15px #ffffff;
  align-items: center;
  display: flex;
  border-left: 5px solid var(--color-main);
  font-style: italic;
  transition: background-color 0.3s;
}
#content-box:hover {
  background-color: var(--color-main);
  color: var(--background-color);
}
#content-box blockquote {
  background: none;
}

#SOP {
  overflow: auto;
}
.number-10 .fa-number:first-child {
  padding-right: 0;
}
.number-10 .fa-number:last-child {
  padding-left: 0;
}
.kiem-dinh {
  padding: 2rem 0;
}
.kiem-dinh .swiper-coverflow .overlay {
  width: 40%;
  bottom: 5rem;
}
.end-title {
  text-align: center;
  font-size: 3rem;
  color: transparent;
  background-image: url(imgs/bg-endtext.jpg);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  font-style: italic;
}

/* Nghiên cứu thử nghiệm lâm sàng */
.menu-sticky {
  display: flex;
  justify-content: center;
  color: var(--color-azkatreem);
  transition: top 1s ease, left 1s ease;
}
.menu-sticky button {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
}
.fa-house-medical-circle-check {
  font-size: 2rem;
  padding-left: 1rem;
}
.menu-sticky.sticky {
  position: fixed;
  top: 5rem;
  z-index: 1;
  animation: LeftToRight 0.5s linear forwards;
}
@keyframes LeftToRight {
  0% {
    left: -30rem;
  }
  100% {
    left: -20rem;
  }
}
.menu-sticky.sticky button p {
  visibility: hidden;
}
.header-clinical {
  display: grid;
  gap: 2rem;
}
.header-clinical h2 {
  font-size: 2rem;
  white-space: nowrap;
  padding-bottom: 2rem;
  color: var(--color-lam-sang);
}
.header-clinical ul {
  padding: 0 1rem;
  gap: 1rem;
  display: grid;
}
.header-clinical li {
  font-size: 1.2rem;
}
.fa-children {
  font-size: 5rem;
}
.child {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 1rem;
}
.fa-children {
  position: relative;
}
.fa-children:nth-child(1) {
  color: #00aae3;
}
.fa-children:nth-child(2) {
  color: #FC4349;
}
.fa-children:nth-child(3) {
  color: var(--color-orange);
}
.fa-children:nth-child(4) {
  color: yellowgreen;
}
.container-diffuse {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}
.diffuse-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgb(255 0 0 / 50%) 50%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 0 0.5rem rgb(255 0 0 / 80%); 
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2);
  }
}
.body-clinical {
  display: grid;
  gap: 1rem;
}
.body-clinical h2 {
  color: var(--color-lam-sang);
  font-size: 2rem;
}
.body-clinical h3 {
  font-size: 1.7rem;
}

/* Column Chart */
.container-chart {
  display: flex;
  align-items: flex-end;
  height: 20em;
  margin: 0 auto;
  padding: 0 2em;
  position: relative;
  width: calc(100% - 4em);
  gap: 10rem;
  justify-content: flex-end;
}
.container-chart-3 {
  height: 24em !important;
}
.container-chart-4 {
  height: 20em !important;
}
.container-chart span {
  display: flex;
  align-items: flex-end;
  gap: 5rem;
  position: relative;
}
.container-chart li {
  flex: 1;
  list-style: none;
  position: relative;
  text-align: center;
}
.container-chart li:after {
  content: attr(data-label);
  color: white;
  display: block;
  margin: .75em 0 0 -2.75em;
  position: absolute;
  top: 100%;
  left: calc(50%);
  white-space: nowrap;
  transform-origin: 0 0;
  transform: skewy(20deg);
}
/* Background grid */
.container-chart:before {
  background-color: white;
  box-shadow:
      0 calc(20em * .1) 0 white,
      0 calc(20em * .2) 0 white,
      0 calc(20em * .3) 0 white,
      0 calc(20em * .4) 0 white,
      0 calc(20em * .5) 0 white,
      0 calc(20em * .6) 0 white,
      0 calc(20em * .7) 0 white,
      0 calc(20em * .8) 0 white,
      0 calc(20em * .9) 0 white,
      0 20em 0 white,
      0 22em 0 white,
      0 24em 0 white;
  content: '';
  height: 1px;
  left: 0;
  opacity: .5;
  position: absolute;
  top: -1px;
  width: 100%;
}

/* Bar */
.container-chart div {
  opacity: 0;
  background-color: var(--background-color);
  bottom: 0;
  display: inline-block;
  margin-left: -2em;
  transform-origin: 0 0;
  transform: skewY(20deg);
  width: 4em;
}
.container-chart div:before {
  background-color: rgb(0, 131, 190);
  bottom: 100%;
  color: white;
  content: attr(data-value);
  line-height: 1.7em;
  left: 0;
  position: absolute;
  transform-origin: 0 100%;
  transform: skewX(-50deg);
  width: 4em;
}
.container-chart li:first-child div:before, 
.container-chart li:first-child div::after {
  background-color: var(--color-azka);
}
.nth-column-3:before, .nth-column-3::after {
  background-color: var(--color-azkaxoang) !important;
}
.container-chart div:after {
  background-color: rgb(0, 131, 190);
  bottom: 0;
  content: '';
  height: 100%;
  left: 100%;
  position: absolute;
  width: 2em;
  transform-origin: 0 0;
  transform: skewY(-40deg);
}
.container-chart div.grow, .container-chart span.grow {
  opacity: 1;
  animation: grow 1s 1 linear;
}
@keyframes grow {
  0% { height: 0; }
}
.container-column-chart {
  display: grid;
  gap: 1rem;
}
.column-chart, .column-chart-2, .column-chart-3 {
  display: flex;
}
.column-chart-3 .container-chart {
  justify-content: center !important;
}
.column-chart-2 .column-content,
.column-chart-2 .number-char,
.column-chart-3 .column-content,
.column-chart-3 .number-char {
  background-color: rgb(0 190 255);
}
.column-content {
  background-color: rgb(0, 159, 214);
  color: white;
  text-align: center;
  flex: 5;
  border: solid 1px #333;
}
.point-cpq {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.point-cpq h3 {
  font-size: 1.5rem;
  transform: rotate(-90deg);
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  right: -3em;
}
.sub-chart {
  height: 9em;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding-bottom: 1rem;
}
.sub-chart-3 {
  height: 6em !important;
}
.sub-chart p {
  transform: translateY(-3px);
}
.sub-azka, .sub-prospan, .sub-lastday {
  display: flex;
}
.fa-square {
  padding-right: 5px;
}
.sub-azka i {
  color: var(--color-azka);
}
.sub-prospan i {
  color: rgb(0, 131, 190);
}
.sub-lastday i {
  color: var(--color-azkaxoang);
}
.title-column {
  padding: 1rem 0;
  position: relative;
}
.runChart {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.2rem 0.4rem;
}
.title-column h3 {
  font-size: 1.2rem;
}
.time-chart {
  position: absolute;
  bottom: -6em;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.time-chart-3 {
  bottom: -3em !important;
}
.container-body-clinical-1 {
  gap: 2rem;
  display: grid;
}
.number-char {
  display: grid;
  position: absolute !important;
  left: 0;
  top: -1em;
  gap: 0.5em;
  background-color: #009fd6;
}
.number-char li {
  padding-right: 1em;
}

.button-close {
  background-color: #008cba;
  color: white;
  border: none;
  padding: 0px 10px;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  font-size: 1.5em;
}
.button-close:hover {
  background-color: #005f5f;
}

/* Line chart */
.point-cpq .title-line {
  font-size: 0.7rem;
  right: -8em;
}
.line-content {
  background-color: rgb(0 190 255);
}
.container-line-chart .container-chart {
  position: relative;
  display: block;
  padding: 0;
}
.container-line-chart .container-chart::before {
  content: none;
}
.sub-line {
  position: absolute;
  top: 0;
  right: 1em;
}
.container-line-chart h4, .container-column-chart h4 {
  font-size: 1.2rem;
  font-weight: bold;
}
.percent {
  position: absolute !important;
  top: -3em;
  font-weight: bold;
  opacity: 0;
  gap: 0 !important;
}
.fa-arrow-down-long {
  color: #FC4349;
  transform: translateY(-25%);
  padding-left: 5px;
}

/* Footer Clinical */
.footer-clinical {
  height: 20vh;
  background-color: #008cba;
  color: white;
  text-align: center;
  font-size: 3rem;
  display: grid;
  align-items: center;
  cursor: pointer;
  border: solid 1px #333;
}
.footer-clinical .fa-arrow-left {
  color: unset;
  font-size: unset;
  border: unset;
  padding: unset;
}
.quy-trinh-video {
  display: flex;
  gap: 2rem;
}
.quy-trinh-video p {
  font-weight: bold;
}

/* Back to Top */
#backToTop {
  position: fixed;
  z-index: 50;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #373b6985;
  color: white;
  border: none;
  padding: 2px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: solid 1px var(--background-color);
}
#backToTop:hover {
  background-color: var(--color-main);
}
#backToTop:active {
  scale: 0.95;
}

/* Nghiên cứu lâm sàng update */
:root {
  --color-lam-sang: #c32056;
}
.header-1 {
  display: flex;
  max-height: 30vh;
}
.header-1 img {
  height: 100%;
}
.header-1-1 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-1-2 {
  flex: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  text-align: center;
}
.header-1-2 p {
  text-align: center;
  margin-bottom: -15px;
}
.header-1-2 strong {
  margin-top: -15px;
}
.header-1-2 div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-1-2 img {
  height: 75%;
}
.header-2 {
  display: flex;
  max-height: 50vh;
  background-color: var(--color-lam-sang);
  color: white;
}
.header-2-1 {
  padding: 2rem 1rem 0rem 1rem;
  font-size: 1.2rem;
}
.header-2-1 h2 {
  color: white;
}
.header-2-1 i {
  font-size: 0.8rem;
}
.header-clinical ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}
.header-clinical h3 {
  font-size: 1.6rem;
  color: var(--color-lam-sang);
}
.header-4-item thead {
  background-color: var(--color-lam-sang);
}
.header-4 {
  max-width: 100%;
}
.header-4-item {
  display: flex;
  width: 100%;
  gap: 5rem;
}
.header-4-item .header-4-img {
  flex: 2;
  text-align: center;
}
.header-4-item .header-4-table {
  flex: 1.2;
  text-align: center;
}
.header-4-footer {
  display: flex;
  gap: 5rem;
  padding-top: 2rem;
}
.ket-luan {
  display: grid;
  gap: 5px;
}
.ket-luan div {
  display: flex;
  padding: 1rem;
  align-items: center;
  background-color: #dad9d8;
}
.number-ket-luan {
  font-size: 3rem;
  background-color: var(--color-lam-sang) !important;
  color: white;
  padding: 0.5rem 1rem !important;
}
.container-column-chart i {
  text-align: end;
  font-size: 0.8rem;
}
.sub-column-chart {
  font-size: 1.2rem;
}
.container-chart-2-2 {
  gap: 5.5rem !important;
}
.column-chart-2-2 .container-chart div:before {
  color: var(--color-azka) !important;
}
.custom-list {
  padding-left: 2rem;
}
.custom-list li::before {
  content: "-";
  margin-right: 5px;
  color: black;
}
#popup-lam-sang {
  z-index: 99;
}
.text-style-lamsang {
  font-style: italic;
  font-weight: bold;
  color: var(--color-lam-sang);
}

.column-chart-sub .container-chart li:first-child div:before {
  color: var(--color-azka);
}
.column-chart-sub .container-chart div:before {
  color: rgb(0, 131, 190);
}
.tai-lieu {
  text-align: center;
}