:root{
  --main-font: 'WF Visual Sans', sans-serif;
}

body,
html {
  padding: 0;
  margin: 0;
  background: #000;
  color: #fff;
}

@font-face {
  font-family: "WF Visual Sans";
  src: url("https://dhygzobemt712.cloudfront.net/Fonts/VF/WFVisualSansVF.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

.hidden {
  display: none;
}
.container-row{
  width: 100%;
  position: relative;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  position: relative;
  z-index: 10;
}

body {
  font-family: var(--main-font);
  font-variation-settings: 'opsz' 0, 'wght' 300;
  /* background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%); */
  background-color: #101010;
}

h1,
h2,
h3 {
  font-family: var(--main-font);
  font-variation-settings: 'opsz' 100, 'wght' 700;
  margin: 0;
}

h2 {
  font-size: clamp(1rem, -1.5rem + 8vw, 3rem);
}
h2.full-width{
  width: 100%;
  text-align: center;
}
h3 {
  font-size: 2vw;
}

h4 {
  font-size: 1vw;
  line-height: 1em;
}

.heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6vh 0;
  width: 100%;
}

ul.apps_list {
  margin: 0;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
ul.apps_list .apps_item {
  list-style: none;
  background: rgba(255, 255, 255, 0.1411764706);
  padding: 7px 10px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.1882352941);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.0588235294);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
  gap: 30px;
}

a.button {
  display: inline-flex;
  gap: 10px;
  background: #0a1fa2;
  padding: 20px 30px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1490196078);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
a.button svg {
  fill: #fff;
  z-index: 10;
  width: 20px;
  height: 20px;
}
a.button span {
  color: #fff;
  text-decoration: none;
  z-index: 10;
}
a.button:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  bottom: -20px;
  left: 0;
  background: linear-gradient(0deg, #0a1fa2 0%, #7c00ff 100%);
  opacity: 0.5;
  transition: all 300ms ease;
}
a.button:hover:before {
  top: 0;
  bottom: 0;
  opacity: 1;
}

@media screen and (max-width: 400px) {
  a.button {    
    width: 60px;
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: 60px;
    justify-content: center;
    span{
      display: none;
    }
  }
  
}
.contact_me {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.contact {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1803921569);
  padding: 5px 4px;
  border-radius: 8px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  font-size: 14px;
  align-items: center;
  gap: 0px;
  cursor: pointer;
  transition: all 150ms ease;
}
.contact span {
  /* background: #fff; */
  border-radius: 5px;
  /* color: #005deb; */
  /* padding: 2px; */
  font-weight: bold;
}
.contact:hover {
  background: rgba(255, 255, 255, 0.3411764706);
}
.contact:active {
  background: rgba(255, 255, 255, 0.4980392157);
}

.alert {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 14px;
  border-radius: 5px;
  color: #000000;
  font-size: 14px;
  text-align: center;
  transition: all 600ms ease-in-out;
}
.alert.show {
  top: 50px;
}

.comingsoon {
  padding: 50px 0;
  text-align: center;
  font-size: 12px;
}

.header .row-bg{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  
  &::before{
    content: "";
    background-image: url(/assets/image/bg-pattern.svg);
    background-position: top center;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: .1;
    }
    &::after{
      content: '';
      width: 100%;
      height: 50%;
      position: absolute;
      left: 0; bottom: 0;
      background-image: linear-gradient(to top, #101010 0%, #10101000 100%);
    }
}

.open-to-work {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #59ff001a;
    color: #59FF00;
    border-radius: 4px;
    font-family: "Source Code Pro", monospace;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 8px;
    border: solid 1px #59ff0017;
    
    span.icon-online {
        width: 7px;
        height: 7px;
        background: #59FF00;
        display: inline-block;
        border-radius: 100%;
    }
}

.heading-style-h1 {
  font-size: clamp(4rem, 200px, 12vw);
  /* font-size: 5.75rem; */
  line-height: 0.8;    
  font-variation-settings: 'opsz' 100, 'wght' 900;
}

.heading-rows{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.heading-row {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: center;
    span{
      display: inline-block;
    }
}
.heading-row.line-2 span{
  transform: translateX(-100px);
}
.heading-row.line-3 span{
  transform: translateX(100px);
}

.who-am-i {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    .my-title{
      font-size: 16px;
      font-variation-settings: 'opsz' 100, 'wght' 200;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
}

@media screen and (max-width:1000px){
  .heading-row{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .heading-row.line-2 span, .heading-row.line-3 span {
    transform: translateX(0px);
  }
  .who-am-i{
    align-items: center;
  }
}

@media screen and (max-width:750px){
  .heading-style-h1{
    font-size: clamp(2rem, 44px, 3.5rem);
  }
  .container{
    padding: 30px 20px;
  }
}

span.split div {
    /* transition: all 300ms ease; */
    &:hover {color: #00ffe2;}
}


/* reviews */
/* Make the reviews section act like a horizontal track */
/* .reviews {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(16px, 4vw, 48px);
  height: 60vh;                 
  box-sizing: border-box;
  align-items: center;            
  will-change: transform;         
  background: #0f1115;            
  color: #fff;
}

.review-item {
  flex: 0 0 clamp(300px, 70vw, 900px);   
  max-height: 80vh;
  overflow: auto;                  
  padding: clamp(16px, 3vw, 32px);
  border-radius: 18px;
  background: #161a22;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
} */

.reviews{
width: 100%;
padding-bottom: 20px;
background: #161a22;
border-radius: 18px;
box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.review-item{
  width: 100%;
  min-width: 300px;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    /* padding:30px 80px; */
}

.review-item-inner{
  
  
  font-size: clamp(1rem, 1.5vw, 2rem);
  padding: clamp(20px, 10vw, 80px);
  font-variation-settings: 'opsz' 100, 'wght' 200;
  letter-spacing: 2px;
  color: #ffffffc9;
}

.review-num {
  display: none;
    font-size: 18px;
    opacity: .2;
    margin-top: 20px;
    font-family: "Source Code Pro", monospace;
}
/* Optional typography polish */
.review-item p { line-height: 1.3em; margin: 0 0 .75rem; }
.review-item strong { display: block; font-size: 1.1rem; margin-top: .5rem; }
.review-item span { display: block; opacity: .8; font-size: .95rem; }


/* reviews */

h2{
  margin-bottom: 50px;
  text-transform: uppercase;
}

.container-row.header {
  padding: 40px 0;
    display: flex;
}

/* .flickity-prev-next-button.previous {
    top: -80px;
    right: 70px;
    left: auto !important;
}

.flickity-prev-next-button.next {
    top: -80px;
} */

.flickity-prev-next-button {
    background: transparent !important;
    color: #fff !important;
    transition: all 300ms ease;
}

.flickity-button:hover {
    background: transparent;
    color: #008fff !important;
}