body {
  font-family: "Inter", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  background: #3d3d3d;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffc337;
  line-height: normal;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  color: #ffc337;
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
}

@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 26px;
  font-weight: 700;
  position: relative;
}

@media (max-width: 768px) {
  h3 {
    font-size: 20px;
    line-height: 140%;
  }
}

h3::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc337;
}

p {
  line-height: 140%;
}

.light-green {
  background-color: #dfe9e5 !important;
}

.yellow {
  color: #ffc337 !important;
}

a {
  color: #fff;
}

a:hover {
  color: #ffc337;
}

.container {
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 60px);
  }
}

@media (max-width: 375px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

.breadcrumb-wrap {
  margin: 30px auto 0;
}

@media (max-width: 768px) {
  .breadcrumb-wrap {
    margin: 15px auto 0;
  }
}

.breadcrumb {
  display: flex;
  margin: 0 auto;
  min-height: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #c9c9c9;
}

.breadcrumb a {
  color: #c9c9c9;
}

.breadcrumb a:hover {
  color: #ffc337;
}

.breadcrumb li:not(:last-child) {
  position: relative;
}

.breadcrumb li:not(:last-child):after {
  content: ">";
  margin-left: 10px;
}

.float-group {
  position: fixed;
  right: 0;
  top: 65%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  color: #fff;
}

.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 110px;
  height: 60px;
  padding-left: 15px;
  border-radius: 30px 0px 0px 30px;
  border: 1px solid #007748;
  background: #0a7c5a;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .float-group #arrowTop {
    width: 75px;
    padding: 0;
    justify-content: center;
  }
}

.float-group img {
  width: 44px;
  height: 44px;
}

@media (max-width: 768px) {
  .float-group img {
    width: 34px;
    height: 34px;
  }
}

.float-group .float-sign {
  display: flex;
  align-items: center;
  width: 95px;
  height: 60px;
  font-size: 20px;
  font-weight: 800;
  padding-left: 15px;
  border-radius: 30px 0px 0px 30px;
  background: #fa4040;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
}

@media (max-width: 768px) {
  .float-group .float-sign {
    width: 75px;
    padding: 0;
    justify-content: center;
    font-size: 16px;
  }
}

.float-group .float-sign span {
  width: 50px;
}

@media (max-width: 768px) {
  .float-group .float-sign span {
    width: 40px;
  }
}

header {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #3d3d3d;
}

@media (max-width: 768px) {
  header {
    height: 80px;
  }
}

header .header-wrap {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  header .header-wrap {
    max-width: 100%;
    width: calc(100% - 60px);
    padding: 0 10px;
    background: #0a7c5a;
    border-radius: 50px;
    height: 50px;
  }
}

@media (max-width: 375px) {
  header .header-wrap {
    width: calc(100% - 40px);
  }
}

header .header-wrap-left {
  flex: 1;
  height: 55px;
  display: flex;
  justify-content: space-between;
  border-radius: 50px;
  background: #0a7c5a;
  padding: 0 50px;
}

@media (max-width: 768px) {
  header .header-wrap-left {
    background: transparent;
    padding: 0;
    height: 100%;
  }
}

header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@media (max-width: 768px) {
  header .logo img {
    height: 30px;
  }
}

header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }

  header nav.show {
    position: absolute;
    top: 65px;
    left: 0;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #0c0c0c;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }

  header nav.show ul {
    width: 100%;
    height: auto;
    padding: 10px 0;
    gap: 0;
  }

  header nav.show ul li {
    width: 100%;
    height: 49px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header nav.show ul li.border {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
  }
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
  }
}

header nav a {
  color: #fff;
  text-transform: uppercase;
}

header nav a:hover,
header nav a.on {
  color: #ffc337;
  font-weight: 900;
}

header .btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

header .join-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 176px;
  height: 55px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  padding: 0 5px;
  gap: 10px;
  position: relative;
  border-radius: 50px;
  background: #fa4040;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  header .join-btn {
    display: none;
  }
}

header .join-btn:hover {
  border: 1px solid #fa4040;
  color: #fa4040;
  background: transparent;
}

header .hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: url(../img/menu-icon.png) no-repeat center/cover;
}

@media (max-width: 375px) {
  header .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

main {
  margin: 0 auto;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-info-wrapper .container {
  display: flex;
  gap: 50px;
}

@media (max-width: 768px) {
  .section-info-wrapper .container {
    background: url(../img/home-img-m.png) no-repeat bottom center/cover;
    gap: 0;
  }
}

.section-info-wrapper .info-left {
  padding: 30px 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-info-wrapper .info-left {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .section-info-wrapper .info-img {
    display: none;
  }
}

.section-menu {
  background: #1f1f1f;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .section-menu {
    padding: 15px 0;
  }
}

.section-menu .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-menu .menu-title {
  font-weight: 700;
}

.section-menu ul {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 442px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .section-menu ul {
    min-width: 100%;
  }
}

.section-menu li a {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #6c6b6b;
  height: 45px;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .section-menu li a {
    height: 40px;
    padding: 0 20px;
  }
}

.section-menu li a::before {
  content: "";
  width: 16px;
  height: 24px;
  background: url(../img/home-arrow.png) no-repeat center/contain;
}

.section-feature {
  background: url(../img/home-bg.png) no-repeat center/cover;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section-feature {
    background: url(../img/home-bg-m.png) no-repeat center/cover;
    padding: 30px 0;
  }
}

.section-feature .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .section-feature .container {
    gap: 10px;
  }
}

.section-feature ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .section-feature ul {
    gap: 10px;
  }
}

.section-feature ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 50px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(10, 124, 90, 0.8) 0%, rgba(10, 124, 90, 0.4) 100%);
}

@media (max-width: 768px) {
  .section-feature ul li {
    padding: 15px 35px;
  }
}

.section-page {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section-page {
    padding: 30px 0;
  }
}

.section-page.gray {
  background: #1a1a1a;
}

.section-page.bg {
  background: url(../img/home-bg2.png) no-repeat bottom center/cover;
}

@media (max-width: 768px) {
  .section-page.bg {
    background: url(../img/home-bg2-m.png) no-repeat bottom center/cover;
  }
}

.section-page.bg2 {
  background: url(../img/home-bg3.png) no-repeat bottom center/cover;
}

@media (max-width: 768px) {
  .section-page.bg2 {
    background: url(../img/home-bg3-m.png) no-repeat bottom center/cover;
  }
}

.section-page .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-page .page-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-page .page-header {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-page .page-header img {
  height: 59px;
}

@media (max-width: 768px) {
  .section-page .page-header img {
    height: 40px;
  }
}

.section-page .page-header h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-page .page-header h2 {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-page .page-header h2::before {
  content: "";
  height: 44px;
  border-right: 2px solid #fff;
}

@media (max-width: 768px) {
  .section-page .page-header h2::before {
    width: 44px;
    height: 1px;
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}

.section-page h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.section-page h3::before {
  position: relative;
  left: 0;
}

.section-page .provided-wrap {
  border-radius: 20px;
  background: #262626;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #c6c6c6;
}

@media (max-width: 768px) {
  .section-page .provided-wrap {
    padding: 20px;
  }
}

.section-page .provided-wrap .provided-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-page .provided-wrap .provided-item {
  display: flex;
  border-radius: 15px;
  background: #333;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .provided-item {
    flex-direction: column;
  }
}

.section-page .provided-wrap .provided-item .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 40px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .provided-item .item-info {
    gap: 5px;
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .section-page .provided-wrap .provided-item .item-img img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 15px;
  }
}

.section-page .provided-wrap .provided-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .provided-item h4 {
    font-size: 18px;
  }
}

.section-page .provided-wrap .provided-item ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 140%;
}

.section-page .provided-wrap .logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .logo-list {
    flex-direction: column;
    gap: 10px;
  }
}

.section-page .provided-wrap .more-btn {
  display: none;
  position: relative;
  color: #ffc337;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .more-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
}

.section-page .provided-wrap .more-btn::before {
  content: "";
  width: 16px;
  height: 24px;
  background: url(../img/home-arrow.png) no-repeat center/contain;
  transform: rotate(90deg);
}

.section-page .provided-wrap .more-btn.active::before {
  transform: rotate(270deg);
}

.section-page .provided-wrap .detail-wrap {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .detail-wrap {
    flex-direction: column;
    gap: 10px;
    display: none;
  }
}

.section-page .provided-wrap .logo-item {
  flex: 0 0 calc(50% - 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  background: #333;
  padding: 15px 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .logo-item {
    flex: 0 0 100%;
    padding: 10px 15px;
    font-size: 18px;
  }
}

.section-page .provided-wrap .user-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .user-list {
    flex-direction: column;
  }
}

.section-page .provided-wrap .user-item {
  flex: 0 0 calc(25% - 15px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #d1d1d1;
  text-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .user-item {
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
}

.section-page .provided-wrap .user-item .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .user-item .info-wrap {
    align-items: flex-start;
  }
}

.section-page .provided-wrap .user-item img {
  width: 105px;
  height: 105px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .user-item img {
    width: 60px;
    height: 60px;
  }
}

.section-page .provided-wrap h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .section-page .provided-wrap h4 {
    font-size: 18px;
  }
}

.section-page .provided-wrap .game-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .game-list {
    flex-direction: column;
  }
}

.section-page .provided-wrap .game-item {
  width: 100%;
  flex: 0 0 calc(25% - 15px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #d1d1d1;
  text-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .game-item {
    flex: 0 0 100%;
    flex-direction: row;
    gap: 10px;
  }
}

.section-page .provided-wrap .game-item img {
  width: 105px;
  height: 105px;
}

@media (max-width: 768px) {
  .section-page .provided-wrap .game-item img {
    width: 60px;
    height: 60px;
  }
}

.section-news-list {
  padding: 30px 0;
}

@media (max-width: 768px) {
  .section-news-list {
    padding: 15px 0;
  }
}

.section-news-list .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 768px) {
  .section-news-list .container {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .section-news-list h1 {
    color: #c6c6c6;
  }
}

.section-news-list .list-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 768px) {
  .section-news-list .list-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}

.section-news-list .list-item {
  flex: 0 0 calc(50% - 30px);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: #262626;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-news-list .list-item {
    flex: 0 0 100%;
  }
}

.section-news-list .list-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

@media (max-width: 768px) {
  .section-news-list .list-item img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.section-news-list .list-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 30px;
}

@media (max-width: 768px) {
  .section-news-list .list-item .item-info {
    padding: 20px;
  }
}

.section-news-list .list-item .info-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-news-list .list-item .info-date .tag {
  padding: 5px 10px;
  background: #0a7c5a;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .section-news-list .list-item .info-date .tag {
    padding: 2px 10px;
  }
}

.section-news-list .list-item .info-date .date {
  font-size: 16px;
  font-weight: 400;
  color: #c6c6c6;
}

@media (max-width: 768px) {
  .section-news-list .list-item .info-date .date {
    font-size: 14px;
  }
}

.section-news-list .list-item h2 {
  min-width: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
}

@media (max-width: 768px) {
  .section-news-list .list-item h2 {
    font-size: 20px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.5;
  }

  @supports (-webkit-line-clamp: 2) {
    .section-news-list .list-item h2 {
      display: -webkit-box !important;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      white-space: normal;
    }
  }
}

.section-news-list .pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.section-news-list .pagination-wrap .page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #c6c6c6;
}

.section-news-list .pagination-wrap .page-item:hover,
.section-news-list .pagination-wrap .page-item.active {
  background: #0a7c5a;
  border-radius: 50%;
  color: #fff;
  flex: 0 0 40px;
}

.section-news-list .news-right {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-news-list .news-right {
    gap: 15px;
  }
}

.section-news-list .news-right h2 {
  color: #fff;
  font-size: 28px;
}

@media (max-width: 768px) {
  .section-news-list .news-right h2 {
    font-size: 20px;
  }
}

.section-news-list .news-right .side-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .section-news-list .news-right .side-list {
    gap: 15px;
  }
}

.section-news-list .news-right .side-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #c0c1c2;
  font-size: 16px;
}

@media (max-width: 768px) {
  .section-news-list .news-right .side-item {
    font-size: 14px;
  }
}

.section-news-list .news-right .side-item img {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .section-news-list .news-right .side-item img {
    width: 70px;
    height: 70px;
  }
}

.section-news-list .news-right .side-item .side-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-news-list .news-right .side-item .side-top {
  display: flex;
  justify-content: space-between;
}

.section-news-list .news-right .side-item .side-top h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .section-news-list .news-right .side-item .side-top h3 {
    font-size: 16px;
  }
}

.section-news-list .news-right .side-item .side-top .star {
  display: flex;
  gap: 5px;
  position: relative;
  font-weight: 600;
  color: #fff;
}

.section-news-list .news-right .side-item .side-top .star::before {
  content: "";
  height: 16px;
  width: 18px;
  background: url(../img/star3.png) no-repeat center/contain;
}

.section-news {
  padding: 30px 0;
}

@media (max-width: 768px) {
  .section-news {
    padding: 15px 0;
  }
}

.section-news .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 768px) {
  .section-news .container {
    gap: 15px;
  }
}

.section-news .news-wrapper {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}

@media (max-width: 768px) {
  .section-news .news-wrapper {
    gap: 15px;
  }
}

.section-news h2 {
  color: #fff;
}

.section-news h3 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .section-news h3 {
    font-size: 14px;
  }
}

.section-news h3:before {
  display: none;
}

.section-news .news-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 768px) {
  .section-news .news-bottom {
    font-size: 14px;
    /* flex-direction: column;
    align-items: flex-start;
    gap: 5px; */
    gap: 10px;
  }
}

.section-news .info-date {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .section-news .info-date {
    gap: 15px;
  }
}

.section-news .info-date .tag {
  padding: 5px 10px;
  background: #0a7c5a;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .section-news .info-date .tag {
    padding: 2px 10px;
  }
}

.section-news .info-tag {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-news .info-tag .tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-news .info-tag .tag:not(:first-child)::before {
  content: "";
  width: 3px;
  height: 3px;
  background: #d9d9d9;
  border-radius: 50%;
}

#news+footer {
  background: #3d3d3d;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #0c0c0c;
}

footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 55px;
  background: #0a7c5a;
  border-radius: 50px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  footer .footer-wrap {
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    max-width: calc(100% - 70px);
  }
}

footer .footer-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 30px;
}

@media (max-width: 768px) {
  footer .footer-left {
    margin: 0;
    flex-direction: column;
    gap: 10px;
  }
}

footer .footer-left .footer-logo {
  height: 41px;
}

footer .footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 30px;
}

@media (max-width: 768px) {
  footer .footer-right {
    margin: 0;
  }
}

footer .footer-right .media-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 40px;
  width: 150px;
  border-radius: 50px;
  border: 1px solid #b1b1b1;
  background: #353535;
  font-size: 10px;
  color: #b1b1b1;
}

footer .footer-right .media-item span {
  font-size: 18px;
  font-weight: 500;
}

footer .footer-right .media-item img {
  width: 18px;
  height: 21px;
}

footer .copyright {
  color: #fff;
  font-size: 14px;
  background: #282828;
  padding: 5px 0;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  footer .copyright {
    padding: 10px 0;
    font-size: 12px;
  }
}

footer .footer-menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

footer .footer-menu a {
  color: #fff;
  text-transform: uppercase;
}

footer .footer-menu a:hover,
footer .footer-menu a.on {
  font-weight: 900;
  color: #ffc337;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(5px);
  }
}

/*# sourceMappingURL=main.css.map */

@media (max-width: 678px) {

  .news .breadcrumb-item:first-child,
  .news .breadcrumb-item:nth-child(2) {
    width: 123px;
  }

  .news .breadcrumb-item:last-child {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFFFFFFF;
  }
}