body {
  font-family: "Noto Sans KR", sans-serif !important;
}

/* 새로운 모던 디자인 스타일 */
.modern-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  height: 40px;
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 50px;
  left: 50px;
  animation-delay: 0s;
}

.card-2 {
  top: 200px;
  right: 50px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 100px;
  left: 100px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: #6b7280;
  font-size: 0.9rem;
}

.features-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.solution-section {
  padding: 6rem 0;
  background: white;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.solution-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.solution-features {
  margin-bottom: 2.5rem;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.dashboard-mockup {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: white;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #10b981;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.status-indicator.active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dashboard-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary.large, .btn-secondary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-secondary.large {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.modern-footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-separator {
  color: #4b5563;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.9rem;
}

/* 모바일 스타일 */
.mobile-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  height: 30px;
}

.mobile-nav {
  display: flex;
  gap: 1rem;
}

.mobile-nav-link {
  color: #374151;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #3b82f6;
}

.mobile-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1rem 2rem;
  color: white;
  text-align: center;
}

.mobile-hero-content {
  max-width: 100%;
}

.mobile-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.mobile-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.mobile-hero-buttons {
  display: flex;
  justify-content: center;
}

.mobile-btn {
  width: 100%;
  max-width: 300px;
}

.mobile-features {
  padding: 3rem 1rem;
  background: #f8fafc;
}

.mobile-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mobile-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mobile-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mobile-feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.mobile-cta {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  text-align: center;
}

.mobile-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mobile-cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.mobile-footer {
  background: #1f2937;
  color: white;
  padding: 2rem 1rem;
}

.mobile-footer-content {
  text-align: center;
}

.mobile-footer-logo img {
  height: 30px;
  margin-bottom: 1rem;
}

.mobile-footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.mobile-footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.mobile-footer-link:hover {
  color: white;
}

.mobile-footer-copyright {
  color: #6b7280;
  font-size: 0.8rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .pc_main {
    display: none;
  }
  
  .mobile_main {
    display: block;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .solution-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .dashboard-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .pc_main {
    display: block;
  }
  
  .mobile_main {
    display: none;
  }
}

.w-1100 {
  width: 1100px;
}
/* 스크롤바 전체에 대한 스타일 */

::-webkit-scrollbar {
  width: 7px; /* 스크롤바 너비 */
  height: 1px; /* 스크롤바 높이 */
  background-color: rgb(221, 221, 221); /* 스크롤바 배경 색상 */
}

/* 스크롤바 위쪽 화살표 */
::-webkit-scrollbar-button:start {
  display: none; /* 화살표를 보이지 않게 함 */
}

/* 스크롤바와 스크롤바 트랙 사이 간격 */
::-webkit-scrollbar-track {
  background-color: none;
}

/* 스크롤바 색상과 라운드 */
::-webkit-scrollbar-thumb {
  background-color: #bcbcc0;
  border-radius: 10px;
}

/*호버 볼드 라이브러리*/
.hover-bold > p:hover {
  font-weight: bold;
}

.hover-black:hover {
  color: #191e23;
  font-weight: 500;
}

/*상단 메뉴바*/

.top-bar {
  height: 58px;
  display: flex;
  background: white;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #dcdcdc;
  justify-content: center;
  position: fixed; /* 고정 위치로 설정합니다. */
  z-index: 1000;
  box-shadow: 0px -1px 19px 0px rgba(0, 0, 0, 0.25);
}

.top-bar_ {
  width: 800px;
}
.top-bar-logo {
  width: 79px;
}

.top-bar ul {
  display: flex;
}

.top-bar ul li {
  font-size: 14px;
  font-weight: 400;
  color: #c2c2c2;
}

.logo-pc {
  margin-left: 20px;
}
/* 메인 반응형 */
/* width 최소 650px 이하 적용 코드 -모바일 버전 */
@media (max-width: 650px) {
  /* 모바일 버전 */
  .mobile_main {
    height: auto;
  }
  /* pc 버전 */
  .pc_main {
    display: none;
  }
}

/* width 최소 651px 이상 적용 코드 - pc버전 */
@media (min-width: 651px) {
  /* 모바일 버전 */
  .mobile_main {
    display: none;
  }
}

/* 스토어 반응형 */
/* width 최소 650px 이하 적용 코드 -모바일 버전 */
@media (max-width: 676px) {
  /* 모바일 버전 */
  .mobile_store {
    height: auto;
  }
  /* pc 버전 */
  .pc_store {
    display: none;
  }
}

/* width 최소 651px 이상 적용 코드 - pc버전 */
@media (min-width: 677px) {
  /* 모바일 버전 */
  .mobile_store {
    display: none;
  }
}

/* 리스트 반응형 */
/* width 최소 650px 이하 적용 코드 -모바일 버전 */
@media (max-width: 676px) {
  /* 모바일 버전 */
  .mobile_list {
    height: auto;
  }
  /* pc 버전 */
  .pc_list {
    display: none;
  }
}

/* width 최소 651px 이상 적용 코드 - pc버전 */
@media (min-width: 677px) {
  /* 모바일 버전 */
  .mobile_list {
    display: none;
  }
}

/* 로그인 반응형 */
/* width 최소 1249px 이하 적용 코드 -모바일 버전 */
@media (max-width: 1249px) {
  /* 모바일 버전 */
  .mobile_login {
    height: auto;
  }
  /* pc 버전 */
  .pc_login {
    display: none;
  }
}

/* width 최소 1250px 이상 적용 코드 - pc버전 */
@media (min-width: 1250px) {
  /* 모바일 버전 */
  .mobile_login {
    display: none;
  }
}

/* 다운로드 반응형 */
/* width 최소 1249px 이하 적용 코드 -모바일 버전 */
@media (max-width: 1249px) {
  /* 모바일 버전 */
  .mobile_down {
    height: auto;
  }
  /* pc 버전 */
  .pc_down {
    display: none;
  }
}

/* width 최소 400px 이하 적용 코드 - 모바일 버전 */
@media (max-width: 400px) {
  /* 모바일 버전 */
  .mobile_down {
    height: 1000px;
  }
}

/* width 최소 1250px 이상 적용 코드 - pc버전 */
@media (min-width: 1250px) {
  /* 모바일 버전 */
  .mobile_down {
    display: none;
  }
}

/*스토어 메뉴*/

.top-menu-sub {
  border-radius: 9px;
  background-color: #191e23;
  color: white;
  width: 800px;
  height: 40px;
  display: flex;
  font-size: 15px;
}

.menu-serch {
  width: 250px;
  height: 32px;
  flex-shrink: 0;
  background-color: rgb(245, 245, 248);
  color: #b0b7c6;
  margin-right: 4px;
  border-radius: 7px;
}

.menu-serch_mb {
  width: 80px;
  height: 32px;
  flex-shrink: 0;
  background-color: rgb(245, 245, 248);
  color: #b0b7c6;
  margin-right: 4px;
  border-radius: 7px;
}

.store_main_text {
  margin-top: 20px;
}

input:focus {
  background-color: rgb(255, 255, 255); /* 클릭 시 배경색을 노란색으로 변경 */
}

.content_box_img_library img {
  padding: 10px;
}

.font-bold {
  font-weight: 600;
}

.text-black {
  color: #191e23;
  font-weight: 500;
}

.footer {
  padding-top: 158px;
  padding-bottom: 50px;
}

.footer-w {
  width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-text {
  padding-left: 50px;
  font-size: 14px;
  color: #323840;
}

.money_text > a {
  background-color: #ecf0f3;
  color: #98a0ac;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
}

.con_min_win {
  width: 1440px;

  font-family: Noto Sans KR;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.9px;
  height: auto;
}

.con_min_win_ {
  width: 1100px;
  font-family: Noto Sans KR;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.9px;
  height: auto;
}

.top-bar_sub_h {
  height: 125px;
}

/* 빅로고 */
.big-logo {
  font-size: 96px;
  color: #252932;
  padding-bottom: 50px;
  font-weight: 700;
}
.license_input {
  width: 480px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #c1c8d0;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.license_input_mb {
  width: 280px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #c1c8d0;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.mouseOver {
  cursor: pointer;
}

/* 팝업 라이브러리 */
.popup-library {
  top: 50%;
  left: 40%;
  position: absolute;
  width: 450px;
  height: 230px;
  z-index: 11;
  background: #ffffffe7;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  filter: drop-shadow(1px 4px 11px rgba(0, 0, 0, 0.25));
}

.library-close_ {
  left: 359px;
  top: 12px;
}

.popup-library-bar {
  width: 450px;
  height: 35px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid #dcdcdc;
  background: #ffffff7c;
  border-radius: 15px 15px 0px 0px;
}

.popup-library-title {
  font-weight: 700;
  font-size: 20px;
  color: #252932;
  padding-top: 46px;
}

.popup-library-sub_text_1 {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  top: 117px;
  left: 124px;
  padding-top: 7px;
}
.popup-library-sub_text_2 {
  font-weight: 300;
  font-size: 12px;
  top: 131px;
  left: 148px;
}

.popup-library_button-1 {
  top: 75%;
  left: 135px;
  width: 80px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #e0dede;
  color: rgb(0, 0, 0);
  border-radius: 17px;
  transition-duration: 0.4s;
  font-size: 13px;
}

.popup-library_button-2 {
  top: 75%;
  left: 224px;
  width: 80px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #e0dede;
  color: rgb(0, 0, 0);
  border-radius: 17px;
  transition-duration: 0.4s;
  font-size: 13px;
}

.popup-library_button-1:hover {
  border: 1px solid #1c1e2b;
  background: #1c1e2b;
  color: white;
  transition-duration: 0.4s;
}

.popup-library_button-2:hover {
  border: 1px solid #c3c5ca;
  background: #c3c5ca;
  color: white;
  transition-duration: 0.4s;
}

.subMenu, .top-menu {
  position: relative !important;
  z-index: 100 !important;
}

.dropMenu {
  position: absolute;
  background: black;
  padding: 10px 0;
  border-radius:0 0 10px 10px;
  width: 120px;
  text-align: center;
  margin-left: -20px;
  margin-top: -10px;
  /* left: 0px; */
  transition: 0.3s;
  opacity: 0;
  z-index: 0;
}

#downloadMenu:hover > .dropMenu, #userMenu:hover > .dropMenu {
  display: block;
  margin-top: 0px;
  opacity: 1;
}


.dropMenu li {
  padding: 10px 0;
}

.dropMenu li:hover {
  font-weight: bold;
}

.logoImg {
  text-align: center;
}
.logoImg > img {
  margin: 0px auto;
}


.logoImg > img:nth-child(2){
  margin-top: 50px
}
#documentDown {
  margin-left: 30px;
}