* {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

/* header */

.header {
  display: flex;
  justify-content: space-between;
  background-color: white;
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(81, 159, 236, 0.6);
}

.header.right {
  position: relative;
  display: inline-block;
}

.badge {
  position: absolute;
  right: 20px;
  bottom: 40px;
  background: red;
  color: white;
  font-size: 8px;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#icon-nav {
  margin-top: 20px;
  margin-right: 25px;
  font-size: 30px;
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.left img {
  width: 70px;
}

.link {
  display: flex;
  gap: 40px;
}

.link a {
  text-decoration: none;
  color: black;
}

.link a:hover {
  text-decoration: underline;
  color: rgb(59, 141, 182);
}

#active {
  color: rgb(59, 141, 182);
  text-decoration: underline;
}

/* main */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.about-image img {
  width: 450px;
  height: auto;
}

.about-content {
  max-width: 500px;
}

.about-content h1 {
  padding: 12px 0px;
  font-size: 45px;
  color: #0d2340;
  margin-bottom: 15px;
  border-bottom: 3px rgb(65, 164, 216) solid;
}

.about-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #69bab3;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.btn:hover {
  background: #0fa4d6;
}

.icon-self {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.icon-self img {
  width: 54px;
}

.icon-self p {
  text-align: center;
}

.text {
  width: 350px;
  box-shadow: rgba(69, 154, 203, 0.16) 0px 3px 10px, rgba(92, 150, 163, 0.23) 0px 3px 6px;
  padding: 35px;
  border-radius: 12px;
  transition: .5s;
  transform: scale(1);
}

.text:hover {
  transform: scale(1.05);
}

.contain {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  border-radius: 30px;
  margin: 2px 45px;
  border: 3px solid #bee5f4;
  margin-top: 32px;
}

.text-contain {
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.text-contain h1 {
  font-size: 32px;
  color: #0fa4d6;
  border-bottom: 2px solid #0fa4d6;
  padding: 10px;
}

.contain img {
  width: 400px;
  border-radius: 20px;
}

.profile {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#img-pro {
  width: 90px;
}

.profile p {
  text-align: center;
}

.profile img {
  width: 100px;
}

.team {
  padding: 80px;
}

.team h1 {
  color: #0fa4d6;
  font-size: 40px;
  padding: 10px;
}

.position {
  color: #2280a0;
}

#icon-pro {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pro {
  display: flex;
  justify-content: space-between;
  border-top: 1px black solid;
  padding: 32px;

}

.pro1 {
  border-bottom: 1px black solid;
  border-top: 1px black solid;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding: 32px;
}


/* footer */
#image-footer {
    width: 32px;
    transition:0.3;
}
#image-footer:hover{
    transform: scale(1.2);
}

.icon-shop {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.text-footer {
  padding: 50px;
  display: flex;
  justify-content: space-between;
}

.text {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 35px;
  border-radius: 12px;
  background: white;

}

.text-footershop {
  width: 100%;
  background-color: rgb(203, 226, 243);
  margin-top: 80px;
}

.footer {
  display: flex;
  gap: 20px;
  padding: 50px 50px;
  height: 30vh;
}

.footer .last-left {
  flex: 1;
  text-align: center;
}

.footer .last-left p {
  margin-top: 12px;
}

.footer .last-center {
  text-align: center;
  flex: 1;
}

.footer .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .right h3 {
  text-align: center;
}

.quick {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 12px;
}

.quick a {
  color: black;
}

.info {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  gap: 12px;
}

.icon-foot {
  display: flex;
  gap: 10px;
}

/* responsive */
/* Tablet size */
@media (min-width: 600px) and (max-width: 1024px) {
  .text-footershop {
    width: 100%;
    background-color: rgb(203, 226, 243);
  }

  .footer {
    display: flex;
    flex-direction: column;
    height: fit-content;
  }

  .quick {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .info {
    display: flex;
    flex-direction: row;
  }

  .icon-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .about-image img {
    width: 300px;
    height: auto;
  }

  .about-content {
    max-width: 400px;
  }

  .text-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .icon-self {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .text {
    width: 680px;

  }

  .team {
    padding: 20px 50px;

  }

  .text-contain {
    width: 350px;
  }

  .contain img {
    margin-left: 20px;
    margin-top: 30px;
    width: 270px;
    border-radius: 20px;
  }

  .contain {
    margin-top: 2px;
  }
}


/* responsive */
/* phone size */
@media (min-width: 320px) and (max-width: 599px) {
  .link {
    display: flex;
    gap: 18px;
    margin-left: 3px;
  }

  .link a {
    text-decoration: none;
    color: black;
    font-size: 17px;
  }

  .left img {
    width: 55px;
  }

  .header .right {
    width: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    margin-right: 10px;
  }

  .about-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .about-image img {
    width: 300px;
    height: auto;
  }

  .about-content {
    max-width: 330px;
  }

  .text-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .text-footer .text {
    width: 250px;
  }


  .text-contain {
    width: 300px;
    text-align: center;
  }

  .contain img {
    gap: 20px;
    width: 300px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contain {
    display: flex;
    flex-direction: column;
    padding: 25px;
    margin: 20px;
    margin-top: 0px;
    gap: 12px;
  }

  .text-footershop {
    width: 100%;
    background-color: rgb(203, 226, 243);
  }

  .footer {
    display: flex;
    flex-direction: column;
    height: fit-content;
  }

  .quick {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .info {
    display: flex;
  }

  .icon-foot {
    display: flex;
    align-items: center;
  }

  .team {
    padding: 20px;

  }

  .team h1 {
    color: #0fa4d6;
    font-size: 40px;
    padding: 10px;
  }

  .position {
    color: #2280a0;
    font-size: 20px;
  }

  .pro {
    display: flex;
    border-top: 1px black solid;
    padding: 60px;
    flex-direction: column;
    gap: 12px;
  }

  .pro1 {
    border-bottom: none;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0px;
    padding: 0px 60px;
  }

  .profile img {
    width: 170px;
  }

  .profile h3 {
    font-size: 22px;
  }

  .about-section {
    margin-top: 30px;
  }

  #icon-nav {
    margin-top: 20px;
    margin-right: 25px;
    font-size: 24px;
  }

  .badge {
    right: 18px;
    bottom: 41px;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 3px;
  }
}