/*--------------------------------------------------------------
## All Color Variable
----------------------------------------------------------------*/
:root {
  --white: #fff;
  --black: #000;
  --primary: #fff;
  --secondary: rgba(255, 255, 255, 0.6);
  --border: rgba(6, 0, 16, 0.1);
  --secondary-font: "ABC Diatype", sans-serif, system-ui;
}

/*--------------------------------------------------------------
## All Font Variable
----------------------------------------------------------------*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

*,
::after,
::before {
  box-sizing: border-box;
}

img,
svg {
  vertical-align: middle;
}

p {
  margin-top: 0;
}

:root {
  scroll-behavior: smooth;
}

/* Font Integration */
@font-face {
  font-family: "ABC Diatype";
  src: url("../fonts/attachments/ABCDiatype-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("../fonts/attachments/ABCDiatype-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("../fonts/attachments/ABCDiatype-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* End Font Integration */
body,
html {
  color: var(--secondary);
  font-family: var(--secondary-font);
  background-color: var(--black);
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-feature-settings: "cv10" on;
  font-feature-settings: "cv10" on;
  font-variation-settings: "opsz" 32;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2em;
  font-family: var(--secondary-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--secondary);
}
table td,
table th {
  border-top: 1px solid var(--border);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--secondary);
  border: 1px solid var(--border);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--secondary);
  border-radius: 5px;
}

input,
textarea {
  color: var(--primary);
  transition: all 0.4s ease;
}

.cs_header {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 410px;
  padding: 30px 15px 30px 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cs_header {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .cs_header {
    position: initial;
    width: 100%;
    height: initial;
    gap: 35px 0;
    padding: 30px 10px 30px 0px;
  }
}
.cs_header h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 112%;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
}
.cs_header h2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.2px;
  margin-bottom: 32px;
}

.cs_btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 112%;
  border: 1px solid #686868;
  border-radius: 1.7em;
  padding: 11px 24px 9px 24px;
  display: inline-flex;
  transition: all 0.3s ease;
  outline: none;
  justify-content: center;
  text-align: center;
}
.cs_btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--black);
}
.cs_btn.cs_style_1 {
  background-color: #fff;
  border-color: #fff;
  color: var(--black);
}
.cs_btn.cs_style_1:hover {
  opacity: 0.75;
}

.cs_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cs_header_bottom {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.13px;
}
@media (max-width: 767px) {
  .cs_header_bottom {
    display: none;
  }
}

.cs_logo {
  display: flex;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .cs_logo {
    margin-bottom: 45px;
  }
}

.cs_main {
  padding-left: 440px;
}
@media (max-width: 1199px) {
  .cs_main {
    padding-left: 350px;
  }
}
@media (max-width: 767px) {
  .cs_main {
    padding-left: 10px;
  }
}

.cs_portfolios {
  padding-top: 10px;
  padding-right: 10px;
}

.cs_portfolio_item {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 10px;
}
.cs_portfolio_item img {
  display: block;
  border-radius: inherit;
}

.cs_portfolio_item_2_column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
}

video {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}/*# sourceMappingURL=style.css.map */