@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #fd3a13;
  --bg-gray: #202024;
  --white: #f8f8fb;
  --meta: #aaa;
  --black: #16161a;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

.modal-backdrop.fade.show.modal-stack {
  display: none !important;
}

body, html {
  font-family: "Roboto", serif;
  font-size: 16px;
  color: var(--white);
  background-color: var(--black);
  scroll-behavior: smooth;
}

section, .bg-module {
  background-color: var(--black);
}

header {
  position: relative;
  height: 62px;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background: var(--bg-gray);
  z-index: 1000;
}

.flex-box-header {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.container:after, .container:before {
  content: none;
}

.flex-topbar {
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-topbar ul {
  margin: 0;
  padding: 0;
}

.flex-topbar .menu-topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.flex-topbar .menu-topbar li a {
  color: #fff;
  font-size: 12px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-transform: capitalize;
}

.flex-topbar .menu-topbar li a:hover {
  color: var(--primary);
}

.flex-topbar .social-topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.flex-topbar .social-topbar li a {
  color: #fff;
  font-size: 12px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.flex-topbar .social-topbar li a:hover {
  color: var(--primary);
}

header .logo img {
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.left-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}

header .navbar ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 23px;
}

header .navbar ul li {
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

header .navbar ul li a {
  color: #fff;
  display: block;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

header .navbar ul li a:hover {
  color: var(--primary);
}

@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
header .navbar:after, header .navbar:before {
  content: none;
}

header .navbar ul li ul {
  position: absolute;
  float: left;
  width: 200px;
  background-color: #999;
  display: none;
  top: 100%;
  -webkit-animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  z-index: 1;
}

header .navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}

header .navbar ul li:hover > ul {
  display: block;
}

header .navbar ul li:hover > .sub-menu {
  background-color: #202024;
  height: 100%;
  display: inline-table;
  left: -50%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}

header .navbar ul li:hover > .sub-menu li a {
  padding: 10px;
  text-transform: unset;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub-menu li:hover .sub-menu-sub-menu {
  top: 0;
  left: 100%;
  display: inline-table;
  background: var(--bg-gray);
}

.scroll-navbar {
  position: fixed;
  top: 0;
}

#menu-bar {
  display: none;
}

.height-navigation {
  height: 62px;
}

.height-topbar {
  height: 35px;
}

header label input {
  display: none !important;
}

.container {
  max-width: 1280px !important;
  width: 100% !important;
}

a {
  text-decoration: none !important;
}

.navbar {
  height: 100%;
}

.navbar ul {
  height: 50px;
}

.topbar {
  background-color: #16161A;
}

.burger {
  display: none;
}

.search-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.search-header-main input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #666;
  padding: 4px 8px;
  color: #fff;
  font-size: 14px;
}

.search-header-main a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-header-main a i {
  color: #fff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.search-header-main a:hover i {
  color: var(--primary);
}

footer {
  padding: 40px 0;
  background-color: var(--bg-gray);
}

footer .title-footer {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

footer .list-cat {
  padding: 0;
  margin-bottom: 36px;
}

footer .list-cat * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

footer .list-cat li {
  margin-bottom: 14px;
}

footer .list-cat li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--white);
  font-size: 14px;
}

footer .list-cat li a span {
  color: var(--meta);
}

footer .list-cat li a:hover {
  color: var(--primary);
}

footer .list-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  padding: 0;
}

footer .list-tag li a {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--white);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 4px;
  padding: 0px 12px;
  font-size: 14px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .list-tag li a:hover {
  color: var(--primary);
}

footer .list-post {
  padding: 0;
}

footer .list-post * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

footer .list-post li {
  margin-bottom: 20px;
}

footer .list-post li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

footer .list-post li a span {
  width: 100px;
  height: 65px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

footer .list-post li a span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer .list-post li a .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer .list-post li a .content .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
}

footer .list-post li a .content .meta {
  font-size: 13px;
  color: var(--meta);
  font-weight: 400;
  margin: 0;
}

footer .list-post li a:hover .title {
  color: var(--primary);
}

footer .line-hr {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

footer .logo-footer img {
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

footer .desc-footer {
  font-size: 14px;
  color: var(--meta);
  margin: 0;
}

footer .social-footer {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}

footer .social-footer li {
  margin: 0;
}

footer .social-footer li a {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  color: #fff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 3px;
}

footer .social-footer li a svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

footer .social-footer li.facebook:hover a {
  background-color: #3b5999;
}

footer .social-footer li.twitter:hover a {
  background-color: #000;
}

footer .social-footer li.youtube:hover a {
  background-color: #f50000;
}

footer .social-footer li.instagram:hover a {
  background: -o-linear-gradient(75deg, #ffb13d, #dd277b, #4d5ed4);
  background: linear-gradient(15deg, #ffb13d, #dd277b, #4d5ed4);
}

footer .social-footer li.pinterest:hover a {
  background: #ca2127;
}

a {
  color: var(--white);
}

.absolute-footer {
  background-color: var(--black);
}

.absolute-footer .design-by {
  color: var(--white);
  font-size: 14px;
  padding: 20px 0;
}

.absolute-footer .list-absolute {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.absolute-footer .list-absolute li {
  padding: 20px 0;
}

.absolute-footer .list-absolute li a {
  color: var(--white);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 14px;
}

.absolute-footer .list-absolute li a:hover {
  color: var(--primary);
}

.new-module {
  padding: 20px;
  border-radius: 2px;
  background-color: var(--bg-gray);
}

.new-module .frame-title-module {
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}

.new-module .frame-title-module h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.new-module .frame-title-module a {
  font-size: 13px;
  color: var(--meta);
  font-weight: 300;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.new-module .frame-title-module a:hover {
  color: var(--primary);
}

.new-module .frame-title-module:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.new-module .post-large {
  position: relative;
  width: 100%;
  display: block;
}

.new-module .post-large * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.new-module .post-large .frame-image {
  display: block;
  width: 100%;
  height: 490px;
  border-radius: 2px;
  overflow: hidden;
}

.new-module .post-large .frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-module .post-large .frame-image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80%;
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.8));
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.8));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 1;
  margin: 0;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.new-module .post-large .frame-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.new-module .post-large .content {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
  padding: 20px;
  height: auto;
}

.new-module .post-large .content .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary);
  margin: 0;
}

.new-module .post-large .content .title {
  font-size: 21px;
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.35em;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.new-module .post-large .content .meta {
  font-size: 12px;
  color: var(--meta);
}

.new-module .post-large .content .meta span {
  font-weight: bold;
  color: #d5d5da;
}

.new-module .list-post-small {
  padding: 0;
  height: 490px;
  overflow-y: auto;
  margin: 0;
}

.new-module .list-post-small li {
  margin-bottom: 16px;
}

.new-module .list-post-small li:last-child {
  margin: 0;
}

.new-module .list-post-small * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.new-module .list-post-small .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.new-module .list-post-small .item .frame-image {
  width: 100px;
  height: 80px;
  overflow: hidden;
  border-radius: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.new-module .list-post-small .item .frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-module .list-post-small .item .frame-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.new-module .list-post-small .item .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.new-module .list-post-small .item .content a > h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.new-module .list-post-small .item .content a:hover h3 {
  color: var(--primary);
}

.new-module .list-post-small .item .content p {
  color: var(--meta);
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.reviews {
  padding-bottom: 0;
}

.reviews .item {
  margin-bottom: 20px;
}

.reviews .item * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.reviews .item .frame-image {
  display: block;
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  overflow: hidden;
}

.reviews .item .frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews .item .frame-image .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 8px;
  padding: 4px 8px;
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary);
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.reviews .item .frame-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.reviews .item a > h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.reviews .item a:hover h3 {
  color: var(--primary);
}

.reviews .item p {
  color: var(--meta);
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #8C8C8C;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F5F5F5;
}
.bg-module{
  background-size: cover;
  background-position: center;
  position: relative;
  .container{
    position: relative;
    z-index: 1;
  }
}
.bg-module:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: .5;
}

.pt-module {
  padding: 25px 0px;
}

.gadgets .list-post-small {
  height: auto;
}

.gadgets .list-post-small .item .frame-image {
  height: 70px;
}

.gadgets .list-post-small .item .content a > h3 {
  font-size: 14px;
}

.gadgets .post-large .frame-image {
  height: 200px;
}

.gadgets .post-large .frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gadgets .post-large .content {
  padding: 10px;
  gap: 4px;
}

.gadgets .post-large .content .category {
  font-size: 8px;
}

.gadgets .post-large .content .title {
  font-size: 16px;
}

.videos .post-large .frame-image {
  height: 400px;
}

.videos .post-large .frame-image .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.videos .post-large .frame-image .play-video img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.videos .post-large .content .title {
  font-size: 18px;
}

.videos .item-video-small * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.videos .item-video-small .frame-image-small {
  display: block;
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.videos .item-video-small .frame-image-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.videos .item-video-small .frame-image-small .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.videos .item-video-small .frame-image-small .play-video img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.videos .item-video-small .frame-image-small:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.videos .item-video-small a > h3 {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.videos .item-video-small a:hover h3 {
  color: var(--primary);
}

.videos .item-video-small p {
  color: var(--meta);
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.mobile * {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.mobile .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mobile .item .frame-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  position: relative;
  width: 235px;
  height: 150px;
  border-radius: 2px;
  overflow: hidden;
}

.mobile .item .frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mobile .item .frame-image .category {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  padding: 4px 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--white);
  background-color: var(--primary);
  margin: 0;
}

.mobile .item .frame-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.mobile .item .content a h3 {
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.mobile .item .content a:hover h3 {
  color: var(--primary);
}

.mobile .item .content h4 {
  font-size: 14px;
  color: var(--meta);
  font-weight: 400;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.mobile .item .content p {
  font-size: 12px;
  color: var(--meta);
  margin: 0;
}

.mobile .item .content p span {
  color: var(--primary);
}

.mobile .item:last-child {
  margin-bottom: 0;
}

.follow-us .flex-social-follow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.follow-us .flex-social-follow .item {
  width: 100%;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  padding-right: 10px;
  border-radius: 2px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.follow-us .flex-social-follow .item i {
  width: 34px;
  height: 34px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.follow-us .flex-social-follow .item i:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.08);
}

.follow-us .flex-social-follow .item.facebook {
  background-color: #3b5999;
}

.follow-us .flex-social-follow .item.youtube {
  background-color: #f50000;
}

.follow-us .flex-social-follow .item.instagram {
  background: -o-linear-gradient(75deg, #ffb13d, #dd277b, #4d5ed4);
  background: linear-gradient(15deg, #ffb13d, #dd277b, #4d5ed4);
}

.follow-us .flex-social-follow .item.pinterest {
  background-color: var(--black);
}

.follow-us .flex-social-follow .item:hover {
  opacity: 0.9;
}

.form-sidebar p {
  font-size: 14px;
  color: var(--meta);
  font-weight: 400;
}

.form-sidebar input {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  padding: 0px 10px;
  color: #c5c5c8;
  border-color: rgba(255, 255, 255, 0.05);
  width: 100%;
  height: 34px;
  margin-bottom: 12px;
}

.form-sidebar .btn-submit {
  width: 100%;
  height: 34px;
  background-color: var(--primary);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  border: 0;
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-sidebar .btn-submit:hover {
  opacity: 0.9;
}

.category-sidebar {
  padding: 0;
  margin: 0;
}

.category-sidebar li {
  margin-bottom: 12px;
}

.category-sidebar li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.category-sidebar li a h4 {
  color: var(--white);
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.category-sidebar li a span {
  color: var(--meta);
}

.category-sidebar li a:hover h4 {
  color: var(--primary);
}

.category-sidebar li:last-child {
  margin-bottom: 0;
}

.tag-sidebar {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.tag-sidebar li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4px 12px;
  font-size: 14px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 4px;
}

.tag-sidebar li a:hover {
  background-color: var(--primary);
}

.sticky-sidebar {
  position: sticky;
  top: 62px;
}

.alias-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--meta);
}

.alias-link a {
  color: var(--primary);
  font-size: 14px;
}

.title-post {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin: 12px 0;
}

.meta-time-post {
  color: var(--meta);
  font-size: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--meta);
  margin-bottom: 12px;
}

.meta-time-post span {
  color: var(--primary);
}

.content-detail {
  color: #c5c5c8;
}

.content-detail * {
  color: #c5c5c8;
}

.content-detail img {
  max-width: 100%;
  height: auto;
}

.frame-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.frame-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.frame-author .right-content .author {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.frame-author .right-content .note-au {
  font-size: 14px;
  color: var(--meta);
  margin: 0;
}

.frame-paganation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

.frame-paganation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.frame-paganation ul li a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  border-radius: 4px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-weight: 600;
}

.frame-paganation ul li a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.frame-paganation ul li.active a, .frame-paganation ul li.active:hover a {
  background-color: var(--primary);
  cursor: default;
}



.btn-boctham {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 35px;
  background-color: var(--primary);
  border: 0;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  padding: 0px 12px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-boctham:hover {
  background-color: var(--black);
}

.bg-login {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.bg-login .overlay-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.frame-login {
  width: 450px;
  border-radius: 8px;
  padding: 20px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.frame-login h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin: 0;
}

.frame-login input {
  margin: 0;
}

.frame-login label {
  margin-bottom: 6px;
}

.frame-login input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 4px;
  padding: 12px;
}

.frame-login .btn-submit {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--black);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-weight: 600;
  border-radius: 4px;
}

.frame-login .btn-submit:hover {
  background-color: var(--primary);
}

.frame-logo-login {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.frame-logo-login img {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  width: 100%;
}

.banner-about-us .bg-image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-about-us .bg-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  z-index: 0;
}
.grid-image {
  padding: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 100px);
  grid-gap: 12px;
  
}
.grid-slide-item{
  border: 1px solid gray;
  padding: 16px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: block;
  width: 90%;
  margin: auto;
  margin-top: 23px;
  background-color: var(--white);
  .text_text{
    text-align: center;
    font-weight: 600;
  }
}
.center{
  .grid-slide-item{
    width: 100%;
    margin-top: 0;
    background-color: var(--bg-gray);
    .text_text{
      color: var(--white);
    }
  }
}
#grid-slide .owl-nav{
  display: flex;
  top: 50%;
}

#grid-slide .owl-prev,#grid-slide .owl-next{
  position: absolute;
  top: 50%;
  padding: 25px;
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  i{
    font-size: 16px;
  }
}

#grid-slide .owl-prev{
  left: 0;
  transform: translate(-50%,-50%);
}

#grid-slide .owl-next{
  right: 0;
  transform: translate(50%,-50%);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__item{
  margin: 0;
  position: relative;

  .text_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    display: none;
    opacity: 0;
    transition: all .5s linear;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }

}
.gallery__item:after{
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: all .25s linear;
}
.gallery__item:hover:after{
  background-color: #000;
  opacity: .5
}
.gallery__item:hover .text_text{
  display: flex;
  opacity: 1;
  z-index: 1;
}

.gallery__item:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 1;
}

.gallery__item:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 2 / 2;
}

.gallery__item:nth-child(4) {
  grid-column: 1 / 7;
  grid-row: 5 / 3;
}

.gallery__item:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 5 / 6;
}

.gallery__item:nth-child(6) {
  grid-column: 4 / 7;
  grid-row: 5 / 6;
}

.banner-about-us .bg-image .content-breadcumb {
  z-index: 1;
}

.banner-about-us .bg-image .content-breadcumb h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.banner-about-us .bg-image .content-breadcumb .site-breadcumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-about-us .bg-image .content-breadcumb .site-breadcumb a {
  color: var(--white);
}

.banner-about-us .bg-image .content-breadcumb .site-breadcumb a:hover {
  color: var(--primary);
}

.banner-about-us .bg-image .content-breadcumb .site-breadcumb p {
  margin: 0;
}

a {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.padding-site {
  padding: 40px 0;
}

.frame-about-us p {
  color: var(--white);
}

.frame-about-us h2 {
  color: var(--primary);
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 24px;
}

.frame-about-us .slide-about-us img {
  height: 150px;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}

.frame-about-us .img-right {
  text-align: center;
}

.frame-about-us .img-right img {
  width: 60%;
}

.logo-boxing {
  background-color: #f2f2f2;
}

.logo-boxing img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-boxing img:hover {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.logo-boxing .abc {
  text-align: center;
  margin: 12px 0;
}

.team-about {
  background-color: #fff;
}

.team-about h2 {
  text-align: center;
  font-size: 36px;
  color: var(--black);
  font-weight: 800;
  margin-bottom: 24px;
}

.team-about .item-team {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--bg-gray);
  padding: 16px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin: 1px;
}

.team-about .item-team .avt {
  text-align: center;
}

.team-about .item-team .avt img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-about .item-team h3 {
  font-size: 18px;
  margin: 0;
  color: var(--black);
}

.team-about .item-team p {
  color: var(--meta);
  margin: 0;
}

.team-about .item-team ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.team-about .item-team ul li {
  margin: 0;
}

.team-about .item-team ul li a {
  color: var(--black);
}

.team-about .item-team:hover {
  background-color: var(--bg-gray);
}

.team-about .item-team:hover h3 {
  color: var(--white);
}

.team-about .item-team:hover ul li a {
  color: var(--white);
}

.team-about .item-team:hover ul li a:hover {
  color: var(--primary);
}

.modal.fade.show {
  opacity: 1;
}

.file-doc h2 {
  text-align: center;
  font-size: 36px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
}

.file-doc img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}

.modal-img-zoom img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 500px;
}

.event-tournament .item {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: 1px solid #d9d9d9;
  background-color: var(--white);
  border-radius: 8px;
  padding: 16px;
  position: relative;
  height: 100%;
}

.event-tournament .item .icon-game {
  position: absolute;
  top: 10px;
  right: 10px;
}

.event-tournament .item .icon-game img {
  opacity: 0.3;
  -o-object-fit: contain;
  object-fit: contain;
  width: 60px;
}

.event-tournament .item h3 {
  color: var(--black);
  font-size: 18px;
}

.event-tournament .item p {
  color: var(--black);
}

.event-tournament .item p span {
  background-color: var(--primary);
  color: var(--white);
  font-size: 12px;
  border-radius: 4px;
  padding: 0px 5px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.event-tournament .item p time {
  color: green;
}

.event-tournament .item a time {
  font-weight: 600;
}

.event-tournament .item .btn-boctham {
  font-size: 14px;
  font-weight: 600;
}

.title-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 12px;
}

.title-img img {
  width: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.bg-gray-event {
  background-color: #f2f2f2;
}

.event-tournament.bg-gray-event h2 {
  color: var(--black);
}

.register-form {
  background-color: var(--white);
}

.register-form h2 {
  color: var(--black);
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 24px;
}

.table-responsive::-webkit-scrollbar {
  height: 3px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #8C8C8C;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #F5F5F5;
}

.tab-pane.fade.show {
  opacity: 1;
}

i {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.thanhvien-block .nav-pills {
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thanhvien-block .nav-pills .nav-link {
  color: var(--black);
  border: 1px solid var(--black);
  padding: 4px 12px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.thanhvien-block .nav-pills .nav-link:hover {
  color: var(--primary);
}

.thanhvien-block .nav-pills .nav-link.active, .thanhvien-block .nav-pills .show > .nav-link {
  background: var(--primary) !important;
  border: 1px solid var(--primary);
  color: var(--white);
}

.thanhvien-block .item {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-top: 24px;
  height: 210px;
}
.thanhvien-block .item .frame-img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.thanhvien-block .item .frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.thanhvien-block .item .frame-content{

}
.thanhvien-block .item .frame-content h3 {
  font-size: 22px;
}
.thanhvien-block .item .frame-content h4 {
  font-size: 18px;
}
.thanhvien-block .item .frame-content p {
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.thanhvien-block .item .frame-content a {
  background-color: var(--primary);
  color: #fff;
  border-radius: 24px;
  padding: 4px 8px;
  font-size: 14px;
}
.thanhvien-block .item .frame-content a:hover {
  background-color: var(--black);
}

@-webkit-keyframes slide-in-fwd-bottom {
  0% {
    display: -webkit-box;
    display: flex;
    -webkit-transform: translateZ(-1400px) translateY(80px);
    transform: translateZ(-1400px) translateY(80px);
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: flex;
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-bottom {
  0% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateZ(-1400px) translateY(80px);
    transform: translateZ(-1400px) translateY(80px);
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-fwd-bottom-reverse {
  0% {
    display: -webkit-box;
    display: flex;
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
  100% {
    display: -webkit-box;
    display: flex;
    -webkit-transform: translateZ(-1400px) translateY(80px);
    transform: translateZ(-1400px) translateY(80px);
    opacity: 0;
  }
}
@keyframes slide-in-fwd-bottom-reverse {
  0% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateZ(-1400px) translateY(80px);
    transform: translateZ(-1400px) translateY(80px);
    opacity: 0;
  }
}
@-webkit-keyframes member_overlay {
  0% {
    background: none;
  }
  100% {
    background: rgba(22, 18, 15, 0.7);
  }
}
@keyframes member_overlay {
  0% {
    background: none;
  }
  100% {
    background: rgba(22, 18, 15, 0.7);
  }
}
.register-member h2 {
  color: var(--white);
  text-align: center;
}

.register-member input {
  width: 100%;
  height: 40px;
  padding: 4px 12px;
  border: 1px solid var(--meta);
  background: #fff;
  border-radius: 4px;
  margin-bottom: 24px;
}

.register-member textarea {
  min-height: 250px;
  border: 1px solid var(--meta);
  background: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  resize: vertical;
  width: 100%;
  margin-bottom: 20px;
}

.register-member .btn-boctham {
  margin: auto;
}

.register-member .btn-boctham:hover {
  background-color: var(--meta);
}

.modal-videos {
  display: block;
  height: 450px;
  background-color: #fff;
}

.modal-videos iframe {
  width: 100%;
  height: 100%;
}

.bg-contact {
  background-color: #f1ede1;
}

.form-contact {
  border-color: #cac5b6;
  background-color: #e9e5d8;
}

.form-contact h2 {
  display: block;
  background-color: var(--black);
  width: 100%;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
}

.form-contact .box {
  padding: 20px;
}

.form-contact .box h3 {
  font-size: 16px;
  color: #5b5853;
  margin-bottom: 24px;
}

.form-contact .box input, .form-contact .box textarea {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #333;
  padding: 0px 12px;
}

.form-contact .box textarea {
  min-height: 200px;
}

.form-contact .box .btn-submit {
  padding: 6px 16px;
  color: #fff;
  background-color: var(--black);
  border: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-contact .box .btn-submit:hover {
  background-color: var(--primary);
}

.contact-info h2 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.contact-info ul {
  padding: 0;
  margin-bottom: 24px;
}

.contact-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

.contact-info iframe {
  width: 100%;
  height: 300px;
}

.sub-menu li a {
  font-weight: 600 !important;
}

.chitiet-thanhvien .item {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-top: 24px;
}
.chitiet-thanhvien .item img {
  width: 100%;
  height: 323px;
  object-fit: cover;
}
.chitiet-thanhvien .item .follow-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}
.chitiet-thanhvien .item .follow-icon li i {
  font-size: 20px;
}
.chitiet-thanhvien .item .follow-icon li i:hover {
  transform: translateY(-5px);
}

.lichsudau .h2-ms {
  text-transform: uppercase;
  font-size: 22px;
  text-align: center;
  width: max-content;
  margin: 0px auto 12px auto;
  color: var(--text);
  font-weight: bold;
}
.lichsudau .desc-ms {
  width: 60%;
  margin: 0px auto 12px auto;
  text-align: center;
}

.lichsudau .frame-line-tree {
  position: relative;
  margin-top: 24px;
}
.lichsudau .frame-line-tree .item {
  width: 47.9%;
  position: relative;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.lichsudau .frame-line-tree .item h4 {
  font-size: 18px;
}
.lichsudau .frame-line-tree .item p {
  font-size: 14px;
  margin-bottom: 0;
}
.lichsudau .frame-line-tree .item .date-timeline {
  position: absolute;
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
  background-color: rgba(253, 58, 19, 0.3490196078);
  font-weight: bold;
  border-radius: 3px;
  top: 30px;
  right: 0;
  transform: translateX(125%);
}
.lichsudau .frame-line-tree .item:after {
  content: "";
  position: absolute;
  border: 7px solid transparent;
  border-left-color: #fff;
  top: 40px;
  right: 0;
  transform: translateX(100%);
}
.lichsudau .frame-line-tree .item:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  box-shadow: 0 0 0 5px rgba(253, 58, 19, 0.3137254902);
  border-radius: 50%;
  top: 40px;
  right: 0%;
  transform: translateX(267%);
  z-index: 1;
}
.lichsudau .frame-line-tree .item:nth-child(even) {
  margin-left: auto;
}
.lichsudau .frame-line-tree .item:nth-child(even) .date-timeline {
  top: 30px;
  right: unset;
  left: 0;
  transform: translateX(-150%);
}
.lichsudau .frame-line-tree .item:nth-child(even):after {
  top: 40px;
  right: unset;
  left: 0;
  transform: translateX(-100%);
  border-left-color: transparent;
  border-right-color: #fff;
}
.lichsudau .frame-line-tree .item:nth-child(even):before {
  top: 40px;
  right: unset;
  left: 0;
  transform: translateX(-270%);
}
.lichsudau .frame-line-tree:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background-color: rgb(215, 228, 237);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1023px) {
  /*body, html {
  	overflow-x: hidden;
  }*/
  header {
    padding: 20px;
  }
  header label {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--bg-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
    opacity: 50%;
    overflow-y: auto;
    height: auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 16px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    display: none;
  }
  header .navbar ul li {
    width: 100%;
  }
  header .navbar ul li ul {
    position: relative;
    width: 100%;
  }
  @-webkit-keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  .nav-mobile {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    opacity: 100%;
    display: block !important;
  }
  header .navbar ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .burger {
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    display: block;
    margin-bottom: 0;
  }
  .burger > input {
    display: none;
  }
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .burger span:nth-of-type(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
  .burger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
  .burger span:nth-of-type(3) {
    top: 100%;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .burger input:checked ~ span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
  }
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .burger input:checked ~ span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
  }
  .navbar ul {
    height: auto;
  }
  header .navbar ul li {
    display: block;
  }
  header .navbar ul li:hover > .sub-menu {
    left: 0;
    padding-left: 20px;
  }
  .sub-menu li:hover .sub-menu-sub-menu {
    left: 0;
    padding-left: 20px;
  }
  header .navbar ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  ul.sub-menu li a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.modal-img-zoom .owl-nav {
  display: flex;
  top: 50%;
}

.modal-img-zoom .owl-prev, .modal-img-zoom .owl-next {
  position: absolute;
  top: 50%;
  padding: 25px;
  background-color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebebeb !important;
  transition: all 0.25s ease;
}
.modal-img-zoom .owl-prev i, .modal-img-zoom .owl-next i {
  font-size: 16px;
  color: #333;
}

.modal-img-zoom .owl-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.modal-img-zoom .owl-next {
  right: 0;
  transform: translate(50%, -50%);
}

@media (max-width: 991px) {
  .lichsudau .frame-line-tree .item:nth-child(even):before {
    transform: translateX(-300%);
  }
  .lichsudau .frame-line-tree .item {
    width: 46%;
  }
  .lichsudau .frame-line-tree .item:before {
    transform: translateX(296%);
  }
  .lichsudau .frame-line-tree .item .date-timeline {
    top: 30px;
  }
  .thanhvien-block .item .frame-img {
    width: 100px;
    height: 100px;
  }
  .contact-info h2 {
    margin-top: 24px;
  }
  .file-doc img {
    height: 340px;
  }
  .new-module .post-large .frame-image {
    height: 350px;
  }
  .new-module .list-post-small {
    height: 350px;
  }
  .gadgets .post-large .frame-image {
    height: 230px;
  }
  .gadgets .list-post-small {
    height: auto;
  }
  .videos .post-large .frame-image {
    height: 390px;
  }
  .follow-us .flex-social-follow {
    -ms-grid-columns: 1fr [4];
    grid-template-columns: repeat(4, 1fr);
  }
  footer .social-footer {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 12px;
  }
  .frame-footer-about {
    margin-top: 12px;
  }
}
@media (max-width: 540px) {
  .reviews .item .frame-image, .videos .item-video-small .frame-image-small {
    height: 120px;
  }
  .padding-site {
    padding: 20px 0;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(15, 5vw);
  }
  .gallery__item:nth-child(odd){
    grid-column: 1 / 2;
  }
  .gallery__item:nth-child(even){
    grid-column: 2 / 2;
  }
  .gallery__item:nth-child(1) {
    grid-row: 1 / 5;
  }
  .gallery__item:nth-child(2) {
    grid-row: 1 / 9;
  }
  .gallery__item:nth-child(3) {
    grid-row: 5 / 9;
  }
  .gallery__item:nth-child(4) {
    grid-column: 1 / 3 !important;
    grid-row: 13 / 9;
  }
  .gallery__item:nth-child(5) {
    grid-row: 16 / 13;
  }
  .gallery__item:nth-child(6) {
    grid-row: 13 / 16;
  }
  .gallery__item:nth-child(7) {
    grid-row: 22 / 16;
  }
  .gallery__item:nth-child(8) {
    grid-row: 16 / 19;
  }
  .gallery__item:nth-child(9) {
    grid-row: 19 / 22;
  }
  .gallery__item:nth-child(9) {
    grid-column: 2 / 2;
    grid-row: 19 / 22;
  }
  .gallery__item:nth-child(10) {
    grid-column: 1 / 3 !important;
    grid-row: 22 / 26;
  }
  .modal-videos {
    height: 240px;
  }
  .chitiet-thanhvien .item img {
    margin-bottom: 24px;
  }
  .lichsudau .desc-ms {
    width: 100%;
  }
  .lichsudau .frame-line-tree .item .date-timeline {
    position: relative;
    display: block;
    transform: unset !important;
    top: 0 !important;
    width: max-content;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .lichsudau .frame-line-tree .item:nth-child(even):before {
    transform: translateX(-322%) !important;
  }
  .lichsudau .frame-line-tree .item:nth-child(even) {
    margin-left: 45px;
  }
  .lichsudau .frame-line-tree .item:after {
    border-left-color: transparent;
    border-right-color: #fff;
    right: unset;
    left: 0;
    transform: translateX(-100%);
  }
  .lichsudau .frame-line-tree .item:before {
    transform: translateX(-322%);
    right: unset;
    left: 0;
  }
  .lichsudau .frame-line-tree .item {
    width: 87%;
    margin-left: 45px;
  }
  .lichsudau .frame-line-tree:after {
    left: 3%;
  }
  .btn-boctham {
    font-size: 14px;
  }
  .register-form h2 {
    font-size: 30px;
  }
  .banner-about-us .bg-image .content-breadcumb h1 {
    font-size: 36px;
  }
  .banner-about-us .bg-image {
    height: 250px;
  }
  .file-doc img {
    height: 245px;
  }
  .file-doc h2 {
    font-size: 30px;
  }
  .team-about h2 {
    font-size: 30px;
  }
  .frame-about-us h2 {
    font-size: 30px;
  }
  .frame-about-us .img-right {
    margin-top: 24px;
  }
  .frame-about-us .img-right img {
    width: 50%;
  }
  .frame-login {
    width: 90%;
    padding: 12px;
  }
  .new-module .post-large .content {
    padding: 12px;
  }
  .new-module {
    padding: 12px;
  }
  .title-post {
    font-size: 28px;
  }
  .search-header-main {
    display: none;
  }
  .new-module .post-large .frame-image {
    height: 240px;
  }
  .new-module .list-post-small {
    margin-top: 1rem;
  }
  .m-video-right {
    margin-top: 24px !important;
  }
  .mobile .item .frame-image {
    width: 150px;
    height: 110px;
  }
  .mobile .item .content a h3 {
    font-size: 16px;
  }
  .mobile .item .content h4 {
    margin: 4px 0;
  }
  .follow-us .flex-social-follow {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .absolute-footer .list-absolute {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .absolute-footer .list-absolute li {
    padding: 10px 0;
  }
  .absolute-footer .design-by {
    color: var(--white);
    font-size: 14px;
    padding: 0;
    padding-top: 10px;
    text-align: center;
  }
  .flex-topbar .menu-topbar {
    display: none;
  }
  .flex-topbar .social-topbar {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .new-module .post-large .content .title {
    font-size: 19px;
  }
}