/*====================
** Normalize
====================*/
:root {
  --navbar-height: 55px;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
}
/*penting hilangin border saat focus*/
:focus {
  outline: 0;
}
body {
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  font-family: "Open Sans", sans-serif;
  border: 0;
  color: transparent;
  background-color: transparent;
}

a {
  background-color: transparent;
}

a:active {
  outline: 0;
}

a,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

b,
strong {
  font-weight: bold;
}

div {
  padding: 0;
  margin: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
td,
th {
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
/*----------------------------------------------
    Svg
----------------------------------------------*/

svg:not(:root) {
  overflow: hidden;
  padding: 0;
}

/*----------------------------------------------
    # Page
----------------------------------------------*/

:-webkit-any(article, aside, nav, section) h1 {
  margin-block-start: 0;
  margin-block-end: 0;
}
footer {
  width: 100%;
  padding: 15px;
}
.copyright p {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #566286;
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/*----------------------------------------------
    Header
----------------------------------------------*/
header {
  width: 100%;
  height: var(--navbar-height);
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
}
section {
  margin-top: var(--navbar-height);
}
.navbar {
  background-color: white;
  border-bottom: 1px solid gray;
}

.logo {
  display: inline-block;
  padding: 15px 20px;
}

.logo img {
  width: 130px;
}

.main-nav {
  border-top: 1px solid gray;
  list-style-type: none;
  display: none;
  background-color: white;
  padding: 15px 20px;
}

.nav-links {
  color: #566286;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 2em;
  text-decoration: none;
  font-weight: 500;
}
.nav-links:hover,
.menu-active {
  color: #4f16ba;
  font-weight: 500;
}

.navbar-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
}
.active {
  display: block;
}

/*----------------------------------------------
    # hamburger
----------------------------------------------*/

.hamburger-box {
  display: inline-block;
  width: 30px;
  height: 20px;
}
.hamburger-inner {
  display: block;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #554e64;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.navbar-toggle .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navbar-toggle .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.navbar-toggle .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar-toggle.active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.navbar-toggle.active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.navbar-toggle.active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

@media screen and (min-width: 900px) {
  :root {
    --navbar-height: 10vh;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    height: 10vh;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
  }

  .main-nav {
    border-top: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .nav-links {
    font-size: 15px;
    padding: 0 30px;
  }

  .navbar-toggle {
    display: none;
  }
  .logo {
    padding: 0;
  }
  .logo img {
    width: 160px;
  }
}
@media (min-width: 992px) {
  .nav-links {
    font-size: 16px;
    padding: 0 40px;
  }
}
@media (min-width: 1280px) {
  .nav-links {
    font-size: 18px;
    padding: 0 50px;
  }
  .logo img {
    width: 180px;
  }
}

/*----------------------------------------------
@media screen and (min-width: 1024px) {
  svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.section1 {
  background: -webkit-linear-gradient(275deg, #149dff 9%, #00d4ff 84%);
  background: linear-gradient(-185deg, #149dff 9%, #00d4ff 84%);
  margin-bottom: -5px;
}
background: linear-gradient(to right, #494964, #6f6f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  code {
  display: inline-block;
}

code,
.hamburger {
  vertical-align: middle;
}
.navbar.navbar-area.white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
 transition: all 2s cubic-bezier(0.83, 0.01, 0.18, 1.01);
.navbar.navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
----------------------------------------------*/
