@charset "UTF-8";
*, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.1; }

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative; }

.lang_swicth_wrapper {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  text-align: right;
  padding: 5px 0;
  z-index: 1000;
  display: block;
  border-bottom: 1px solid #dee2e6; }
  .lang_swicth_wrapper ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0 20px;
    justify-content: flex-end; }
  .lang_swicth_wrapper .lang_li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    background-color: transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease; }
    .lang_swicth_wrapper .lang_li a:hover {
      color: #0d6efd; }
  .lang_swicth_wrapper .lang_li.active a {
    background-color: #0d6efd;
    color: #ffffff; }
  @media (max-width: 768px) {
    .lang_swicth_wrapper {
      display: none; } }
.phone_lang_switch_wrapper {
  position: relative;
  display: none;
  background-color: #f8f9fa;
  padding: 5px 20px;
  border-bottom: 1px solid #dee2e6;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease; }
  .phone_lang_switch_wrapper:hover {
    background-color: #eff1f4; }
  .phone_lang_switch_wrapper:active {
    background-color: #e9ecef; }
  .phone_lang_switch_wrapper .switch_btn {
    color: #333;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    font-weight: 500;
    transition: background-color 0.2s ease; }
    .phone_lang_switch_wrapper .switch_btn:after {
      content: '▼';
      margin-left: 8px;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
      color: #0d6efd; }
    .phone_lang_switch_wrapper .switch_btn.active:after {
      transform: rotate(180deg); }
  .phone_lang_switch_wrapper #phone_lang_switch_wrapper {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000; }
    .phone_lang_switch_wrapper #phone_lang_switch_wrapper .lang_li a {
      display: block;
      padding: 12px 16px;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #dee2e6;
      transition: all 0.3s ease;
      text-align: center;
      font-weight: 500; }
      .phone_lang_switch_wrapper #phone_lang_switch_wrapper .lang_li a:hover {
        background-color: #f8f9fa;
        color: #0d6efd; }
    .phone_lang_switch_wrapper #phone_lang_switch_wrapper .lang_li.active a {
      background-color: #0d6efd;
      color: #ffffff; }
    .phone_lang_switch_wrapper #phone_lang_switch_wrapper .lang_li:last-child a {
      border-bottom: none;
      border-radius: 0 0 8px 8px; }
    .phone_lang_switch_wrapper #phone_lang_switch_wrapper.show {
      display: block; }
  @media (min-width: 769px) {
    .phone_lang_switch_wrapper {
      display: none; } }
  @media (max-width: 768px) {
    .phone_lang_switch_wrapper {
      display: block; } }
.head_bg_wrapper {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999; }

.head_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px; }
  @media (max-width: 768px) {
    .head_wrapper {
      padding: 0 15px;
      min-height: 60px; } }
.logo_wrapper {
  flex-shrink: 0; }
  .logo_wrapper a {
    display: block;
    line-height: 0; }
  .logo_wrapper .logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease; }
    .logo_wrapper .logo:hover {
      transform: scale(1.05); }
    @media (max-width: 768px) {
      .logo_wrapper .logo {
        height: 35px; } }
.head_wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0; }
  @media (max-width: 768px) {
    .head_wrapper ul {
      gap: 10px; } }
  @media (max-width: 768px) {
    .head_wrapper ul li:not(:first-child):not(:last-child) {
      display: none; } }
  .head_wrapper ul li {
    position: relative; }
    .head_wrapper ul li a {
      display: block;
      color: #333;
      text-decoration: none;
      padding: 15px 0;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden; }
      .head_wrapper ul li a:hover {
        color: #0d6efd; }
      .head_wrapper ul li a .animation_char {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #0d6efd;
        transition: width 0.3s ease; }
      .head_wrapper ul li a:hover .animation_char {
        width: 100%; }
      @media (max-width: 768px) {
        .head_wrapper ul li a {
          padding: 12px 0;
          font-size: 0.9rem; } }
    @media (max-width: 768px) {
      .head_wrapper ul li:has(.larger_screen) {
        display: none !important; } }
    .head_wrapper ul li .dropdown_wrapper {
      position: relative; }
      .head_wrapper ul li .dropdown_wrapper .small_screen {
        display: none;
        color: #333;
        cursor: pointer;
        padding: 12px 15px;
        background-color: #f8f9fa;
        border-radius: 4px;
        font-weight: 500;
        transition: background-color 0.3s ease; }
        .head_wrapper ul li .dropdown_wrapper .small_screen:hover {
          background-color: #f8f9fa;
          color: #0d6efd; }
        @media (max-width: 768px) {
          .head_wrapper ul li .dropdown_wrapper .small_screen {
            display: block; } }
      .head_wrapper ul li .dropdown_wrapper .dropdown-content {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffffff;
        min-width: 200px;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        display: none;
        z-index: 1000; }
        .head_wrapper ul li .dropdown_wrapper .dropdown-content a {
          color: #333;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          transition: background-color 0.3s ease;
          border-bottom: 1px solid #dee2e6; }
          .head_wrapper ul li .dropdown_wrapper .dropdown-content a:hover {
            background-color: #f8f9fa;
            color: #3498db; }
          .head_wrapper ul li .dropdown_wrapper .dropdown-content a:last-child {
            border-bottom: none; }
        .head_wrapper ul li .dropdown_wrapper .dropdown-content.show {
          display: block; }

main {
  flex: 1;
  padding: 40px 0; }
  @media (max-width: 768px) {
    main {
      padding: 20px 0; } }
.footer_wrapper {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 40px 80px 20px;
  margin-top: auto; }
  @media (max-width: 768px) {
    .footer_wrapper {
      padding: 30px 0 15px; } }
.footer_sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .footer_sections {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 0 15px;
      margin-bottom: 20px;
      text-align: center; } }
.us_wrapper .us_title {
  margin-bottom: 15px; }
  .us_wrapper .us_title span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff; }

.us_wrapper .us_container {
  display: flex;
  flex-direction: column;
  gap: 8px; }
  @media (max-width: 768px) {
    .us_wrapper .us_container {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px; } }
  .us_wrapper .us_container .footer_us a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease; }
    .us_wrapper .us_container .footer_us a:hover {
      color: #0d6efd; }

.footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem; }
  .footer_container a {
    color: #0d6efd;
    text-decoration: none; }
    .footer_container a:hover {
      text-decoration: underline; }
  @media (max-width: 768px) {
    .footer_container {
      padding: 15px;
      font-size: 0.8rem; } }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }
  @media (max-width: 768px) {
    .container {
      padding: 0 15px; } }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.fade-in {
  animation: fadeIn 0.5s ease-out; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; } }

@media (prefers-contrast: high) {
  .head_bg_wrapper {
    background: #ffffff; }
  .lang_swicth_wrapper .lang_li a {
    border: 1px solid #ffffff; } }

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