@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aldrich&family=Rajdhani:wght@300;400;500;600;700&display=swap");
html {
  --theme-color: #091016;
  --theme-color-blue-level-1: #12202B;
  --theme-color-blue-level-2: #1C3041;
  --theme-color-blue-level-2-5: #7bd8fd;
  --theme-color-blue-level-3: #5C9FD8;
  --theme-color-blue-level-4: #3498db;
  --theme-color-blue-level-5: #008cff;
  --theme-color-red: #ed0049;
  --light-grey-color: #828990;
  --theme-color-text-cream: #CED4DA;
  --theme-color-text-cream-light:#6c757d;
  --text-medium-dark: #010101;
  --text-light-grey: #8e8e8e;
  --font: 'Poppins', sans-serif;
  --fontPro: 'Source Code Pro', monospace;
  --max-container-width: 1300px;
  --scrollPaddingTop: 0px;
  --font-aldrich: Aldrich, sans-serif;
  --font-rajdhani-light: Rajdhani, sans-serif;
  --font-rajdhani-regular: Rajdhani, sans-serif;
  --font-rajdhani-medium: Rajdhani, sans-serif;
  --font-rajdhani-semibold: Rajdhani, sans-serif;
  --font-rajdhani-bold: Rajdhani, sans-serif;
}

*, *::before, *::after {
  box-sizing: inherit;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  margin: 0;
  padding: 0;
}

body, html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scrollingPaddingTop);
  box-sizing: border-box;
  font-kerning: normal;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  font-family: var(--font);
  color: var(--theme-color-text-cream);
  line-height: 1.5;
  background-color: var(--theme-color);
  margin: 0 auto;
  position: relative;
  font-kerning: normal;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 667px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

ol, ul {
  list-style: none;
}

select {
  padding: 0.8rem;
  border-radius: 0.8rem;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--theme-color-text-cream);
  font-family: var(--font);
  line-height: 1;
  font-weight: 600;
  text-align: center;
  --h1: 6.2rem;
  --h2: 5.2rem;
  --h3: 4.5rem;
  --h4: 3.5rem;
  --h5: 3rem;
  --h6: 2.5rem;
}
@media screen and (max-width: 667px) {
  .h1, .h2, .h3, .h4, .h5, .h6 {
    --h1: 5rem;
    --h2: 4rem;
    --h3: 3.5rem;
    --h4: 2.5rem;
    --h5: 2.2rem;
    --h6: 2rem;
  }
}

.h1 {
  font-size: var(--h1);
}

.h2 {
  font-size: var(--h2);
}

.h3 {
  font-size: var(--h3);
}

.h4 {
  font-size: var(--h4);
}

.h5 {
  font-size: var(--h5);
}

.h6 {
  font-size: var(--h6);
}

img, svg {
  max-width: 100%;
  vertical-align: middle;
}

img {
  height: auto;
  margin: auto;
  padding: 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f-width {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 99%;
}
@media screen and (max-width: 667px) {
  .f-width {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
  }
}

@font-face {
  font-family: batmeton;
  src: url(/fonts/batmeton/Batmeton-9Y5AB.ttf);
  font-weight: 800;
}
input[type=text], input[type=tel], input[type=email], textarea {
  padding: 1.5rem 2rem;
  transition: opacity 600ms, transform 300ms;
  outline: none !important;
  font-weight: 500;
  border: 0.1rem solid rgb(92, 159, 216);
  border-radius: 1rem;
  background-color: rgba(206, 212, 218, 0.99);
  font-size: 1.6rem;
}
input[type=text]:focus-visible, input[type=tel]:focus-visible, input[type=email]:focus-visible, textarea:focus-visible {
  border: 0.1rem solid var(--theme-color-blue-level-4);
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  font-weight: 500;
}
input[type=text]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder, textarea::placeholder {
  font-weight: 500;
}

button {
  outline: none;
  border: none;
}

.hidden {
  display: none;
}

.link_active a {
  color: var(--theme-color-blue-level-4);
}

.d-block {
  display: block;
}
.d-grid {
  display: grid;
}
.d-flex {
  display: flex;
}

.text-capitalize {
  text-transform: capitalize;
}
.text-upper {
  text-transform: uppercase;
}

.pt-1 {
  padding-top: 0.5rem;
}
@media screen and (max-width: 667px) {
  .pt-1 {
    padding-top: 0.25rem;
  }
}

.pb-1 {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 667px) {
  .pb-1 {
    padding-bottom: 0.25rem;
  }
}

.py-1 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 667px) {
  .py-1 {
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
  }
}

.mt-1 {
  margin-top: 0.5rem;
}
@media screen and (max-width: 667px) {
  .mt-1 {
    margin-top: 0.25rem;
  }
}

.mb-1 {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 667px) {
  .mb-1 {
    padding-bottom: 0.25rem;
  }
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 667px) {
  .my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}

.pt-2 {
  padding-top: 1rem;
}
@media screen and (max-width: 667px) {
  .pt-2 {
    padding-top: 0.5rem;
  }
}

.pb-2 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 667px) {
  .pb-2 {
    padding-bottom: 0.5rem;
  }
}

.py-2 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
@media screen and (max-width: 667px) {
  .py-2 {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
}

.mt-2 {
  margin-top: 1rem;
}
@media screen and (max-width: 667px) {
  .mt-2 {
    margin-top: 0.5rem;
  }
}

.mb-2 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 667px) {
  .mb-2 {
    padding-bottom: 0.5rem;
  }
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 667px) {
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.pt-3 {
  padding-top: 1.5rem;
}
@media screen and (max-width: 667px) {
  .pt-3 {
    padding-top: 0.75rem;
  }
}

.pb-3 {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 667px) {
  .pb-3 {
    padding-bottom: 0.75rem;
  }
}

.py-3 {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 667px) {
  .py-3 {
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
  }
}

.mt-3 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 667px) {
  .mt-3 {
    margin-top: 0.75rem;
  }
}

.mb-3 {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 667px) {
  .mb-3 {
    padding-bottom: 0.75rem;
  }
}

.my-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 667px) {
  .my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.pt-4 {
  padding-top: 2rem;
}
@media screen and (max-width: 667px) {
  .pt-4 {
    padding-top: 1rem;
  }
}

.pb-4 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 667px) {
  .pb-4 {
    padding-bottom: 1rem;
  }
}

.py-4 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 667px) {
  .py-4 {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}

.mt-4 {
  margin-top: 2rem;
}
@media screen and (max-width: 667px) {
  .mt-4 {
    margin-top: 1rem;
  }
}

.mb-4 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 667px) {
  .mb-4 {
    padding-bottom: 1rem;
  }
}

.my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 667px) {
  .my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.pt-5 {
  padding-top: 2.5rem;
}
@media screen and (max-width: 667px) {
  .pt-5 {
    padding-top: 1.25rem;
  }
}

.pb-5 {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 667px) {
  .pb-5 {
    padding-bottom: 1.25rem;
  }
}

.py-5 {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}
@media screen and (max-width: 667px) {
  .py-5 {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
  }
}

.mt-5 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 667px) {
  .mt-5 {
    margin-top: 1.25rem;
  }
}

.mb-5 {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 667px) {
  .mb-5 {
    padding-bottom: 1.25rem;
  }
}

.my-5 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 667px) {
  .my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.pt-6 {
  padding-top: 3rem;
}
@media screen and (max-width: 667px) {
  .pt-6 {
    padding-top: 1.5rem;
  }
}

.pb-6 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 667px) {
  .pb-6 {
    padding-bottom: 1.5rem;
  }
}

.py-6 {
  padding-bottom: 3rem;
  padding-top: 3rem;
}
@media screen and (max-width: 667px) {
  .py-6 {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}

.mt-6 {
  margin-top: 3rem;
}
@media screen and (max-width: 667px) {
  .mt-6 {
    margin-top: 1.5rem;
  }
}

.mb-6 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 667px) {
  .mb-6 {
    padding-bottom: 1.5rem;
  }
}

.my-6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 667px) {
  .my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.pt-7 {
  padding-top: 3.5rem;
}
@media screen and (max-width: 667px) {
  .pt-7 {
    padding-top: 1.75rem;
  }
}

.pb-7 {
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 667px) {
  .pb-7 {
    padding-bottom: 1.75rem;
  }
}

.py-7 {
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}
@media screen and (max-width: 667px) {
  .py-7 {
    padding-bottom: 1.75rem;
    padding-top: 1.75rem;
  }
}

.mt-7 {
  margin-top: 3.5rem;
}
@media screen and (max-width: 667px) {
  .mt-7 {
    margin-top: 1.75rem;
  }
}

.mb-7 {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 667px) {
  .mb-7 {
    padding-bottom: 1.75rem;
  }
}

.my-7 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 667px) {
  .my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
}

.pt-8 {
  padding-top: 4rem;
}
@media screen and (max-width: 667px) {
  .pt-8 {
    padding-top: 2rem;
  }
}

.pb-8 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 667px) {
  .pb-8 {
    padding-bottom: 2rem;
  }
}

.py-8 {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
@media screen and (max-width: 667px) {
  .py-8 {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}

.mt-8 {
  margin-top: 4rem;
}
@media screen and (max-width: 667px) {
  .mt-8 {
    margin-top: 2rem;
  }
}

.mb-8 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 667px) {
  .mb-8 {
    padding-bottom: 2rem;
  }
}

.my-8 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 667px) {
  .my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.wrapper-fullwidth {
  max-width: 99%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .wrapper-fullwidth {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: var(--font-aldrich);
}
.header_wrapper-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}
@media screen and (max-width: 667px) {
  .header_wrapper-ribbon {
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.header_wrapper-ribbon img {
  height: 6rem;
  margin: 0;
  padding: 1rem;
  width: 23rem;
}
@media screen and (max-width: 667px) {
  .header_wrapper-ribbon img {
    margin-left: -1.5rem;
  }
}
.header_ribbon {
  background-color: var(--theme-color-blue-level-2);
  width: 100vw;
}
.header_main {
  display: flex;
  padding: 1rem 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s ease-in-out;
  padding-right: 2rem;
  align-items: center;
}
@media screen and (max-width: 790px) {
  .header_main {
    align-items: stretch;
    display: none;
    height: 0;
    opacity: 0;
    flex-direction: column;
    transform-origin: top;
    transition: all 0.4s ease-in;
  }
}
.header_item {
  margin-left: 1.2rem;
}
.header_item:last-child {
  border-radius: 0.4rem;
  padding: 0.5rem 0.9rem;
  background-color: var(--theme-color-blue-level-4);
  color: var(--theme-color);
  margin-left: 0.8rem;
  text-transform: uppercase;
  transform-origin: center;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.header_item:last-child a:hover {
  color: #fff;
}
.header_item:last-child a::after {
  height: 0;
}
.header_item:last-child:hover {
  transform: scale(1.03);
}
.header_item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 1.8rem;
}
.header_item a::after {
  content: "";
  position: absolute;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background-color: var(--theme-color-blue-level-4);
  transform: scaleX(0);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: bottom right;
}
.header_item a:hover {
  color: var(--theme-color-blue-level-4);
}
.header_item a:hover::after {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_item-dropdown {
  position: relative;
  transition: all 0.5s ease-in;
}
.header_item-list {
  display: none;
  position: absolute;
  background-color: var(--theme-color-blue-level-2);
  color: #fff;
  padding: 0.5rem 1rem;
  top: -135%;
  transition: all 0.5s ease;
  opacity: 0;
}
.header_item-active i {
  transform: rotate(180deg);
}
.header_item-active ul {
  padding: 0.5rem 1rem;
  opacity: 1;
  display: block;
  top: 135%;
  left: 0;
}
@media screen and (max-width: 790px) {
  .header_item-active ul {
    position: static;
  }
}
.header_checkbox {
  display: none;
}
.header_bars {
  display: none;
}
@media screen and (max-width: 790px) {
  .header_bars {
    font-size: 4.2rem;
    display: block;
  }
}
.header_nav {
  background-color: var(--theme-color-blue-level-1);
  border-bottom: 1px solid rgba(92, 159, 216, 0.35);
  border-top: 1px solid rgba(92, 159, 216, 0.35);
}
.header_nav-main {
  transition: all 0.5s ease-in;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform-origin: top;
}
.header_urls {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  width: 100%;
  height: 5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 667px) {
  .header_urls {
    padding-left: 1rem;
  }
}
.header_url {
  padding: 1rem;
  display: none;
}
.header_title {
  margin-right: auto;
  font-weight: 600;
  font-size: 1.8rem;
}

@media screen and (max-width: 790px) {
  .header_checkbox:checked ~ .header_main {
    display: flex;
    opacity: 1;
    background-color: rgb(28, 48, 65);
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    top: 6.5rem;
    left: 0;
  }
  .header_checkbox:checked ~ .header_main > .header_item {
    background-color: rgba(28, 48, 65, 0.7);
    margin-left: 0;
    padding: 0.5rem 2rem;
    color: var(--theme-color-text-cream);
    border-bottom: 1px solid var(--theme-color-text-cream);
    backdrop-filter: blur(0.3rem);
  }
  .header_checkbox:checked ~ .header_main > .header_item > * {
    font-size: 1.5rem;
  }
  .header_checkbox:checked ~ .header_main > .header_item a {
    width: 100%;
  }
  .header_checkbox:checked ~ .header_main > .header_item:first-of-type {
    border-top: 1px solid var(--theme-color-text-cream);
  }
  .header_checkbox:checked ~ .header_main > .header_item:last-of-type {
    backdrop-filter: blur(0.3rem);
    background-color: rgba(28, 48, 65, 0.7);
    color: #fff;
    padding: 0.5rem 2rem;
  }
}

.footer {
  background-color: var(--theme-color-blue-level-2);
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.footer::after {
  content: "";
  background: url("../images/wavy-line.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 13%;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.09;
}
@media screen and (max-width: 569px) {
  .footer::after {
    opacity: 0.2;
  }
}
.footer_wrapper {
  height: 95%;
  padding: 6rem 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 667px) {
  .footer_wrapper {
    padding: 4rem 0;
  }
}
.footer_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .footer_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.footer_main {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 569px) {
  .footer_main {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.footer_overview {
  width: 25%;
}
@media screen and (max-width: 569px) {
  .footer_overview {
    width: 100%;
  }
}
.footer_logo {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.footer_logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 569px) {
  .footer_overview, .footer_service, .footer_company, .footer_contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer_headline {
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--theme-color-text-cream);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--theme-color-red);
}
.footer_headline i {
  color: var(--theme-color-text-cream);
  font-size: 2rem;
}
@media screen and (max-width: 569px) {
  .footer_headline {
    text-align: center;
    justify-content: center;
  }
}
.footer_link {
  margin-bottom: 0.8rem;
}
.footer_link a {
  color: var(--theme-color-blue-level-3);
  position: relative;
  padding-bottom: 0.3rem;
}
.footer_link a::after {
  content: "";
  position: absolute;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: bottom right;
}
.footer_link a:hover {
  color: #fff;
}
.footer_link a:hover::after {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer_ribbon {
  background-color: var(--theme-color-blue-level-1);
  padding: 0.5rem;
}
.footer_ribbon span {
  display: block;
  text-align: center;
  padding: 0.5rem;
}

.demo {
  background-image: linear-gradient(-180deg, var(--theme-color-blue-level-2), rgba(9, 16, 22, 0.35));
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 667px) {
  .demo {
    padding-bottom: 0rem;
    padding-top: 0rem;
  }
}
.demo::after {
  background: url(../images/retrowave2.svg);
  content: "";
  position: absolute;
  opacity: 0.07;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.demo_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .demo_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}

.article_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .article_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.article_wrapper {
  max-width: 70ch;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 3rem;
  line-height: 1.7;
}
.article_wrapper > *:first-child {
  margin-top: 0;
}
.article_wrapper > *:last-child {
  margin-bottom: 0;
}
.article_wrapper h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.article_wrapper h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1rem;
  max-width: 55ch;
}
.article_wrapper h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article_wrapper p {
  margin-bottom: 1.25rem;
}
.article_wrapper ul,
.article_wrapper ol {
  padding-left: 3.25rem;
  margin-block: 1.5rem;
}
.article_wrapper li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.article_wrapper a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article_wrapper a:hover {
  text-decoration-thickness: 2px;
}
.article_wrapper section {
  margin-bottom: 3rem;
}
.article_wrapper .cta {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: #f8fafc;
}
.article_wrapper .cta h2 {
  margin-top: 0;
}
@media (max-width: 640px) {
  .article .article_wrapper {
    padding-block: 2rem;
  }
  .article .article_wrapper h1 {
    font-size: 1.875rem;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 667px) {
  .cards {
    gap: 2rem;
  }
}
.card_card {
  padding: 2rem;
  position: relative;
  background-color: rgba(28, 48, 65, 0.35);
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: all 0.3s ease-in;
  row-gap: 1.2rem;
}
.card_card:hover {
  scale: 1.00625;
  transform-origin: bottom;
  box-shadow: rgba(92, 159, 216, 0.4) 0rem 0rem 2rem;
  background-color: rgba(28, 48, 65, 0.8);
}
.card_card:hover .card_arrow {
  transform: translateX(50%);
  left: 35%;
  opacity: 0.8;
  transition: all 0.5s ease-in;
}
.card_card:hover .card_description, .card_card:hover .card_span, .card_card:hover .card_header, .card_card:hover .card_icon {
  transform: translateY(-0.75rem);
  transition: all 0.4s ease-in;
  opacity: 1;
}
.card_icon {
  background-color: rgba(92, 159, 216, 0.15);
  padding: 1rem;
  border-radius: 1rem;
  font-size: 4.5rem;
  color: var(--theme-color-blue-level-3);
  height: 9rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card_icon img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}
.card_span {
  color: var(--theme-color-blue-level-3);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
}
.card_span:nth-child(3) {
  font-style: normal;
}
.card_host {
  color: var(--theme-color-text-cream);
}
.card_header {
  font-size: 1.8rem;
  font-weight: 700;
}
.card_description {
  white-space: normal;
  z-index: 3;
  margin-bottom: 3rem;
}
.card_arrow {
  color: var(--theme-color-text-cream);
  font-size: 4rem;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  opacity: 0;
  transition: all 0.65s ease-in;
}
.card_highlight {
  border-width: 0.3rem;
  background-color: rgba(28, 48, 65, 0.9);
  box-shadow: rgba(92, 159, 216, 0.4) 0rem 0rem 1.5rem;
}
.card_highlight:hover {
  scale: 1;
}
.card_highlight:hover .card_description, .card_highlight:hover .card_span, .card_highlight:hover .card_header, .card_highlight:hover .card_icon {
  transform: translateY(0rem);
  opacity: 1;
}
.card_highlight .card_arrow {
  display: none;
}

.card_description, .card_span, .card_header, .card_icon {
  transition: all 0.4s ease-in-out;
  opacity: 0.8;
}

.animate_card {
  transform: translateX(50%);
  left: 35%;
  opacity: 0.8;
  transition: all 0.6s ease-in;
}

.btn {
  color: var(--theme-color-blue-level-3);
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  border-radius: 0.5rem;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn-blue {
  background-color: var(--theme-color-blue-level-4);
  color: #fff;
}
.btn-blue:hover {
  color: var(--theme-color-blue-level-3);
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}
.btn-white {
  background-color: #fff;
  color: var(--theme-color-blue-level-4);
}
.btn-lg {
  font-size: 2.2rem;
}
@media screen and (max-width: 667px) {
  .btn-lg {
    font-size: 1.8rem;
  }
}
.btn-white:hover {
  background-color: var(--theme-color-blue-level-3);
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.border {
  border: 1px solid rgba(92, 159, 216, 0.4);
  border-radius: 0.8rem;
  overflow: hidden;
}

.arrow__animate {
  display: inline-block;
  width: 75%;
}
.arrow__animate svg {
  width: 80%;
  transform: translateX(0);
  transition: 0.5s;
}
.arrow__animate svg rect {
  transform: scale(0.75, 1);
  transition: 0.5s;
  transform-origin: left;
}
.arrow__animate svg:hover {
  transform: translateX(25%);
}
.arrow__animate svg:hover rect {
  transform: scale(0.75, 1);
}
.arrow__animate path,
.arrow__animate rect {
  transition: 0.5s;
}
.arrow__tip {
  transform: translate(-25%);
}

/* common */
.ribbon {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  position: absolute;
}
.ribbon::before, .ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 0.5rem solid rgba(52, 152, 219, 0.85);
}
.ribbon span {
  position: absolute;
  display: block;
  width: 22.5rem;
  padding: 0.95rem 0;
  background-color: rgba(52, 152, 219, 0.85);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--theme-color-text-cream);
  font: 600 1.4rem "Lato", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  padding-left: 1.5rem;
}

/* top right*/
.ribbon_top_right {
  top: -1rem;
  right: -1rem;
}
.ribbon_top_right::before, .ribbon_top_right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon_top_right::before {
  top: 0;
  left: 0;
}
.ribbon_top_right::after {
  bottom: 0;
  right: 0;
}
.ribbon_top_right span {
  left: -2.5rem;
  top: 3rem;
  transform: rotate(45deg);
}

.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6rem !important;
  height: 6rem !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: auto;
}
@media screen and (max-width: 667px) {
  .fab {
    bottom: 4.5rem;
    right: 5rem;
    width: 2rem !important;
    height: 2rem !important;
  }
}
.fab:hover {
  transform: scale(1.1);
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 6rem;
  height: 6rem;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 667px) {
  .contact_icon {
    width: 4.75rem;
    height: 4.75rem;
    font-size: 2.5rem;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 48, 65, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  backdrop-filter: blur(5px);
}
.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3rem;
  width: 60%;
  height: 55%;
  border-radius: 0.5rem;
  background-color: rgba(92, 159, 216, 0.47);
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.modal_close {
  width: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  font-size: 3.5rem;
  transition: all 0.3s linear;
  margin-left: auto;
  font-weight: 300;
  align-self: start;
  justify-self: flex-end;
}
.modal_close:hover {
  transform: scale(1.15);
}
.modal_inner {
  display: grid;
  grid-template-columns: 30rem 1fr;
  align-items: center;
  align-self: center;
}
.modal_img {
  flex-basis: 1;
  height: 100%;
}
.modal_img iframe {
  height: 100%;
  width: 100%;
}
.modal_visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.countdown p {
  margin-bottom: 1.5rem;
}

.countdown-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
}

.days-container,
.hours-container,
.minutes-container,
.seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
  border: 5px solid rgba(255, 255, 255, 0.3);
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.days,
.hours,
.minutes,
.seconds {
  font-size: 4rem;
}

.days-label,
.hours-label,
.minutes-label,
.seconds-label {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .countdown-container {
    max-width: 90%;
  }
  .days-container,
  .hours-container,
  .minutes-container,
  .seconds-container {
    font-size: 0.8em;
    width: 100px;
    height: 100px;
  }
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.modal {
  display: none;
}

.jp-Notebook {
  margin-top: 10rem;
  min-height: 70svh;
}

.hero {
  padding-bottom: 10.5rem;
  position: relative;
  background-image: linear-gradient(-180deg, rgba(18, 32, 43, 0.8), rgba(9, 16, 22, 0.3));
}
@media screen and (max-width: 667px) {
  .hero {
    padding-bottom: 4.5rem;
  }
}
.hero::after {
  position: absolute;
  content: "";
  background: url(../images/retrowave2.svg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}
.hero_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .hero_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.hero_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero_top {
  width: 100%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f5f5;
}
@media screen and (max-width: 667px) {
  .hero_top {
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 3rem;
  }
}
.hero_top-text {
  width: 55%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .hero_top-text {
    width: 98%;
  }
}
.hero_top video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}
@media screen and (max-width: 667px) {
  .hero_top video {
    opacity: 1;
  }
}
.hero_overlay {
  position: absolute;
  background-color: rgba(28, 48, 65, 0.55);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.4;
}
@media screen and (max-width: 667px) {
  .hero_overlay {
    background-color: rgba(28, 48, 65, 0.55);
  }
}
.hero_headshot {
  width: 18rem;
  height: 18rem;
  border: 1rem solid #FDFFFF;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(28, 48, 65, 0.1);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media screen and (max-width: 667px) {
  .hero_headshot {
    width: 15rem;
    height: 15rem;
  }
}
.hero_headshot:hover {
  background-color: #fff;
}
.hero_headshot:hover img {
  width: 102%;
  height: 100%;
  transition: all 0.5s ease-out;
}
.hero_headshot img {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 667px) {
  .hero_headshot img {
    width: 11.5rem;
    height: 11.5rem;
  }
}
.hero_headshot::after {
  content: "";
  background-color: rgba(206, 212, 218, 0.15);
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.hero_headline {
  margin-top: 2rem;
  padding: 1.2rem;
  font-family: var(--font);
}
@media screen and (max-width: 667px) {
  .hero_headline {
    margin: 1rem 0 0rem 0;
    padding: 1rem;
  }
}
.hero_headline h1, .hero_headline h2 {
  text-align: center;
}
.hero_headline h1 {
  font-size: 6rem;
  text-transform: capitalize;
  font-weight: 600;
}
@media screen and (max-width: 667px) {
  .hero_headline h1 {
    font-size: 3.5rem;
  }
}
.hero_headline h2 {
  font-size: 5rem;
  font-weight: 500;
  margin-top: -1.5rem;
}
@media screen and (max-width: 667px) {
  .hero_headline h2 {
    font-size: 2.5rem;
    margin-top: 0rem;
  }
}
.hero_headline h6 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 667px) {
  .hero_headline h6 {
    font-size: 1.8rem;
  }
}
.hero_prompt {
  color: var(--theme-color);
  font-style: italic;
  font-size: 1.8rem;
}
.hero_cta {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 667px) {
  .hero_cta {
    flex-direction: column;
  }
}
@media screen and (max-width: 667px) {
  .hero_cta a:last-child {
    display: none;
  }
}
.hero_slider {
  margin-top: 3rem;
  margin-bottom: 3rem;
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 2rem;
  position: relative;
}
.hero_slider::before {
  content: "";
  background-color: var(--theme-color);
  height: 12rem;
  width: 12rem;
  position: absolute;
  left: -8rem;
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}
@media screen and (max-width: 667px) {
  .hero_slider::before {
    left: -9.75rem;
  }
}
.hero_slider::after {
  content: "";
  background-color: var(--theme-color);
  height: 12rem;
  width: 12rem;
  position: absolute;
  right: -8rem;
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}
@media screen and (max-width: 667px) {
  .hero_slider::after {
    right: -9.75rem;
  }
}
@media screen and (max-width: 667px) {
  .hero_slider {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
.hero_slider:hover .hero_inner {
  animation-play-state: paused;
}
.hero_inner {
  display: flex;
  gap: 1.25rem;
  animation: slide 40s linear infinite;
}
.hero_skill {
  background-color: var(--theme-color-text-cream);
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 667px) {
  .hero_skill {
    padding: 0.3rem 1.2rem;
    border-radius: 0.5rem;
  }
}
.hero_skill span {
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--theme-color);
}
@media screen and (max-width: 667px) {
  .hero_skill span {
    font-size: 1.4rem;
  }
}
.hero_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 95%;
  margin-top: 2rem;
}
@media screen and (max-width: 667px) {
  .hero_grid {
    width: 98%;
  }
}
.hero_socials {
  display: flex;
  height: auto;
  gap: 4rem;
  justify-content: space-between;
  grid-column: 1/-1;
}
@media screen and (max-width: 667px) {
  .hero_socials {
    gap: 2rem;
  }
}
.hero_social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  flex: 1;
  padding: 1.5rem;
  gap: 1.5rem;
}
.hero_social:hover {
  cursor: pointer;
}
.hero_social:hover i {
  scale: 1.15;
  transition: all 0.3s;
}
.hero_social i, .hero_social span {
  transition: all 0.3s;
  transform-origin: bottom;
}
.hero_social span {
  white-space: normal;
  text-align: center;
}
.hero_social i {
  font-size: 6.5rem;
}
.hero_social-1 {
  background-color: rgba(10, 102, 194, 0.8);
}
.hero_social-2 {
  background-color: rgba(1, 4, 9, 0.55);
}
.hero_feature {
  grid-column: 1/-1;
  grid-row: 1/2;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero_about {
  padding: 4rem;
  position: relative;
  transition: height 0.6s ease-in-out;
}
@media screen and (max-width: 667px) {
  .hero_about {
    padding: 2rem;
    padding-bottom: 4rem;
  }
}
.hero_about p {
  max-width: 75ch;
  line-height: 2;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 667px) {
  .hero_about p {
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
  }
}
.hero_about p a {
  color: var(--theme-color-blue-level-3);
  font-weight: 700;
}
.hero_about button {
  display: none;
}
@media screen and (max-width: 667px) {
  .hero_about button {
    right: 1.5rem;
    bottom: 1.5rem;
    position: absolute;
    display: block;
  }
}
.hero_ellipses {
  display: none;
}
@media screen and (max-width: 667px) {
  .hero_ellipses {
    display: inline-block;
  }
}
@media screen and (max-width: 667px) {
  .hero_moreContent {
    display: none;
    transition: height 0.6s ease-out;
    transform-origin: top;
    height: 0;
    overflow: clip;
    opacity: 0;
  }
}
.hero_title {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

@keyframes slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.processes {
  background-image: linear-gradient(-180deg, rgba(28, 48, 65, 0.2), rgba(9, 16, 22, 0.6));
}
.process_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .process_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.process_wrapper {
  padding-top: 3rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 667px) {
  .process_wrapper {
    padding-bottom: 2.5rem;
  }
}
.process_header {
  text-align: center;
  padding-bottom: 5rem;
}
.process_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 3rem;
}
.process_child {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
}
.process_child:hover .arrow__animate svg {
  transform: translateX(25%);
}
@media screen and (max-width: 667px) {
  .process_child {
    gap: 1rem;
    padding: 2rem;
  }
}
.process_number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 667px) {
  .process_number {
    margin-bottom: 1rem;
  }
}
.process_number span {
  height: 6rem;
  width: 6rem;
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(92, 159, 216, 0.85);
  border-radius: 50%;
  font-weight: 500;
}
@media screen and (max-width: 667px) {
  .process_number span {
    height: 4.5rem;
    width: 4.5rem;
    font-size: 2.2rem;
    font-weight: 400;
  }
}
.process_number svg {
  fill: var(--theme-color-text-cream);
  margin-left: 3rem;
}

.services {
  background-image: linear-gradient(-180deg, var(--theme-color-blue-level-2), rgba(9, 16, 22, 0.5));
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 667px) {
  .services {
    padding-bottom: 0.5rem;
    padding-top: 3rem;
  }
}
.services_headline {
  margin-right: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.services_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .services_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.services_wrapper {
  margin-top: 2rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}
.services::after {
  background: url(../images/retrowave2.svg);
  content: "";
  position: absolute;
  opacity: 0.1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 667px) {
  .services::after {
    opacity: 0.07;
  }
}
.services_input {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: relative;
  index: 2;
  left: -1rem;
}
.services_input:checked + .services_label + .services_child {
  display: grid;
}
.services_input:checked + .services_label {
  background-color: rgba(52, 152, 219, 0.9);
  color: #fff;
  font-weight: 600;
  box-shadow: rgba(1, 1, 1, 0.6) 0rem 0rem 2.5rem;
}
.services_label {
  display: inline-flex;
  font-size: 1.8rem;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  margin: 0 2rem 4rem 0;
  border-width: 0.2rem;
  transition: all 0.3s ease-in-out;
}
.services_label:hover {
  cursor: pointer;
  scale: 1.05;
  background-color: rgba(52, 152, 219, 0.9);
  color: #fff;
  font-weight: 500;
}
.services_label:first-of-type {
  margin-right: 2rem;
}
@media screen and (max-width: 667px) {
  .services_label {
    font-size: 1.6rem;
    padding: 0.9rem;
    margin: 0;
    margin-bottom: 2rem;
  }
}
.services_child {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  order: 1;
  transition: all 1s ease-in-out;
}
.services_card, .pricing_card {
  padding: 2rem;
  position: relative;
  background-color: rgba(28, 48, 65, 0.35);
  z-index: 2;
  transition: all 0.2s ease-out;
}
.services_card:hover, .pricing_card:hover {
  scale: 1.00325;
  transform-origin: bottom;
  box-shadow: rgba(92, 159, 216, 0.4) 0rem 0rem 2.5rem;
  background-color: rgba(28, 48, 65, 0.65);
  transition: all 0.3s ease-in;
}
.services_icon {
  background-color: rgba(92, 159, 216, 0.25);
  padding: 1rem;
  border-radius: 1rem;
  font-size: 4.5rem;
  color: var(--theme-color-blue-level-3);
  height: 9rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.services_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services_meta {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.services_details {
  display: flex;
  flex-direction: column;
}
.services_span {
  color: var(--theme-color-blue-level-3);
  font-size: 1.2rem;
  font-weight: 800;
  order: 2;
}
.services_header {
  font-size: 2rem;
  font-weight: 600;
  order: 1;
  text-wrap: wrap;
}
.services_description {
  text-wrap: wrap;
}

.animations {
  background-image: linear-gradient(-180deg, rgba(28, 48, 65, 0.4), rgba(9, 16, 22, 0.8));
  width: 100vw;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 4rem;
}
@media screen and (max-width: 667px) {
  .animations {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0;
  }
}
.animations_header {
  text-align: center;
  width: 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 667px) {
  .animations_header {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.animations_headline {
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 667px) {
  .animations_headline {
    margin-bottom: 0;
    padding-top: 2.5rem;
  }
}
.animations_description {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 667px) {
  .animations_description {
    padding: 2rem;
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.animations_section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  padding: 10rem 5rem;
  margin-top: 3rem;
  max-width: 100%;
  overflow: clip;
}
@media screen and (max-width: 1074px) {
  .animations_section {
    padding: 6rem 2rem;
  }
}
@media screen and (max-width: 667px) {
  .animations_section {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 1rem;
    margin-top: 0.5rem;
  }
}
.animations_section::after {
  position: absolute;
  content: "";
  background: url("../images/blue wavy-xx.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.35;
  z-index: -1;
}
.animations_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
  padding: 1rem;
}
@media screen and (max-width: 667px) {
  .animations_column-double {
    display: none;
  }
}
@media screen and (max-width: 1074px) {
  .animations_column {
    gap: 4rem;
  }
}
@media screen and (max-width: 667px) {
  .animations_column {
    gap: 1rem;
  }
}
.animations_ball {
  border: 1px solid rgba(92, 159, 216, 0.15);
  padding: 1rem;
  border-radius: 50%;
  height: 9rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 1074px) {
  .animations_ball {
    scale: 0.9;
  }
}
@media screen and (max-width: 667px) {
  .animations_ball {
    scale: 0.8;
  }
}
.animations_ball img {
  background-color: rgba(92, 159, 216, 0.05);
  padding: 1rem;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in;
  transform-origin: center;
}
.animations_ball img:hover {
  scale: 1.2;
  background: rgb(255, 255, 255);
  transform: rotate(360deg);
}

.animate_ball {
  animation: bounce 0.6s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 2rem, 0);
  }
}
.slider {
  background-image: linear-gradient(-180deg, rgba(28, 48, 65, 0.8), rgba(28, 48, 65, 0.2));
  padding-bottom: 6rem;
}
@media screen and (max-width: 667px) {
  .slider {
    padding-bottom: 2.5rem;
  }
}
.slider_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .slider_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.slider_headline {
  text-align: center;
  font-size: 5.5rem;
  font-weight: 400;
  margin: 4rem 0;
}
@media screen and (max-width: 720px) {
  .slider_headline {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 667px) {
  .slider_headline {
    font-size: 3.2rem;
    margin: 3rem 0;
  }
}
.slider_track {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: all transform 0.5s;
  scroll-behavior: smooth;
  padding: 0 1rem;
}
.slider_arrow {
  font-size: 3.8rem;
  display: flex;
  gap: 3.5rem;
  color: var(--theme-color-blue-level-3);
  margin: 5rem auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 667px) {
  .slider_arrow {
    margin: 3rem auto 0 auto;
  }
}
.slider_arrow > * {
  transition: all 0.4s;
}
.slider_arrow-left:hover, .slider_arrow-right:hover {
  transform-origin: center;
  scale: 1.2;
  cursor: pointer;
}
.slider_card {
  width: 32.6666666667%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
  flex-shrink: 0;
  margin-left: 1.3rem;
}
@media screen and (max-width: 1050px) {
  .slider_card {
    width: 49.5%;
  }
}
@media screen and (max-width: 768px) {
  .slider_card {
    width: 49.5%;
  }
}
@media screen and (max-width: 680px) {
  .slider_card {
    width: 99.5%;
  }
}
.slider_card:first-child {
  margin-left: 0;
}
.slider_card > * {
  white-space: normal;
}
.slider_card i {
  font-size: 4rem;
  color: var(--theme-color-blue-level-3);
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.slider_div {
  position: relative;
}
.slider_div::after {
  content: "";
  background: url("../images/honeycomb-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0.095;
}
.slider_text {
  font-size: 1.8rem;
  line-height: 1.7;
  padding: 1.5rem;
}
.slider_dp {
  border: 1px solid rgba(92, 159, 216, 0.15);
  border-radius: 50%;
  height: 9rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0rem auto 1rem auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider_dp img {
  height: 9rem;
  width: 9rem;
}
.slider_client, .slider_title {
  text-align: center;
  display: block;
  padding-bottom: 1rem;
}
.slider_title {
  font-style: italic;
}

.cta {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: linear-gradient(-180deg, rgba(28, 48, 65, 0.2), rgba(9, 16, 22, 0.6));
}
@media screen and (max-width: 667px) {
  .cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.cta_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .cta_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.cta_slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 667px) {
  .cta_slider {
    gap: 2rem;
  }
}
.cta_inner {
  display: flex;
  gap: 2rem;
  animation: slideLeft 40s linear infinite;
  margin-right: 2rem;
}
.cta_skill {
  padding: 1.2rem 1.5rem;
  border-radius: 2rem;
}
@media screen and (max-width: 667px) {
  .cta_skill {
    padding: 0.5rem 1rem;
  }
}
.cta_skill span {
  white-space: nowrap;
  font-size: 3rem;
  font-weight: 600;
  color: var(--theme-color-text-cream-light);
}
@media screen and (max-width: 667px) {
  .cta_skill span {
    font-size: 2rem;
  }
}
.cta_headline {
  padding: 5rem;
}
@media screen and (max-width: 667px) {
  .cta_headline {
    padding: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    line-height: 1.5;
  }
}
.cta_buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 6rem auto;
}

@keyframes slideLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-105%, 0, 0);
  }
}
.faq {
  background-image: linear-gradient(-180deg, rgba(9, 16, 22, 0.6), rgba(28, 48, 65, 0.4));
  position: relative;
}
.faq_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .faq_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.faq_wrapper {
  padding-bottom: 4rem;
  margin-bottom: 2.5rem;
  font-size: 1.7rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 667px) {
  .faq_wrapper {
    line-height: 1.5;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
}
.faq_header {
  padding: 1.5rem 0 4rem 0;
}
@media screen and (max-width: 667px) {
  .faq_header {
    padding-bottom: 2rem;
  }
}
.faq_subheader {
  align-self: start;
  padding-left: 9.5rem;
  font-size: 2.8rem !important;
}
@media screen and (max-width: 667px) {
  .faq_subheader {
    padding-left: 0;
    padding-bottom: 1rem;
    padding-left: 2.5rem;
    font-size: 2.2rem !important;
  }
}
.faq_section {
  width: 90%;
  border-bottom: 0.1rem solid rgba(92, 159, 216, 0.35);
  margin-bottom: 0.5rem;
  padding: 1.3rem;
}
@media screen and (max-width: 667px) {
  .faq_section {
    width: 100%;
    padding: 0.5rem;
  }
}
.faq_question {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 667px) {
  .faq_question {
    align-items: flex-start;
    font-size: 1.6rem;
  }
}
.faq_question span:first-of-type {
  margin-right: 0.8rem;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--theme-color-blue-level-4);
}
@media screen and (max-width: 667px) {
  .faq_question span:first-of-type {
    font-size: 2rem;
  }
}
.faq_signs {
  margin-left: auto;
  background-color: var(--theme-color-blue-level-4);
  color: #000;
  padding: 0.6rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 667px) {
  .faq_signs {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.8rem;
  }
}
.faq_answer {
  padding-left: 2.5rem;
  max-width: 95ch;
  display: none;
  transition: height 0.7s ease;
  transform-origin: top;
}
@media screen and (max-width: 667px) {
  .faq_answer {
    font-size: 1.5rem;
    padding-left: 1.5rem;
  }
}

.contact {
  background-image: linear-gradient(-180deg, rgba(28, 48, 65, 0.4), rgba(9, 16, 22, 0.8));
  padding-top: 8rem;
}
@media screen and (max-width: 667px) {
  .contact {
    padding-top: 2.5rem;
  }
}
.contact_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .contact_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.contact_wrapper {
  max-width: 90rem;
  position: relative;
  margin-bottom: 5rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 910px) {
  .contact_wrapper {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 667px) {
  .contact_wrapper {
    width: 90vw;
    margin: 2rem auto;
    padding: 1rem;
  }
}
.contact_wrapper::after, .contact_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.contact_wrapper::before {
  background-image: url("../images/honeycomb-1.webp");
  z-index: -2;
  opacity: 0.05;
}
.contact_wrapper::after {
  background-color: var(--theme-color-blue-level-2);
  z-index: -1;
  opacity: 0.3;
}
.contact_title {
  text-align: center;
  margin-bottom: 2rem;
}
.contact_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 667px) {
  .contact_form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.contact_form button {
  cursor: pointer;
  justify-self: center;
  grid-column: 1/-1;
}
.contact_field {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0.5rem;
}
.contact_field label {
  padding-left: 1.5rem;
}
@media screen and (max-width: 667px) {
  .contact_field:first-of-type {
    grid-column: 1/-1;
  }
}
.contact_message {
  grid-column: 1/-1;
}
.contact_message textarea {
  border-radius: 1.5rem;
  padding: 1.5rem;
  min-height: 20rem;
}
.contact_response {
  grid-column: 1/-1;
  text-align: center;
  font-size: 18rem;
  font-weight: 500;
  display: none;
}
.contact_success i {
  color: #27ae60;
}
.contact_fail i {
  color: #c0392b;
}
.contact .turnstile {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
}

section {
  transition: transform 1.5s, opacity 0.8s;
}

.section_hidden {
  opacity: 0;
  transform: translateY(15rem);
  overflow: hidden;
  transition: transform 1.5s, opacity 0.9s;
}

.pricing {
  padding-top: 4rem;
  background-image: linear-gradient(-180deg, rgba(9, 16, 22, 0.6), rgba(28, 48, 65, 0.4));
}
.pricing_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .pricing_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.pricing_link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 20%;
  z-index: 1;
}
.pricing_tabs {
  display: flex;
  gap: 2rem;
  margin: 4rem 0 4rem 0;
}
@media screen and (max-width: 667px) {
  .pricing_tabs {
    flex-direction: column;
    align-items: start;
    margin: 2rem 0 2rem 0;
  }
}
.pricing_tab {
  padding: 1.5rem 2.5rem;
  font-size: 1.8rem;
  border-radius: 1.2rem;
  background-color: rgba(28, 48, 65, 0.25);
  color: #fff;
  transition: all 0.4s ease-in;
}
.pricing_tab:hover {
  cursor: pointer;
  background-color: rgba(52, 152, 219, 0.9);
}
.pricing_tab-active {
  box-shadow: rgba(92, 159, 216, 0.7) 0rem 0rem 3rem;
  background-color: rgba(52, 152, 219, 0.9);
}
.pricing_cards {
  display: none;
  margin-bottom: 6rem;
}
@media screen and (max-width: 667px) {
  .pricing_cards {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.pricing_cards-active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
  gap: 3rem;
}
@media screen and (max-width: 667px) {
  .pricing_cards-active {
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  }
}
.pricing_card {
  line-height: 1.5;
  padding-top: 12rem;
}
.pricing_heading {
  padding-bottom: 2rem;
  color: #fff;
}
.pricing_descriptor {
  padding-bottom: 2rem;
}
.pricing_price {
  display: flex;
}
.pricing_price i {
  padding: 0.5rem 1rem;
}
.pricing_items li:not(.pricing_title):nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.015);
}
.pricing_items li:not(.pricing_title):nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}
.pricing_item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 0.1rem;
  padding: 0.5rem 1rem;
}
.pricing_item i {
  line-height: 1;
  margin-top: 0.6rem;
  color: var(--theme-color-blue-level-4);
}
.pricing_title {
  padding-bottom: 1.5rem;
}
.pricing_title span:first-of-type {
  padding-right: 0.35rem;
}
.pricing_content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  gap: 0.5rem;
}
.pricing_label {
  font-weight: 500;
}
.pricing_value {
  word-break: break-word;
  max-width: 100%;
}
.pricing_divider {
  border: 1px solidvar(--theme-color-blue-level-3) !important;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.pricing_cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  background: var(--theme-color-blue-level-3);
  color: #000;
  padding: 0.65rem 1rem;
  font-size: 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  z-index: 3;
}
.pricing_cta:hover {
  background: var(--theme-color-blue-level-4);
  color: #fff;
}

.front .card_icon {
  border: 1px solid var(--theme-color-blue-level-3);
  width: 100%;
  height: 22rem;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
}
.front .card_icon img {
  height: 100%;
  width: 100%;
}

.portfolio_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .portfolio_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.portfolio_wrapper {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
@media screen and (max-width: 667px) {
  .portfolio_wrapper {
    padding-bottom: 0rem;
    padding-top: 0rem;
  }
}
.portfolio_wrapper .cards .card_card:last-of-type {
  cursor: default;
}
.portfolio_wrapper .cards .card_card:last-of-type:hover {
  scale: 1;
  transform-origin: bottom;
  box-shadow: rgba(92, 159, 216, 0.4) 0rem 0rem 2rem;
  background-color: rgba(28, 48, 65, 0.8);
}
.portfolio_wrapper .cards .card_card:last-of-type:hover .card_description, .portfolio_wrapper .cards .card_card:last-of-type:hover .card_span, .portfolio_wrapper .cards .card_card:last-of-type:hover .card_header, .portfolio_wrapper .cards .card_card:last-of-type:hover .card_icon {
  transform: translateY(0);
  transition: all 0 ease-in;
  opacity: 0.8 !important;
}

.error_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .error_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.error_wrapper {
  text-align: center;
  padding: 3rem;
}
.error_wrapper span {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
}
.error_wrapper span:last-of-type {
  font-size: 2.2rem;
  margin-top: 2rem;
}
.error_backlink a {
  border-radius: 0.4rem;
  padding: 0.5rem 0.9rem;
  background-color: var(--theme-color-blue-level-4);
  color: var(--theme-color);
  margin-left: 0.8rem;
  text-transform: uppercase;
  transform-origin: center;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.home {
  width: 100vw;
  padding-bottom: 10.5rem;
  position: relative;
  height: 95vh;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 48, 65, 0.5);
  z-index: -1;
  background-image: url("../images/hero/2560x1261 desktop.webp");
  opacity: 0.75;
  background-size: cover;
}
@media screen and (max-width: 667px) {
  .home::before {
    padding-bottom: 4.5rem;
    background-image: url("../images/hero/digital-globe-mobile.webp");
    opacity: 0.5;
  }
}
@media screen and (max-width: 667px) {
  .home {
    height: 95dvh;
  }
}
.home_banner {
  padding: 2rem;
  position: absolute;
  width: 67rem;
  top: 15%;
  left: 6%;
  color: var(--theme-color-blue-level-2-5);
  color: #fff;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .home_banner {
    width: 45rem;
    top: 8rem;
    left: 8rem;
  }
}
@media screen and (max-width: 667px) {
  .home_banner {
    width: 90%;
    top: 5rem;
    left: 5%;
    padding: 1.5rem;
  }
}
.home_banner h1 {
  font-size: 6rem;
  font-family: var(--font-aldrich);
}
.home_banner h1 span:last-of-type {
  color: var(--theme-color-red);
}
@media screen and (max-width: 667px) {
  .home_banner h1 {
    font-size: 5rem;
    line-height: 1.3;
  }
}
.home_banner p {
  width: 90%;
  font-family: var(--font-rajdhani-regular);
  line-height: 2.5rem;
  font-size: 2.1rem;
  color: #fff;
}
@media screen and (max-width: 667px) {
  .home_banner p {
    padding-top: 4rem;
    width: 100%;
    line-height: 1.6;
    font-size: 1.9rem;
    font-weight: 500;
  }
}
.home_overlay {
  position: absolute;
  background-color: rgba(28, 48, 65, 0.69);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}
@media screen and (max-width: 667px) {
  .home_overlay {
    background-color: rgba(28, 48, 65, 0.55);
  }
}

.benefit {
  background-image: linear-gradient(-180deg, rgba(9, 16, 22, 0.3), rgb(28, 48, 65));
  padding: 8rem 0 12rem 0;
}
@media screen and (max-width: 760px) {
  .benefit {
    padding: 5rem 0 8rem 0;
  }
}
@media screen and (max-width: 667px) {
  .benefit {
    padding: 3rem 0 5rem 0;
  }
}
.benefit_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .benefit_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.benefit_header {
  padding-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .benefit_header {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_header {
    padding-bottom: 2rem;
  }
}
.benefit_header span {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .benefit_header span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_header span {
    font-size: 1.2rem;
  }
}
.benefit_description {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 4.5rem;
  line-height: 1.7;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .benefit_description {
    padding-bottom: 3rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_description {
    padding-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.benefit_description p {
  max-width: 65ch;
  text-align: center;
}
.benefit_content {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 667px) {
  .benefit_content {
    flex-direction: column;
  }
}
.benefit_content:nth-child(2n+1) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 667px) {
  .benefit_content:nth-child(2n+1) {
    flex-direction: column;
  }
}
.benefit_text {
  padding: 3rem;
  width: 50%;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .benefit_text {
    padding: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_text {
    padding: 1.5rem;
    width: 100%;
    align-self: auto;
  }
}
.benefit_text h3 {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .benefit_text h3 {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_text h3 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
}
.benefit_text p {
  padding-bottom: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .benefit_text p {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 667px) {
  .benefit_text p {
    font-size: 1.3rem;
    padding-bottom: 1rem;
  }
}
.benefit_text ul {
  list-style: disc;
  padding-left: 3.5rem;
}
.benefit_text ul li {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 667px) {
  .benefit_text ul li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
}
.benefit_text ul li::marker {
  color: var(--theme-color-blue-level-3);
}
.benefit_image {
  width: 50%;
  border: 0.2rem solid var(--theme-color-blue-level-2);
}
@media screen and (max-width: 1024px) {
  .benefit_image {
    border: 0.15rem solid var(--theme-color-blue-level-2);
  }
}
@media screen and (max-width: 667px) {
  .benefit_image {
    width: 100%;
    border: 0.1rem solid var(--theme-color-blue-level-2);
    margin-top: 1.5rem;
  }
}
.benefit_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.target {
  background-image: linear-gradient(-180deg, rgba(9, 16, 22, 0.5), rgba(28, 48, 65, 0.8));
  padding: 8rem 0 12rem 0;
}
@media screen and (max-width: 1024px) {
  .target {
    padding: 5rem 0 8rem 0;
  }
}
@media screen and (max-width: 667px) {
  .target {
    padding: 3rem 0 5rem 0;
  }
}
.target_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .target_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.target_wrapper > span {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .target_wrapper > span {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .target_wrapper > span {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
.target_headline {
  padding-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .target_headline {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 667px) {
  .target_headline {
    padding-bottom: 2rem;
  }
}
.target_container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .target_container {
    gap: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .target_container {
    gap: 1.5rem;
  }
}
.target_child {
  width: calc(50% - 2rem);
  padding: 3rem;
}
@media screen and (max-width: 1024px) {
  .target_child {
    width: calc(50% - 1.5rem);
    padding: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .target_child {
    width: 100%;
    padding: 1.5rem;
  }
}
.target_image {
  width: 12rem;
  height: 12rem;
  border: 0.6rem solid var(--theme-color-blue-level-5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .target_image {
    width: 10rem;
    height: 10rem;
    border: 0.5rem solid var(--theme-color-blue-level-5);
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .target_image {
    width: 8rem;
    height: 8rem;
    border: 0.4rem solid var(--theme-color-blue-level-5);
    margin-bottom: 1.5rem;
  }
}
.target_image::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(28, 48, 65, 0.2);
  z-index: 2;
  height: 90.5%;
  width: 90.5%;
}
.target_image img {
  position: relative;
  width: 90.5%;
  height: 90.5%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.target_title {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .target_title {
    font-size: 2rem;
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 667px) {
  .target_title {
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
  }
}

.strategy {
  background: linear-gradient(180deg, var(--theme-color-blue-level-1) 0%, var(--theme-color-blue-level-2) 40%, var(--theme-color) 100%);
  padding: 5rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.strategy_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .strategy_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}

.strategy_intro {
  text-align: center;
  margin-bottom: 4rem;
}

.strategy_main_title {
  font-family: var(--font-rajdhani-bold);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--theme-color-text-cream));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strategy_main_subtitle {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--theme-color-text-cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.strategy_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.strategy_card {
  background: rgba(var(--theme-color-blue-level-1), 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.strategy_card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color-red);
}
.strategy_card:hover .strategy_title {
  color: var(--theme-color-red);
}
.strategy_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color-red), transparent);
}

.strategy_title {
  font-family: var(--font-rajdhani-bold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.strategy_text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.4rem;
}

.strategy_values {
  margin-bottom: 6rem;
  text-align: center;
}

.strategy_section_title {
  font-family: var(--font-rajdhani-bold);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
  display: inline-block;
}
.strategy_section_title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--theme-color-red);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value_item {
  background: linear-gradient(0deg, rgba(28, 48, 65, 0.4) 0%, rgba(9, 16, 22, 0.6) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: all 0.3s ease;
}
.value_item:hover {
  background: linear-gradient(145deg, rgba(237, 0, 73, 0.1) 0%, rgba(9, 16, 22, 0.8) 100%);
  border-color: var(--theme-color-red);
}
.value_item:hover .value_icon {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
}

.value_icon {
  font-size: 2.8rem;
  color: var(--theme-color-red);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.value_title {
  font-family: var(--font-rajdhani-bold);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.value_text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  line-height: 1.6;
}

.strategy_proposition {
  background: linear-gradient(180deg, rgba(28, 48, 65, 0.8) 0%, rgba(18, 32, 43, 0.8) 90%);
  border-left: 5px solid var(--theme-color-red);
  padding: 3rem;
  border-radius: 0 16px 16px 0;
  position: relative;
}
@media (min-width: 768px) {
  .strategy_proposition {
    padding: 4rem;
    margin: 0 2rem;
  }
}

.proposition_content {
  max-width: 900px;
  margin: 0 auto;
}
.proposition_content .strategy_section_title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.proposition_content .strategy_section_title::after {
  margin: 1rem 0 0;
}

.proposition_text {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.proposition_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.proposition_list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-family: var(--font-rajdhani-medium);
  font-size: 1.4rem;
}
.proposition_list li i {
  color: var(--theme-color-red);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .strategy {
    padding: 3rem 1rem;
  }
  .strategy_main_title {
    font-size: 2rem;
  }
  .strategy_card {
    padding: 1.5rem;
  }
  .strategy_text {
    font-size: 1.4rem;
  }
  .strategy_proposition {
    padding: 2rem;
    border-radius: 8px;
  }
  .proposition_text {
    font-size: 1.4rem;
  }
  .value_text {
    font-size: 1.4rem;
  }
}
.about {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, rgba(18, 32, 43, 0.8) 100%, rgba(28, 48, 65, 0.4) 0%);
}

.about_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .about_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}

.about_title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--theme-color-text-cream);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.about_subtitle {
  font-size: 1.4rem;
  color: var(--theme-color-text-cream-light);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.employees_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .employees_grid {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .employees_grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
  }
}

.employee-card {
  background: rgba(var(--theme-color-blue-level-1), 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.employee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-color-red) 0%, var(--theme-color-blue-level-3) 100%);
  opacity: 0.8;
}
.employee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--theme-color-red);
  cursor: pointer;
}

.card_heading {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card_avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.card_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.card_avatar:hover {
  border-color: var(--theme-color-red);
}

.card_name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: var(--font-rajdhani-bold);
}

.card_profession {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--theme-color-red);
  margin: 0.25rem 0;
  letter-spacing: 0.3px;
}

.card_department {
  font-size: 1.2rem;
  color: var(--theme-color-text-cream-light);
  margin: 0.5rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card_section h3.section_header {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card_section h3.section_header::before {
  content: "";
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, var(--theme-color-red) 0%, var(--theme-color-blue-level-3) 100%);
  border-radius: 2px;
}
.card_section .section_text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
  text-wrap: wrap;
}
.card_section .section_email {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--theme-color-blue-level-3);
  text-decoration: none;
  transition: all 0.2s ease;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.card_section .section_email:hover {
  color: var(--theme-color-red);
}

.skills_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.skill_badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-color-text-cream);
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: default;
}
.skill_badge:hover {
  background: rgba(237, 0, 73, 0.1);
  border-color: var(--theme-color-red);
  color: var(--theme-color-red);
  transform: scale(1.05);
}

.card_quote {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-bottom: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(237, 0, 73, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.card_quote blockquote {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  text-wrap: wrap;
}

@media (max-width: 640px) {
  .about {
    padding: 2rem 1rem;
  }
  .about_title {
    font-size: 1.75rem;
  }
  .about_subtitle {
    font-size: 0.9rem;
  }
  .employees_grid {
    gap: 1.5rem;
  }
  .employee-card {
    padding: 1.5rem 1.25rem;
  }
  .card_name {
    font-size: 1.2rem;
  }
  .card_title {
    font-size: 0.9rem;
  }
  .card_section .section_text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .card_quote blockquote {
    font-size: 1.1rem;
  }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .employees_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .employees_grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media (min-width: 1440px) {
  .employees_grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.employee-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.employee-card:nth-child(1) {
  animation-delay: 0.1s;
}
.employee-card:nth-child(2) {
  animation-delay: 0.2s;
}
.employee-card:nth-child(3) {
  animation-delay: 0.3s;
}
.employee-card:nth-child(4) {
  animation-delay: 0.4s;
}
.employee-card:nth-child(5) {
  animation-delay: 0.5s;
}

.blog_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: var(--max-container-width);
}
@media screen and (max-width: 667px) {
  .blog_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden;
  }
}
.blog_wrapper {
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 3rem;
  padding-left: 1.5rem;
  paddding-right: 1.5rem;
}
.blog_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1023px) {
  .blog_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog_cards {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.blog_card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog_preview img {
  border-radius: 2rem;
  border: 1px solid rgba(92, 159, 216, 0.4);
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media (min-width: 1023px) {
  .blog_preview img {
    height: 29rem;
  }
}
@media (max-width: 767px) {
  .blog_preview img {
    height: 40rem;
  }
}
.blog_summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .blog_summary {
    gap: 1rem;
  }
}
.blog_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}
.blog_category {
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  background-color: rgba(206, 212, 218, 0.2);
}
.blog_date {
  font-style: italic;
}
.blog_description {
  line-height: 2;
}
.blog_description a {
  white-space: normal;
}
.blog_description a:hover {
  text-decoration: underline;
}
.blog_description p {
  padding-top: 2rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .blog_description p {
    padding-top: 1rem;
  }
}/*# sourceMappingURL=main.css.map */