
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--secondory-color);
  background-color:var(--primary-color) ;
}

/*----------------------------------------------------------------
# StarBackground
-----------------------------------------------------------------*/
#sky {
  height: 100vh;
}

.star {
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.4);
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 2px;
  background-color:white;
}
/*----------------------------------------------------------------
# Darktheme
-----------------------------------------------------------------*/
:root{
  --primary-color:#121212;
  background-blend-mode: multiply;;
  --secondory-color:#f8fafc;
  --heading-font: "Raleway",  sans-serif;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #45505b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0563bb; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --mask-direction: to right;
}
.dark-theme{
  --primary-color:rgb(238, 248, 247);
  --secondory-color:black;
}
/* :root { 
 
} */
#icon{
  font-size:2.5rem;
  position: relative;
  left:8px;

  
}
/*---------------------------------------------
 End dark theme
----------------------------------------------*/ 
/*----------------------------------------------------------------
# Scroll Bar
-----------------------------------------------------------------*/
::-webkit-scrollbar{
  width: 5px;
  height:0;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient( #2a46ff ,#0099ff, #008ead);
  border-radius: 10px;
  box-shadow: inset 2px 2px 2px rgba(255,255,255,.25);
}
::-webkit-scrollbar-track{
  background-color:var(--primary-color);
}
/*----------------------------------------------------------------
# End Scroll Bar
-----------------------------------------------------------------*/
a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;

}

h1,
h2,
h3,
h5{
  font-weight: bold;
}
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background:var(--primary-color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left:0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .header {
    background:var(--primary-color);
    border-right: 1px solid var(--primary-color);
    left: -100%;
  }
}

/* @media (min-width: 991px) {
  #main {
    margin-left:85px;

  }
} */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color:var(--secondory-color);
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background:var(--primary-color);
  height: 56px;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color:var(--secondory-color);
}

@media (min-width: 540px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color:var(--primary-color);
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: var(--primary-color);
  background: linear-gradient(to right,#008baa, #6070fd, #2a46ff ,#0099ff, #008ead);
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: var(--primary-color);
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color:var(--primary-color);
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}
.nav-menu li:-webkit-scrollbar{
  display: none
}  



.scroll::-webkit-scrollbar{
  height:0;
  width: 0;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right:0;
  top: 10;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}
.mobile-nav-toggle i {
  color: var(--secondory-color);
}
.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: var(--primary-color);
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero{
  position: relative;
  width:100%;
  height:100vh;
  background:var(--primary-color);

}

.hero-social-links{
  position:absolute;
  display: flex;
  flex-direction: column;
  bottom:5em;
  right: 1em;
  gap: 10px;
}
.hero-social-links a{
  font-size:1.5em;
}
/* .hero-info .connect-btn{
    margin: ;
} */
.gradient{
    background: linear-gradient(to right,#008baa, #7e42a7, #6600c5, #6070fd, #2a46ff ,#0099ff, #008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation: animate-gradient 2.5s linear infinite;
}
.connect-btn{
    color: var(--secondory-color);
    padding: 15px 35px;
    border-radius:5em;
    border: 1px solid #72a1de81;
    background-color: #2200493d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}
.connect-btn:hover{
    box-shadow: 0 0 15px #72a1de81;
}


@keyframes animate-gradient{
    to{
        background-position: 200%;
    }
}
@media screen and (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
 
}

.hero-non-animation {
  color: var(--secondory-color);
  margin: 15px 0 0 0;
  font-size: 2em;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 4px #000000;
}

.hero-animation {
  letter-spacing: 1px;
  font-size: 2em;
  font-family: fantasy;
}
.hero-info h3{
  font-family:cursive;
  font-size:2em;
}

#hero h2>span{
  font-size:1.5em;
  font-family: 'Times New Roman', Times, serif;
  text-shadow: 2px 2px 4px #000000;
}

.info-card{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.info-card h1{
    background: linear-gradient(to right,#008baa, #7e42a7, #6600c5, #6070fd, #2a46ff ,#0099ff, #008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation: animate-gradient 2.5s linear infinite;
    font-size:55px;
}
.info-card h6{
    color:white;
    font-size: 20px;
    text-shadow: 2px 2px 4px #000000;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #0563bb ;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

@media (max-width: 992px) {
  /* #hero {
    text-align: center;
  } */

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}
.section-subtitle{
  display: block;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  color:var(--secondory-color);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--primary-color);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  position: relative;
  height:100vh;
  background: var(--primary-color);
}

.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--secondory-color);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.content{
  margin-top: 10px;
}
.about .content p{
  text-indent: 20px;
  letter-spacing: 3px;
}

.about-section{
  display: none;
  justify-content:space-around;
  margin:10% 0px;
}

/*--------------------------------------------------------------
# skills
--------------------------------------------------------------*/

.skills{
  position: relative;
  height:100vh;
  width: auto;
  background: var(--primary-color);
  display: flex;
  flex-wrap: wrap;
}
.skills-section {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--gap);
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}


.skill-item {
  height:8em;
  width: 8em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background: rgba(255, 255, 255, 0.15); 
  border-radius: 10%;
  cursor: pointer;
  color: var(--primary-color); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.skill-item:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}
.skill-item i{
  font-size: 5em;
}
.skill-item img{
  object-fit: contain;
  width:55px;
  height: 50px;
}
.skill-name{
  font-weight: bolder;
  font-size:medium;
  color: var(--secondory-color);
}
.skill-item span{
  display: none;
}
.skill-item:hover i{
  display: none;
}
.skill-item:hover img{
  display: none;
}

.skill-item:hover span{
  display: block;
}
.html5:hover{
  filter: drop-shadow(0 0 1em #ff4000)saturate(3);
}
.css3:hover{
  filter: drop-shadow(0 0 2em #0f9ddd)saturate(3);
}
.javascript:hover{
  filter: drop-shadow(0 0 1em #dce319)saturate(3);
}
.react:hover{
  filter: drop-shadow(0 0 1em #3bc4c0)saturate(3);
}
.redux:hover{
  filter: drop-shadow(0 0 1em #c23bc4) saturate(3);
}
.nextjs:hover{
  filter: drop-shadow(0 0 2em #efd6d6c5)saturate(3);
}
.python:hover{
  filter: drop-shadow(0 0 2em #d5b919)saturate(3);
}
.django:hover{
  filter: drop-shadow(0 0 2em #077a15)saturate(3);
}
.flask:hover{
  filter: drop-shadow(0 0 2em #efd6d6c5)saturate(3);
}
.typescript:hover{
  filter: drop-shadow(0 0 2em #1677e5)saturate(3);
}
.bootstrap:hover{
  filter: drop-shadow(0 0 2em #8206bc)saturate(3);
}
.tailwind-css:hover{
  filter: drop-shadow(0 0 2em #39aadf)saturate(3);
}
.postgresql:hover{
  filter: drop-shadow(0 0 2em #4083db)saturate(3);
}
.git:hover{
  filter: drop-shadow(0 0 2em #f75600)saturate(3);
}
.postman:hover{
  filter: drop-shadow(0 0 2em #f18b54)saturate(3);
}
.docker:hover{
  filter: drop-shadow(0 0 2em #0c53f6)saturate(3);
}
.bxl-flask:hover{
  color:var(--secondory-color)
}
.node.js:hover{
   filter: drop-shadow(0 0 2em #339933)saturate(3);
}
.mongodb:hover{
  filter: drop-shadow(0 0 2em  #47A248)saturate(3);
}
.sql:hover{
  filter: drop-shadow(0 0 2em  #4479a1)saturate(3);
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}
.mobile-marquee{
  display: none;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}


@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
/* Element styles */
.marquee .skill-item {
  display: grid;
  place-items: center;
  aspect-ratio: 16/9;
}

.marquee--vertical .skill-item {
  aspect-ratio: 1;
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 80vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 60vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--accent-color);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: fade 400ms 10s ease-out forwards;
  user-select: none;
}

.toggle svg {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: white;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{
  height:100vh;
  width: 100%;
  background: var(--primary-color);
  align-items: center;
}
.portfolio h2{
  margin-top: 0px;
}


 .portfolio-box{
  height:60vh;
  width: 25em;
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 01rem rgb(27, 132, 252);
  overflow: hidden;
  display: flex;
}
.portfolio-box img{
  width: 100%;
  transition: .5s ease;
}
.portfolio-box:hover img{
  transform: scale(1.1);
  opacity: 0;

}
.portfolio-box .portfolio-layer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0,0,0,.1),rgb(11, 149, 235));
  color: #000000;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  transform:translateY(100%);
  transition: .5s ease;
}
.portfolio-box:hover .portfolio-layer{
 transform: translateY(0);
}
.portfolio-layer  h1,pre{
 color: #ffffff;
}
.portfolio-layer p{
  font-size: small;
  margin:  .3rem 0 1;
}
.portfolio-layer a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:2rem;
  height:2rem;
  background:beige;
  border-radius: 50%;
  margin: 1em;
}
.portfolio-layer a > li {
  font-size:large;
  margin: auto;
  
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}


.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  cursor: pointer;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  /* color: var(--accent-color); */
  color: #000;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.scholarship{
  margin-top: 5px;
  display: flex;
  align-items: center;
  margin: auto;
}



/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper {
  width: 100vw;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height:auto;
  margin: auto;
}
/* Change the default color of pagination bullets */
.swiper-pagination-bullet {
  background-color:var(--secondory-color); /* Default color for bullets */
}

/* Change the color of the active bullet */
.swiper-pagination-bullet-active {
  background-color:var(--accent-color); /* Highlighted color for active bullet */
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  position: relative;
  width:100%;
  height:70vh;
  background: var(--primary-color);
}

.contact .email{
  background: linear-gradient(to right,#008baa, #6070fd, #2a46ff ,#0099ff, #008ead);
  border: 0;
  width:150px;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  border-radius: 50px;
}
.info{
  display: flex;
  justify-content: center;
}
.send_text{
  color:var(--secondory-color)
}
.send_icon{
  color: #ffffff;
  display:none;
}
.contact  .email:hover .send_text{
  display: none;
}
.contact  .email:hover .send_icon{
  display:inline;
}

.contact h5{
  color: #45505b;
}
.contact h5{
  display: flex;
  justify-content: center;
}

.contact p {
  text-indent: 50px;
  text-align: center;
  letter-spacing: 3px;
}
.description{
  display: flex;
  justify-content: center;
  margin: auto;
  width: 500px;
  height: auto;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:var(--primary-color);
  color: var(--secondory-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/* mobile responsible */
@media screen and (max-width:1290px) {
  .services,.contact,.portfolio,.skills,.about,.description{
    width: auto;
    height: auto;
    margin: auto;
  }
 
 
 
 
}
@media screen and (max-width:540px) {
  .mobile-marquee{
  display: flex;
}
  .swiper-slide {
    width:88%;
    height:auto;
    margin: auto;
  }
   .info-card h6{
    font-size: 15px;
   }
   .hero-social-links{
    right:1em;
  }

 .skill-item {
  height:5em;
  width:5em;
}
.skill-item i{
  font-size: 3em;
}
.skill-name{
  font-size: xx-small;
}
.skill-item img{
  object-fit: contain;
  width:50px;
  height: 40px;
}
#preloader:before {
  top: calc(50% - 10%);
  left: calc(50% - 15%);
}
.about .content p{
  text-indent:2px;
  letter-spacing:2px;
  font-size: small;
}
.contact p {
  text-indent:10px;
  letter-spacing: 1px;
}
.portfolio-box{
  height:50vh;
  width:24em;

}

#hero h2>span,.hero-info h3,.hero-animation,.hero-non-animation{
  font-size:1.4em;
}
}

@media screen and (max-width:400px){
  .portfolio-box{
    height:55vh;
    width:22em;
  }
}
