* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /*  Simillar  */
  
  section {
    padding: 100px 0;
  }
  
  .max-width ,.container{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
  }
  
  .about,
  .services,
  .skills,
  .projects,
  .contact,
  footer {
    font-family: 'Roboto Condensed',sans-sarif;
  }
  
  .about .about-content,
  .services .serv-content,
  .skills .skills-content,
  .contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    
  }
  
  section .title {
    font-size: var(--f-23);
    font-weight: 500;
    font-family: 'Roboto Condensed',sans-sarif;
  }
  

  /*  Navbar  */
  .navbar {
    position: fixed;
    width: 100%;
    z-index: 100000;
    padding: 10px 0;
    transition: all 0.3s ease;
    background-color: var(--creator-mba);
  }
  
  .navbar.sticky {
    padding: 0;
    background-color: var(--creator-mba);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.075) ;
  }
  
  .navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar .logo a {
    color: var(--white-color);
    font-size: var(--f-35);
    font-weight: 600;
  }
  
  /*  Nav Logo Span Linear-Gradient  */
  .navbar .logo a span {
    background: linear-gradient(135deg, #041d3d, #fff, crimson);
    transition: all 0.3s ease;
  }
  
  .navbar.sticky .logo a span {
    color: var(--white-color);
  }
  
  .navbar .menu li {
    list-style: none;
    display: inline-block;
  }
  /* .active__link {
    position: relative;
    color: var(--active-color) !important;
    font-weight: 700 !important;
  } */
  .navbar .menu li a {
    display: block;
    color: var(--black-color);
    font-size: var(--f-18);
    font-weight: 300;
    margin-left: 25px;
    transition: color 0.3s ease;
  }
 .navbar ul.active li{
    font-weight: 700;
  }
  .header__btn button {
    background: var(--black-outfit);
    color: var(--white-color);
    border: none;
    outline: none;
    padding: 8px 15px;
    border-radius: .4rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
    display: inline-block;
    margin-left: 25px;
  }
  
  .navbar .menu li a:hover {
    color: var(--link-hover);
  }
  
  /* .navbar.sticky .menu li a:hover {
    color: var(--white-color);
  } */
  
  /*  Menu Btn  */
  .menu-btn {
    color: var(--black-color);
    font-size: var(--f-23);
    cursor: pointer;
    display: none;
  }
  
  .scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: var(--black-outfit);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: var(--white-color);
    z-index: 9999;
    font-size: var(--f-30);
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
  }
  
  .scroll-up-btn:hover {
    filter: brightness(90%);
  }
  
  /*  Home  */
 
   .home{
    padding: 100px 0 0 0 !important;
    background-color: var(--creator-mba);
   }
  
  .home .max-width {
    width: 100%;
    display: flex;
  }
  
  .home .max-width .row {
    margin-right: 0;
  }
  .home .home-content{
    display: flex;
    justify-content: space-between;
    padding: 3rem 0 0 0;
    max-width: 1150px;
  }
  .hero_img_content h3 .Line{
    position: relative;
    margin-bottom: 5px;
  }
  .hero_img_content h3 .Line::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--active-color);
  }
  .hero_img_content h2 {
    font-size: 3.4rem;
    line-height: 3.6rem;
    font-weight: 600;
    color: var(--black-color);
  }
  .hero_img_content h2 span{
    color: var(--active-color);
  }
  .description, p {
    font-size: 1rem;
    text-wrap: balance;
    margin: 30px 0;
    font-weight: 300;
}
  .hero_img_content h3{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 5px;
    display: flex;
    gap: 3rem;
  }
  .hero_btn .second_btn {
    background: transparent;
    border: 2px solid var(--active-color);
    color: var(--dark-color);
    outline: none;
    padding: 8px 15px;
    border-radius: .4rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
    display: inline-block;
  }
  .hero_img_content{
    width: 52%;
  }
  .hero-image{
    width: 38%;
  }
  .main_btn{
    background: var(--black-outfit);
    border: 2px solid var(--black-outfit);
    color: var(--white-color);
    outline: none;
    padding: 8px 15px;
    border-radius: .4rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
    display: inline-block;
    margin-left: 20px;
  }
  .main_btn:hover{
    transition: 0.5s ease;
    background-color: var(--black-color) !important;
  }
  .counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
  }
  .counter_div, .social_media ul {
    display: flex;
    align-items: center;
    gap: 1.3rem;
  }
  .social_media ul li{
    list-style: none;
  }
  .social_media ul i {
    font-size: 1.7rem;
    color: var(--black-color);
  }
  .counter_div, .social_media {
    width: 45%;
}
.counter_div span{
  color: var(--black-color) !important;
  font-weight: 300;
}
.counter_div h2, .counter_div h2 span {
  font-family: 'Roboto Condensed',sans-sarif !important;
  font-size: 2rem;
  font-weight: 500;
}
.Bar {
  width: 10%;
  position: relative;
}
.Bar span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 35px;
  background: var(--active-color);
}
  .mba-image {
    padding:  50px;
  }
   
    /*  Services  */
  .services {
    background: radial-gradient(white, #F6F5F5);
    font-family:'Roboto Condensed',sans-sarif;
  }
  .title{
    color: var(--active-color) !important;
  }
  .title-para::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 90%;
    background: var(--active-color);
    z-index: 0;
    left: -10px;
    bottom: 0px;
  
  }
  .title-para{
    font-size: 1.9rem;
    line-height: 2.5rem;
    color: var(--black-color);
    position: relative;
    font-weight: 600;
    margin: 0 0 30px 0;
  }
  .services .mba-about-sec{
    text-align: center;
    
  }
  .services_menu{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
  }
  .services_item:first-child {
    background: var(--active-color);
  }
  .services_item {
    width: 31%;
    background: var(--creator-mba);
    border-radius: 7px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all .5s ease-in-out;
}
.services_item:first-child .services_icon {
  background: var(--white-color);
}
.services_icon {
  background: var(--active-color);
    padding: 10px 16px;
    border-radius: 2rem;
}
.services_item:hover {
  position: relative;
  top: -5px;
  transition: all .5s ease-in-out;
}
.services_item:first-child .services_icon i {
  color: var(--black-color);
}
.services_icon i {
  color: var(--white-color);
  font-size: 1.5rem;
}
.services_title_content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.services_item:first-child .services_title_content h4, .services_item:first-child .services_title_content p {
  color: var(--white-color);
}
.services_title_content h4 {
  font-size: 1.3rem;
  color: var(--black-color);
}
.services_title_content p {
  flex-wrap: wrap;
  font-size: 1rem;
  margin: 15px 0 !important;
  color: #727272;
  text-align: left;
}
  /*  About  */
  
  .vide {
    position: absolute;
    background: #b8b8b3c7;
    width: 90%;
    height: 100%;
    transform: rotate(-5deg);
  }
  .AboutImg img {
    width: 90%;
    transform: rotate(5deg);
  }
  .AboutImg{
    width: 80%;
    position: relative;
    height: fit-content;
  }
  .tab-content{
    padding: 80px 0;
  } 
  .timeline{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .Education_Experience {
    width: 45%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}
.Education_Experience h3 {
  font-size: 1.5rem;
  color: var(--active-color);
  position: relative;
}
.Desc {
  padding: 20px 30px;
  background-color: var(--light-grey);
  position: relative;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
}
.Desc::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  border-right: 4px solid var(--active-color);
  border-top: 4px solid var(--active-color);
  border-radius: 50%;
  right: -7px;
  top: -7px;
  z-index: -1;
}
.Desc h4 {
  color: var(--active-color);
  font-size: 1.2rem;
}
.Desc small {
  color: var(--small-text);
  font-weight: 300;
  font-size: 1rem;
}
.skills-div{
    background: var(--soft-grey);
}
.skills-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: auto;
  padding: 30px 0;
}
.skills_item {
  flex: 1 0 auto;
  flex-basis: 150px;
  text-align: center;
}
.skills_item div {
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 20px;
  border-radius: 1rem;
}
.skills_item div i {
  font-size: 3rem;
  color: var(--black-color);
  cursor: pointer;
}
.skills_item div h4 {
  color: var(--black-color);
  font-size: 1.4rem;
}
.skills_item h5 {
  color: var(--black-color);
  font-size: 1.4rem;
  margin: 5px 0;
}
.skills_item div:hover i, .skills_item div:hover h4 {
  color: var(--active-color);
  transition: .5s;
  cursor: pointer;
}

  /*  Work  */
  .works-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .work-item{
    background: var(--white-color);
    border-radius: 1rem;
    border-top-right-radius: 0;
    cursor: pointer;
    position: relative;
    width: 48%;
    overflow: hidden;
  }
  .work-item:hover img {
    filter: blur(2px);
  }
  .work_category{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 7;
    /* width: 6rem; */
    background: var(--white-color);
    border-bottom-left-radius: 1.5rem;
    padding: 5px;
    border: 5px solid var(--white-color);
    border-top: none;
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
  }
  .work_category button {
    padding: 5px 8px;
    font-size: .7rem;
    font-weight: normal;
    background: var(--white-color);
    border: 1px solid var(--active-color);
    border-radius: 1.5rem;
  }
  .work_category::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid var(--white-color);
    background: transparent;
    top: -5px;
    left: -24px;
    border-top-right-radius: 70%;
    border-left: none;
    border-bottom: none;
}
  .work_category::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    bottom: -24px;
    right: -5px;
    border-top-right-radius: 70%;
    border: 5px solid var(--white-color);
    border-left: none;
    border-bottom: none;
}
.work_title_hover {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 16px;
  background: var(--active-color);
  border-radius: 1rem;
  transition: bottom 0.4s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work_title_hover div a:hover {
  color: var(--black-color);
  transition: .5s;
}
.work_title_hover div a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-color);
}
.work_title_hover h2 {
  color: var(--white-color);
  font-size: 1.8rem;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  transition: filter 0.3s ease;
}
.work_title_hover div h4 {
  font-size: 1rem;
  font-weight: 400;
}
.work-item:hover .work_title_hover {
  bottom: 10%;
}
  
  /*  Blogs  */
  .blogs{
    background-color: var(--creator-mba);
    text-align: center;
  }
  .blog-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .blog_item {
    width: 30%;
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    height: 300px;
    overflow: hidden;
  }
  .Badge {
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px 20px;
    background: var(--active-color);
    color: var(--white-color);
    padding: 5px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
  }
  .blog_item img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}
.blog_title {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 85%;
  background: var(--active-color);
  padding: 8px 10px;
  border-radius: 12px;
}
.blog_date {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 10px;
  color: var(--white-color);
  flex-wrap: wrap;
  font-weight: 500;
  justify-content: space-between;
}
.blog_title h2{
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.blog_title h2 a{
  color: #fff 
  !important;
}
.blog_item img:hover {
  transform: scale(1.1);
}
  
  /*  Faq  */
  .contact-info{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .form, .contact__right {
    flex-grow: 1;
    flex-basis: 350px;
    position: relative;
  }
  .contact__right .blur4 {
    position: absolute;
    box-shadow: 0 0 1000px 40px var(--active-color);
    z-index: -3;
    top: 0%;
    right: 0%;
  }
  .contact__right ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
  }
  .contact__right ul li .iconcontact {
    background: var(--active-color);
    color: var(--white-color);
    padding: 10px 16px;
    border-radius: 100%;
    font-size: 1.3rem;
}
.contact__right ul li .infos__contact {
  width: 100%;
  color: var(--black-color);
}
.contact__right ul li .infos__contact h5, .contact__right ul li .infos__contact small {
  font-size: 1rem;
}
  form .input {
    margin: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  form .input input, form .input textarea {
    padding: 15px 12px;
    border-radius: 7px;
    outline: none;
    width: 100%;
    background: transparent;
    border: 1px solid #d2d2d2;
    color: var(--black-color);
  }


  .mba-btn1 {
    font-family: 'Roboto Condensed',sans-sarif;
    font-size: var(--f-18);
    font-weight: 700;
    line-height: 1.5;
    display: inline-block;
    margin: 8px 8px 0 0;
    padding: 9.5px 30px;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.25px;
    color: var(--white-color);
    border: 2px solid var(--black-color);
    border-radius: 25px;
    background-color: var(--black-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: normal;
}
.footer-content{
  text-align: center;
  color: var(--small-text);
  font-weight: 400;
  font-size: 16px;
  padding: 30px 0;
  border-top: 1px solid;
}
  /*  Media Query  */
  @keyframes pulsate {
    0% {
      box-shadow: 0 0 25px #888e8d, 0 0 50px #1e3551;
    }
  }
  
  @media (max-width: 1104px) {
    .about .about-content .left img {
      height: 350px;
      width: 350px;
    }
    section .title::after {
      bottom: -8px;
      font-size: var(--f-1);
    }
  }
  
  @media (max-width: 991px) {
    .social-menu ul li a {
      left: 114px;
    }
    .title-mba h1 {
      font-size: var(--f-28) !important;
      text-align: center;
    }
    .home .home-content .title-mba p{
      padding: 30px 20px !important;
    }
    .inside .inside-content .title-mba p{
      padding: 30px 0px !important;
    }
    .home .home-content .title-mba p {
      font-size: var(--f-18);
    }
    .home .home-content{
      flex-direction: column;
    }
    
  .hero_img_content{
    width: 100%;
    text-align: center;
  }
  .hero_img_content h2 {
    font-size: 2.2rem;
}
.description, p {
  text-align: justify !important;
}
.main_btn{
  margin-top: 20px;
}
.counter_div,.social_media{
  width: 45%;
}
.counter_div, .social_media ul {
  gap: 0rem;
}
.counter_div h2,.counter_div h2 span {
  font-size: 1rem !important;
}
  .hero-image{
    width: 100%;

  }
  .services_menu {
    flex-direction: column;
}
.services_item {
  width: 100%;
}
.Education_Experience {
  width: 100%;
}
.timeline{
  flex-direction: column;
}
.AboutImg{
  width: 100%;
  margin-bottom: 40px;
}
.work-item {
  width: 100%;
}
.blog_item {
  width: 100%;
}
  }
  
  @media (max-width: 947px) {
    section {
      padding: 20px 0;
    }
    .fit-unfit {
      margin: 0px 0 30px 0px;
      max-height: 100%;
    }
    .fit-unfit h3 {
      font-size: var(--f-18);
    }
    .pricing .title {
      font-size: var(--f-170);
    }
    .call-div h2 {
      text-align: center;
      font-size: var(--f-23);
      color: var(--white-color);
    }
    .inside-im img {
      margin-right: 0px;
    }
    .testim-card {
      margin-right: 0px;
    }
    .card-content-inside h2 {
      font-size: var(--f-23);
    }
    .card-image-sec img{
      width: 100%;
      height: 100%;
      margin: 20px 0;
    }
    .inside .inside-content {
      padding: 0;
  }
    .inside .inside-content .title-mba p {
      font-size: var(--f-18);
      text-align: justify;
   }
   .card-image-sec {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
  .card-content-inside {
    padding: 0px;
    margin: 0;
  }
    .container{
      padding: 0 !important;
    }
    .mba-about-sec p {
      font-size: var(--f-1);
      text-align: justify;
    }
    .block-box img {
      width: 50px;
  }
  .block-content {
    padding: 6px;
  }
  .block-content h2 {
    font-size: var(--f-18);
}
.block-content p {
  font-size: var(--f-1);
  text-align: justify !important;
}
    .menu-btn {
      display: block;
      z-index: 999;
    }
    .menu-btn i.active:before {
      content: "\f00d";
    }
    .navbar .menu {
      position: fixed;
      height: 100vh;
      width: 100%;
      left: -100%;
      top: 0;
      background: var(--creator-mba);
      text-align: center;
      padding-top: 80px;
      transition: all 0.3s ease;
    }
    .navbar .menu.active {
      left: 0;
    }
    .navbar .menu li {
      display: block;
      line-height: 1.2;
    }
    .navbar .menu li a {
      display: inline-block;
      margin: 20px 0;
      font-size: var(--f-23);
    }
    .home .home-content .text-2 {
      font-size: 70px;
    }
    .home .home-content .text-3 {
      font-size: 35px;
    }
    .home .home-content a {
      font-size: var(--f-23);
      padding: 10px 6px;
    }
    .max-width {
      max-width: 930px;
    }
    .about .about-content .column {
      width: 100%;
    }
    .about .about-content .left {
      display: flex;
      justify-content: center;
      margin: 0 auto 60px;
    }
    .about .about-content .right {
      flex: 100%;
    }
    .services .serv-content .card {
      width: calc(50% - 10px);
      margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column {
      width: 100%;
      margin-bottom: 35px;
    }
  }
  
  @media (max-width: 690px) {
   
    .max-width {
      padding: 0 23px;
    }
    .home .home-content .text-2 {
      font-size: var(--f-60);
    }
    .home .home-content .text-3 {
      font-size: var(--f-30);
    }
    .home .home-content a {
      font-size: var(--f-14);
    }
    .mba-image {
      padding: 10px;
    }
    .mba-about-sec h3 {
      font-size: var(--f-23);
    }
    .services .serv-content .card {
      width: 100%;
    }
  }
  
  @media (max-width: 500px) {
    .home .home-content .text-2 {
      font-size: 50px;
    }
    .home .home-content .text-3 {
      font-size: var(--f-28);
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text {
      font-size: var(--f-20);
    }
    .contact .right form .fields {
      flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email {
      margin: 0;
    }
    .right form .error-box {
      width: 150px;
    }
    .scroll-up-btn {
      right: 15px;
      bottom: 15px;
      height: 38px;
      width: 35px;
      font-size: var(--f-23);
      line-height: 38px;
    }
  }
  