/*=========================================================
  SHEFALI PORTFOLIO V2
  Author : ChatGPT
  Theme  : Dark Luxury (Orange • Amber • Coral)
==========================================================*/

/*==========================
 RESET
===========================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: #111111;

  color: #f7f7f7;

  overflow-x: hidden;

  line-height: 1.7;
}

img {
  display: block;

  max-width: 100%;
}

a {
  text-decoration: none;

  color: inherit;
}

button {
  cursor: pointer;

  border: none;

  outline: none;

  font-family: inherit;
}

ul {
  list-style: none;
}

/*==========================
 VARIABLES
===========================*/

:root {
  --bg: #111111;

  --bg2: #191919;

  --card: #202020;

  --primary: #ff7a00;

  --secondary: #ffb703;

  --accent: #ff4d6d;

  --success: #22c55e;

  --text: #ffffff;

  --muted: #c8c8c8;

  --border: rgba(255, 255, 255, 0.08);

  --shadow: 0 25px 70px rgba(255, 122, 0, 0.18);

  --radius: 22px;

  --transition: 0.35s;
}

/*==========================
 SCROLLBAR
===========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #161616;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));

  border-radius: 50px;
}

/*==========================
 SELECTION
===========================*/

::selection {
  background: var(--primary);

  color: white;
}

/*==========================
 CONTAINER
===========================*/

.container {
  width: min(1200px, 92%);

  margin: auto;
}

/*==========================
 BACKGROUND
===========================*/

.background {
  position: fixed;

  inset: 0;

  z-index: -100;

  overflow: hidden;
}

.blob {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);
}

.blob1 {
  width: 600px;

  height: 600px;

  background: #ff7a0030;

  top: -250px;

  left: -180px;

  animation: blob1 18s infinite alternate;
}

.blob2 {
  width: 520px;

  height: 520px;

  background: #ff4d6d25;

  right: -180px;

  bottom: -180px;

  animation: blob2 16s infinite alternate;
}

.blob3 {
  width: 420px;

  height: 420px;

  background: #ffb70322;

  left: 45%;

  top: 30%;

  animation: blob3 20s infinite alternate;
}

.grid {
  position: absolute;

  inset: 0;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,

      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,

      transparent 1px
    );

  background-size: 60px 60px;
}

@keyframes blob1 {
  100% {
    transform: translate(220px, 140px);
  }
}

@keyframes blob2 {
  100% {
    transform: translate(-160px, -120px);
  }
}

@keyframes blob3 {
  100% {
    transform: translate(-120px, 150px);
  }
}

/*==========================
 LOADER
===========================*/

#loader {
  position: fixed;

  inset: 0;

  background: #111111;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 99999;

  transition: 1s;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  width: 90px;

  animation: rotateLogo 6s linear infinite;
}

.loader-content h2 {
  margin-top: 25px;

  font-size: 30px;

  font-weight: 700;
}

.loader-content p {
  margin-top: 10px;

  color: var(--muted);
}

.loader-bar {
  width: 280px;

  height: 6px;

  margin-top: 30px;

  background: #2a2a2a;

  border-radius: 50px;

  overflow: hidden;
}

.loader-progress {
  height: 100%;

  width: 0;

  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );

  animation: loader 1.8s forwards;
}

@keyframes loader {
  100% {
    width: 100%;
  }
}

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

.loaded {
  opacity: 0;

  visibility: hidden;
}

/*==========================
 HEADER
===========================*/

header {
  position: fixed;  top: 0;   left: 0; width: 100%;  z-index: 999;  transition: 0.4s;
  height:78px;
}

header.scrolled {
  background: rgba(17, 17, 17, 0.82);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  height:78px;
}

.logo img{
    height:48px;
    width:auto;
    display:block;
}

.logo img:hover {
  transform: rotate(10deg) scale(1.05);
}

.nav-links {
  display: flex;

  gap: 40px;
}

.nav-links a {
  font-weight: 500;

  color: #ddd;

  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
}

/*==========================
 BUTTONS
===========================*/

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 36px;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--primary), var(--accent));

  color: white;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 36px;

  border-radius: 999px;

  border: 2px solid var(--primary);

  color: white;

  margin-left: 15px;

  transition: 0.35s;
}

.btn-outline:hover {
  background: var(--primary);
}

/*==========================
 HERO
===========================*/

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: 100px;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: center;
}

.hero-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(255, 183, 3, 0.12);

  color: var(--secondary);

  margin-bottom: 25px;
}

.hero h1 {
  font-size: 72px;

  line-height: 1.1;

  margin-bottom: 25px;
}

.hero h1 span {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );

  -webkit-background-clip: text;

  color: transparent;
}

.hero p {
  font-size: 20px;

  color: var(--muted);

  max-width: 650px;
}

.hero-buttons {
  margin-top: 40px;
}

.hero-features {
  display: flex;

  gap: 25px;

  margin-top: 60px;
}

.hero-features div {
  background: #1d1d1d;

  border: 1px solid var(--border);

  padding: 24px;

  border-radius: 20px;

  flex: 1;

  text-align: center;
}

.hero-features h3 {
  font-size: 34px;

  color: var(--primary);
}

.photo-wrapper {
  position: relative;

  width: 430px;

  height: 430px;

  margin: auto;
}

.photo-wrapper img {
  width: 100%;

  height: 100%;

  border-radius: 50%;

  object-fit: cover;

  border: 6px solid #242424;
}
/*=========================================================
 HERO IMAGE EFFECTS
==========================================================*/

.circle {
  position: absolute;

  border-radius: 50%;

  animation: spinRing 15s linear infinite;
}

.circle.one {
  width: 470px;

  height: 470px;

  border: 2px dashed rgba(255, 122, 0, 0.25);

  top: -20px;

  left: -20px;
}

.circle.two {
  width: 540px;

  height: 540px;

  border: 2px solid rgba(255, 183, 3, 0.12);

  top: -55px;

  left: -55px;

  animation-direction: reverse;
}

.photo-wrapper::before {
  content: "";

  position: absolute;

  inset: -40px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 70%);

  z-index: -1;

  animation: pulseGlow 5s infinite;
}

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

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);

    opacity: 0.6;
  }

  50% {
    transform: scale(1.08);

    opacity: 1;
  }
}

/*=========================================================
SECTIONS
==========================================================*/

section {
  padding: 110px 0;

  position: relative;
}

.section-title {
  text-align: center;

  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 52px;

  font-weight: 700;

  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;

  max-width: 700px;

  margin: auto;

  color: var(--muted);
}

.section-title::after {
  content: "";

  display: block;

  width: 90px;

  height: 4px;

  margin: 22px auto 0;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  border-radius: 20px;
}

/*=========================================================
TECH STRIP
==========================================================*/

.tech-strip {
  padding: 35px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: #181818;

  overflow: hidden;
}

.strip-title {
  text-align: center;

  margin-bottom: 30px;

  font-weight: 600;

  letter-spacing: 1px;

  color: var(--secondary);
}

.tech-marquee {
  display: flex;

  gap: 40px;

  justify-content: center;

  flex-wrap: wrap;
}

.tech-marquee span {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 24px;

  border-radius: 999px;

  background: #202020;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.tech-marquee span:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));

  transform: translateY(-5px);
}

.tech-marquee i {
  font-size: 22px;
}

/*=========================================================
ABOUT
==========================================================*/

.about-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;

  margin-top: 60px;
}

.about-card {
  background: #1c1c1f;

  padding: 40px 35px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.35s;
}

.about-card:hover {
  transform: translateY(-10px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

.about-card i {
  font-size: 46px;

  margin-bottom: 25px;

  color: var(--primary);
}

.about-card h3 {
  margin-bottom: 18px;

  font-size: 24px;
}

.about-card p {
  color: var(--muted);

  line-height: 1.9;
}

/*=========================================================
SERVICES
==========================================================*/

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 35px;
}

.service-card {
  padding: 45px;

  background: #1d1d22;

  border-radius: 26px;

  border: 1px solid rgba(255, 255, 255, 0.07);

  transition: 0.35s;

  position: relative;

  overflow: hidden;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );

  transition: 0.7s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 55px;

  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 28px;

  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);

  line-height: 1.9;
}

/*=========================================================
PROJECTS
==========================================================*/

.project-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 35px;
}

.project-card {
  background: #1c1c20;

  border-radius: 26px;

  overflow: hidden;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-card:hover {
  transform: translateY(-14px);

  box-shadow: var(--shadow);

  border-color: var(--primary);
}

.project-image {
  height: 240px;

  overflow: hidden;
}

.project-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-content {
  padding: 32px;
}

.project-content h3 {
  font-size: 28px;

  margin-bottom: 18px;
}

.project-content p {
  line-height: 1.8;

  color: var(--muted);

  margin-bottom: 25px;
}

.project-content a {
  color: var(--secondary);

  font-weight: 600;
}

.project-content a:hover {
  color: var(--primary);
}
/*=========================================================
 EXPERIENCE TIMELINE
=========================================================*/

.timeline {
  position: relative;

  max-width: 950px;

  margin: 80px auto 0;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 40px;

  top: 0;

  bottom: 0;

  width: 3px;

  background: linear-gradient(var(--primary), var(--secondary), var(--accent));
}

.timeline-item {
  display: flex;

  gap: 40px;

  margin-bottom: 60px;

  position: relative;
}

.timeline-year {
  width: 85px;

  height: 85px;

  flex-shrink: 0;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: linear-gradient(135deg, var(--primary), var(--accent));

  color: #fff;

  font-weight: 700;

  font-size: 20px;

  z-index: 2;

  box-shadow: var(--shadow);
}

.timeline-card {
  flex: 1;

  background: #1c1c22;

  padding: 35px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.timeline-card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

.timeline-card h3 {
  font-size: 28px;

  margin-bottom: 8px;
}

.timeline-card h4 {
  color: var(--secondary);

  margin-bottom: 18px;
}

/*=========================================================
 YOUTUBE
=========================================================*/

.youtube-box {
  display: grid;

  grid-template-columns: 220px 1fr;

  gap: 50px;

  align-items: center;

  padding: 50px;

  background: #1b1b20;

  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-left {
  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 120px;

  color: #ff0000;
}

.youtube-right h3 {
  font-size: 38px;

  margin-bottom: 20px;
}

.youtube-right p {
  margin-bottom: 30px;
}

/*=========================================================
 TESTIMONIALS
=========================================================*/

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.testimonial {
  padding: 40px;

  background: #1c1c22;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.testimonial:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.testimonial p {
  margin: 20px 0;

  line-height: 1.9;
}

.testimonial h4 {
  color: var(--secondary);
}

/*=========================================================
 FAQ
=========================================================*/

.faq {
  max-width: 900px;

  margin: auto;
}

.faq-item {
  padding: 28px;

  margin-bottom: 20px;

  background: #1d1d22;

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
  margin-bottom: 15px;

  font-size: 24px;
}

/*=========================================================
 CONTACT
=========================================================*/

.contact-box {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  background: #1c1c22;

  padding: 60px;

  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list {
  margin-top: 35px;
}

.contact-list p {
  margin: 18px 0;

  font-size: 18px;
}

#contact-form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  padding: 18px;

  border-radius: 16px;

  background: #27272f;

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
}

#contact-form textarea {
  resize: none;
}

#contact-form button {
  margin-top: 10px;
}

/*=========================================================
 FOOTER
=========================================================*/

footer {
  margin-top: 120px;

  padding: 70px 0 30px;

  background: #161616;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 40px;

  margin-bottom: 40px;
}

.footer-grid h4 {
  margin-bottom: 20px;
}

.footer-grid a {
  display: block;

  margin: 12px 0;

  color: var(--muted);

  transition: 0.3s;
}

.footer-grid a:hover {
  color: var(--primary);
}

footer hr {
  border: none;

  height: 1px;

  background: rgba(255, 255, 255, 0.08);

  margin-bottom: 25px;
}

.copyright {
  text-align: center;

  color: #999;
}

/*=========================================================
 FLOATING WHATSAPP
=========================================================*/

.whatsapp {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 65px;

  height: 65px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 30px;

  background: #25d366;

  border-radius: 50%;

  color: white;

  z-index: 999;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  transition: 0.35s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/*=========================================================
 BACK TO TOP
=========================================================*/

#topButton {
  position: fixed;

  left: 25px;

  bottom: 25px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), var(--accent));

  color: white;

  font-size: 22px;

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 999;

  box-shadow: var(--shadow);
}
/*=========================================================
 MOBILE NAVIGATION
=========================================================*/

.hamburger {
  display: none;

  width: 48px;

  height: 48px;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 6px;

  cursor: pointer;

  z-index: 1001;
}

.hamburger span {
  width: 28px;

  height: 3px;

  background: #fff;

  border-radius: 50px;

  transition: 0.35s;
}

.mobile-menu {
  position: fixed;

  top: 0;

  right: -100%;

  width: 320px;

  height: 100vh;

  background: rgba(18, 18, 18, 0.96);

  backdrop-filter: blur(18px);

  padding: 120px 40px;

  transition: 0.45s;

  z-index: 999;

  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

.mobile-menu a {
  font-size: 22px;

  font-weight: 600;

  transition: 0.3s;
}

.mobile-menu a:hover {
  color: var(--primary);

  padding-left: 10px;
}

/*=========================================================
 GLOBAL ANIMATIONS
=========================================================*/

.fade-up {
  opacity: 0;

  transform: translateY(50px);

  transition: 1s ease;
}

.fade-up.show {
  opacity: 1;

  transform: translateY(0);
}

.scale-up {
  transform: scale(0.9);

  opacity: 0;

  transition: 0.8s;
}

.scale-up.show {
  opacity: 1;

  transform: scale(1);
}

.rotate {
  animation: rotate360 18s linear infinite;
}

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

.float {
  animation: floatObject 5s ease-in-out infinite;
}

@keyframes floatObject {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/*=========================================================
 IMAGE OPTIMIZATION
=========================================================*/

img {
  image-rendering: auto;

  user-select: none;

  -webkit-user-drag: none;

  transition: 0.45s;
}

img:hover {
  transform: scale(1.02);
}

/*=========================================================
 GLASS CARDS
=========================================================*/

.glass {
  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/*=========================================================
 HOVER EFFECTS
=========================================================*/

.card-hover {
  transition: 0.35s;
}

.card-hover:hover {
  transform: translateY(-12px);

  box-shadow: var(--shadow);
}

/*=========================================================
 UTILITIES
=========================================================*/

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 60px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 60px;
}

.hidden {
  display: none;
}

/*=========================================================
 TABLET
=========================================================*/

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 70px;
  }

  .photo-wrapper {
    width: 320px;

    height: 320px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero p {
    margin: auto;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .youtube-box {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }
}

/*=========================================================
 MOBILE
=========================================================*/

@media (max-width: 768px) {
  nav {
    height: 75px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn {
    padding: 14px 24px;

    font-size: 15px;
  }

  .btn-outline {
    padding: 14px 24px;

    font-size: 15px;

    margin-left: 0;

    margin-top: 15px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-buttons {
    display: flex;

    flex-direction: column;

    gap: 15px;
  }

  .hero-features {
    flex-direction: column;
  }

  .hero-features div {
    width: 100%;
  }

  .photo-wrapper {
    width: 270px;

    height: 270px;
  }

  .circle.one,
  .circle.two {
    display: none;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .project-grid,
  .services-grid,
  .about-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tech-marquee {
    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .tech-marquee::-webkit-scrollbar {
    display: none;
  }

  .whatsapp {
    width: 58px;

    height: 58px;

    font-size: 26px;
  }

  #topButton {
    width: 54px;

    height: 54px;
  }
}

/*=========================================================
 SMALL DEVICES
=========================================================*/

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-badge {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .timeline-card {
    padding: 24px;
  }

  .youtube-left {
    font-size: 80px;
  }

  .loader-content img {
    width: 70px;
  }

  .loader-content h2 {
    font-size: 22px;
  }

  .loader-bar {
    width: 220px;
  }
}

/*=========================================================
 PERFORMANCE
=========================================================*/

html {
  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/*=========================================================
 END OF FILE
=========================================================*/
