﻿@charset "UTF-8";
.container-main main {
  min-height: 600px;
}

.main-detail {
  min-height: 500px;
  /*background: $background;*/
}

.modal-backdrop {
  background-color: #a9a9a9;
}

.bd-bottom {
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 5px;
  padding-top: 5px;
}

/** =================Category Detail Container ============*/
.category-detail-container .support-view {
  height: 600px;
}
.category-detail-container .support-view .btnSuccess {
  justify-content: center !important;
}
.category-detail-container .support-view .box_wrap {
  margin-top: -120px;
}

/** ================= Custom-Box ==========================*/
.custom-box-comment {
  min-width: 400px;
  min-height: 120px;
  display: flex;
  border: 1px solid #ddd;
  overflow: hidden;
  background-color: #fffdfb;
  align-items: stretch;
  margin-bottom: 2px;
  padding-left: 0;
}
.custom-box-comment .image-container {
  width: 120px; /* Ảnh cố định chiều rộng */
  height: 120px; /* Chiều cao bằng box */
  flex-shrink: 0;
  overflow: hidden;
  background-color: #e9ecef; /* Màu nền nếu không có ảnh */
}
.custom-box-comment .image-container a {
  display: block;
  width: 100%;
  height: 100%;
}
.custom-box-comment .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Đảm bảo ảnh fill kín mà không méo */
}
.custom-box-comment .text-container {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-box-comment .text-container .title a {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
  color: rgb(188, 142, 46);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.custom-box-comment .text-container .title a:hover {
  color: rgba(188, 142, 46, 0.5); /* Màu xanh khi hover */
}
.custom-box-comment .text-container .description {
  font-size: 1.25rem;
  color: #666;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Số dòng tối đa trước khi thêm dấu ... */
  -webkit-box-orient: vertical;
  text-align: justify; /* Căn lề 2 bên */
}

.custom-box-small {
  min-width: 300px;
  min-height: 120px;
  max-height: 120px;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(248, 249, 250, 0.7215686275);
  align-items: stretch;
}
.custom-box-small .image-container {
  width: 120px; /* Ảnh cố định chiều rộng */
  height: 120px; /* Chiều cao bằng box */
  flex-shrink: 0;
  overflow: hidden;
  background-color: #e9ecef; /* Màu nền nếu không có ảnh */
}
.custom-box-small .image-container a {
  display: block;
  width: 100%;
  height: 100%;
}
.custom-box-small .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Đảm bảo ảnh fill kín mà không méo */
}
.custom-box-small .text-container {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.custom-box-small .text-container .title {
  padding: 0 !important;
}
.custom-box-small .text-container .title a {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
  color: rgb(188, 142, 46);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.custom-box-small .text-container .title a:hover {
  color: rgba(188, 142, 46, 0.5); /* Màu xanh khi hover */
}
.custom-box-small .text-container .description {
  font-size: 1.25rem;
  color: #666;
  flex-grow: 1;
  overflow: hidden;
  text-align: justify; /* Căn lề 2 bên */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Giới hạn số dòng, có thể chỉnh sửa */
  -webkit-box-orient: vertical;
  position: relative;
  text-overflow: ellipsis;
  word-break: break-word; /* Tự động xuống dòng khi cần */
}

.custom-box-medium {
  min-width: 200px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(248, 249, 250, 0.7215686275);
}
.custom-box-medium .image-container {
  width: 100%;
  height: 200px; /* Chiều cao tối đa */
  overflow: hidden;
  background-color: #e9ecef;
}
.custom-box-medium .image-container a {
  display: block;
  width: 100%;
  height: 100%;
}
.custom-box-medium .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-box-medium .text-container {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  max-height: 210px;
}
.custom-box-medium .text-container .title {
  padding: 0 !important;
}
.custom-box-medium .text-container .title a {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: rgb(188, 142, 46);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.custom-box-medium .text-container .title a:hover {
  color: rgba(188, 142, 46, 0.5);
}
.custom-box-medium .text-container .description {
  font-size: 1.25rem;
  color: #666;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7; /* Giới hạn 7 dòng */
  -webkit-box-orient: vertical;
}

/* Hiệu ứng ẩn dần */
.e-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/** =============== Back to top ===========================*/
#backToTop {
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(188, 142, 46);
  color: white;
  border: none;
  padding: 0px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: rgb(188, 142, 46);
  transform: scale(1.1);
}

/** ===============Zalo Chat ==========================*/
@keyframes shake-rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 162, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 25px rgba(0, 162, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 162, 255, 0);
  }
}
.zalo-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  z-index: 9999;
  transition: bottom 0.5s ease; /* Di chuyển mượt mà */
  animation: shake-rotate 1.5s infinite ease-in-out, pulse 2s infinite;
}
.zalo-chat img {
  width: 50px; /* Tăng kích thước */
  border-radius: 50%;
  cursor: pointer;
  outline: auto;
  clip-path: circle(50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-phone {
  position: fixed;
  bottom: 75px;
  right: 20px;
  border-radius: 50%;
  z-index: 9999;
  transition: bottom 0.5s ease; /* Di chuyển mượt mà */
  animation: shake-rotate 1.5s infinite ease-in-out, pulse 2s infinite;
}
.call-phone i {
  width: 50px;
  height: 50px;
  font-size: 36px;
  padding: 8px;
  color: green;
}

/** ====================================================*/
/** =============== OnLoadPage Modal ==================*/
#box_popup_tuvan {
  /* Tùy chỉnh modal */
}
#box_popup_tuvan .modal-dialog {
  max-width: 400px;
}
#box_popup_tuvan .modal-content {
  border: none;
  background-color: #fff;
  border-radius: 0;
  min-height: 500px;
}
#box_popup_tuvan .modal-body {
  padding: 20px;
}
#box_popup_tuvan .modal-header {
  display: none; /* Ẩn header */
}
#box_popup_tuvan input.form-control {
  height: 45px;
}
#box_popup_tuvan .form-control {
  border-radius: 20px;
  border: 1px solid #E4BC5D;
  font-size: 1.2rem;
}
#box_popup_tuvan .form-control:focus {
  border-color: #E4BC5D;
  outline: none;
  box-shadow: none;
}
#box_popup_tuvan .btn_submit {
  background: #E4BC5D;
  color: #fff;
  border-radius: 20px;
  border: none;
  font-size: 1.3rem;
  padding: 10px;
}
#box_popup_tuvan .btn_submit:hover {
  background: #d3a750;
}
#box_popup_tuvan .hotline {
  text-align: center;
  font-size: 1.5rem;
  color: red;
  font-weight: bold;
}
#box_popup_tuvan .hotline a {
  color: red;
  text-decoration: none;
}
#box_popup_tuvan .hotline a:hover {
  text-decoration: underline;
}
#box_popup_tuvan .text {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
}
#box_popup_tuvan .cover {
  background-image: url(../assets/img/bg_cover.jpg);
}
#box_popup_tuvan .cover img {
  display: block;
  margin: 0 auto;
  width: 100px;
}

/** =============== Box - Đăng ký tư vấn ===============*/
#popup_tuvan .btn_popup {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgb(188, 142, 46);
  height: auto;
  width: 45px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
#popup_tuvan .btn_popup span {
  text-transform: uppercase;
  color: white !important;
  writing-mode: vertical-rl; /* Hiển thị văn bản theo chiều dọc */
  transform: rotate(180deg); /* Đảo hướng văn bản */
  font-size: 16px;
}
#popup_tuvan .btn_popup i {
  color: white !important;
  font-size: 24px; /* Kích thước biểu tượng */
  margin-bottom: 0px;
  margin-top: 10px;
}
#popup_tuvan .btn_popup:hover {
  background: rgba(188, 142, 46, 0.5);
}

/**================ Start bar - Top =========================*/
.box-top {
  background-color: rgb(188, 142, 46);
  color: #fff;
  height: 38px;
  line-height: 38px;
  position: relative;
}
.box-top .item {
  display: inline-block;
  padding: 0px 15px 0 5px;
  position: relative;
  color: rgb(49, 49, 49);
  font-size: 14px;
  font-weight: 500;
}
.box-top .item a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding-left: 5px;
}
.box-top .item span {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding-left: 5px;
}
.box-top .open {
  position: relative;
}
.box-top .item-after::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  top: 13px;
  right: 0;
  background-color: #fff;
}
.box-top .social {
  position: relative;
  padding-left: 10px;
}
.box-top .social a {
  margin: 0 2px;
  color: #fffffe;
  text-decoration: none;
  font-size: 17px;
}
.box-top .social a:hover {
  color: #5a5a5a;
}

.article-container, .search-result-container {
  padding-left: 0;
}

.article-content, .search-result-content, .category-content {
  background-color: transparent;
  padding-top: 0 !important;
}

.box_right_content .item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  align-items: stretch;
}
.box_right_content .item .image {
  width: 120px;
  height: 90px;
  /*background-color: #f0f0f0;*/ /* Màu nền khi ảnh lỗi */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.box_right_content .item .image a {
  height: 100%;
  width: 100%;
}
.box_right_content .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box_right_content .item .image img:not([src]) {
  visibility: hidden; /* Ẩn ảnh nếu không có src */
}
.box_right_content .info {
  flex: 1; /* Chiếm phần còn lại của hàng */
  display: flex;
  flex-direction: column;
}
.box_right_content .info .title {
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
.box_right_content .info .title a {
  text-decoration: none;
  color: #cf9a2c;
  transition: all 0.15s ease-in-out 0s;
}

#search-modal {
  /* Custom styles for search input */
}
#search-modal .modal-dialog {
  max-width: 1000px; /* Set max width for large screens */
  width: 90%; /* Make it adaptive for smaller screens */
}
#search-modal .modal-content {
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
  border-radius: 10px; /* Rounded corners */
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#search-modal #search-form {
  display: flex;
  flex-wrap: wrap; /* Wrap for small screens */
  gap: 10px; /* Add spacing between elements */
  align-items: center;
}
#search-modal .search-input:focus {
  border-color: rgba(188, 142, 46, 0.5); /* Highlight border on focus */
}
#search-modal .search-input {
  flex: 1; /* Input will take up remaining space */
  min-width: 200px; /* Ensure input doesn't get too small */
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 10px;
  height: 60px;
  font-size: 20px;
}
#search-modal .search-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}
#search-modal .search-btn:hover {
  color: rgba(188, 142, 46, 0.5);
}

.search-hotnew {
  background: #fff9ed;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 10px;
}

.box_article_description {
  /*overflow: auto;*/
}
.box_article_description iframe {
  width: 100%;
}

.pagination-custom {
  text-align: right;
  margin-top: 10px;
  padding: 10px 0;
  border-top: 2px solid rgb(188, 142, 46);
}
.pagination-custom .disabled {
  color: rgb(188, 142, 46);
  background: #e9ecef;
  pointer-events: none;
}
.pagination-custom .first, .pagination-custom .last {
  margin: 0 5px;
  padding: 4px 8px;
  border-radius: 5px;
}
.pagination-custom .page-number {
  padding: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
}
.pagination-custom span {
  margin: 0 10px;
  letter-spacing: 5px;
  font-weight: bold;
}
.pagination-custom a {
  display: inline-block;
  text-decoration: none;
  color: rgb(188, 142, 46);
  background: #f8f9fa;
  font-size: 14px;
  font-weight: 500;
}
.pagination-custom a:hover, .pagination-custom .active {
  background: #cf9a2c;
  color: #fff;
}

.search-page-content .box_title {
  text-align: left !important;
}
.search-page-content .box_title span {
  text-transform: none;
}
.search-page-content .search-result-content {
  padding: 0 10px;
  padding-top: 10px !important;
}
.search-page-content .search-result-content .search-results {
  min-height: 500px;
  padding-bottom: 10px;
}
.search-page-content .search-result-content .not-result-found {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.search-page-content .search-result-content .search-item {
  display: flex;
  align-items: stretch; /* Giúp các phần tử có chiều cao bằng nhau */
  /*background: #ffffff;*/
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.search-page-content .search-result-content .search-item img {
  width: 190px;
  height: 160px;
  min-width: 190px; /* Giữ nguyên kích thước dù ảnh lỗi */
  min-height: 160px;
  object-fit: cover;
  border-radius: 15px;
  /*background-color: #f0f0f0;*/ /* Màu nền thay thế nếu ảnh lỗi */
}
.search-page-content .search-result-content .search-content {
  justify-content: space-between; /* Dàn đều nội dung */
  flex-grow: 1; /* Giúp nội dung mở rộng chiều cao */
  padding: 10px;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px #c1c1c1 dotted;
}
.search-page-content .search-result-content .search-content h3 a {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(188, 142, 46);
  text-transform: uppercase;
  text-decoration: unset;
}
.search-page-content .search-result-content .search-content p {
  font-size: 14px;
  margin-bottom: auto;
  flex-grow: 1;
}
.search-page-content .search-result-content .search-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
}
.search-page-content .search-result-content .search-meta span {
  font-weight: 500;
}
.search-page-content .search-result-content .search-meta a {
  text-decoration: unset;
  color: rgb(188, 142, 46);
  font-weight: 500;
}
.search-page-content .search-hotnew {
  background: #fff9ed;
}

.search-form {
  /* Input tìm kiếm */
  /* Khi focus vào input */
  /* Nút tìm kiếm */
  /* Hiệu ứng hover */
}
.search-form .search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px;
  background: white;
}
.search-form .search-input:focus {
  outline: none;
}
.search-form .search-btn {
  border: none;
  background: none;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.search-form .search-btn:hover {
  color: #000;
}

#navbarSupportedContent ul {
  width: 100%;
}

.logo-brand img {
  height: 110px;
  margin: 0 20px;
}

.bg-custom {
  background: #231f20;
}

.desc, .carousel-text-description {
  text-indent: 1em; /* Thụt đầu dòng tương đương 1 tab */
  line-height: 1.6; /* Tăng khoảng cách dòng cho dễ đọc */
}

.b-divider {
  height: 20px;
}

.box_title {
  text-align: center !important;
  color: rgb(188, 142, 46) !important;
  font-weight: 400;
  cursor: pointer;
  font-size: 30px !important;
  text-transform: uppercase;
  text-decoration: unset;
}

.box_title_v1 {
  color: rgb(188, 142, 46) !important;
  font-weight: 500;
  cursor: pointer;
  font-size: 24px !important;
  text-decoration: unset;
  word-wrap: break-word;
  text-transform: uppercase;
}

.box_article_title {
  color: rgb(188, 142, 46) !important;
  font-weight: 400;
  cursor: pointer;
  font-size: 30px !important;
  text-transform: uppercase;
  text-decoration: unset;
}

.box_title_sub {
  font-size: 16px;
  color: activeborder;
  padding: 15px;
  margin: 0 50px;
  text-align: center;
}

.b-divider-shadow {
  height: 30px;
  margin: 0 -20px;
  background: #f9f9f9;
  box-shadow: inset 0px 3px 5px 0px rgba(0, 0, 0, 0.2), inset 0px 4px 0px rgba(253, 253, 253, 0.25), inset 0px 0px 5px 0px rgba(111, 111, 111, 0.2);
}

.container-fluid-chuyengia {
  background-image: url(../assets/img/bg-chuyengia.jpg);
}

.container-fluid-footer {
  background-color: #ededed;
  box-shadow: 0px 5px 1px 6px rgba(0, 0, 0, 0.1);
}

.box_book {
  background: url(../assets/img/bg_book.jpg) no-repeat top left;
  background-size: cover;
}

.btn_yellow {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  color: #FFF;
  text-transform: uppercase;
  font-size: 16px;
  /*font-family: "SVN-GothamBold";*/
  border-radius: 20px;
  background: rgb(188, 142, 46);
  transition: all 0.3s;
  text-decoration: none;
  font-weight: bold;
  border: none;
}

.btn_yellow:hover {
  color: white;
}

.input-group-datetimepicker {
  position: relative;
}
.input-group-datetimepicker .input-group-text {
  cursor: pointer;
  position: absolute;
  top: 0%;
  right: 0px;
  height: 100%;
  width: 35px;
  border-radius: 0 20px 20px 0;
}

.section {
  background-color: #fffffe;
  margin: 0;
  padding: 0;
}

.section.category-list-slick {
  background: rgba(215, 158, 40, 0.1098039216);
}

.section.product-list-slick {
  background: rgba(215, 138, 40, 0.0392156863);
}

.category-container, .product-container {
  padding: 0 60px;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: #fff;
}
.breadcrumb .box_breadcrumb {
  /*background-color: #FFF;*/
  margin-bottom: 0;
  /*border-bottom: 1px solid #f9e5cf;*/
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li {
  display: inline-block;
  padding: 5px 0;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li a {
  color: #494949;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li:last-child {
  color: rgb(188, 142, 46);
  font-size: 15px;
  font-weight: 400;
  /*margin-top: -3px;*/
  /*text-shadow: 0 0 black;*/
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li:last-child:before {
  top: 13px;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li + li {
  position: relative;
  padding-left: 30px;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb > li + li:before {
  content: "";
  width: 8px;
  height: 7px;
  position: absolute;
  top: 17px !important;
  left: 12px;
  background: url(../assets/img/icon_13.png) no-repeat;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb {
  /*background-color: #FFF;*/
  margin: 10px 0;
  padding-left: 0;
  padding: 8px 15px;
  list-style: none;
  border-radius: 4px;
}
.breadcrumb .box_breadcrumb .ul-breadcrumb a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.box_categories {
  background: #f5f5f5;
}

.categories-content .actor-list .actor-item {
  padding: 15px 15px;
}
.categories-content .actor-list .actor-item .image {
  position: relative;
  width: 100%; /* Đảm bảo ảnh full chiều rộng của div */
  padding-top: 100%; /* Tạo tỷ lệ 1:1 cho ảnh */
  overflow: hidden;
  border-radius: 50%; /* Bo tròn ảnh */
}
.categories-content .actor-list .actor-item .image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}
.categories-content .actor-list .actor-item .image a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 10px solid rgba(245, 245, 245, 0.54);
  box-sizing: border-box;
}
.categories-content .actor-list .actor-item:hover .image a::after {
  border-color: rgba(233, 174, 55, 0.24);
}
.categories-content .actor-list .actor-item:hover .info .title a {
  color: rgba(233, 174, 55, 0.57);
}
.categories-content .actor-list .actor-item .actor-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Đảm bảo ảnh luôn bao phủ mà không méo */
  object-position: center; /* Căn giữa ảnh */
  border-radius: 50%; /* Bo tròn ảnh */
}
.categories-content .actor-list .actor-item .info {
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
}
.categories-content .actor-list .actor-item .info .title a {
  color: #454545;
  text-decoration: none;
  transition: color 0.3s ease;
}

.box_list_item .item .image {
  background-size: cover;
  border-radius: 20px;
  background-color: #e5c864;
}
.box_list_item .item .image a {
  display: FLEX;
  aspect-ratio: 1;
  position: relative;
}
.box_list_item .item .image span {
  opacity: 0;
  transition: all 0.15s ease-in-out 0s;
  z-index: 1;
  position: absolute;
  width: 116px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  font-family: "SVN-GothamMedium";
  border: 1px solid #FFF;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -58px;
}
.box_list_item .item .image:hover a {
  background: rgba(207, 154, 44, 0.55);
  border-radius: 20px;
}
.box_list_item .item .image:hover span {
  opacity: 1;
}
.box_list_item .title {
  font-weight: bold;
  padding: 15px 0;
}
.box_list_item .title a {
  color: rgb(188, 142, 46);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
.box_list_item .title:hover a {
  color: #333333;
}
.box_list_item .desc {
  font-size: 16px;
  font-style: italic;
  text-align: justify;
}

.section-category {
  /* Ẩn nút khi không cần thiết */
}
.section-category .slick-next {
  position: absolute;
  top: 50%;
  right: -50px; /* Điều chỉnh khoảng cách */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(188, 142, 46, 0.7); /* Vàng ánh kim mờ */
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(188, 142, 46, 0.3);
  font-size: 40px; /* Kích thước dấu › lớn hơn */
  font-weight: bold; /* Làm đậm */
  line-height: 1;
  text-align: center;
}
.section-category .slick-next span {
  margin-top: -10px;
}
.section-category .slick-prev {
  position: absolute;
  top: 50%;
  left: -50px; /* Điều chỉnh khoảng cách */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(188, 142, 46, 0.7); /* Vàng ánh kim mờ */
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(188, 142, 46, 0.3);
  font-size: 40px; /* Kích thước dấu › lớn hơn */
  font-weight: bold; /* Làm đậm */
  line-height: 1;
  text-align: center;
}
.section-category .slick-prev span {
  margin-top: -10px;
}
.section-category .slick-prev:hover, .section-category .slick-next:hover {
  background: rgb(188, 142, 46); /* Màu vàng đậm hơn khi hover */
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(188, 142, 46, 0.5);
  color: white;
}
.section-category .slick-prev:focus, .section-category .slick-next:focus {
  outline: none;
}
.section-category .slick-prev.slick-disabled, .section-category .slick-next.slick-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.section-category .slick-prev:before, .section-category .slick-next:before {
  content: "";
}

.section-contact {
  /*        .col-md-5,
  .col-md-7,
  .col-xs-12 {
      padding: 15px;
      box-sizing: border-box;
  }*/
}
.section-contact .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.section-contact .hidden-xs {
  display: none;
}
@media (min-width: 576px) {
  .section-contact .hidden-xs {
    display: block;
  }
}
.section-contact .image {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 50px;
}
.section-contact .box_wrap {
  border-radius: 10px;
  padding: 20px;
}
.section-contact .box_title {
  /*font-family: "SVN-GothamLight";*/
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(188, 142, 46);
}
.section-contact .form-group {
  margin-bottom: 15px;
}
.section-contact .form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}
.section-contact .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
  outline: none;
}
.section-contact .note {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 10px;
  text-align: left;
}
.section-contact .btnSuccess {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}
.section-contact .btn_yellow {
  display: inline-block;
  background: #ffcc00;
  color: #fff;
  padding: 0px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.section-contact .btn_yellow:hover {
  background: #e6b800;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}
.section-contact .open {
  font-size: 1.25rem;
  color: #666;
  text-align: left;
  line-height: 1.5;
}
.section-contact .open span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0056b3;
}
.section-contact select.form-control {
  height: calc(2.5rem + 14px);
  line-height: 1.5;
  padding: 0 15px;
  border-radius: 20px;
  appearance: none;
  background-size: 10px;
}
.section-contact select.form-control:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.section-slide-doctor-articles {
  padding: 50px 0;
  background: url("../assets/img/bg-chuyengia.jpg") no-repeat center center #fffdf7;
}
.section-slide-doctor-articles .title {
  text-align: center;
  color: rgb(188, 142, 46);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
}
.section-slide-doctor-articles .title a {
  color: rgb(188, 142, 46);
  text-decoration: unset;
}
.section-slide-doctor-articles .doctor-dec {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 0;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  color: #232323;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-indicators li {
  width: 12px; /* Kích thước hình tròn */
  height: 12px;
  border-radius: 50%; /* Làm tròn thành hình tròn */
  border: 1px solid transparent; /* Viền */
  outline: 1px solid rgb(188, 142, 46);
  background-color: transparent; /* Nền trong suốt */
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-indicators li::marker {
  content: none !important;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-indicators .active {
  background-color: rgb(188, 142, 46); /* Màu nền khi active */
  outline: 1px solid rgb(188, 142, 46); /* Viền ngoài */
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item {
  position: relative;
  min-height: 500px;
  padding-bottom: 35px;
  background-size: cover;
  background-position: center;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-image {
  flex: 1;
  text-align: center;
  padding: 15px;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-image img {
  max-width: 100%;
  /*max-height: 300px;*/
  border-radius: 10px;
  height: 400px;
  width: 400px;
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-text {
  flex: 1;
  padding-top: 30px;
  height: 100%;
  color: rgb(188, 142, 46);
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-text h5 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-text h6 {
  font-size: 1.2rem;
  font-weight: normal;
  text-transform: uppercase;
  font-style: italic;
  color: #898989;
  padding-left: 5px;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-text .carousel-text-description {
  width: 100%;
  height: 250px;
}
.section-slide-doctor-articles #carouselExampleAutoplaying .carousel-item .carousel-content .carousel-text .carousel-text-description p {
  font-size: 1.2rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  word-break: break-word;
  cursor: pointer;
  text-align: justify;
  white-space: pre-line;
}
.section-slide-doctor-articles .slider {
  /*max-height: 300px;*/
}
.section-slide-doctor-articles .slider .slick-track {
  /*max-height: 300px;
  height: 300px;*/
  /*width: 350px !important;*/
  width: auto !important;
  display: flex;
}
.section-slide-doctor-articles .slider .slide-item {
  /*width: 300px !important;*/
  /*height: 300px !important;*/
  /*border-radius: 5px;*/
  min-width: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content {
  margin: 10px;
  border-radius: 20px;
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content .image-container {
  background-size: cover !important;
  border-radius: 23px 23px 0 0;
  padding-top: 70%;
  width: 100%;
  position: relative;
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content .slide-item-footer {
  border-radius: 0 0 20px 20px;
  padding: 10px 15px;
  background: rgba(188, 142, 46, 0.2);
  min-height: 75px;
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content .slide-item-footer .title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: rgb(188, 142, 46);
}
.section-slide-doctor-articles .slider .slide-item .slide-item-content .slide-item-footer .sub-title {
  font-size: 12px;
  font-style: italic;
  text-align: center;
  color: #84837E;
}
.section-slide-doctor-articles .slider .slick-current .slide-item-footer {
  background: rgb(237, 178, 66) !important;
  color: white !important;
}
.section-slide-doctor-articles .slider .slick-current .slide-item-footer .title {
  color: white !important;
  font-weight: 400;
}
.section-slide-doctor-articles .doctor-list-test .slick-slide {
  transition: opacity 0.3s ease;
  margin: 0 10px; /* Tạo khoảng cách 20px giữa các slide */
  opacity: 0.8;
}
.section-slide-doctor-articles .doctor-list-test .box {
  max-width: 300px;
}
.section-slide-doctor-articles .doctor-list-test .slick-slide .box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}
.section-slide-doctor-articles .doctor-list-test .slick-slide .image-container {
  width: 100%;
  padding-top: 100%; /* Tạo tỷ lệ 1:1 cho ảnh */
  position: relative;
}
.section-slide-doctor-articles .doctor-list-test .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.section-slide-doctor-articles .doctor-list-test .slick-slide .text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
.section-slide-doctor-articles .doctor-list-test .slick-slider {
  width: 90%;
  margin: 20px auto;
}
.section-slide-doctor-articles .doctor-list-test .slick-current {
  opacity: 1;
}

.section-slide-service-articles {
  padding: 100px 0;
  /* Slick Navigation Arrow styling */
  /* Responsive adjustments */
}
.section-slide-service-articles .slick-list {
  margin: 0 40px;
}
.section-slide-service-articles .doctor-dec {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 20px 0;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  color: #232323;
}
.section-slide-service-articles .slider-service {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
.section-slide-service-articles .slide-item {
  max-width: 300px; /* Width of each item */
  padding: 0 10px;
  margin: 0 10px;
  box-sizing: border-box;
}
.section-slide-service-articles .slide-item .content {
  width: 100%;
  min-height: 260px;
  border-radius: 20px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.section-slide-service-articles .slide-item .content .slide-item-span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding: 15px;
  background: rgba(123, 123, 123, 0.5411764706);
}
.section-slide-service-articles .slide-item .content .slide-item-span a {
  text-transform: capitalize;
  color: rgb(188, 142, 46);
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  line-height: 1.5;
  text-decoration: none;
}
.section-slide-service-articles .slide-item .content .slide-item-span:hover {
  transition: all 0.15s ease-in-out 0s;
  background: rgba(55, 44, 44, 0.5411764706);
  cursor: pointer;
}
.section-slide-service-articles .slide-item .content .action {
  width: 100%;
  height: 100%;
  min-height: 160px;
  position: absolute;
}
.section-slide-service-articles .slide-item .content .action span {
  opacity: 0;
  transition: all 0.15s ease-in-out 0s;
  z-index: 1;
  position: absolute;
  width: 120px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  font-size: 16px;
  border: 1px solid #FFF;
  border-radius: 30px;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -58px;
  font-weight: bold;
}
.section-slide-service-articles .slide-item .content .action:hover span {
  opacity: 1;
}
.section-slide-service-articles .slide-item .content .action:hover {
  background: rgba(207, 154, 44, 0.55);
  z-index: 1;
}
.section-slide-service-articles .slick-prev, .section-slide-service-articles .slick-next {
  color: black;
  font-size: 2rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(241, 189, 80, 0.7529411765);
  border-radius: 50%;
}
.section-slide-service-articles .slick-prev i, .section-slide-service-articles .slick-next i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: white;
}
.section-slide-service-articles .slick-prev {
  left: 0px;
}
.section-slide-service-articles .slick-prev i {
  padding: 8px 12px;
}
.section-slide-service-articles .slick-next {
  right: 0px;
}
.section-slide-service-articles .slick-next i {
  padding: 8px 15px;
}
.section-slide-service-articles .slick-prev::before, .section-slide-service-articles .slick-next::before {
  display: none;
}
.section-slide-service-articles .slick-prev:hover, .section-slide-service-articles .slick-next:hover {
  background: rgba(241, 189, 80, 0.5882352941);
}
.section-slide-service-articles .slick-next:focus, .section-slide-service-articles .slick-prev:focus {
  background: rgba(241, 189, 80, 0.7529411765);
}
@media (max-width: 768px) {
  .section-slide-service-articles .slide-item {
    width: 250px; /* Slightly smaller for tablets and mobile */
  }
}
@media (max-width: 480px) {
  .section-slide-service-articles .slide-item {
    width: 200px; /* Adjust for small screens */
  }
}

.section-news {
  padding: 50px 0;
  background: rgb(247, 247, 247);
}
.section-news .box_content .item .image {
  background-size: cover;
  border-radius: 20px;
  background-color: #e5c864;
}
.section-news .box_content .item .image a {
  display: FLEX;
  aspect-ratio: 1;
  position: relative;
}
.section-news .box_content .item .image span {
  opacity: 0;
  transition: all 0.15s ease-in-out 0s;
  z-index: 1;
  position: absolute;
  width: 116px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  font-family: "SVN-GothamMedium";
  border: 1px solid #FFF;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -58px;
}
.section-news .box_content .item .image:hover a {
  background: rgba(207, 154, 44, 0.55);
  border-radius: 20px;
}
.section-news .box_content .item .image:hover span {
  opacity: 1;
}
.section-news .box_content .title {
  font-weight: bold;
  padding: 15px 0;
}
.section-news .box_content .title a {
  color: rgb(188, 142, 46);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
.section-news .box_content .title:hover a {
  color: #333333;
}
.section-news .box_content .desc {
  font-size: 16px;
  font-style: italic;
  text-align: justify;
}
.section-news .control {
  padding-top: 50px;
}

.section-feedback {
  padding: 50px 0;
  background: rgba(215, 158, 40, 0.2196078431);
  margin: 3rem 0;
  min-height: 400px;
}
.section-feedback .box_list_item .item .image {
  background-size: cover;
  border-radius: 20px;
  border: 1px solid rgba(188, 142, 46, 0.2);
  background-color: rgba(188, 142, 46, 0.5);
}
.section-feedback .box_list_item .item .image a {
  display: FLEX;
  aspect-ratio: 1;
  position: relative;
}
.section-feedback .box_list_item .item .image span {
  opacity: 0;
  transition: all 0.15s ease-in-out 0s;
  z-index: 1;
  position: absolute;
  width: 116px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  font-size: 14px;
  font-family: "SVN-GothamMedium";
  border: 1px solid #FFF;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -58px;
}
.section-feedback .box_list_item .item .image:hover a {
  background: rgba(207, 154, 44, 0.55);
  border-radius: 20px;
}
.section-feedback .box_list_item .item .image:hover span {
  opacity: 1;
}
.section-feedback .box_list_item .title {
  font-weight: bold;
  padding: 15px 0;
}
.section-feedback .box_list_item .title a {
  color: rgb(188, 142, 46);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
.section-feedback .box_list_item .title:hover a {
  color: #333333;
}
.section-feedback .box_list_item .desc {
  font-size: 16px;
  font-style: italic;
  text-align: justify;
}
.section-feedback .control {
  padding-top: 50px;
}

.image-banner1 {
  max-height: 500px; /* Chiều cao tối đa của container */
  min-height: 500px;
  position: relative;
  width: 100%; /* Chiều rộng 100% container */
  overflow: hidden; /* Ẩn phần ảnh thừa nếu có */
  background-color: #f0f0f0; /* Tùy chọn: Thêm màu nền nếu ảnh nhỏ hơn div */
}
.image-banner1 img {
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.image-banner {
  height: 300px;
  width: 100%; /* Chiều rộng 100% container */
  display: flex; /* Sử dụng Flexbox */
  justify-content: center; /* Căn giữa theo chiều ngang */
  align-items: center; /* Căn giữa theo chiều dọc */
  overflow: hidden; /* Ẩn phần ảnh thừa nếu có */
  background-color: #f0f0f0; /* Tùy chọn: Thêm màu nền nếu ảnh nhỏ hơn div */
  display: none;
}
.image-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image-banner:hover {
  height: auto;
}

/** ====================== FOOTER ==================*/
.footer {
  background-color: #f5f5f5;
  color: #333333;
  padding-top: 40px;
}
.footer .container {
  min-height: 400px !important;
  display: flex;
  flex-direction: column;
}
.footer .container .content {
  flex: 1;
}
.footer .footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__nav .footer_title {
  color: rgb(188, 142, 46) !important;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px !important;
  text-transform: uppercase;
  text-decoration: unset;
}
.footer .footer__nav .footer_hotline ul li {
  font-size: 24px;
  font-weight: 500;
}
.footer .footer__nav .footer_hotline a {
  text-decoration: unset;
  color: #333 !important;
  font-size: 22px !important;
}
.footer .footer__nav .footer_address {
  font-size: 14px;
  line-height: 24px;
}
.footer .footer__nav .footer_address .branches {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.footer .footer__nav .footer_address .branches-address {
  /*text-transform: uppercase;*/
}
.footer .footer__nav .footer_address .branches-address span {
  color: rgb(188, 142, 46);
  font-weight: 500;
  transition: all 0.15s ease-in-out 0s;
}
.footer .footer__nav .footer_address .branches-phone {
  /*text-transform: uppercase;*/
}
.footer .footer__nav .footer_address .branches-phone span {
  color: #404040;
  font-weight: bold;
  transition: all 0.15s ease-in-out 0s;
}
.footer .footer__nav .footer_follow .social-icons a {
  padding: 0 5px;
  font-size: 22px;
}
.footer .footer__logo {
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.footer .footer__logo img {
  max-width: 150px;
  border-radius: 50px;
}
.footer .footer__bottom {
  border-top: 1px solid #cbcbcb;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  background: #f5f5f5;
}

.social-icons {
  display: flex;
  gap: 15px; /* Khoảng cách giữa các icon */
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Instagram Gradient */
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* YouTube Red */
.youtube {
  background-color: #FF0000;
}

/* Facebook Blue */
.facebook {
  background-color: #1877F2;
}

/* Twitter Blue */
.twitter {
  background-color: #1DA1F2;
}

.tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: black;
  border: 2px solid transparent;
  box-shadow: 0 0 4px #25F4EE, 0 0 4px #FE2C55;
  color: white;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}
