@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
*::selection {
  background-color: #e6006d;
  color: #e5eef7;
}
.custom_bg {
  background-color: #ffffff;
}
:root {
  --bg-color: #e3edf7;
  --gradient-white-bg: linear-gradient(
    0deg,
    #fff 0%,
    #edf4fa 51%,
    #e5eef7 100%
  );
  --gradient-color-bg: linear-gradient(
    180deg,
    rgba(247, 1, 120, 1) 0%,
    rgba(160, 8, 156, 1) 51%,
    rgba(99, 13, 178, 1) 100%
  );
  --font-color: rgba(160, 8, 156, 1);
  --back-color: rgba(160, 8, 156, 1);
  --main-color: #e6006d;
  --font-color: #90979f;
  --hover-box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  --gradient-white-bg2: linear-gradient(98deg, #e5eef7 0%, #fff 100%);
    --primary: rgba(247, 1, 120, 1);
  --secondary: rgba(160, 8, 156, 1);
  --tertiary: rgba(99, 13, 178, 1);
  --gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 51%,
    var(--tertiary) 100%
  );
  --gradient-hover: linear-gradient(
    135deg,
    var(--tertiary) 0%,
    var(--secondary) 51%,
    var(--primary) 100%
  );
}
.back-color {
  background: var(--back-color);
}
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: #d2e9ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(247, 1, 120, 1) 0%,
    rgba(160, 8, 156, 1) 51%,
    rgba(99, 13, 178, 1) 100%
  );
  cursor: grab;
  border-radius: 10px;
}
.index_ze {
  z-index: 10;
}
.font_color {
  color: rgba(160, 8, 156, 1);
}
.gradient_back {
  background: linear-gradient(
    180deg,
    rgba(247, 1, 120, 1) 0%,
    rgba(160, 8, 156, 1) 51%,
    rgba(99, 13, 178, 1) 100%
  );
}
.text-danger:hover {
  color: #000000;
}
.light-text {
  color: #ffffff;
}
/* Navbar Styling */
#main_navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  padding: 15px 0;
}

#main_navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Logo Styling */
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-img {
  height: 70px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.logo-container:hover .logo-img {
  transform: scale(1.05) rotate(-5deg);
}

.logo-container:hover .logo-glow {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

/* Nav Links */
.nav-link {
  position: relative;
  color: #333 !important;
  font-weight: 500;
  margin: 0 15px;
  padding: 10px 0 !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-text {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border-radius: 3px;
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text {
  color: var(--secondary) !important;
  font-weight: 600;
}

.nav-link:hover .nav-underline,
.nav-link.active .nav-underline {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-item {
  padding: 10px 20px;
  color: #555;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(247, 1, 120, 0.05) 0%,
    rgba(160, 8, 156, 0.05) 51%,
    rgba(99, 13, 178, 0.05) 100%
  );
  color: var(--secondary);
  border-left: 3px solid var(--primary);
  padding-left: 25px;
}

.dropdown-divider {
  border-color: rgba(0, 0, 0, 0.05);
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.dropdown-toggle.show .dropdown-arrow {
  transform: rotate(180deg);
}

/* Buttons */
.btn-quote {
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(247, 1, 120, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hover);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 1, 120, 0.4);
}

.btn-quote:hover::before {
  opacity: 1;
}

.btn-logout {
  background: #f8f9fa;
  color: #dc3545;
  border: 1px solid #dc3545;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-logout:hover {
  background: #dc3545;
  color: white;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.whatsapp-button:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.pulse-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Modal Styling */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: var(--gradient);
  color: white;
  border-bottom: none;
  padding: 20px;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.form-floating label {
  color: #666;
}

.form-control {
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247, 1, 120, 0.1);
}

.btn-submit {
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-submit:hover {
  background: var(--gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(247, 1, 120, 0.3);
}

/* Mobile Menu */
.offcanvas {
  width: 85%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-logo-img {
  height: 40px;
}

.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav .nav-link {
  padding: 15px 0;
  margin: 0;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.mobile-nav .nav-link i {
  width: 25px;
  text-align: center;
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0 0 0 30px;
}

.mobile-dropdown-menu .dropdown-item {
  padding: 12px 0;
  color: #666;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu .dropdown-item:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.mobile-dropdown-menu .dropdown-item i {
  width: 25px;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nav-actions {
    margin-top: 20px;
    text-align: center;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
  }

  .menu-text {
    margin-left: 8px;
    font-weight: 500;
    color: var(--secondary);
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .modal-content {
    margin: 20px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 60px;
  }

  .btn-quote,
  .btn-logout {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* end navbar  */
a {
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ==================== home section css code ============================ */
section {
  padding: 90px 6%;
}

.home {
  min-height: 100vh;
  width: 100%;
  background: var(--gradient-white-bg2);
}
.hero-info {
  width: 100%;
}
.mini-home {
  width: 100%;
}
.hero-info .text-animate {
  color: var(--font-color);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.1vw;
}

.hero-info h2 {
  text-transform: uppercase;
  font-size: 4vw;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  font-weight: 900;
  width: 100%;
}

.text-animate {
  width: 22.8vw;
  position: relative;
}

.text-animate h2 {
  font-size: 1.8vw;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 0.1vw #770753;
  background: var(--gradient-color-bg);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-position: 0 0;
  transition: 0.6s;
  letter-spacing: 1px;
  animation: moveText 3s linear infinite;
  animation-delay: 2s;
}

.text-animate h2::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -3px;
  width: 0;
  height: 70%;
  border-right: 2px solid var(--main-color);
  animation: moveCursorText 3s linear infinite;
  animation-delay: 2s;
}

.hero-info p {
  font-size: 0.9vw;
  color: var(--font-color);
  line-height: 1.3vw;
  font-weight: 700;
  width: 80%;
}

.btn-box {
  display: flex;
  justify-content: space-between;
  width: 320px;
  margin-top: 2rem;
  margin-bottom: 6rem;
  font-family: "Poppins", sans-serif;
}

.btn-box .btn {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.btn-box .d-CV {
  background: var(--gradient-white-bg2);
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  color: #000;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.social-media {
  display: flex;
  justify-content: space-between;
  width: 220px;
  height: 45px;
}

.social-media a {
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  color: var(--main-color);
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 50%;
  z-index: 1;
}

.social-media a:hover {
  background: var(--gradient-color-bg);
  color: #fff;
}

.bg-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-icon span {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--gradient-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: animate 1s linear infinite;
}

.img-hero {
  position: relative;
  animation: floatImage 4s ease-in-out infinite;
  animation-delay: 3s;
  width: 100%;
}

.img-hero img {
  position: relative;
  width: 100%;
  height: 70%;
  z-index: 10;
}

.text b {
  position: absolute;
  transform-origin: 0 247px;
  display: block;
  top: 0;
  left: 50%;
  font-size: 1.2rem;
}

/* ==================== About section css code ============================ */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.about .about-img {
  position: relative;
}

.about .about-img .aboutHero {
  width: 40vw;
  height: auto;
}

.about-content {
  padding: 3rem 0;
}

.about-content h2 {
  color: var(--main-color);
  font-size: 33px;
}

.about-content h3 {
  font-size: 2.1rem;
  line-height: 3rem;
  margin: 0.5rem 0;
}

.about-content p {
  color: var(--font-color);
}

.text-box p {
  font-size: 1.1rem;
  font-weight: 500;
}

.about-btn {
  margin: 0.8rem 0;
}

.about-btn button,
.cvContent a {
  background: var(--gradient-white-bg2);
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-btn button.active {
  background: var(--gradient-color-bg);
  color: #ffff;
}

.text-box {
  margin: 0.8rem 0;
}

.cvContent {
  margin-top: 1.5rem;
}

/* ==================== Services section css code ============================ */
.services {
  position: relative;
}

.main-text {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.main-text .heading {
  color: var(--main-color);
}

.main-text span {
  color: var(--font-color);
  font-weight: 200;
  text-transform: uppercase;
}

.allServices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.servicesItem {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: var(--gradient-white-bg2);
  text-align: center;
}

.icon-services span {
  position: absolute;
  width: 80px;
  height: 80px;
  left: -5px;
  top: -5px;
  background: var(--gradient-color-bg);
  border-radius: 50%;
  animation: animate 1s linear infinite;
}

.servicesItem h3 {
  margin: 1rem 0 0.5rem;
}

.servicesItem p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--font-color);
}

.readMore {
  background: var(--gradient-white-bg2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-right: 0.8rem;
  cursor: pointer;
}

.proposal {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--gradient-white-bg2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin-top: 8rem;
  border-radius: 10px;
  padding: 0rem 2rem;
  z-index: 1;
}

.proposal img {
  width: 40vw;
  height: auto;
  margin: -4rem 0 0;
  z-index: 2;
}

.services .text-box span {
  font-size: 1.2rem;
  font-weight: 600;
}

.services .text-box h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 2.3rem;
  font-weight: 800;
}

/* ==================== Contact section css code ============================ */

/*======================= footer ============================ */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 2px solid #e8e1e1;
}

#progress {
  position: fixed;
  /* background: #194eb9; */
  z-index: 1000;
  bottom: 60px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: #1d002c;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

#progress-value {
  display: grid;
  height: calc(100% - 12px);
  width: calc(100% - 12px);
  background: var(--gradient-color-bg);
  border-radius: 50%;
  color: #fff;
  place-items: center;
  font-size: 25px;
}

/*======================= @keyframes ============================ */

@keyframes moveText {
  0%,
  10%,
  100% {
    background-position: -24rem 0;
  }

  65%,
  85% {
    background-position: 0rem 0;
  }
}

@keyframes moveCursorText {
  0%,
  10%,
  100% {
    width: 0;
  }

  65%,
  78%,
  85% {
    width: 100%;
    opacity: 1;
  }

  75%,
  85% {
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes progress {
  to {
    stroke-dashoffset: var(--target);
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }

  100% {
    transform: translateY(0);
  }
}

/*======================= BrakPoints ============================ */
@media (max-width: 1200px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 1081px) {
  #mobile_nav {
    display: none;
  }
}
@media (max-width: 1080px) {
  .open-button {
    display: none; /* Hide the button */
  }
  #desktop_navbar {
    display: none;
  }
}
@media (max-width: 991px) {
  .home_image {
    display: none;
  }
  .blog_listing .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .home {
    width: 100%;
    background: var(--gradient-white-bg2);
  }
  .hero-info {
    width: 100%;
  }
  .mini-home {
    width: 100%;
  }

  .hero-info h2 {
    text-transform: uppercase;
    font-size: 4vw;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
  }

  .hero-info .text-animate h1 {
    font-size: 3.8vw;
  }

  .text-animate h2 {
    font-size: 1.8vw;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 0.1vw #770753;
    background: var(--gradient-color-bg);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: 0 0;
    transition: 0.6s;
    letter-spacing: 1px;
    animation: moveText 3s linear infinite;
    animation-delay: 2s;
  }

  .text-animate h2::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -3px;
    width: 0;
    height: 70%;
    border-right: 2px solid var(--main-color);
    animation: moveCursorText 3s linear infinite;
    animation-delay: 2s;
  }

  .hero-info p {
    font-size: 1.7vw;
    color: var(--font-color);
    line-height: 2vw;
    font-weight: 700;
    width: 100%;
  }

  .img-hero img {
    position: relative;
    width: 90%;
    height: 100%;
    z-index: 10;
  }

  header,
  section,
  footer {
    padding-left: 3%;
    padding-right: 3%;
  }

  .home,
  .portfolio-box {
    flex-direction: column-reverse;
  }

  .about,
  .contactSkills {
    flex-direction: column;
  }

  .about .about-img .aboutHero {
    width: 100%;
  }

  .proposal img {
    width: 52vw;
  }

  .portfolio-img img {
    width: 100%;
    height: 100%;
  }

  .portfolio-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .img-hero {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .home {
    min-height: 100vh;
    width: 100%;
    background: var(--gradient-white-bg2);
  }
  .hero-info {
    width: 100%;
  }
  .mini-home {
    width: 100%;
  }
  .hero-info h2 {
    text-transform: uppercase;
    font-size: 7.5vw;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
  }
  .hero-info .text-animate h2 {
    text-transform: uppercase;
    font-size: 2.5vw;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
  }

  .hero-info .text-animate h1 {
    font-size: 7.5vw;
  }

  .hero-info p {
    margin-top: 1.5vw;
    font-size: 2.5vw;
    color: var(--font-color);
    line-height: 2.5vw;
    font-weight: 600;
    width: 100%;
  }

  .proposal {
    display: none;
  }

  .menu-icon .bar,
  .menu-icon::after,
  .menu-icon::before {
    display: block;
  }

  .overlay {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8;
    opacity: 0;
    transform: 0.3s;
    pointer-events: none;
  }

  body.open .overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .btn {
    padding: 10px;
  }

  .home {
    grid-gap: 0;
  }

  .fillter-buttons button {
    padding: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 530px) {
  .hero-info h2 {
    text-transform: uppercase;
    font-size: 7vw;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
  }
  .hero-info .text-animate h2 {
    text-transform: uppercase;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
  }

  .hero-info .text-animate h1 {
    font-size: 7.5vw;
  }

  .hero-info p {
    margin-top: 1.5vw;
    font-size: 3.2vw;
    color: var(--font-color);
    line-height: 3.2vw;
    font-weight: 600;
    width: 100%;
  }

  html {
    font-size: 80%;
  }

  section {
    padding: 50px 3%;
  }

  .contact-info form .input-box {
    display: block;
  }

  .input-box input {
    width: 100%;
  }

  .rotate-text {
    display: none;
  }

  .img-hero img {
    width: 100%;
  }

  .text-animate {
    width: 23.8rem;
  }

  .btn-box {
    width: 266px;
    margin-bottom: 3rem;
  }

  .about-btn button {
    padding: 10px 15px;
  }

  .fillter-buttons {
    display: grid;
    grid-gap: 1rem;
  }

  .fillter-buttons button {
    width: 100%;
    padding: 13px;
  }
}

@media (max-width: 420px) {
  #progress {
    overflow: hidden;
  }
  #progress-value {
    overflow: hidden;
  }
  .btn-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0vw 5vw;
    font-family: "Poppins", sans-serif;
  }

  .btn-box .btn {
    padding: 1vw 5vw;
    gap: 1vw;
    font-family: "Poppins", sans-serif;
  }
  .hero-info h2 {
    text-transform: uppercase;
    font-size: 7vw;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0px;
    font-weight: 900;
    width: 100%;
    text-align: center;
  }
  .hero-info .text-animate h2 {
    display: none;
  }

  .hero-info .text-animate h1 {
    font-size: 7.5vw;
    text-align: center;
  }

  .hero-info p {
    margin-top: 1.5vw;
    font-size: 6vw;
    color: var(--font-color);
    line-height: 3.5vw;
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
}

/* about icon  */
.social-tedia {
  display: flex;
  justify-content: space-between;
  width: 220px;
  height: 45px;
  margin-top: 25px;
  margin-right: 0px;
  cursor: default;
}

.social-tedia a {
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  color: var(--main-color);
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 50%;
  z-index: 1;
  cursor: default;
}

.bg-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.bg-icon span {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--gradient-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: animate 1s linear infinite;
  cursor: default;
}

.text-animate {
  width: 22.8rem;
  position: relative;
}

.text-animate h1 {
  font-size: 3.8rem;
  margin-bottom: 0px;
  letter-spacing: 0px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.1vw #770753;
  background: var(--gradient-color-bg);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-position: 0 0;
  transition: 0.6s;
  animation: moveText 3s linear infinite;
  animation-delay: 2s;
}

.text-animate h1::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -3px;
  width: 0;
  height: 70%;
  border-right: 2px solid var(--main-color);
  animation: moveCursorText 3s linear infinite;
  animation-delay: 2s;
}

/*** Case Study ***/
.case-item img {
  transition: 0.5s;
}

.case-item:hover img {
  transform: scale(1.2);
}

.case-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
  z-index: 1;
}

.case-overlay small {
  display: inline-block;
  padding: 3px 15px;
  color: #ffffff;
  background: rgba(20, 24, 62, 0.7);
  border-radius: 25px;
  margin-bottom: 15px;
}

.case-overlay span.btn:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: #ffffff;
}

.container .heading {
  text-align: center;
  padding-bottom: 15px;
  color: #770753;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 50px;
}

.container .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 15px;
}

.container .box-container .box {
  border-radius: 5px;
  text-align: center;
  padding: 30px 20px;
}

.container .box-container .box img {
  height: 80px;
}

.container .box-container .box h3 {
  color: #770753;
  font-size: 22px;
  padding: 10px 0;
}

.container .box-container .box p {
  color: #770753;
  font-size: 15px;
  line-height: 1.8;
}

.container .box-container .box .btn {
  margin-top: 10px;
  display: inline-block;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
}

.container .box-container .box .btn:hover {
  letter-spacing: 1px;
}

.container .box-container .box:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
}

.contextual {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #770753;
  position: relative;
}

.contact-info,
.skills {
  width: 100%;
  background: var(--gradient-white-bg2);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  padding: 1rem;
  border-radius: 10px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #770753;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #edf4fa;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}
.input::placeholder {
  color: #edf4fa;
  font-style: italic;
  font-family: "Poppins";
  font-weight: 400;
}
.input:focus,
textarea:focus {
  color: #000;
  filter: brightness(100%);
  background: #d2e9ff;
  border: 2px solid #f8caca;
}
textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.bunty {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.bunty:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #770753;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #770753;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #770753;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #770753;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #770753, #1d002c);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
    display: none;
  }

  .big-circle {
    display: none;
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
  .container-carousel {
    position: relative;
    width: 100%;
    background: var(--gradient-white-bg2);
    padding: 2vw 12vw;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 3s;
  }
  .inner-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    mix-blend-mode: difference;
    transform: translateX(0);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 3s;
    animation: animateRotate infinite linear 4s;
  }

  @keyframes animateRotate {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
}

@media (max-width: 480px) {
  /* mobile nav responsive */
  .mobile_link {
    font-size: 35px;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(247, 1, 120, 1);
  }
  .drop_link {
    font-size: 6.5vw;
    color: rgba(160, 8, 156, 1);
    text-decoration: none;
    text-transform: uppercase;
  }
  /* mobile nav end  */
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
  .inner-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    mix-blend-mode: difference;
    transform: translateX(0);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 3s;
    animation: animateRotate infinite linear 1s;
  }
  .inner-carousel img {
    width: 130px;
  }
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 30px 30px;
  color: #2f2f2f;
  background-color: #ffff;
}

.footer > * {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 400;
  font-size: 15px;
}
.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  transition: ease 0.3s;
  text-decoration: none;
}
.footer a:hover{
  color: rgba(247, 1, 120, 1);
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: #999;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}

.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}

/* whatsapp icon  */
.whatsapp-button {
  background-image: url("https://infinixdesigns.com/public_html/assets/images/whatsapp.png");
  background-size: cover;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
}

@keyframes effect {
  20%,
  100% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  0%,
  10% {
    width: 55px;
    height: 55px;
    font-size: 35px;
  }

  5% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

#filter-buttons button {
  border-radius: 3px;
  background: tra;
  border-color: transparent;
}

#filter-buttons button:hover {
  background: rgba(99, 13, 178, 1);
}

#filter-buttons button.active {
  color: #fff;
  background: rgba(99, 13, 178, 1);
}

#filterable-cards .card.hide {
  display: none;
}

/* CSS */
.button-28 {
  appearance: none;
  background-color: transparent;
  border: 2px solid #1a1a1a;
  border-radius: 30px;
  box-sizing: border-box;
  color: #3b3b3b;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .button-28 {
    font-size: 1.125rem;
    padding: 10px 10px;
  }
}

/* CSS */
.button-81 {
  background-color: #fff;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #0d172a;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-81:hover {
  background-color: #1e293b;
  color: #fff;
}

@media (min-width: 768px) {
  .button-81 {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }
}

/* CSS */
.button-81 {
  background-color: #fff;
  border: 0 solid #e2e8f0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  color: #0d172a;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #0d172a solid;
  text-decoration-thickness: auto;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: 0.3s ease;
}

.button-81:hover {
  background-color: #1e293b;
  color: #fff;
}

@media (min-width: 768px) {
  .button-81 {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }
}

.trending {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: yellow;
}

.popular {
  color: yellow;
  font-weight: 300;
  font-size: 25px;
  font-family: sans-serif;
}

#most {
  width: 100px;
}

.hover-me {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover-me:hover {
  opacity: 0.5;
}

#XSMAX {
  width: 100%;
  height: 100vh;
  position: relative;
}

.XSMAX-text {
  position: absolute;
  left: 13%;
  top: 42%;
  transform: translate(-13%, -42%);
  line-height: 0;
}

.XSMAX-text h2 {
  font-weight: 500;
  font-size: 30px;
  color: #e0ffff;
}

.XSMAX-text h1 {
  font-size: 70px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.XSMAX-text p {
  font-size: 20px;
  color: #e0ffff;
  margin: 25px 0px 25px;
  line-height: 50px;
}

.XSMAX-text a {
  width: 150px;
  height: 40px;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 200;
  padding: 1rem;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0ffff;
  font-family: "Asap", sans-serif;
}

#XSMAX video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
  z-index: 100;
}

.slide-btn {
  width: 10px;
  height: 10px;
  background: #e0ffff;
  border-radius: 50%;
  cursor: pointer;
}

.slide-btn.active {
  background: #00c2cb;
}

.slide-btn:not(:last-child) {
  margin-right: 20px;
}

.slide-btn:hover {
  transform: scale(1.2);
}

.video-bg {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-bg.active {
  clip-path: circle(150% at 0 50%);
  transition: 1s ease;
  transition-property: clip-path;
}

.main-head {
  background: #0d1440;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  margin-bottom: 0;
  margin-top: 5rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

.pricing-table {
  background: #fff;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border-radius: 4px;
  transition: 0.3s;
}

.pricing-table:hover {
  transition: 0.3s ease-out;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(99, 13, 178, 1);
}

.pricing-table .pricing-label {
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}

.pricing-table h2 {
  color: #3b3b3b;
  font-size: 24px;
  font-weight: 500;
}

.pricing-table h5 {
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 400;
}

.pricing-table .pricing-features {
  margin-top: 2rem;
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
}

.pricing-table .pricing-features .feature {
  font-size: 14px;
  margin: 0.5rem 0;
  color: #b3b3b3;
}

.pricing-table .pricing-features .feature span {
  display: inline-block;
  float: right;
  color: #3b3b3b;
  font-weight: 500;
}

.pricing-table .price-tag {
  margin-top: 2rem;
  text-align: center;
  font-weight: 500;
}

.pricing-table .price-tag .symbol {
  font-size: 24px;
}

.pricing-table .price-tag .amount {
  letter-spacing: -2px;
  font-size: 64px;
}

.pricing-table .price-tag .after {
  color: #3b3b3b;
  font-weight: 500;
}

.pricing-table .price-button {
  display: block;
  color: #fff;
  margin-top: 2rem;
  padding: 0.75rem;
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}

.pricing-table .price-button:hover {
  text-decoration: none;
}

.purple .pricing-label {
  background: #cad2ff;
  color: #627afe;
}

.purple .price-tag {
  color: #627afe;
}

.purple .price-button {
  background: rgba(160, 8, 156, 1);
  color: #fff;
}

.turquoise .pricing-label {
  background: #b9edee;
  color: #44cdd2;
}

.turquoise .price-tag {
  color: #44cdd2;
}

.turquoise .price-button {
  background: #44cdd2;
}

.turquoise .price-button:hover {
  background: #2dbcc4;
}

.red .pricing-label {
  background: #ffc4c4;
  color: #ff5e5e;
}

.red .price-tag {
  color: #ff5e5e;
}

.red .price-button {
  background: #ff5e5e;
}

.red .price-button:hover {
  background: #f23c3c;
}

#more {
  display: none;
}

@media (max-width: 350px) {
  #progress {
    display: none;
  }
}

/* blogs css start  */

.wrapper p {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 17px;
  font-weight: 300;
}

.wrapper h3 {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  font-size: 24px;
}

.wrapper a {
  text-decoration: none !important;
  transition: all 0.5s ease-in-out;
}

.container_blog {
  width: 1320px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
}

.blog_listing .item {
  display: grid;
  gap: 15px;
  z-index: 999;
}

.blog_listing .item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  background: #e9e9e9;
  object-fit: fill;
}

.blog_listing .item p {
  color: #2d2d2d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_listing .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .blog_listing .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
  z-index: 9999;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
  z-index: 9999;
  padding: 0.8vw 0vw;
}
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #e6006d;
  text-decoration: none;
  text-transform: uppercase;
  font-style: italic;
}
ul.breadcrumb li a:hover {
  color: #000;
  text-decoration: underline;
  z-index: 9999;
}

/* FORM CSS */

.open-button {
  background-color: transparent;
  color: #000;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  bottom: 23px;
  right: 28px;
  width: 280px;
  border: 2px solid #000;
  transition: all 0.3s;
}

.open-button:hover {
  background: linear-gradient(
    180deg,
    rgba(247, 1, 120, 1) 0%,
    rgba(160, 8, 156, 1) 51%,
    rgba(99, 13, 178, 1) 100%
  );
  color: #eee;
}

.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

.form-container {
  max-width: 580px;
  padding: 30px;
  background-color: white;
}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.form-container textarea:focus {
  background-color: #eee;
  outline: none;
}

.form-container input[type="text"]:focus,
.form-container input[type="tel"]:focus,
.form-container input[type="email"]:focus {
  background-color: #eee;
  outline: none;
}

.form-container .btn {
  background: linear-gradient(
    180deg,
    rgba(247, 1, 120, 1) 0%,
    rgba(160, 8, 156, 1) 51%,
    rgba(99, 13, 178, 1) 100%
  );
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

.form-container .cancel {
  background-color: red;
}

.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}
/* all back banner */

#banner_page {
  background: url(img/flyer-banner.jpg);
  min-height: 630px;
  background-size: cover;
}
#new-btn {
  width: 140px;
}
#bg_about {
  background: url(img/about-banner.jpg);
  min-height: 520px;
  background-size: cover;
}
#package_banner {
  background: url(img/banner-package-bg.jpg);
  min-height: 700px;
  background-size: cover;
}
#branding_main {
  background: url(img/branding-banner.jpg);
  min-height: 600px;
  background-size: cover;
}
#content_banner {
  background: url(img/contant_writing-banner.jpg);
  min-height: 680px;
  background-size: cover;
}
#digital_mbanner {
  background: url(img/digital_-banner.jpg);
  min-height: 690px;
  background-size: cover;
}
#logo_banner {
  background: url(img/new\ logo\ serv.jpg);
  min-height: 700px;
  background-size: cover;
}
#web_bg {
  background: url(img/bannerwebdeve.jpg);
  min-height: 550px;
  background-size: cover;
}
/* end here  */

/* web development css start here  */
.content {
  position: relative;
}

.screen {
  display: block;
  width: 300px;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 1px;
  margin: 0 auto;
}

.screen img {
  bottom: -1210px;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 0;
  margin: 0;
  padding: 0;
  --webkit-transition: top 11s;
  --moz-transition: top 11s;
  --ms-transition: top 11s;
  --o-transition: top 11s;
}

.screen:hover img {
  bottom: 0;
  -webkit-transition: all 11s;
  -moz-transition: all 11s;
  -ms-transition: all 11s;
  -o-transition: all 11s;
  transition: all 11s;
}
/* end here web development  */

/* blogs page css start here  */
.image_card {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  img {
    position: relative;
  }
}
.card_content {
  position: absolute;
  top: 100px;
  left: 100px;
}

/* end here  */
