/* css variables*/
:root {
  --primary-color: #000000;
  --primary-color-light: #8E7474;
  --accent-color: #FE6A6B;
  --accent-color-light: #FFE4E4;
  --accent-color-dark: #B94B4C;
  --white-color: #FAFBFC;
  --light-gray-color: #C6CBD1;
  --medium-gray-color: #959DA5;
  --dark-gray-color: #444D56;
  --bg-color: #F8F8FA;
  --code-bg-color: #F0E8E8;
}

/* normalized */
html, body {
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: white;
  letter-spacing: -.22px;
}

p {
  /* font-weight: 300; */
  color: #4A4A4A;
}

a, a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

hr {
    padding: 0 0;
    border: 0;
    border-bottom: 1px solid var(--bg-color);
}

* {
  box-sizing: border-box;
}

h1.logo img {
    height: 50px;
    float: left;
    margin: 3px 16px 0 0;
}

i.fa.fa-check-square-o {
    color: #27854d;
}

i.fa.fa-check-square-o.fa-left {
    margin-left: 17px;
    float: right;
    margin-top: 9px;
}

i.fa.fa-check-square-o.fa-right {
    margin-right: 14px;
    float: left;
    margin-top: 9px;
}

/* global components */

/* typography */
.section__title {
  color: var(--primary-color);
}

/* tabs */
.tab__container {
  position: relative;
}

.tab__container > ul {
  position: absolute;
  list-style: none;
  margin: 0;
  right: 1rem;
  top: -2rem;
  padding-left: 0;
}

.tab__container .code {
  white-space: normal;
  padding: 1rem 1.5rem;
}

.tab {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  font-weight: 200;
  cursor: pointer;
}

.tab.active {
  border-bottom: 1px solid var(--primary-color);
  font-weight: 700;
  display: inline-block;
}

.tab__pane {
  display: none;
}

.tab__pane.active {
  display: block;
}

.header {
    border-bottom: 1px solid #f1f1f1;
    background: #ffffff;
    float: left;
    width: 100%;
}

/* layout */

.logo {
        font-weight: 900;
    color: #2a2b2b;
    font-size: 22px;
    float: left;
    padding: 0 25px;
    margin: 10px 0;
}

.logo__thin {
  font-weight: 300;
}

/* menu */
.menu {
    padding-right: 50px;
    padding-left: 0
}

.menu__item {
  padding: 1.5rem 1rem;
}
/* code */
/* .code {
  border-radius: 3px;
  font-family: Space Mono, SFMono-Regular, Menlo,Monaco, Consolas, Liberation Mono, Courier New, monospace;
  background: var(--bg-color);
  border: 1px solid var(--code-bg-color);
  color: var(--primary-color-light);
}

.code--block {
  white-space: pre-line;
  padding: 0 1.5rem;
}

.code--inline {
  padding: 3px 6px;
  font-size: 80%;
} */

/* buttons */
.button--primary {
    padding: 10px 45px;
    background-color: #27864d;
    color: white;
    border: 2px solid #27864d;
    position: relative;
    text-decoration: none;
    transition: all .3s ease-out;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: .5rem;
    margin-right: 10px;
}

/* .button--primary:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #49b976;
  right: -0.4rem;
  top: -0.4rem;
  transition: all 0.3s ease-out;
} */

.button--primary:hover {
    text-shadow: 0px 1px 1px #13771f;
    color: white;
    transform: translate3D(0, -3px, 0);
}

.button--primary:hover::after {
  transform: rotate(90deg);
}

.button--secondary {
    padding: 10px 45px;
    border: 2px solid var(--primary-color);
    transition: all 0.5s ease-out;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: .5rem;
}

.button--secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* links */
.link {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.link:hover {
    color: #38a271;
}

.link--dark {
    color: #565656;
    font-size: 15px;
    font-weight: 600;
}

.link--light {
  color: var(--accent-color);
}

/* menu */
.menu {
    margin: 0;
    text-align: left;
    overflow: hidden;
    list-style: none;
}

.menu__profile {
    float: right;
}

.menu__profile a {
    color: #565454;
    background: #ffffff;
    padding: 10px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

.menu__profile a:hover {
    color: #131313;
    border-radius: 0;
    font-weight: 600;
}

.menu__active a {
    color: #272727;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 2px solid #45b581;
}

.toggle {
  display: none;
  position: relative;
}

.toggle span,
.toggle span:before,
.toggle span:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background: #c7c7c7;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.toggle span:before {
  top: -6px;
}

.toggle span:after {
  bottom: -6px;
}

.toggle.open span{
  background-color: transparent;
}

.toggle.open span:before,
.toggle.open span:after {
  top: 0;
}

.toggle.open span:before {
  transform: rotate(45deg);
}

.toggle.open span:after {
  transform: rotate(-45deg);
}

.menu__item {
    padding: 1.8rem 1.3rem;
    display: inline-block;
}

.menu__item.toggle {
  display: none;
}

/* table */
table {
  border-collapse: collapse;
  width: 100%;
  transition: color .3s ease-out;
  margin-bottom: 2rem;
}

table td, table th {
  border: 1px solid var(--code-bg-color);
  padding: 0.8rem;
  font-weight: 300;
}

table th {
  text-align: left;
  background-color: white;
  border-color: white;
  border-bottom-color: var(--code-bg-color);
}

table td:first-child {
  background-color: var(--bg-color);
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  nav {
    grid-template-columns: 70px auto;
  }

  .menu__item{
    display: none;
  }

  .menu__item.toggle {
    display: inline-block;
  }

  .menu {
    text-align: right;
    padding: 0.5rem 1rem;
  }

  .toggle {
    display: block;
  }

  .menu.responsive .menu__item:not(:first-child) {
    display: block;
    padding: 0 0 0.5rem 0;
  }
}

/* layout */
.wrapper {
  margin: 0 auto;
  width: 80%;
  max-width: 1180px;
}

.footer {
    text-align: left;
    background-color: #000;
    padding: 2rem;
    color: white;
}

.footer p {
    color: white;
    font-size: .8rem;
}
.footer ul {
  padding-inline-start: 0;
}
.footer li {
  display: inline;
    letter-spacing: .025em;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 15px 10px;
}
.footer li:first-child {
  padding-left: 0;
}
.footer li a {
  color: #fff;
}

.developer{
  padding: 5px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0,30px,0);
  }
  100% {
    transform: translate3d(0,0,0);
  }
}

ul.menu_profile_item {
    position: absolute;
    list-style: none;
    padding: 10px;
    font-size: 15px;
    margin: 15px 0 0;
    background: #FFF;
    border: 1px solid #e8e6e6;
    box-shadow: 1px 1px 10px #0000001f;
    min-width: 185px;
}

ul.menu_profile_item li a {
    float: left;
    border: none;
    width: 100%;
    padding: 7px 15px;
    border-bottom: 1px solid #fbfbfb;
    border-radius: 0;
}

.menu_profile_item{
  display: none;
}

.menu__profile:hover .menu_profile_item{
  display: block;
}

.first_login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000bf;
    z-index: 999;
    overflow: hidden;
}

.center_container{
  width: 1px;
  height: 1px;
  position: absolute;
  top:50%;
  left:50%;
}

.first_container {
    width: 98%;
    height: 94%;
    margin: 100px auto;
    max-width: 800px;
    max-height: 650px;
    background: #FFF;
    padding: 50px;
}

.alert.alert-info {
    background: #e5f5e5;
    margin: 10px;
    padding: 10px 20px;
    font-size: 12px;
    color: #065606;
}

h2.first_header {
    margin: 0;
    padding: 30px 35px 15px;
    color: #333;
}

i.fa.fa-warning.first_danger {
    color: #d84207;
}

i.fa.fa-telegram {
    color: #0e9ad4;
}

i.fa.fa-envelope-o {
    color: red;
}

.first_info {
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    margin: 10px 35px;
}

.first_info p {
    font-size: 15px;
}

.first_form {
    margin: 35px;
}

.first_form input.first {
    border: 2px solid #CCC;
    padding: 15px 20px;
    width: 100%;
    font-size: 14px;
    color: #4c4c4c;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #e6e6e6 inset;
}

.first_form input.first:focus {
    outline: none;
}

.help {
    font-size: 12px;
    color: #666;
    margin: 3px 5px 20px;
}

.help a {
    font-weight: 700;
    color: #0b7ba9;
    font-size: 14px;
}

button.btn-first {
    background: #0e9ad4;
    color: #FFF;
    border: 1px solid #0e9ad4;
    padding: 10px 20px;
    border-radius: 2px;
    box-shadow: 1px 1px 10px #2b2a2a38;
}

.alert.alert-danger {
    background: #ef4646;
    color: #FFF;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0;
}

.al {
    margin: 0 37px -20px;
}
/*
.doc__bg.account {
    background: #222;
    z-index: 0;
} */


img.header-avatar {
    width: 22px;
    position: absolute;
    border-radius: 100%;
}

span.header-avatar {
    padding-left: 30px;
    font-size: 14px;
}

i.fa.fa-key {
    color: #d88c00;
}

.stacked-cards {
    position: relative;
}
.stacked-cards ul {
    position: relative;
    max-width: 60%;
    margin: 0 auto;
    padding-left: 0;
}

.stacked-cards li {
    margin-top: 5px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 3px 6px 0px #333;
    list-style: none;
    width: 65%;
    position: absolute;
    left: 50%;
    transition: 0.5s ease transform;
}

.stacked-cards li:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.stacked-cards li.active:after {
    display: none;
}
.stacked-cards li img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    z-index: 4;
}
.stacked-cards li.active {
    cursor: default;
    box-shadow: 0 5px 10px 0px #333;
    transition: 0.5s ease transform;
}

/* nav specialized to landing page */
nav {
  background-color: var(--bg-color);
}

/* hero section */
.hero {
    text-align: left;
    background-color: #fefefe;
    /*background-image: url(../img/background.png);*/
    background-repeat: no-repeat;
    background-position: center 75px;
    padding: 120px 0 0 0;
    z-index: -1;
}

.hero img.logo-sso {
  height: 150px;
}

img.hero__img {
    width: 340px;
}

.hero__title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    --tw-text-opacity: 1;
    color: rgba(17,24,39,var(--tw-text-opacity));
    letter-spacing: -.025em;
    font-weight: 800;
}

.hero__description {
  font-size: 1.5rem;
    line-height: 2.5rem;
    margin-bottom: 2.75rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(107,114,128,var(--tw-text-opacity));
}

.hero__terminal {
  width: 60%;
  margin: -11rem auto 3rem auto;
  text-align: left;
  color: white;
  padding: 0 1rem;
  border-radius: 4px;
  background-color: #232323;
  min-height: 285px;
  animation: fadeUp 2s;
  box-shadow: 0px 12px 36.8px 9.2px rgba(0, 0, 0, 0.1);
}

.hero__terminal pre {
  white-space: pre-line;
  padding-top: 1rem;
}

/* feature section */
.feature {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3rem;
}

.feature__item {
  max-width: calc(33% - 20px);
  margin: 0 20px 0 0;
}

.feature__item .section__title {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.feature__item .section__title:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 20px;
    margin: 4px -25px;
    background-color: green;
}

.feature__item p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #6a7380;
}

/* keybinding section */
.keybinding {
    margin-top: 9rem;
    margin-bottom: 10rem;
    display: flex;
    font-size: 14px;
    color: #4A4A4A;
}

.keybinding__detail {
  position: relative;
  border: 1px solid var(--code-bg-color);
  flex-basis: 50%;
  padding: 2rem 1rem 1rem 1rem;
  list-style: none;
  line-height: 2rem;
}

.keybinding__detail:first-child {
  text-align: right;
  padding-right: 1rem;
}

.keybinding__detail:last-child {
  padding-left: 1rem;
  margin-left: -1px;
}

.keybinding__detail:first-child .keybinding__title {
  position: absolute;
  right: 0.5rem;
  top: -2rem;
  background-color: white;
  padding: 0 0.5rem;
}

.keybinding__detail:last-child .keybinding__title {
  position: absolute;
  left: 0.5rem;
  top: -2rem;
  background-color: white;
  padding: 0 0.5rem;
}

.keybinding__label {
  background: var(--white-color);
  border: 1px solid var(--light-gray-color);
  box-shadow: 0 1px 0 0 var(--medium-gray-color);
  border-radius: 3px;
  font-family: Courier;
  font-size: 0.7rem;
  color: var(--dark-gray-color);
  padding: 3px 3px 1px 3px;
  vertical-align: middle;
}

/* callout section */
.callout {
  text-align: left;
    padding: 3rem;
    background: #f3f3f3;
    border-radius: 10px;
    margin-top: 5rem;
    margin-bottom: 3rem;
}
.callout h1 {
  font-size: 4rem;
    margin: 0;
    letter-spacing: -3px;
    font-weight: 800;
}

.callout p {
  font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgba(107,114,128,var(--tw-text-opacity));
}

.callout .button--primary {
    display: inline-block;
    margin-top: 1.5rem;
}

/* changelog section */
.changelog {
  background-color: var(--bg-color);
  padding: 2rem 0;
}

.changelog__item {
  display: flex;
}

.changelog__meta {
  flex-basis: 25%;
}

.changelog__meta small {
  color: var(--primary-color-light);
  font-weight: 200;
  letter-spacing: 1px;
}

.changelog__title {
  margin-bottom: 0;
}

.changelog__callout {
  margin: 3rem auto 2rem auto;
  text-align: center;
}

@media (max-width: 750px) {
  .hero__terminal {
    width: 70%;
  }
  .tab__container > ul {
    right: auto;
    left: 0;
    padding-left: 0;
  }
  .tab__container .code {
    margin-top: 2rem;
  }
  .feature, .keybinding, .changelog__item {
    flex-direction: column;
  }
  .feature__item {
    max-width: 100%;
    margin: 0;
  }
  .keybinding {
    font-size: 0.8rem;
  }
}

.info-sso {
    font-weight: 700;
    color: #232323;
}

.info-sso:hover{
  color: #b7640c;
}

img.left-image {
    width: 45%;
    box-shadow: 1px 1px 15px #efeeee;
    float: left;
    border-radius: 15px;
    padding: 10px;
}

img.right-image {
    width: 45%;
    box-shadow: 1px 1px 15px #efeeee;
    float: right;
    border-radius: 15px;
    padding: 10px;
}

.clearfix {
    clear: both;
}


.right-text {
    text-align: center;
    padding: 90px 0;
}

.left-text {
    text-align: center;
    padding: 90px 0;
}

.right-text h2, .left-text h2 {
    font-size: 28px;
    margin: 0;
    color: #333232;
}


h2.header-feature {
    text-align: center;
    font-size: 30px;
    color: #3a3a3a;
    margin-bottom: 60px;
}

.separator {
    border-bottom: 1px solid #f5f5f5;
    margin-top: 100px;
    margin-bottom: 70px;
}

.fitur.mb-3 {
    margin-bottom: 60px;
}

.stacked-cards h2 {
  text-align: center;
  position: relative;
  top: -20px;
}

.stacked-cards {
  padding-bottom: 15px;
}

.stacked-cards-fanOut {
  padding-bottom: 40px;
}

.stacked-cards-fanOut li img {
  max-height: 200px;
}

.stacked-cards li {
  height: 265px;
  box-shadow: 0 3px 6px 0px #33333370;
  background: #FFF;
}

@media (max-width: 767px) {
  .stacked-cards li {
    height: 180px;
  }
}

.stacked-cards li, .stacked-cards li.active{
  overflow: hidden;
  box-shadow: 0 5px 10px 0px #3333332b;
}

.content {
  padding: 8rem 0;
}