@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300);
/*preloader animation*/
@keyframes svg-path {
  0% {
    stroke-dasharray: 1135px;
    stroke-dashoffset: 1135px;
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #64FFDA;
  }
}
@keyframes svg-path2 {
  0% {
    stroke-dasharray: 909px;
    stroke-dashoffset: 909px;
    fill: transparent;
  }
  50% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #11B78B;
  }
}
/* cursor animation start*/
@keyframes cursorAnim {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}
@keyframes cursorAnim2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.4);
  }
}
@keyframes cursorAnim3 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(3);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* cursor animation end*/
/*loading screen  animation start*/
@keyframes svg-path {
  0% {
    stroke-dasharray: 1135px;
    stroke-dashoffset: 1135px;
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #64ffda;
  }
}
@keyframes svg-path2 {
  0% {
    stroke-dasharray: 909px;
    stroke-dashoffset: 909px;
    fill: transparent;
  }
  50% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #11b78b;
  }
}
/*loading screen  animation end*/
/*nav animation start*/
@keyframes slide {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*nav animation end*/
/*home text animation start*/
@keyframes text {
  0% {
    transform: scale3d(1, 1, 1);
  }
  17% {
    transform: scale3d(1.4, 0.55, 1);
  }
  34% {
    transform: scale3d(0.75, 1.25, 1);
  }
  49% {
    transform: scale3d(1.25, 0.85, 1);
  }
  64% {
    transform: scale3d(0.9, 1, 0.5);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes float {
  0% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-2rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
@keyframes floatRotateAnimation {
  0%, 100% {
    transform: translateY(50px) rotate(-7deg);
  }
  50% {
    transform: translateY(-21px) rotate(9deg);
  }
}
/*home text animation end*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  color: #cbd5f5;
  cursor: url("src/assets/icons/cursor.svg"), auto;
}

/**
 * Basic styles for links
 */
a {
  color: #cbd5f5;
  text-decoration: none;
}
a:hover, a:active, a:focus, a:focus-within {
  cursor: url("src/assets/icons/cursor.svg"), auto;
}

/*main body base style*/
body {
  background-color: #1c1e23 !important;
  overflow-x: hidden;
  overflow-y: auto;
}

.cursor {
  width: 30px;
  height: 30px;
  border: #64ffda solid 1px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  z-index: 60;
  /* transition: 200ms ease-in-out; */
  animation: cursorAnim 0.5s infinite alternate;
}

.cursor::after {
  content: "";
  height: 30px;
  width: 30px;
  border: #11b78b solid 8px;
  border-radius: 50%;
  position: absolute;
  opacity: 0.5;
  top: -9px;
  left: -8px;
  animation: cursorAnim2 0.5s infinite alternate;
}

@media (max-width: 768px) {
  .cursor,
  .cursor::after {
    display: none;
  }
}
.expand {
  animation: cursorAnim3 0.5s infinite alternate;
  border: #8cffe4 solid 1px;
}

::-webkit-scrollbar {
  width: 10px;
  max-height: fit-content;
  height: 3px;
  z-index: 1;
}

::-webkit-scrollbar-track {
  background: #4f4f50;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: linear-gradient(0deg, #1c1e23, #31353c);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(0deg, #00391d, #64ffda);
}

.herosection-container {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.landing-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  z-index: 1;
}

.container {
  padding: 3% 13% 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-self: flex-start;
}
.header .line {
  margin: auto 0px;
  height: 1px;
  background-color: #868894;
}
.header h1 {
  margin-right: 10px;
  text-align: center;
  font-size: 1.2em;
  color: #ccd6f6;
}
.header h1 span {
  color: #64ffda;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #cbd5f5;
  font: normal 100%/1 "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.projects-section,
.container {
  max-width: 1400px; /* 1 */
  width: 100%; /* 1 */
  margin: 20px auto;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.nav-menu {
  width: 100vw;
  height: 70px;
  padding: 0px 20px;
  position: fixed;
  background-color: rgba(49, 53, 60, 0.6901960784);
  backdrop-filter: blur(2px);
  display: none;
  top: 0;
  z-index: 97;
  align-items: center;
  justify-content: space-between;
}
.nav-menu img {
  height: 50px;
  width: auto;
}
.nav-menu .burger {
  display: flex;
  height: 25px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.nav-menu .burger .div1, .nav-menu .burger .div2, .nav-menu .burger .div3 {
  height: 2px;
  background-color: #64ffda;
}
.nav-menu .burger .div1 {
  width: 40px;
}
.nav-menu .burger .div2 {
  width: 30px;
}
.nav-menu .burger .div3 {
  width: 20px;
}

.scrollup {
  position: fixed;
  height: 60px;
  width: 30px;
  outline: none;
  border: none;
  background: url("src/assets/icons/scrollbtn.png") no-repeat center center/cover;
  z-index: 98;
  bottom: 50px;
  opacity: 0.4;
  right: 0;
  opacity: 0;
  transform: translateY(1rem);
  transition: 0.3s;
}

.active.scrollup {
  opacity: 0.5;
  transform: translateY(0rem);
}
.active.scrollup:hover {
  opacity: 1;
}

.sidebar {
  position: fixed;
  background-color: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
  top: 0;
  left: 2%;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 0.2s;
  animation: slide 0.5s 0s linear forwards;
  /*hover .cv animation start*/
  /*hover .cv animation end*/
  /*active router start*/
  /*active router end*/
}
.sidebar .cross {
  display: none;
  position: absolute;
  right: 25px;
  color: #64ffda;
  background: none;
  border: none;
  font-size: 4em;
  font-weight: lighter;
  z-index: 100;
}
.sidebar nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 80vh;
  width: 65px;
  padding: 10px 10px;
  background-color: #31353c;
  backdrop-filter: blur(2px);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.sidebar nav:hover {
  width: 200px;
  background-color: rgba(49, 53, 60, 0.69);
}
.sidebar .cv::after {
  content: "CV";
}
.sidebar nav:hover > .cv::after {
  content: "Resume";
}
.sidebar img {
  width: 100%;
  height: auto;
}
.sidebar ul li {
  margin: 10px 0px;
  padding: 8px 0px;
  list-style: none;
  transition: all 0.1s ease-in-out;
}
.sidebar .cv {
  padding: 7px;
  font-size: 100%;
  width: 100%;
  text-align: center;
  border: #64ffda 1px solid;
  overflow: hidden;
  border-radius: 6px;
  margin-left: 0px;
  color: #64ffda;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.sidebar .cv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  filter: blur(0.4);
  transition: 0.6s;
}
.sidebar .cv::before {
  width: 60px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.sidebar .cv:hover:before {
  opacity: 0.6;
  transform: translateX(320px) skewX(-45deg);
}
.sidebar .cv:hover {
  color: #1c1e23;
  background: #64ffda;
}
.sidebar a {
  display: absolute;
  margin-left: 60px;
  text-decoration: none;
}
.sidebar li .icon {
  position: fixed;
  width: 16px;
  height: 16px;
  margin-left: 15px;
  margin-right: 20px;
}
.sidebar .home {
  background: url("src/assets/icons/home1.png") no-repeat center center/cover;
}
.sidebar .about {
  background: url("src/assets/icons/about1.png") no-repeat center center/cover;
}
.sidebar .contact {
  background: url("src/assets/icons/contact1.png") no-repeat center center/cover;
}
.sidebar .projects {
  background: url("src/assets/icons/projects1.png") no-repeat center center/cover;
}
.sidebar .design {
  background: url("src/assets/icons/graphicd1.png") no-repeat center center/cover;
}
.sidebar .expect {
  background: url("src/assets/icons/expect1.png") no-repeat center center/cover;
}
.sidebar li:hover {
  background-color: #1c1e23;
  transform: translateY(-5px);
}
.sidebar .active > a {
  color: #64ffda;
}
.sidebar .active > .home,
.sidebar li:hover > .home {
  background: url("src/assets/icons/home2.png") no-repeat center center/cover;
}
.sidebar .active > .about,
.sidebar li:hover > .about {
  background: url("src/assets/icons/about2.png") no-repeat center center/cover;
}
.sidebar .active > .projects,
.sidebar li:hover > .projects {
  background: url("src/assets/icons/projects2.png") no-repeat center center/cover;
}
.sidebar .active > .expect,
.sidebar li:hover > .expect {
  background: url("src/assets/icons/expect2.png") no-repeat center center/cover;
}
.sidebar .active > .design,
.sidebar li:hover > .design {
  background: url("src/assets/icons/graphicd2.png") no-repeat center center/cover;
}
.sidebar .active > .contact,
.sidebar li:hover > .contact {
  background: url("src/assets/icons/contact2.png") no-repeat center center/cover;
}
.sidebar li:hover > a {
  color: #64ffda;
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
  }
  .sidebar {
    position: fixed;
    background-color: none;
    height: 100vh;
    display: block;
    top: 0;
    left: auto;
    right: 0px;
    transition: 0.3s;
    opacity: 0;
    transform: translateX(250px);
    animation: none;
  }
  .sidebar .cross {
    display: block;
  }
  .sidebar nav {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    width: 250px;
    padding: 20px 20px;
    background-color: rgba(49, 53, 60, 0.6901960784);
    backdrop-filter: blur(2px);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  }
  .sidebar nav:hover {
    width: 250px;
    background-color: rgba(26, 51, 88, 0.7843137255);
  }
  .sidebar img {
    width: 100%;
    height: auto;
    opacity: 0;
  }
  .sidebar .menuCLass {
    right: -107px;
    left: auto;
  }
  .sidebar .cv::after {
    content: "Resume";
  }
  .active.sidebar {
    opacity: 1;
    transform: translateX(0px);
    z-index: 9999;
  }
}
.preloader {
  height: 100vh;
  width: 100%;
  background-color: #1c1e23;
  display: grid;
  align-items: center;
  justify-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.4s;
}

#logo path:nth-child(1) {
  stroke-dasharray: 1135px;
  stroke-dashoffset: 1135px;
  animation: svg-path 2.5s 0.3s ease forwards;
}

#logo path:nth-child(2) {
  stroke-dasharray: 909px;
  stroke-dashoffset: 909px;
  animation: svg-path2 2.5s 0.3s ease forwards;
}

main {
  display: none;
}

/* Hide preloader when content is loaded */
.loaded .preloader {
  opacity: 0;
  pointer-events: none;
}
.loaded main {
  display: block;
}

.lightboxed {
  cursor: pointer;
}

div#lightboxed--cache {
  position: fixed;
  left: -99999999px;
}

div#lightboxed--container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9001;
}

div#lightboxed--stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

div#lightboxed--content {
  position: absolute;
  top: 0;
  left: 0;
}

div#lightboxed--content .lightboxed--frame {
  position: absolute;
  top: 0;
  left: 0;
}

div#lightboxed--content .lightboxed--frame img,
div#lightboxed--content .lightboxed--frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0;
}

div#lightboxed--content .lightboxed--frame .lightboxed--caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  color: #fff !important;
}

div#lightboxed--thumbs {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

div#lightboxed--thumbs .lightboxed--thumb {
  float: left;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

div#lightboxed--thumbs .lightboxed--thumb .lightboxed--thumb_border {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  background: rgba(255, 255, 255, 0.4);
  transition: 500ms background;
}

div#lightboxed--thumbs .lightboxed--thumb.lightboxed--active .lightboxed--thumb_border {
  background: rgba(255, 255, 255, 0.7);
  transition: 500ms background;
}

div#lightboxed--thumbs .lightboxed--thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

div#lightboxed--bttn_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  background-image: url(../src/assets/controls.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 100%;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
}

div#lightboxed--bttn_next {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  background-image: url(../src/assets/controls.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50%;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

div#lightboxed--bttn_prev {
  display: none;
  position: absolute;
  top: 50%;
  left: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  background-image: url("src/assets/controls.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0%;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

footer {
  padding-bottom: 50px;
  width: 100%;
}

footer p {
  text-align: center;
  font-size: 0.8em;
  margin: 0px auto;
}

.error-container {
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  /* === WRAP === */
  /* === MAIN TEXT CONTENT === */
  /* === NAVIGATION BUTTONS === */
  /* === WORDSEARCH === */
  /* === SEARCH FORM === */
  /* === RESPONSIVE CSS === */
}
.error-container ::selection {
  background-color: rgba(0, 0, 0, 0.2);
}
.error-container ::-moz-selection {
  background-color: rgba(0, 0, 0, 0.2);
}
.error-container a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  margin-right: 10px;
}
.error-container a:last-child {
  margin-right: 0px;
}
.error-container a:hover {
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgb(255, 255, 255);
}
.error-container #noscript-warning {
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: 300 !important;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
}
.error-container #wrap {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
  position: relative;
  margin-top: 8%;
}
.error-container #main-content {
  float: right;
  max-width: 45%;
  color: white;
  font-weight: 300 !important;
  font-size: 18px;
  padding-bottom: 40px;
  line-height: 28px;
}
.error-container #main-content h1 {
  margin: 0px;
  font-weight: 400 !important;
  font-size: 42px;
  margin-bottom: 40px;
  line-height: normal;
}
.error-container #navigation {
  margin-top: 2%;
}
.error-container #navigation a.navigation {
  display: block;
  float: left;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 15px;
  padding-right: 15px;
  color: white;
  height: 41px;
  line-height: 41px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  margin-right: 2%;
  margin-bottom: 2%;
  border-bottom: none;
}
.error-container #navigation a.navigation i {
  line-height: 41px;
}
.error-container #navigation a.navigation:hover {
  background-color: #11b78b;
  border-bottom: none;
}
.error-container #wordsearch {
  width: 45%;
  float: left;
}
.error-container #wordsearch ul {
  margin: 0px;
  padding: 0px;
}
.error-container #wordsearch ul li {
  float: left;
  width: 12%;
  background-color: rgba(0, 0, 0, 0.2);
  list-style: none;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
  padding: 0;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  overflow: hidden;
  font-size: 24px;
  font-size: 1.6vw;
  font-weight: 300 !important;
  transition: background-color 0.75s ease;
  -moz-transition: background-color 0.75s ease;
  -webkit-transition: background-color 0.75s ease;
  -o-transition: background-color 0.75s ease;
}
.error-container #wordsearch ul li.selected {
  background-color: #11b78b;
  color: rgb(255, 255, 255);
  font-weight: 400 !important;
}
.error-container #search {
  margin-top: 30px;
}
.error-container #search input[type=text] {
  width: 88%;
  height: 41px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
  --webkit-appearance: none;
  font-size: 16px;
  font-weight: 300 !important;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  border-radius: 0px;
}
.error-container #search .input-search {
  width: 10%;
  float: right;
  height: 41px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: none;
  border: none;
  --webkit-appearance: none;
  font-family: "Source Sans Pro", sans-serif;
  color: white;
  font-weight: 300 !important;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  text-align: center;
}
.error-container #search .input-search:hover {
  background-color: #11b78b;
}

@media all and (max-width: 899px) {
  .error-container #wrap {
    width: 90%;
  }
}
@media all and (max-width: 799px) {
  .error-container #wrap {
    width: 90%;
    height: auto;
    margin-top: 40px;
    top: 0%;
  }
  .error-container #wordsearch {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .error-container #wordsearch ul li {
    font-size: 4vw;
  }
  .error-container #main-content {
    float: none;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: justify;
  }
  .error-container #main-content h1 {
    text-align: left;
  }
  .error-container #search input[type=text] {
    width: 84%;
  }
  .error-container #search .input-search {
    width: 15%;
  }
}
@media all and (max-width: 499px) {
  .error-container #main-content h1 {
    font-size: 28px;
  }
}
.herosection-container {
  display: block;
  background: linear-gradient(to bottom, #31353c, #1c1e23);
}
.herosection-container .herosection-background .float-container {
  position: fixed;
  display: inline-block;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.herosection-container .herosection-background .float-container .float-letter {
  display: inline-block;
  margin: 0 5px;
  font-size: 20rem;
  color: #1c1e23;
  font-weight: bold;
}
.herosection-container .landing-container {
  /*main content*/
  /*hover .chat animation start*/
  /*hover .chat animation end*/
  /*spacing*/
  /*before and afters*/
}
.herosection-container .landing-container .profile img {
  max-width: 22rem;
  width: 22rem;
  height: auto;
}
.herosection-container .landing-container .name {
  margin-block-start: 1.3rem;
  font-size: 1.4em;
  font-weight: bolder;
  color: white;
}
.herosection-container .landing-container .info {
  margin-block-start: 0.5rem;
  font-size: 0.8em;
  line-height: 1.5;
  color: white;
}
.herosection-container .landing-container .download-cv {
  margin-top: 0.7rem;
  background-color: transparent;
  border: 2px solid #fff;
  width: 70%;
  border-radius: 6px;
  height: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.herosection-container .landing-container .socialMedia {
  margin-block-start: 1.5rem;
  margin-block-end: 0.5rem;
  position: relative;
  transition: 0.25s;
}
.herosection-container .landing-container .socialMedia .sci {
  position: relative;
  display: flex;
  gap: 20px;
}
.herosection-container .landing-container .socialMedia .sci li {
  list-style: none;
}
.herosection-container .landing-container .socialMedia .sci li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #cbd5f5;
  border-radius: 7px;
  text-decoration: none;
  font-size: 2rem;
  transform-style: preserve-3d;
  perspective: 300px;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
  transition: background 0.25s;
}
.herosection-container .landing-container .socialMedia .sci li a i {
  transition: 0.25s;
  color: #1c1e23;
}
.herosection-container .landing-container .socialMedia .sci li a:hover.facebook {
  background: #1877f2;
}
.herosection-container .landing-container .socialMedia .sci li a:hover.youtube {
  background: #ff0000;
}
.herosection-container .landing-container .socialMedia .sci li a:hover.whatsapp {
  background: #25d366;
}
.herosection-container .landing-container .socialMedia .sci li a:hover.linkedin {
  background: #0a66c2;
}
.herosection-container .landing-container .socialMedia .sci li a:hover.github {
  background: #181717;
}
.herosection-container .landing-container .socialMedia .sci li a:hover i {
  color: white;
  transform: scale(1.65) translateZ(25px);
}
.herosection-container .landing-container .main {
  color: #fff;
  padding: 2%;
}
.herosection-container .landing-container .main h1 {
  color: transparent;
  -webkit-text-stroke: 1px #64ffda;
  font-size: 2.2em;
  padding-left: 17px;
  margin-left: 13px;
  border-left: #868894 2px solid;
}
.herosection-container .landing-container .main h2 {
  display: flex;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-left: 17px;
  margin-left: 13px;
  border-left: #868894 2px solid;
}
.herosection-container .landing-container .main h2 div {
  margin-right: 12px;
  display: flex;
}
.herosection-container .landing-container .main h2 div span {
  font-size: 2.8em;
  display: flex;
  transition: 0.5s;
}
.herosection-container .landing-container .main h2 div span:hover {
  color: #64ffda;
  animation: text 1s ease-in-out;
}
.herosection-container .landing-container .main p {
  font-weight: normal;
  line-height: 1.5;
  padding-left: 20px;
  margin-left: 10px;
  color: #8a8c92;
  border-left: #868894 2px solid;
}
.herosection-container .landing-container .main .chat {
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  color: #64ffda;
  height: 40px;
  width: 140px;
  border-radius: 6px;
  border: none;
  border: #64ffda solid 1px;
  background: none;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.herosection-container .landing-container .download-cv::before, .herosection-container .landing-container .download-cv::after,
.herosection-container .landing-container .chat::before, .herosection-container .landing-container .chat::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.4;
  filter: blur(0.4);
  transition: 0.6s;
}
.herosection-container .landing-container .download-cv::before,
.herosection-container .landing-container .chat::before {
  width: 60px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.herosection-container .landing-container .download-cv::after,
.herosection-container .landing-container .chat::after {
  width: 30px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.herosection-container .landing-container .download-cv:hover:before,
.herosection-container .landing-container .download-cv:hover:after,
.herosection-container .landing-container .chat:hover:before,
.herosection-container .landing-container .chat:hover:after {
  opacity: 0.6;
  transform: translateX(320px) skewX(-45deg);
}
.herosection-container .landing-container .download-cv:hover {
  background: #fff;
  color: #0A192F;
}
.herosection-container .landing-container .main .chat:hover {
  color: #0A192F;
  background: #64ffda;
}
.herosection-container .landing-container .main .h2,
.herosection-container .landing-container .main .p {
  margin-block-start: 1rem;
}
.herosection-container .landing-container .code1h1::before {
  content: "<h1>";
  color: #868894;
  font-size: 0.8em;
  display: block;
  font-weight: bolder;
}
.herosection-container .landing-container .code2h1::after {
  content: "</h1>";
  font-weight: bolder;
  color: #868894;
  font-size: 0.8em;
  display: block;
}
.herosection-container .landing-container .code1h2::before {
  content: "<h2>";
  color: #868894;
  font-size: 0.8em;
  display: block;
  font-weight: bolder;
}
.herosection-container .landing-container .code2h2::after {
  content: "</h2>";
  font-weight: bolder;
  color: #868894;
  font-size: 0.8em;
  display: block;
}
.herosection-container .landing-container .code1p::before {
  content: "<p>";
  color: #868894;
  font-size: 0.8em;
  display: block;
  font-weight: bolder;
}
.herosection-container .landing-container .code2p::after {
  content: "</p>";
  font-weight: bolder;
  color: #868894;
  font-size: 0.8em;
  display: block;
}

/*======================*/
/*======medias qs=======*/
/*======================*/
@media screen and (max-width: 1023px) {
  .herosection-container .landing-container .main h2 {
    display: block;
  }
}
@media (max-width: 768px) {
  .herosection-container .landing-container .main h2 div span {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 618px) {
  .herosection-container .herosection-background .float-container .float-letter {
    font-size: 8rem;
  }
  .herosection-container .landing-container {
    display: block;
    padding: 0 6%;
  }
  .herosection-container .landing-container .main {
    padding-top: 80px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
  }
  .herosection-container .landing-container .main h1 {
    color: transparent;
    -webkit-text-stroke: 0.3px #64ffda;
    font-size: 1.4em;
  }
  .herosection-container .landing-container .main .socialMedia .sci li a {
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    perspective: 100px;
  }
  .herosection-container .landing-container .main .socialMedia .sci li a:hover i {
    color: white;
    transform: scale(1.35) translateZ(20px);
  }
  .herosection-container .landing-container .profile {
    display: flex;
    justify-content: center;
  }
  .herosection-container .landing-container .profile img {
    width: 100%;
    max-width: 20rem;
    height: auto;
  }
}
.about-section {
  padding: 3% 13% 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*wrapper 2*/
  /*=========my skills=========*/
  /*=====hover effect=====*/
}
.about-section a {
  text-decoration: none;
}
.about-section .skills h1,
.about-section h2 {
  margin-block-start: 0.5rem;
  text-align: center;
  color: #64ffda;
}
.about-section .skills h1 {
  margin-block-start: 2.4rem;
  font-size: 1.2em;
}
.about-section h2 {
  font-size: 2em;
  margin-top: 50px;
}
.about-section .wrapper {
  width: 100%;
  min-height: 270px;
  height: auto;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.about-section .cover,
.about-section .info {
  width: 48%;
  min-height: 260px;
}
.about-section .cover {
  background-color: #64ffda;
  overflow: hidden;
  background: url("src/assets/meeting.jpg") no-repeat center center/cover;
  border-radius: 16px;
}
.about-section .tint1 {
  background-color: rgba(2, 129, 99, 0.6549019608);
  width: 100%;
  height: 100%;
}
.about-section .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-section .text,
.about-section .text2 {
  border-radius: 16px;
  min-height: 40px;
  width: 100%;
  padding-left: 20px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-size: 0.9em;
}
.about-section .text {
  background-color: #31353c;
}
.about-section .text p,
.about-section .text2 p {
  width: 30%;
}
@keyframes scrollin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.about-section .wrapper2 {
  margin-top: 3rem;
}
.about-section .bio {
  width: 100%;
  min-height: 270px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.about-section .bio .info {
  width: 64%;
  text-align: justify;
  display: block;
  padding-right: 20px;
}
.about-section .bio .info p {
  margin-block-end: 0em;
  margin-block-start: 0em;
  line-height: 1.5;
  padding-left: 20px;
  margin-left: 10px;
  border-left: #868894 2px solid;
}
.about-section .code1p::before {
  content: "<p>";
  color: #868894;
  font-size: 0.8em;
  display: block;
  font-weight: bolder;
  margin-block-start: 1em;
}
.about-section .code2p::after {
  content: "</p>";
  font-weight: bolder;
  color: #868894;
  font-size: 0.8em;
  display: block;
}
.about-section .bio .pic {
  position: relative;
  width: 270px;
  height: 270px;
}
.about-section .pic .img {
  position: relative;
  width: 250px;
  height: 250px;
  z-index: 2;
  background-color: #64ffda;
  background: url("src/assets/profile2.jpg") no-repeat center center/cover;
  border-radius: 4px;
  overflow: hidden;
}
.about-section .pic .img .tint {
  background-color: rgba(3, 251, 193, 0.3921568627);
  width: 100%;
  background-blend-mode: overlay;
  height: 100%;
}
.about-section .pic .imgback {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  transform: translate(20px, 20px);
  border-radius: 4px;
  border: 2px solid #64ffda;
}
.about-section .skills {
  margin-block-start: 2rem;
}
.about-section .skills .boxes {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 8rem);
  grid-auto-rows: 8rem;
  grid-gap: 16px;
  justify-content: center;
  align-items: center;
}
.about-section .boxes .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  aspect-ratio: 1/1;
  background-color: #2b2f35;
  padding: 16px;
  gap: 0.5rem;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}
.about-section .box:hover {
  transform: translateY(-8px);
}
.about-section .box .icon {
  height: 50px;
  aspect-ratio: 1/1;
  margin: 0px auto;
  transition: 0.2s ease-in-out;
}
.about-section .ps {
  background: url("src/assets/icons/ps1.png") no-repeat center center/cover;
}
.about-section .ai {
  background: url("src/assets/icons/ai1.png") no-repeat center center/cover;
}
.about-section .ae {
  background: url("src/assets/icons/ae1.png") no-repeat center center/cover;
}
.about-section .id {
  background: url("src/assets/icons/id1.png") no-repeat center center/cover;
}
.about-section .html {
  background: url("src/assets/icons/html1.png") no-repeat center center/cover;
}
.about-section .css {
  background: url("src/assets/icons/css1.png") no-repeat center center/cover;
}
.about-section .js {
  background: url("src/assets/icons/js1.png") no-repeat center center/cover;
}
.about-section .jq {
  background: url("src/assets/icons/jquery1.png") no-repeat center center/cover;
}
.about-section .php {
  background: url("src/assets/icons/php1.png") no-repeat center center/cover;
}
.about-section .sql {
  background: url("src/assets/icons/sql1.png") no-repeat center center/cover;
}
.about-section .box:hover > .ps {
  background: url("src/assets/icons/ps2.png") no-repeat center center/cover;
}
.about-section .box:hover > .ai {
  background: url("src/assets/icons/ai2.png") no-repeat center center/cover;
}
.about-section .box:hover > .ae {
  background: url("src/assets/icons/ae2.png") no-repeat center center/cover;
}
.about-section .box:hover > .id {
  background: url("src/assets/icons/id2.png") no-repeat center center/cover;
}
.about-section .box:hover > .html {
  background: url("src/assets/icons/html2.png") no-repeat center center/cover;
}
.about-section .box:hover > .css {
  background: url("src/assets/icons/css2.png") no-repeat center center/cover;
}
.about-section .box:hover > .js {
  background: url("src/assets/icons/js2.png") no-repeat center center/cover;
}
.about-section .box:hover > .jq {
  background: url("src/assets/icons/jquery2.png") no-repeat center center/cover;
}
.about-section .box:hover > .php {
  background: url("src/assets/icons/php2.png") no-repeat center center/cover;
}
.about-section .box:hover > .sql {
  background: url("src/assets/icons/sql2.png") no-repeat center center/cover;
}

@media screen and (max-width: 768px) {
  .about-section {
    display: flex;
    padding: 75px 6% 20px;
    width: 100vw;
    overflow: hidden;
  }
  .about-section .wrapper {
    display: block;
  }
  .about-section .cover {
    width: 100%;
  }
  .about-section .info {
    width: 100%;
  }
  .about-section .bio {
    display: flex;
    width: 100%;
  }
  .about-section .bio.info {
    width: 100%;
  }
}
@media screen and (max-width: 618px) {
  .about-section {
    display: block;
  }
  .about-section .bio {
    display: block;
  }
  .about-section .bio .info {
    width: auto;
    text-align: justify;
    display: block;
    padding-right: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .about-section .pic {
    margin: 0 auto;
  }
}
.projects-section {
  min-height: 100vh;
  padding: 3% 13% 2%;
}
.projects-section .wrapper,
.projects-section .wrapper2,
.projects-section .wrapper3 {
  margin-top: 50px;
  margin-bottom: 80px;
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.projects-section .wrapper2 {
  flex-direction: row-reverse;
}
.projects-section .wrapper .cover,
.projects-section .wrapper2 .cover,
.projects-section .wrapper3 .cover {
  width: 60%;
  aspect-ratio: 1.7/1;
  background-color: #64ffda;
  border-radius: 6px;
  overflow: hidden;
}
.projects-section .wrapper .cover {
  background: url("src/assets/website1.jpg") no-repeat center center/cover;
}
.projects-section .wrapper2 .cover {
  background: url("src/assets/website2.jpg") no-repeat center center/cover;
}
.projects-section .wrapper3 .cover {
  background: url("src/assets/tid.jpg") no-repeat center center/cover;
}
.projects-section .tint {
  background-color: rgba(3, 251, 193, 0.5960784314);
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}
.projects-section .wrapper :hover > .tint,
.projects-section .wrapper2 :hover > .tint,
.projects-section .wrapper3 :hover > .tint {
  transition: 0.5s ease-in-out;
  visibility: hidden;
}
.projects-section .wrapper h1,
.projects-section .wrapper2 h1,
.projects-section .wrapper3 h1 {
  font-size: 0.9em;
  color: #64ffda;
}
.projects-section .wrapper .text,
.projects-section .wrapper3 .text {
  position: absolute;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  text-align: justify;
  right: 0;
}
.projects-section .wrapper2 .text {
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  text-align: justify;
  right: 0;
}
.projects-section .wrapper .companyname,
.projects-section .wrapper2 .companyname,
.projects-section .wrapper3 .companyname {
  list-style: none;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bolder;
  margin-block-start: 0.2em;
  margin-block-end: 1em;
  color: #04765b;
}
.projects-section .text .companyname h2:hover {
  color: #64ffda;
  transition: all 0.2s ease-in-out;
}
.projects-section .box {
  padding: 15px;
  max-width: 50%;
  background-color: #2b2f35;
  border-radius: 4px;
}
.projects-section .box p {
  color: #A0ABCA;
  font-size: 1em;
  line-height: 1.5;
}
.projects-section .tech {
  margin-top: 20px;
  display: flex;
}
.projects-section .wrapper .tech p,
.projects-section .wrapper3 .tech p {
  color: #A0ABCA;
  font-size: 0.9em;
  margin-left: 12px;
}
.projects-section .wrapper2 .tech p {
  color: #A0ABCA;
  font-size: 0.9em;
  margin-right: 12px;
}
.projects-section .text img {
  margin-top: 10px;
  width: 20px;
  height: auto;
  transition: 0.2s;
}
.projects-section .text img:hover {
  transform: translateY(-4px);
}
.projects-section .link {
  margin-bottom: 40px;
  text-align: center;
}
.projects-section .link a {
  color: #64ffda;
  position: relative;
  text-decoration: none;
}
.projects-section .link a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: #64ffda;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.projects-section .link a:hover:after {
  width: 100%;
  left: 0;
}
.projects-section .carousel_container {
  max-width: 1440px;
  margin: 0 auto;
}
.projects-section .carousel_container .carousel {
  padding: 24px;
}
.projects-section .carousel_container .carousel h2 {
  margin: 0;
}
.projects-section .carousel_container .carousel a {
  pointer-events: all;
  text-decoration: none;
  color: #fff;
}
.projects-section .carousel_container .carousel img {
  aspect-ratio: 16/9;
  height: 200px;
  object-fit: cover;
  --webkit-user-drag: none;
  --khtml-user-drag: none;
  --moz-user-drag: none;
  --o-user-drag: none;
  --user-drag: none;
  margin-bottom: 16px;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 4px);
}
.projects-section .carousel_container .carousel p {
  font-size: 14px;
  margin: 0;
  margin-bottom: 4px;
  color: #cbd5f5;
}
.projects-section .carousel_container .carousel span {
  color: #a7a7a7;
  font-size: 14px;
}
.projects-section .carousel_container .carousel .dragging a {
  pointer-events: all;
}
.projects-section .carousel_container .carousel .carousel__wrapper {
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1180px) {
  .projects-section .carousel_container .carousel .carousel__wrapper.has-arrows .carousel__content {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1180px) {
  .projects-section .carousel_container .carousel .carousel__wrapper.has-arrows .carousel__arrows {
    display: flex;
  }
}
.projects-section .carousel_container .carousel .carousel__header {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.projects-section .carousel_container .carousel .carousel__content {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0;
  margin: 0;
  grid-gap: 24px;
  grid-auto-flow: column;
  list-style: none;
}
.projects-section .carousel_container .carousel .carousel__content::-webkit-scrollbar {
  display: none;
}
.projects-section .carousel_container .carousel .carousel__item .carousel__description {
  width: 100%;
}
.projects-section .carousel_container .carousel .carousel__item a {
  display: flex;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  user-select: none;
  margin: 10px 0px;
  padding: 16px;
  background: #181818;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 8px);
  cursor: pointer;
}
.projects-section .carousel_container .carousel .carousel__controls {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 24px;
}
.projects-section .carousel_container .carousel .carousel__arrow {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.projects-section .carousel_container .carousel .carousel__arrow:before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=");
  background-size: contain;
  filter: brightness(5);
  display: block;
  width: 18px;
  height: 12px;
  cursor: pointer;
}
.projects-section .carousel_container .carousel .carousel__arrow.arrow-prev:before {
  transform: rotate(90deg);
}
.projects-section .carousel_container .carousel .carousel__arrow.arrow-next:before {
  transform: rotate(-90deg);
}
.projects-section .carousel_container .carousel .carousel__arrow.disabled::before {
  filter: brightness(2);
}

@media screen and (max-width: 618px) {
  .projects-section {
    padding: 75px 6% 2%;
    width: 100vw;
    overflow: hidden;
  }
  .projects-section .wrapper,
  .projects-section .wrapper2,
  .projects-section .wrapper3 {
    margin-top: 50px;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    display: block;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
  }
  .projects-section .wrapper .cover,
  .projects-section .wrapper2 .cover,
  .projects-section .wrapper3 .cover {
    display: none;
  }
  .projects-section .tint {
    background-color: #2b2f35;
    width: 100%;
    height: 100%;
  }
  .projects-section .wrapper .text,
  .projects-section .wrapper2 .text,
  .projects-section .wrapper3 .text {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    padding: 15px;
    border-radius: 6px;
    background-color: #2b2f35;
  }
  .projects-section .wrapper .text {
    background: url("src/assets/website1-dark.jpg") no-repeat center center/cover;
  }
  .projects-section .wrapper2 .text {
    background: url("src/assets/website2-dark.jpg") no-repeat center center/cover;
  }
  .projects-section .wrapper3 .text {
    background: url("src/assets/tid2.jpg") no-repeat center center/cover;
  }
  .projects-section .box {
    padding: 15px;
    max-width: 100%;
    background: none;
    border-radius: 4px;
  }
}
.archives-section {
  justify-content: flex-start;
}
.archives-section h1 {
  margin-block-start: 1em;
  font-size: 4em;
}
.archives-section .h2 {
  margin-block-start: 1em;
  font-weight: normal;
  font-size: 1.1em;
  color: #64ffda;
}
.archives-section .wrapper {
  margin-top: 4em;
}
.archives-section table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.archives-section th {
  font-weight: bold;
  color: #8a8c92;
  font-size: 1em;
  margin: 10px 0px;
}
.archives-section td {
  padding: 10px 0px;
  margin: 5px 0px;
  color: #8a8c92;
  font-size: 0.8em;
}
.archives-section .title,
.archives-section .title2 {
  padding-left: 10px;
}
.archives-section .title {
  color: #CBD5F5;
  font-size: 1em;
  font-weight: bolder;
}
.archives-section .link {
  padding: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archives-section .link img {
  height: 17px;
  width: auto;
}
.archives-section .row {
  border-radius: 12px;
  transition: 0.3s;
}
.archives-section .row:hover {
  background-color: #31353c;
}

@media screen and (max-width: 768px) {
  .archives-section .detail {
    display: none;
  }
  .archives-section h1 {
    margin-block-start: 2em;
    font-size: 3em;
  }
}
@media screen and (max-width: 425px) {
  .archives-section .container {
    padding: 3% 6% 3%;
  }
  .archives-section h1 {
    font-size: 3em;
  }
}
.gallery-section {
  padding: 3% 13% 5%;
  display: flex;
  flex-direction: column;
}
.gallery-section .wrapper {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.gallery-section .wrapper .headers {
  width: 15%;
}
.gallery-section .wrapper .headers p {
  padding: 10px 10px;
  width: 100%;
  font-weight: bold;
}
.gallery-section .wrapper .headers p:hover {
  background-color: #31353c;
}
.gallery-section .wrapper .headers p:nth-child(1) {
  border-left: 3px solid #64ffda;
  color: #64ffda;
}
.gallery-section .gallery {
  width: 80%;
  height: 1fr;
  position: relative;
}
.gallery-section .gallery .pics {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gallery-section .gallery .pics:nth-child(2), .gallery-section .gallery .pics:nth-child(3) {
  display: none;
}
.gallery-section .gallery .pics .columns {
  width: 100%;
  column-count: 3;
  -webkit-column-count: 3;
  -moz-column-count: 3;
}
.gallery-section .gallery .pics .columns img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .gallery-section {
    padding: 75px 6% 5%;
  }
  .gallery-section .wrapper {
    display: block;
    overflow: hidden;
  }
  .gallery-section ::-webkit-scrollbar {
    width: 2px;
    z-index: 1;
  }
  .gallery-section .wrapper .headers {
    margin-bottom: 10px;
    width: auto;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    display: -webkit-inline-box;
  }
  .gallery-section .wrapper .headers p {
    padding: 10px 10px;
    width: auto;
    margin-bottom: 5px;
  }
  .gallery-section .wrapper .headers p:hover {
    background-color: transparent;
  }
  .gallery-section .wrapper .headers p:nth-child(1) {
    border-left: none;
    border-bottom: 3px solid #64ffda;
    color: #64ffda;
  }
  .gallery-section .gallery {
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .gallery-section .gallery .columns {
    width: 100%;
    column-count: 2 !important;
    -webkit-column-count: 2 !important;
    -moz-column-count: 2 !important;
  }
  .gallery-section .gallery .columns img {
    width: 100%;
    margin-bottom: 7px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 425px) {
  .gallery-section .gallery .columns {
    width: 100%;
    column-count: 1 !important;
    -webkit-column-count: 1 !important;
    -moz-column-count: 1 !important;
  }
  .gallery-section .gallery .columns img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
  }
}
.expertise-section {
  /*icons hover*/
}
.expertise-section .grid {
  width: 100%;
  margin-top: 50px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.expertise-section .col {
  min-height: 300px;
  background-color: #2b2f35;
  padding: 16px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}
.expertise-section .col:hover {
  transform: translateY(-8px);
}
.expertise-section .col:hover > h1 {
  color: #64ffda;
}
.expertise-section .col h1 {
  font-size: 1.4em;
  margin-top: 40px;
}
.expertise-section .col .icon {
  height: 50px;
  width: 50px;
  margin: 0px auto;
  transition: 0.2s ease-in-out;
}
.expertise-section .fd {
  background: url("src/assets/icons/frontend1.png") no-repeat center center/cover;
}
.expertise-section .bd {
  background: url("src/assets/icons/backend1.png") no-repeat center center/cover;
}
.expertise-section .sd {
  background: url("src/assets/icons/softdev1.png") no-repeat center center/cover;
}
.expertise-section .gd {
  background: url("src/assets/icons/graphicd1.png") no-repeat center center/cover;
}
.expertise-section .rd {
  background: url("src/assets/icons/responsived.png") no-repeat center center/cover;
}
.expertise-section .wd {
  background: url("src/assets/icons/webd1.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .icon {
  transform: translateX(-110px);
}
.expertise-section .col:hover > .fd {
  background: url("src/assets/icons/frontend2.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .bd {
  background: url("src/assets/icons/backend2.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .sd {
  background: url("src/assets/icons/softdev2.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .gd {
  background: url("src/assets/icons/graphicd2.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .rd {
  background: url("src/assets/icons/responsived2.png") no-repeat center center/cover;
}
.expertise-section .col:hover > .wd {
  background: url("src/assets/icons/webd2.png") no-repeat center center/cover;
}
.expertise-section .col .p {
  margin-top: 10px;
}
.expertise-section .col p {
  font-size: 0.9em;
  line-height: 1.4;
  font-weight: normal;
  text-align: justify;
  padding-left: 20px;
  margin-left: 10px;
  border-left: #868894 2px solid;
}
.expertise-section .code1p::before {
  content: "<p>";
  color: #868894;
  font-size: 0.8em;
  display: block;
  font-weight: bolder;
}
.expertise-section .code2p::after {
  content: "</p>";
  font-weight: bolder;
  color: #868894;
  font-size: 0.8em;
  display: block;
}

@media (max-width: 768px) {
  .container {
    padding: 75px 6% 2%;
    width: 100vw;
    overflow: hidden;
  }
  .container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .container .col:hover > .icon {
    transition: 0.2s;
    transform: translateX(-70px);
  }
}
@media (max-width: 425px) {
  .container .grid {
    display: block;
  }
  .container .col {
    margin-bottom: 16px;
  }
}
.contact-section {
  align-items: center;
  /*hover button animation start*/
  /*hover button animation end*/
}
.contact-section h2 {
  margin-top: 70px;
  text-align: center;
  font-size: 3em;
  font-weight: bolder;
}
.contact-section p {
  margin-top: 40px;
  width: 60%;
  line-height: 1.5;
  color: #8a8c92;
  text-align: center;
}
.contact-section button {
  margin-top: 40px;
  width: 140px;
  height: 50px;
  border: #64ffda solid 1px;
  background: none;
  color: #64ffda;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.contact-section button::before, .contact-section button::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: red;
  opacity: 0.4;
  filter: blur(0.4);
  transition: 0.6s;
}
.contact-section button::before {
  width: 60px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.contact-section button::after {
  width: 30px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-130px) skewX(-45deg);
}
.contact-section button:hover:before,
.contact-section button:hover:after {
  opacity: 0.6;
  transform: translateX(320px) skewX(-45deg);
}
.contact-section button:hover {
  color: #0A192F;
  background: #64ffda;
}
.contact-section .socialMedia {
  margin-block-start: 1.5rem;
  margin-block-end: 0.5rem;
  position: relative;
  transition: 0.25s;
}
.contact-section .socialMedia .sci {
  position: relative;
  display: flex;
  gap: 20px;
}
.contact-section .socialMedia .sci li {
  list-style: none;
}
.contact-section .socialMedia .sci li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #cbd5f5;
  border-radius: 7px;
  text-decoration: none;
  font-size: 2rem;
  transform-style: preserve-3d;
  perspective: 300px;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
  transition: background 0.25s;
}
.contact-section .socialMedia .sci li a i {
  transition: 0.25s;
  color: #1c1e23;
}
.contact-section .socialMedia .sci li a:hover.facebook {
  background: #1877f2;
}
.contact-section .socialMedia .sci li a:hover.youtube {
  background: #ff0000;
}
.contact-section .socialMedia .sci li a:hover.whatsapp {
  background: #25d366;
}
.contact-section .socialMedia .sci li a:hover.linkedin {
  background: #0a66c2;
}
.contact-section .socialMedia .sci li a:hover.github {
  background: #181717;
}
.contact-section .socialMedia .sci li a:hover i {
  color: white;
  transform: scale(1.65) translateZ(25px);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 75px 6% 20px;
    width: 100vw;
    overflow: hidden;
  }
  .contact-section h2 {
    margin-top: 50px;
    text-align: center;
    font-size: 3em;
    font-weight: bolder;
  }
  .contact-section p {
    width: 100%;
  }
  .contact-section button {
    margin-top: 30px;
  }
  .contact-section .socialMedia .sci li a {
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    perspective: 100px;
  }
  .contact-section .socialMedia .sci li a:hover i {
    color: white;
    transform: scale(1.35) translateZ(20px);
  }
}

/*# sourceMappingURL=style.css.map */
