@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');
* {
	padding: 0;
	margin: 0;
    font-family: 'Roboto Mono', monospace;
    box-sizing: border-box;
}

ul,
ol,
li {
   list-style: none;
   margin: 0;
   padding: 0;
}

a {
    text-decoration: none;
}

.z-i {
  z-index: 999;
}

.container {
  transition: .3s ease-in;
}

header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
    transition: .3s ease-in;
}

header.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

header .row {
    align-items: center;
}

.logo a{
    font-size: 28px;
    color: #000;
}

.logo span {
    color: #817d97;
}

.menu {
    display: flex;
    justify-content: space-around;
}

.menu a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.menu a:hover {
    color: #2A3990;
    transition: all .1s ease-in;
}

main .container{
    height: 100vh;
}

main .row {
    height: 100%;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.9;
}

.hero-content h1 span {
    color: #2A3990; 
}

.hero-btn {
    padding: 15px 25px;
    margin-top: 30px;
    color: #2A3990;
    display: inline-block;
    font-size: 24px;
    text-decoration: none;
    border: 1.5px solid #2A3990;
    border-radius: 6px;
}

.hero-btn:hover {
    background-color: #2A3990;
    color: #fff;
    transition: all .3s ease-in;
}

.docs {
    background-color: #f5f6fa;
    padding: 50px 0;
}

.docs .row {
    margin-top: 50px;
}

.title {
    font-size: 30px;
    margin-bottom: 15px;
}

.code {
    position: relative;
    background-color: #191d38;
    color: #D8D8D8;
    border-radius: 8px;
    font-size: 18px;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em;
}

.btn-copy {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 15px;
}

.code-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}
.code-desc code {
    color: #2A3990;
}
.code-desc span {
    font-size: 28px;
}

section {
    padding: 50px 0;
}

.modules .row {
    margin-top: 50px;
}

.modules p,
.services p,
.components p,
.future p{
    margin-bottom: 25px;
    line-height: 1.8;
}

.pre-title {
    font-size: 22px;
    font-weight: 600;
}

.modules p code,
.services p code,
.comp p code{
    color: #2A3990;
    font-weight: 500;
}

.modules .col-12,
.comp {
    margin-bottom: 30px;
}

.wrap-modul:first-child {
    margin-top: 0px;
}

.wrap-modul {
    margin-top: 50px;
}

.services-wrap:first-child {
    margin-top: 0px;
}

.services-wrap {
    margin-top: 50px;
}

.component {
    margin-bottom: 25px;
}

.carousel {
    margin: 0;
}

.future {
    background-color: #f5f6fa;
    line-height: 1.8;
} 

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    cursor: pointer;
    float: right;
  }
  
  .line {
    width: 24px;
    height: 2.5px;
    background-color: black;
    transition: transform 0.3s ease;
    border-radius: 6px;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  

@media only screen and (max-width: 991.98px){
}

@media only screen and (max-width: 768.98px){
    .logo a {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

}

@media only screen and (max-width: 425.98px){
    .logo a {
        font-size: 18px;
    }

    .logo span {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,.65);
    -webkit-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    z-index: 111;
    overflow: hidden;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    opacity: 0;
    transition: 1.1s cubic-bezier(.16,.84,.442,.98);
    padding: 40px;
}

.mobile-menu.active {
    -webkit-transform: translate(0%);
    transform: translate(0%);
    opacity: 1;
}

.mobile-menu .menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu .menu li {
    margin-bottom: 20px;
}

.mobile-menu .menu .menu_item {
    font-size: 20px;
    line-height: 1.8;
}

.menu-top {
    text-align: right;  
}

.btn-copy .check {
    display: none;
}
 
footer {
    padding: 25px;
    background: #2A3990;
    text-align: center;
    line-height: 1.8;
}

footer a {
    color: #fff;
}