
/* Main Styles */
:root {
  --background: #08162d;
  --foreground: white;
  --card: #ffffff;
  --card-foreground: #1a202c;
  --primary: #6366f1;
  --primary-foreground: #ffffff;
  --secondary: #08162d;
  --secondary-foreground: #1a202c;
  --accent: #8b5cf6;
  --accent-foreground: #ffffff;
  --muted: #f1f5f9;
  --muted-foreground: white;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #6366f1;
  --radius: 16px;
}

/* Dark Mode (Not Enabled by Default) */
.dark {
  --background: #121827;
  --foreground: #f1f5f9;
  --card: #1e293b;
  --card-foreground: #f1f5f9;
  --primary: #7c7ff3;
  --primary-foreground: #0a0a16;
  --secondary: #334155;
  --secondary-foreground: #f1f5f9;
  --accent: #9f7aea;
  --accent-foreground: #0a0a16;
  --muted: #334155;
  --muted-foreground: #94a3b8;
  --destructive: #f87171;
  --destructive-foreground: #f1f5f9;
  --border: #334155;
  --input: #334155;
  --ring: #7c7ff3;
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  /*margin: 0;*/
  /*padding: 0;*/
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(217deg, rgba(99, 102, 241, 0.05), rgba(0,0,0,0) 70.71%),
    linear-gradient(127deg, rgba(79, 70, 229, 0.05), rgba(0,0,0,0) 70.71%),
    linear-gradient(336deg, rgba(129, 140, 248, 0.05), rgba(0,0,0,0) 70.71%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 50%),
    radial-gradient(circle at 80% 75%, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  color: white;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Cool Effects */
.glass-effect {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cool-card {
  border-radius: var(--radius);
  background-color: hsla(0,0%,100%,.06);
  background-opacity: 0.8;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.cool-card:hover {
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0.15), 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.btn-gradient {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: all 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #5254cc, #7c4ddf);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  color:white;
}

.navbar {
  padding: 1rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.login-btn {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s;
}

.login-btn:hover {
  background-color: var(--accent);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 180px;
  display: none;
  z-index: 10;
  color: black;
  height: 500px;
  overflow-y: scroll;
}

.language-dropdown.active {
  display: block;
}

.language-dropdown ul {
  padding: 0.5rem 0;
}

.language-dropdown li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.language-dropdown li:hover {
  background-color: var(--muted);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Main Content */
.main {
  padding-top: 80px;  /* To account for the fixed header */
}


/* Banner Section */
.banner-section {
  padding: 2rem 0;
}

.banner {
  border-radius: var(--radius);
  height: 300px;
  overflow: hidden;
  position: relative;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.banner-slide.active {
  opacity: 1;
}

/* Quick Actions Section */
.quick-actions-section {
  padding: 2rem 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quick-action-item {
  background-color: hsla(0,0%,100%,.06);
  border-radius: var(--radius);
  padding: 20px;
  /*display: flex;*/
  /*align-items: center;*/
  text-align: center;
  gap: 1rem;
  transition: all 0.3s;
  color: var(--foreground);
  box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.05);
}

.quick-action-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0.15), 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  color: var(--foreground);
}

.quick-action-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 10px;
}

.quick-action-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.quick-action-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Market Section */
.market-section {
  padding: 2rem 0;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1.5rem;
}

.market-card {
  background-color: hsla(0,0%,100%,.06);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.05);
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0.15), 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

.market-card-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}

.market-card-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.market-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.market-card-change {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.market-card-change.positive {
  background-color: rgba(16, 185, 129, 0.1);
  color: rgb(16, 185, 129);
}

.market-card-change.negative {
  background-color: rgba(239, 68, 68, 0.1);
  color: rgb(239, 68, 68);
}

.market-card-volume {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Trading Section */
.trading-section {
  padding: 2rem 0;
}

.trading-table-wrapper {
  background-color: hsla(0,0%,100%,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.05);
}

.trading-table {
  width: 100%;
  border-collapse: collapse;
}

.trading-table th,
.trading-table td {
  padding: 1rem;
  text-align: left;
  /*border-bottom: 1px solid var(--border);*/
}

.trading-table th {
  font-weight: 600;
  background-color: hsla(0,0%,100%,.06);
}

.trading-table tr:last-child td {
  border-bottom: none;
}

.trading-update-info {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Trading Actions Buttons */
.trading-action-btn {
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.trading-action-btn.buy {
  background-color: rgba(16, 185, 129, 0.1);
  color: rgb(16, 185, 129);
}

.trading-action-btn.buy:hover {
  background-color: rgb(16, 185, 129);
  color: white;
}

.trading-action-btn.sell {
  background-color: rgba(239, 68, 68, 0.1);
  color: rgb(239, 68, 68);
}

.trading-action-btn.sell:hover {
  background-color: rgb(239, 68, 68);
  color: white;
}

/* Footer */
.footer {
  background-color: #08162d;
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  /*border-top: 1px solid var(--border);*/
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0px;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.social-link {

}

.social-link:hover {
  /*background-color: var(--primary);*/
  /*color: var(--primary-foreground);*/
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  /*border-top: 1px solid var(--border);*/
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10000;
  color:black;
}

.toast {
  background-color: var(--card);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 300px;
  max-width: 90vw;
  animation: toast-slide-in 0.3s ease forwards;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.success {
  border-left-color: rgb(16, 185, 129);
}

.toast.error {
  border-left-color: rgb(239, 68, 68);
}

.toast.info {
  border-left-color: rgb(59, 130, 246);
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: black;
}

.toast-close {
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--card);
  color: black;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.form-button {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s;
}

.form-button:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-footer a {
  color: var(--primary);
  font-weight: 500;
}

/* Login Page */
.login-container {
  padding: 2rem 0;
}

.login-card {
  max-width: 400px;
  margin: 0 auto;
  background-color: hsla(0,0%,100%,.06);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.login-header {
  padding: 1.5rem;
  text-align: center;
}

.login-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.login-subtitle {
  color: var(--muted-foreground);
}

.login-content {
  padding: 0 1.5rem 1.5rem;
}

.login-footer {
  padding: 1rem 1.5rem;
  text-align: center;
  /*border-top: 1px solid var(--border);*/
  font-size: 0.875rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .footer-social img{
    width: 60px !important;
    height: 60px !important;
  }
  .quick-actions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap:10px;
  }

  .market-section .market-grid {
    /*grid-template-columns: repeat(3, 1fr);*/
  }
 .quick-action-item{
   padding:10px;
 }
  .quick-action-content h3{
    font-size: 12px;

  }
  .quick-action-icon{
    width: 30px;
    height: 30px;
  }
  .market-card{
    padding:10px;
    font-size: 14px;
    width: 120px;
    display: inline-block;
    margin-right: 10px;
  }
  .market-section{
    padding:10px;
    margin-top:20px;
  }
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--card);
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 640px) {
  .market-section .market-grid {
    overflow:hidden;
    display: block;
    white-space: nowrap;

  }

  .trading-table-wrapper {
    overflow-x: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Additional Pages */

/* Deposit Page */
.crypto-address {
  background-color: var(--secondary);
  padding: 1rem;
  border-radius: var(--radius);
  font-family: monospace;
  margin-bottom: 1rem;
  word-break: break-all;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  background-color: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
}

.crypto-warning {
  background-color:#fffbeb;
  border-left: 3px solid rgb(251, 191, 36);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  color: #92400e;
}

/* Withdraw Page */
.withdraw-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: hsla(0,0%,100%,.06);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.withdraw-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.withdraw-form {
  margin-top: 1.5rem;
}

.input-addon {
  display: flex;
  align-items: center;
  width: 100%;
}

.input-addon-text {
  padding: 0.75rem 1rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-weight: 500;
  color: var(--muted-foreground);
}

.input-addon .form-input {
  /*border-radius: 0 var(--radius) var(--radius) 0;*/
  flex-grow: 1;
}

/* FAQs Page */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.faq-item {
  background-color: hsla(0,0%,100%,.06);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.faq-question:hover {
  /*background-color: var(--muted);*/
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Terms of Service Page */
.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.terms-section {
  margin-bottom: 2rem;
}

.terms-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.terms-content {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.terms-content p {
  margin-bottom: 1rem;
}
.tradeimg{
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.flex{
  display: flex;
  align-items: center;
}
.space-between{
  justify-content: space-between;
}
.tradeitem{
  margin: 10px 0px;
}
.amount{
  color: var(--primary);
}
.text-green{
  color: #22c55e;
}
.text-red{
  color: #ef4444;
}
.productitem{
  padding: 20px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
}
.useritem{
  padding: 20px;
  /*border-bottom: 1px solid #dcdcdc;*/
  cursor: pointer;
}
.useritem img{
  width: 30px;
  height: 30px;
}
.useritem:hover{
  color: var(--primary);
}

.exit{
  background-color: #ef4444 !important;
  color: white !important;
  margin-top: 20px;
}

.exit:hover{
  color: #ef4444 !important;
  background-color: white !important;
  border-color:white !important;
}
.item2 {
  font-size: 14px;
  border-bottom: 1px dashed #dcdcdc;
  padding: 20px;
  margin-bottom: 10px;
}
.footmenu{
  position: fixed;
  display: none;
  left: 0px;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  padding-top: 5px;
  background-color: black;
  z-index: 9999;

}
.footmenu .item{
  width: 25%;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.footmenu .item img{
  width: 25px;
  height: 25px;
}
.footmenu .item.active{
  color: #6366f1;
}
.footheight{
  display: none;
  height: 75px;
}
@media screen and (max-width: 768px) {
  .footheight{
    display: block;
  }
  .footmenu{
    display: flex;
  }
  .main{
    padding-top: 65px;
  }
  .section-title{
    line-height: 20px;
    padding:0px;
    margin: 15px;
  }
}
