:root {
    --primary-color: #DB5EFF;        
    --text-color: #9FA0B1;
    --white-color: #ffffff;      
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
    overflow-x:hidden;
    font-family: 'Lato';
    overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color:#171c39;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;    
    background-color: var(--primary-color);
}
/* Scroll */
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
    font-family: 'Volkhov';
}

/* Mobil menü */
@media (max-width: 991px) {
  .rock-podcast-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #171c39;
    text-align: center;
    padding: 18px 0;
    z-index: 9999;
  }

  .rock-podcast-nav-menu.active {
    display: block;
  }

  .rock-podcast-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .rock-podcast-nav-menu ul li {
    display: block;
    margin: 12px 0;
  }

  .rock-podcast-nav-menu ul li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    text-decoration: none;
    transition: color .3s;
  }

  .rock-podcast-nav-menu ul li a:hover {
    color: var(--primary-color);
  }

  /* Hamburger */
  .rock-podcast-toggle-btn {
    cursor: pointer;
    display: block;
    z-index: 10001;
  }

  .rock-podcast-toggle-btn span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: all .3s ease;
  }

  .rock-podcast-toggle-btn.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .rock-podcast-toggle-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .rock-podcast-toggle-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
