@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}
button:focus{
  box-shadow: none;
}
.form-control:focus{
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none !important;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
  /* border: 1px solid #fff; */
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 10px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
  transition: 1s;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
}

.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--bs-primary);
}

@media (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 0;
  }

  .navbar .navbar-nav .nav-item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .navbar .navbar-nav .nav-btn {
    display: flex;
    justify-content: start;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    background: var(--bs-light);
    border-radius: 10px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .nav-btn {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-light);
    border-radius: 10px;
  }

  .navbar .navbar-nav .nav-btn {
    width: 100%;
    display: flex;
    margin-left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 20px;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
  }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--bs-light);
  color: var(--bs-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  right: 50%;
  transform: translateX(-50%);
  margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-secondary);
  color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }

  .header-carousel .header-carousel-item {
    height: 1300px;
  }
}

@media (max-width: 767px) {
  .header-carousel .header-carousel-item {
    height: 950px;
  }

  .header-carousel .owl-nav .owl-prev {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: #015a6e;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 60px 0 60px 0; */
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

/* .feature .feature-item:hover {
  background: var(--bs-primary);
} */

.feature .feature-item .feature-icon {
  position: relative;
  width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

/* .feature .feature-item:hover .feature-icon i {
  z-index: 9;
} */

.feature .feature-item .feature-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-secondary);
  transition: 0.5s;
  z-index: 1;
}



.feature .feature-item .feature-icon {
  color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
  transition: 0.5s;
}



/*** Feature End ***/

/*** Service Start ***/
.service .service-item {
  border-radius: 10px;
}
.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service .service-item .service-img img {
  transition: 0.5s;
}


.service .service-item .service-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(1, 95, 201, 0.2);
  transition: 0.5s;
  z-index: 1;
}



.service .service-item .service-img .service-icon {
  position: absolute;
  width: 70px;
  bottom: 0;
  right: 25px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--bs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 9;
}

.service .service-item .service-img .service-icon i {
  color: var(--bs-primary);
  transition: 0.5s;
}





.service .service-content {
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
  position: relative;
  z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
  transition: 0.5s;
}





.service .service-item .service-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

/*** Service End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-white);
  background: var(--bs-primary);
  font-size: 18px;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--bs-primary);
  background: var(--bs-light);
}
/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover .blog-content {
  background: var(--bs-white);
}

.blog .blog-item .blog-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}





.blog .blog-item .blog-img .blog-categiry {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  display: inline-flex;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 9;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
  color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-bottom: -100%;
  transition: 0.5s;
  z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
  margin-bottom: 0;
}

.team .team-item .team-title {
  color: var(--bs-white);
  background: var(--bs-primary);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item .team-title h4 {
  color: var(--bs-white);
}

.team .team-item:hover .team-title {
  background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-top: 58px;
  margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-img {
  position: relative;
}

.contact .contact-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  animation-name: image-efects;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 0.5s;
}

@keyframes image-efects {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
  }

  50% {
    border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
  }

  75% {
    border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.contact .contact-img .contact-img-inner {
  position: relative;
  z-index: 9;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-secondary);
  color: var(--bs-light);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}
.footer .footer-item img {
  width: 200px;
}
.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-light);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
  position: relative;
  overflow: hidden;
}

.footer .footer-item .footer-instagram img {
  transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
  transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
  background: var(--bs-light);
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-white);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: var(--bs-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--bs-light);
}
/*** copyright end ***/


/*** Client Section  ***/
.client-section .client-item{
  border: 1px solid #ddd;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.client-section .client-item img{
  max-width: 100%;
}




/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}




/* --------------- How we Work -------------- */

.work-process {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.work-process .process-wrap {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 70vw;
}

.work-process .process-wrap:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.work-process .process-wrap:nth-child(2n+1) .process-icon {
  border-radius: 0 6px 6px 0;
}
.work-process .process-wrap:nth-child(2n+1) .process-content {
  border-radius: 6px 0 0 6px;
}

.work-process .process-title {
  font-size: 1.7rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.work-process .process-content {
  padding: 20px;
  box-shadow: 0 15px 30px -24px rgba(50, 50, 93, 0.25), 
              0 9px 18px -36px rgba(0, 0, 0, 0.3), 
              0 -24px 18px -16px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(70vw - 84px);
  border-radius: 0 6px 6px 0;
  border: 1px solid #f7f7f7;
}
.work-process .process-icon {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}


.work-process .process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  border-radius: 100%;
  width: 40px;
  padding: 40px;
  height: 40px;
  position: relative;
  font-size: 32px;
}

.work-process .process-wrap:nth-child(2n+1) .process-step:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #bc005e9c;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop .5s forwards 1s ease-in-out;
          animation: fillTop .5s forwards 1s ease-in-out;
}
.work-process .process-wrap:nth-child(2n+1) .process-step:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #bc005e9c;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft .5s forwards 1s ease-in-out;
          animation: fillLeft .5s forwards 1s ease-in-out;
}

.work-process .process-step:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #bc005e9c;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop .5s forwards 1s ease-in-out;
          animation: fillTop .5s forwards 1s ease-in-out;
}
.work-process .process-step:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #bc005e9c;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd .5s forwards 1s ease-in-out;
          animation: fillLeftOdd .5s forwards 1s ease-in-out;
}
.work-process .process-description {
  flex-basis: 60%;
}





.work-process .style1 .process-title {
  color: var(--bs-primary);
}
.work-process .style1:after {
  background: #8e55c0;
}
.work-process .style1 .process-step {
  background: var(--bs-primary);
  color: var(--bs-white);
}
.work-process .style1 .process-step:before, .work-process .style1 .process-step:after {
  background: var(--bs-primary);
}
.work-process .style1:nth-child(2n+1) .process-step:before, .work-process .style1:nth-child(2n+1) .process-step:after {
  background: var(--bs-primary);
}
.work-process .style1 .process-icon {
  color: #e1e4fa;
  background: var(--bs-primary);  
}

.work-process .style2 .process-title {
  color: var(--bs-secondary);
}
.work-process .style2:after {
  background: #8e55c0;
}
.work-process .style2 .process-step {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
.work-process .style2 .process-step:before, .work-process .style2 .process-step:after {
  background: var(--bs-secondary);
}
.work-process .style2:nth-child(2n+1) .process-step:before, .work-process .style2:nth-child(2n+1) .process-step:after {
  background: var(--bs-secondary);
}
.work-process .style2 .process-icon {
  color: #e1e4fa;
  background: var(--bs-secondary);  
}








.process-wrap:last-child .process-step:before {
  content: none;
}

@media (max-width: 786px) {
  .work-process .process-wrap {
    flex-direction: column;
    align-self: center;
    width: 90%;
  }
  .work-process .process-content {
    width: 100%;
  }
  .work-process .process-step {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
    padding:25px
  }
  .work-process .process-step:before, .work-process .process-step:after {
    display: none;
  }
  .work-process .process-icon {
    border-radius: 0;
    padding: 15px;
  }
  .work-process .process-wrap:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .work-process .process-wrap:nth-child(2n+1) .process-icon {
    border-radius: 0;
    padding: 20px;
  }
  .work-process .process-wrap:nth-child(2n+1) .process-step {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}


/* Our Mission */
.our-mission{
  padding: 70px 0;
}
.our-mission .card{
  border-bottom: 4px solid var(--bs-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
  margin-bottom: 10px;
  padding: 20px 10px;
}
.our-mission .card h4{
  color: var(--bs-primary);
  font-size: 1.7rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
}


/* 404 page */

.error-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.error-section .card {
 
  text-align: center;
    border-radius: 8px;
    
}
.error-section .error-code {
  font-size: 6rem;
  font-weight: bold;
  color: #343a40;
}
.error-section .error-message {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.error-section  .btn{
  border-radius: 25px;
  padding: 10px 35px;
}


/* Success Section */

.success-section {
  text-align: center;
  padding: 50px 0;
 
}
.success-section .card {
 text-align: center;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.success-section .success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background-color: #ebfff0;
  color: #28a745;
  font-size: 5rem;
  border-radius: 50%;
  margin: 0 auto;

}
.success-section .card-title {
  margin-top: 2.5rem;
  font-size: 2.5rem;
  color: #333333;
}
.success-section .card-text {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}
.success-section .btn-done {
  background-color: var(--bs-primary);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
}
.success-section .btn-done:hover {
  background-color: var(--bs-secondary);
}




/* unsubscribe page */

.unsubscribe-section {
  text-align: center;
  padding: 50px 0;
}
.unsubscribe-section .card {
  background-color: #fff;
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.unsubscribe-section .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background-color: #ffcdd5;
  color: var(--bs-primary);
  font-size: 5rem;
  border-radius: 50%;
  margin: 0 auto;
}
.unsubscribe-section .icon-container i {
  font-size: 80px;
}
.unsubscribe-section .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #333;
}
.unsubscribe-section .card-text {
  color: #6c757d;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.unsubscribe-section .btn-unsubscribe {
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  margin-right: 0.5rem;
}
.unsubscribe-section .btn-unsubscribe:hover {
  background-color: var(--bs-secondary);
}
.unsubscribe-section .btn-cancel {
  background-color: #e0e0e0;
  color: #6c757d;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
}
.unsubscribe-section .btn-cancel:hover {
  background-color: #d3d3d3;
}