:root {
  --primary-color: #15161b;
  --secondary-color: #f7f8fd;
  --text-color: #616161;
  --accent-color: #0a2adb;
  --white-color: #ffffff;
  --divider-color: #e1e4eb;
  --error-color: rgb(230, 87, 87);
  --default-font: "Manrope", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  scroll-behavior: smooth;
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1em;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  margin-top: 20px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
  padding-left: 0;
  padding-right: 0;
}

.btn-default {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--white-color);
  background: var(--accent-color);
  text-transform: capitalize;
  padding: 15px 65px 15px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media(max-width: 600px){
  .btn-default {
    padding: 15px 45px 15px 20px;
  }
}

.btn-default::before {
  content: "\f062";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--white-color);
  transform: translate(-20px, -50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-default:hover:before {
  color: var(--accent-color);
  transform: translate(-20px, -50%) rotate(90deg);
}

.btn-default::after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: var(--white-color);
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}

.btn-default:hover::after {
  width: 100%;
}

.btn-default:hover {
  color: var(--accent-color);
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 10px !important;
  height: 10px !important;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: radial-gradient(circle, #e0eafc, #cfdef3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 300px;
  position: relative;
  width: 300px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  transform: translate(-50%, -50%);
}

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

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

.section-row {
  margin-bottom: 60px;
}

.section-btn {
  text-align: end;
}

.section-title {
  text-align: left;
}

.section-title h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.section-title h1,
.section-title h2 {
  font-size: 70px;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 100;
}

header.main-header .header-sticky {
  padding: 25px 0;
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--divider-color);
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--divider-color);
  transform: translateY(0);
  background: var(--white-color);
  backdrop-filter: blur(30px);
}

.navbar {
  padding: 0;
  align-items: center;
  /* background: #0064ff; */
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  min-width: 140px;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 10px;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 10px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 210px;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 20px;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 6px 0 0;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: var(--secondary-color) url(../images/hero-bg.png) no-repeat bottom
    center;
  padding: 50px 0 !important;
}

.hero-content {
  margin-right: 95px;
}

.hero-content .section-title {
  margin-bottom: 30px;
}

.hero-body {
  width: 100%;
  max-width: 568px;
  margin-bottom: 40px;
}

.hero-body p {
  margin: 0;
}

.hero-image img {
  border-radius: 40px;
}

.hero-video-image {
  position: relative;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: max-content;
}

.hero-play-button i {
  font-size: 26px;
  background-color: var(--accent-color);
  color: var(--white-color);
  width: 90px;
  height: 90px;
  border: 7px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.hero-slider-image img {
  border-radius: 40px;
}

.hero-slider .swiper-pagination {
  position: relative;
  bottom: 0px;
  margin-top: 20px;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-layout-2 {
  text-align: center;
}

.hero-layout-2 .hero-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-layout-2 .section-title {
  text-align: center;
}

.hero-layout-2 .section-title h1 {
  font-size: 100px;
}

.hero-layout-2 .hero-body {
  width: 100%;
  max-width: 568px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.hero-layout-2 .hero-footer .btn-default {
  margin-right: 20px;
}

.hero-layout-2 .hero-footer .btn-default:last-child {
  margin-right: 0;
}

/* >>>>>>>>>>>><<<<<<<<<<<< */

.hero-video-image {
  position: relative;
  z-index: 1;
  top: 100px;
}

.hero-video-image .hero-image img {
  position: absolute;
}

.hero-video-image .hero-image img:nth-child(1) {
  top: -169px;
  right: -30px;
  left: 0;
  margin: auto;
}

.hero-video-image .hero-image img:nth-child(2) {
  top: -352px;
  right: -50px;
  left: 0;
  margin: auto;
}

.hero-play-button img {
  position: relative;
  top: -114px;
  left: -25px;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

/************************************/
/***       05. About us css	      ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-image {
  position: relative;
  padding-right: 70px;
}

.about-img img {
  border-radius: 40px;
}

.about-consultation {
  position: absolute;
  top: 50%;
  right: -1%;
  transform: translateY(-50%);
  z-index: 1;
}

.about-consupltation img {
  animation: rotate 30s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-content ul {
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.about-content ul li {
  width: 48%;
  margin-right: 2%;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.about-content ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  left: 0;
}

/************************************/
/***        06. Services css	  ***/
/************************************/

.our-services {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}

.service-item {
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.service-content {
  padding: 20px;
}

.service-content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.service-content-title h2 {
  font-size: 26px;
  width: 100%;
  max-width: 200px;
  text-transform: capitalize;
}

.service-content-title a {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.service-content-title a img {
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content-title img {
  transform: rotate(45deg);
}

.service-content p {
  margin: 0;
}

.service-image {
  border-radius: 30px;
  overflow: hidden;
}

.service-image img {
  border-radius: 30px;
  transition: all 0.5s ease-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

/************************************/
/***      07. Portfolio css	      ***/
/************************************/

.our-work {
  padding: 100px 0 70px;
}

.works-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 20px 20px 40px 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.works-image {
  margin-bottom: 30px;
  border-radius: 30px;
  overflow: hidden;
}

.works-image img {
  border-radius: 30px;
  transition: all 0.5s ease-out;
}

.works-item:hover .works-image img {
  transform: scale(1.1);
}

.works-content {
  padding: 0 20px;
}

.works-content h2 {
  font-size: 26px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.works-content p {
  margin: 0;
}

/************************************/
/***    08. Why Choose us css	  ***/
/************************************/

.why-choose-us {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.why-choose-us-item {
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.why-choose-us-item .icon-box {
  margin-bottom: 30px;
}

.why-choose-us-item h3 {
  font-size: 26px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.why-choose-us-item p {
  margin: 0;
}

.why-us-explore-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 70px;
}

.why-us-explore-item .section-title {
  width: 100%;
  /* max-width: 800px; */
  margin-bottom: 60px;
}
.premiumSection {
  font-size: 40px !important;
  font-weight: 700;
  line-height: 1.3;
}
.explore-item-icon {
  position: absolute;
  top: 35px;
  right: 70px;
}

.explore-item-content p {
  margin: 0;
}

.explore-item-tags {
  text-align: end;
}

.explore-item-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.explore-item-tags ul li {
  display: inline-block;
  margin-right: 20px;
}

.explore-item-tags ul li:last-child {
  margin-right: 0;
}

.explore-item-tags ul li .btn-default {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}

.explore-item-tags ul li .btn-default:hover {
  color: var(--white-color);
}

.explore-item-tags ul li .btn-default::before {
  color: var(--primary-color);
}

.explore-item-tags ul li .btn-default:hover:before {
  color: var(--white-color);
}

.explore-item-tags ul li .btn-default::after {
  background: var(--accent-color);
}

/************************************/
/***    09. Our Clients css       ***/
/************************************/

.exclusive-partners {
  padding: 100px 0;
}

.partners-logo {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px 50px;
  margin-bottom: 30px;
}

/************************************/
/***    10. Testimonials css      ***/
/************************************/

.clients-testimonials {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.testimonial-item {
  background-color: var(--white-color);
  border-radius: 40px;
  padding: 50px;
  height: 100%;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-body {
  display: flex;
  align-items: center;
}

.testimonial-body img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-author-title h2 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.testimonial-author-title p {
  margin: 0;
}

.testimonial-slider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/************************************/
/***    11. Latest Post css       ***/
/************************************/

.latest-news {
  padding: 100px 0 70px;
}

.blog-item {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  border-radius: 40px;
  overflow: hidden;
}

.post-featured-image img {
  border-radius: 40px;
  transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-body {
  margin: 20px;
}

.post-item-body h2 {
  display: block;
  line-height: 1.4em;
  font-size: 22px;
}

.post-item-body p {
  margin-bottom: 15px;
}

.post-item-body p a,
.post-item-body h2 a {
  color: inherit;
}

.post-item-body .btn-readmore {
  position: relative;
  color: var(--accent-color);
  text-transform: capitalize;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

.post-item-body .btn-readmore:hover {
  color: var(--primary-color);
}

.post-item-body .btn-readmore::before {
  content: "\f062";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font-family: "FontAwesome";
  font-size: 16px;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--accent-color);
  transform: translate(20px, -50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-item-body .btn-readmore:hover:before {
  color: var(--primary-color);
  transform: translate(20px, -50%) rotate(90deg);
}

/************************************/
/***        12. Footer css        ***/
/************************************/

.main-footer {
  background-color: var(--secondary-color);
  padding: 80px 0 0;
}

.mega-footer {
  margin-bottom: 40px;
}

.footer-about img {
  margin-bottom: 30px;
}

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

.footer-about ul li {
  margin-bottom: 15px;
}

.footer-about ul li:last-child {
  margin-bottom: 0;
}

.footer-about ul li a {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-links h2 {
  font-size: 22px;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover {
  color: var(--accent-color);
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
}

.footer-copyright {
  padding: 20px 0;
  border-top: 1px solid var(--divider-color);
}

.footer-copyright-text p {
  margin: 0;
}

.footer-policy-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}

.footer-policy-links ul li {
  display: inline-block;
  text-transform: capitalize;
  margin-right: 30px;
}

.footer-policy-links ul li:last-child {
  margin-right: 0;
}

.footer-policy-links ul li.highlighted {
  font-weight: 700;
}

.footer-policy-links ul li a {
  color: var(--text-color);
}

/************************************/
/***    13. About us page css     ***/
/************************************/

.page-header {
  position: relative;
  background: var(--secondary-color);
  padding: 180px 0;
}

.page-header::before {
  content: "";
  position: absolute;
  background-image: url(../images/page-header-bg.webp);
  background-repeat: no-repeat;
  background-position: top right;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-header-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-box h1 {
  font-size: 70px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.page-header-box ol {
  display: inline-flex;
  margin-bottom: 0;
  justify-content: center;
  border: 2px solid var(--accent-color);
  border-radius: 100px;
  padding: 6px 20px;
}

.page-header-box ol li.breadcrumb-item {
  color: var(--accent-color);
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent-color);
}

.page-about {
  padding: 100px 0;
}

.page-about-image {
  position: relative;
  margin-right: 20px;
  padding-bottom: 75px;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-img-1 img {
  border-radius: 40px;
}

.about-img-2 img {
  border-radius: 40px;
  border: 5px solid var(--white-color);
}

.work-experience {
  position: absolute;
  top: 30px;
  left: -50px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 20px;
}

.work-experience-icon {
  margin-right: 15px;
}

.work-experience-content h3 {
  font-size: 40px;
  color: var(--white-color);
  text-align: left;
  margin-bottom: 5px;
}

.work-experience-content p {
  font-size: 18px;
  color: var(--white-color);
  margin: 0;
}

.page-about .about-content .section-title {
  margin-bottom: 30px;
}

.overview-company {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}

.counter-box {
  background-color: var(--white-color);
  border-radius: 40px;
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.counter-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.7em;
}

.counter-box h3 em,
.counter-box h3 span {
  font-size: 56px;
  font-style: normal;
  padding: 0;
  margin: 0;
}

.counter-box p {
  margin: 0;
}

.our-team {
  padding: 100px 0 70px;
}

.team-member-item {
  margin-bottom: 30px;
}

.team-member-item .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
}

.team-member-item .team-image img {
  width: 100%;
  border-radius: 40px;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-image .our-team-social-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 2;
}

.team-member-item:hover .team-image .our-team-social-icon {
  bottom: 0;
  opacity: 1;
}

.our-team-social-icon ul {
  list-style-type: none;
  padding: 0 20px 30px;
  margin: 0;
  text-align: center;
}

.our-team-social-icon ul li {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.our-team-social-icon ul li:last-child {
  margin-right: 0;
}

.our-team-social-icon ul li a {
  display: block;
}

.our-team-social-icon ul li a i {
  background: var(--accent-color);
  border-radius: 8px;
  color: var(--white-color);
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.our-team-social-icon ul li a i:hover {
  background: var(--white-color);
  color: var(--accent-color);
}

.team-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.team-content {
  width: calc(100% - 60px);
}

.team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-content p {
  margin: 0;
}

.team-icon a {
  background: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.scrolling-ticker {
  padding: 15px 0;
  color: var(--white-color);
  background-color: var(--accent-color);
}

.scrolling-ticker-box {
  --gap: 20px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 24s linear infinite;
}

.scrolling-content span {
  display: inline-flex;
  align-items: center;
  font-family: var(--accent-font);
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 700;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scrolling-content span i {
  font-size: 8px;
  color: var(--white-color);
  margin-right: 20px;
}

.clients-testimonials.about-testimonials {
  background-color: var(--white-color);
}

.clients-testimonials.about-testimonials .testimonial-item {
  background-color: var(--secondary-color);
}

.clients-testimonials.about-testimonials
  .testimonial-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  background: var(--secondary-color);
}

.clients-testimonials.about-testimonials
  .testimonial-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/************************************/
/***    14. Services Page css     ***/
/************************************/

.our-services.page-service {
  background-color: var(--white-color);
}

.our-services.page-service .service-item {
  background-color: var(--secondary-color);
}

.our-services.service-page {
  background-color: var(--white-color);
}

.our-services.service-page .service-item {
  background-color: var(--secondary-color);
}

/************************************/
/***    15. Portfolio Page css    ***/
/************************************/

.our-projects {
  padding: 100px 0 70px;
}

.our-projects-nav {
  margin-bottom: 50px;
}

.our-projects-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.our-projects-nav ul li {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-transform: capitalize;
  padding: 15px 20px 15px 20px;
  margin-right: 20px;
  border-radius: 100px;
  transition: 0.4s ease-in-out;
}

.our-projects-nav ul li:last-child {
  margin-right: 0;
}

.our-projects-nav ul li:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.our-projects-nav ul li a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  color: inherit;
}

/************************************/
/***     16. Blog Archive css     ***/
/************************************/

.latest-news.our-blog {
  padding: 100px 0;
}

.post-pagination {
  margin-top: 30px;
  text-align: center;
}

.post-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
}

/************************************/
/***   17. Contact Us Page css    ***/
/************************************/

.contact-information {
  padding: 100px 0 50px;
}

.contact-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 20px;
  height: 100%;
}

.contact-content {
  padding: 20px;
}

.contact-content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.contact-content-title h2 {
  font-size: 26px;
  text-transform: capitalize;
}

.contact-content-title a {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.contact-item p {
  width: 100%;
  max-width: 280px;
  margin: 0;
}

.contact-image {
  border-radius: 30px;
  overflow: hidden;
}

.contact-image img {
  border-radius: 30px;
  transition: all 0.5s ease-out;
}

.contact-item:hover .contact-image img {
  transform: scale(1.1);
}

.contact-us {
  padding: 50px 0;
}

.contact-details .section-title {
  margin-bottom: 30px;
  width: 100%;
  max-width: 525px;
}

.contact-detail-body p {
  margin-bottom: 35px;
}

.contact-detail-body h3 {
  font-size: 40px;
  text-transform: capitalize;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
}

.contact-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail-body ul li {
  display: inline-block;
  margin-right: 12px;
}

.contact-detail-body ul li:last-child {
  margin-right: 0;
}

.contact-detail-body ul li a {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.contact-detail-body ul li a:hover {
  background-color: var(--white-color);
}

.contact-detail-body ul li a i {
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.contact-detail-body ul li a:hover i {
  color: var(--accent-color);
}

.contact-form-box {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
}

.contact-form .form-control {
  background-color: var(--white-color);
  border-radius: 10px;
  border: none;
  box-shadow: none;
  padding: 12px 20px;
}

.contact-form .form-control::placeholder {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.help-block.with-errors ul {
  margin-bottom: 0;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.google-map {
  padding: 50px 0 100px;
}

.google-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  filter: grayscale(100%);
  transition: all 0.3s ease-out;
}

.google-map iframe:hover {
  filter: grayscale(0%);
}

/************************************/
/***     18. Blog Single css      ***/
/************************************/

.post-single-meta ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-single-meta ul li {
  display: inline-block;
  margin-right: 30px;
}

.post-single-meta ul li:last-child {
  margin-right: 0;
}

.post-single-meta ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
}

.page-single-post {
  padding: 100px 0 50px;
}

.post-single-image {
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.post-single-image img {
  border-radius: 40px;
}

.post-content {
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
}

.post-entry h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.post-entry ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.post-entry ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.post-entry ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

.post-entry blockquote {
  background: var(--secondary-color);
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  background: url(../images/icon-blockquote.svg) no-repeat 0px 6px;
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3em;
  padding-left: 70px;
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.post-tags .btn-default {
  padding: 12px 20px;
  font-weight: 500;
  margin-right: 15px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.post-tags .btn-default:hover {
  color: var(--white-color);
}

.post-tags .btn-default:last-child {
  margin-right: 0;
}

.post-tags .btn-default::before {
  display: none;
}

.post-tags .btn-default::after {
  background-color: var(--accent-color);
}

.post-social-links {
  text-align: right;
}

.post-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-links ul li {
  display: inline-block;
  margin-right: 12px;
}

.post-social-links ul li:last-child {
  margin-right: 0;
}

.post-social-links ul li a {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.post-social-links ul li a:hover {
  background-color: var(--white-color);
}

.post-social-links ul li a i {
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.post-social-links ul li a:hover i {
  color: var(--accent-color);
}

.latest-news.related-articles {
  padding: 50px 0 70px;
}

/************************************/
/***   19. Services Single css    ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.service-featured-image {
  margin-bottom: 30px;
}

.service-featured-image img {
  border-radius: 40px;
}

.services-list-box {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
}

.services-list-box .icon-box {
  margin-bottom: 20px;
}

.services-list-box h3 {
  font-size: 26px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.services-list-box ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.services-list-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}

.services-list-box ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  left: 0;
}

.services-list-box ul li:last-child {
  margin-bottom: 0;
}

.services-list-box ul li a {
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.services-list-box ul li:hover a {
  color: var(--accent-color);
}

.services-list-box .btn-default {
  width: 100%;
}

.why-choose-us.why-services {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
}

.why-choose-us.why-services .section-title p {
  margin-bottom: 0;
  margin-top: 30px;
}

.your-choice {
  padding: 100px 0 70px;
}

.your-choice-item {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.your-choice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.your-choice-title h2 {
  font-size: 26px;
  width: 100%;
  max-width: 200px;
}

.your-choice-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.your-choice-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.your-choice-item ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 1px;
  left: 0;
}

.your-choice-item ul li:last-child {
  margin-bottom: 0;
}

.your-choice-item ul li a {
  color: inherit;
}

.service-faqs {
  padding: 100px 0;
}

.ask-question {
  background-color: var(--secondary-color);
  border-radius: 40px;
  padding: 40px 30px;
  position: sticky;
  top: 110px;
}

.ask-question-content {
  margin-bottom: 30px;
}

.ask-question-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.ask-question-content p {
  margin: 0;
}

.ask-contact-list {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 20px;
}

.ask-contact-list:last-child {
  margin-bottom: 0;
}

.ask-contact-list .icon-box a {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ask-contact-list .icon-box a img {
  width: 14px;
}

.ask-contact-list a {
  margin: 0;
  font-weight: 700;
  color: var(--text-color);
  width: calc(100% - 40px);
  margin-left: 10px;
}

.ask-contact-list a span {
  color: var(--primary-color);
}

/******************************************/
/****     20. Portfolio Singe css      ****/
/******************************************/

.page-project-single {
  padding: 100px 0 50px;
}

.project-feature-image {
  margin-bottom: 50px;
}

.project-feature-image img {
  border-radius: 40px;
}

.project-sidebar {
  padding-right: 50px;
  position: sticky;
  top: 120px;
}

.about-project-box {
  background: var(--secondary-color);
  text-align: center;
  padding: 40px;
  border-radius: 30px;
}

.my-hover {
  border-radius: 20px;
  /* box-shadow: inset 0px 0px 12px rgb(0 0 0 / 62%); */
  display: flex;

  justify-content: space-between;
  align-items: center;
  background: rgb(14 70 255 / 88%);
}

.my-hover > a {
  color: white !important;
}

.about-project-box h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.project-info-box {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.project-info-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.project-info-box .project-icon {
  margin-bottom: 15px;
}

.project-info-box p {
  margin-bottom: 10px;
}

.project-info-box h3 {
  font-size: 20px;
}

.project-entry h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.project-entry ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-entry ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.project-entry ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

.project-entry ul li:last-child {
  margin-bottom: 0;
}

.project-details-gallery {
  padding: 50px 0 100px;
}

.project-gallery-items {
  display: flex;
  flex-wrap: wrap;
}

.project-gallery-items .project-gallery-item {
  width: calc(33.33% - 14px);
  margin-right: 20px;
}

.project-gallery-items .project-gallery-item:nth-of-type(3n + 3) {
  margin-right: 0;
}

.project-gallery-items .project-gallery-item img {
  width: 100%;
  border-radius: 40px;
}

/************************************/
/***      21. Faqs Page css       ***/
/************************************/

.faq-section {
  padding: 100px 0;
}

.faq-accordion .accordion-item {
  margin-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header .accordion-button {
  font-size: 22px;
  font-weight: 700;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 60px 12px 20px;
  border-radius: 15px !important;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.accordion-header .accordion-button.collapsed {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.accordion-header .accordion-button::after {
  content: "\f106";
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  margin-left: 5px;
  color: var(--white-color);
  transform: translate(-30px, -50%);
  transition: all 0.3s ease-in-out;
}

.my-hover img {
  width: 30px;
}

/* .my-hover:hover {
  color: #00ff03;
  box-shadow: 0px 0px 20px rgb(0, 0, 0);
} */

.accordion-header .accordion-button.collapsed::after {
  transform: rotate(-180deg) translate(30px, 50%);
  color: var(--accent-color);
}

.accordion-body {
  padding: 10px 60px 20px 20px;
}

.accordion-body p {
  margin: 0;
}

/************************************/
/***        22. 404 Page css      ***/
/************************************/

.error-page {
  text-align: center;
  padding: 100px 0;
}

.error-page-image {
  margin-bottom: 40px;
}

.error-page-content-heading {
  margin-bottom: 40px;
}

.error-page-content-heading h2 {
  font-size: 70px;
  margin-bottom: 30px;
}

.info {
  margin-top: 2rem;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  max-width: 80%;
  border: 2px solid #0a2adb;
  box-shadow: 0 0 10px #0a2adb;
}

.info span {
  color: #5f5f5f;
  font-size: 14px;
}

.img-scroller {
  overflow-y: scroll;
  scrollbar-width: none;
  height: 273px;
}

.info h5 {
  color: #0a2adb;
  font-size: 14px;
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.about-dropdown {
  min-width: 250px !important;
  width: 100% !important;
}

.about-dropdown img {
  width: 100% !important;
}
/* >>>>>>>><<<<<<<<<< */
.pt-100 {
  padding-top: 100px;
  width: 95%;
  margin: 20px auto;
}

.heading3 {
  color: #0a2adb;
  font-weight: bold;
  margin-bottom: 10px;
}

.projects-block .container2 {
  position: relative;
}
.projects-block .container2 > .bg-blur {
  position: absolute;
  top: 0;
  left: -100px;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: 0.14;
  background: #6f97ff;
  filter: blur(132px);
  z-index: 0;
}
.projects-block .container2 .heading .list-nav {
  position: relative;
  z-index: 1;
  gap: 8px;
}

.projects-block .container .list > div .item .bg-img img {
  transition: all ease 0.5s;
}
.w-100 {
  width: 100% !important;
}
img,
svg {
  vertical-align: middle;
}
.projects-block .container2 .heading .list-nav .nav-item {
  transition: all ease 0.3s;
}
.projects-block .container2 .heading .list-nav .nav-item:hover,
.projects-block .container .heading .list-nav .nav-item.active {
  background-color: blue;
}
@media (max-width: 575.98px) {
  .projects-block .container2 .heading .list-nav {
    flex-wrap: wrap;
  }

  .page-header-box {
    margin-top: 30px;
  }
}
.projects-block .container2 .list {
  position: relative;
  z-index: 1;
}
.projects-block .container2 .list > div .items {
  /* cursor: pointer; */
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.projects-block .container2 .list > div .items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .projects-block .container2 .list > div .items::before {
    border-radius: 14px;
  }
}
.projects-block .container2 .list > div .item .bg-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.projects-block .container2 .list > div .items .bg-img img {
  transition: all ease 0.5s;
}

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

.row-gap-32 {
  row-gap: 32px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
}
.projects-block .container2 .list > div .items .infor {
  background-color: white;
  border-radius: 10px;
  font-size: 20px;
  position: absolute;
  left: 16px;
  right: 16px;
  /* bottom: -120px; */
  bottom: 15px;
  overflow: hidden;
  transition: all linear 0.3s;
  z-index: 3;
  padding: 15px;
}

.projects-block .container2 .list > div .items .infor .heading7 {
  text-transform: capitalize;
  margin-top: 0.5rem !important;
}
.projects-block .container2 .list > div .items:hover::before {
  opacity: 1;
  visibility: visible;
}
.projects-block .container2 .list > div .items:hover .bg-img img {
  transform: scale(1.04);
}
.projects-block .container2 .list > div .items:hover .infor {
  bottom: 16px;
}

.text-button-uppercase {
  font-weight: bold !important;
  font-size: 25px;
}

@media (max-width: 1023.98px) {
  .projects-block .container2 .list > div .items .infor {
    bottom: 16px;
  }
}

.style-three .projects-block {
  padding-bottom: 100px;
}
.style-three .projects-block .container2 > .bg-blur {
  background: #f3d465;
}
.style-three .projects-block .container2 .heading .list-nav {
  gap: 32px;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 68px;
  border: 1px solid #666666;
  background: #666666;
}
.style-three .projects-block .container2 .heading .list-nav .nav-item:hover,
.style-three .projects-block .container .heading .list-nav .nav-item.active {
  background-color: yellow;
  color: black;
}
@media (max-width: 575.98px) {
  .style-three .projects-block .container2 .heading .list-nav {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 12px;
  }
}

/*
  *** List Projects Home3: End
  */
/*
  *** List Projects Home4: Start
  */
.projects-block.style-four .container2 .heading {
  align-items: flex-end;
}
.projects-block.style-four .container2 .list .slick-list .project-item .items {
  cursor: pointer;
}
.projects-block.style-four
  .container2
  .list
  .slick-list
  .project-item
  .items::before {
  left: 15px;
  right: 15px;
}
.projects-block.style-four
  .container2
  .list
  .slick-list
  .project-item
  .items
  .infor {
  left: 31px;
  right: 31px;
}
@media (max-width: 767.98px) {
  .projects-block.style-four .container2 .heading {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}

/*
  *** List Projects Home4: End
  */
/*
  Shared Animation Filter Item: Start
  */
@keyframes showItem {
  from {
    transform: scale(0.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.item-filter.hide {
  display: none;
}

.item-filter.show {
  display: block;
  animation: showItem ease-in-out 0.5s;
}

/*
  Shared Animation Filter Item: End
  */
/*
  List pricing: Start
  */
.section-pricing .container2 > .row > div:first-child button {
  border-radius: 8px;
}
.section-pricing .container2 > .row > div:first-child button.active {
  background-color: var(--blue);
}
.section-pricing .container2 > .row .list-pricing .price,
.section-pricing .container2 > .row .list-pricing-year .price {
  align-items: flex-end;
}
.section-pricing .container2 > .row .list-pricing .pricing-item,
.section-pricing .container2 > .row .list-pricing-year .pricing-item {
  border: 2px solid transparent;
  cursor: pointer;
  transition: all ease 0.3s;
}
.section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a
  span:nth-child(2),
.section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item
  a
  span:nth-child(2) {
  border: 2px solid var(--blue);
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--line-dark);
}
.section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a:hover
  span:nth-child(2),
.section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item
  a:hover
  span:nth-child(2) {
  background-color: var(--blue);
}
.section-pricing .container2 > .row .list-pricing .pricing-item i.ph-x,
.section-pricing .container2 > .row .list-pricing-year .pricing-item i.ph-x {
  background-color: rgba(255, 255, 255, 0.2);
}
.section-pricing .container2 > .row .list-pricing .pricing-item:hover,
.section-pricing .container2 > .row .list-pricing-year .pricing-item:hover {
  background-color: var(--on-surface);
  border: 2px solid blue;
}
.section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover
  a
  span:nth-child(2),
.section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item:hover
  a
  span:nth-child(2) {
  background-color: var(--blue);
}
.section-pricing .container2 .list-more-feature .row {
  margin-left: 0;
  margin-right: 0;
}
.section-pricing .container2 .list-more-feature .row > div {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  .section-pricing .container2 > .row > div:first-child .choose-type {
    display: inline-block;
  }
  .section-pricing .container2 > .row > div:last-child {
    padding-left: 15px;
  }
}
@media (max-width: 575.98px) {
  .section-pricing .container2 .list-more-feature .row .col-4 {
    width: 25%;
  }
  .section-pricing .container2 .list-more-feature .row .col-2 {
    width: 33%;
  }
}

.section-pricing.style-one {
  position: relative;
}
.section-pricing.style-one > .bg-blur {
  position: absolute;
  right: -50px;
  top: 100px;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: 0.14;
  background: #5596f8;
  filter: blur(132px);
  z-index: 0;
}
.section-pricing.style-one .container2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.section-pricing.style-one .container2 .bg-blur {
  position: absolute;
  left: -50px;
  top: 0;
  width: 534px;
  height: 534px;
  border-radius: 534px;
  opacity: 0.14;
  background: #5596f8;
  filter: blur(132px);
  z-index: 0;
}
.section-pricing.style-one .container2 .row,
.section-pricing.style-one .container2 .list-pricing {
  position: relative;
  z-index: 2;
}

@keyframes showListPrice {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.list-pricing.hide {
  display: none;
}

.list-pricing.show {
  display: block;
  animation: showListPrice ease-in-out 0.5s;
}

.style-pricing
  .section-pricing
  .container2
  > .row
  > div:first-child
  button.active {
  background-color: var(--purple);
}
.style-pricing
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a
  span:nth-child(2) {
  border: 2px solid var(--purple);
}
.style-pricing
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a:hover
  span:nth-child(2) {
  background-color: var(--purple);
}
.style-pricing
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  i.ph-x {
  background-color: rgba(255, 255, 255, 0.2);
}
.style-pricing
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover {
  border: 2px solid var(--purple);
}
.style-pricing
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover
  a
  span:nth-child(2) {
  background-color: var(--purple);
}

/*
  List pricing: End
  */
/*
  Section Pricing Home2: Start
  */
.section-pricing.style-two .container2 .heading .switch .bg-surface {
  display: block;
  width: 80px;
  height: 40px;
  border-radius: 99px;
  border: none;
  outline: none;
  position: relative;
  transition: all ease 0.6s;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
}
.section-pricing.style-two .container2 .heading .switch .bg-surface::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  background-color: var(--green);
  border-radius: 50%;
  transition: all ease 0.3s;
}
.section-pricing.style-two .container2 .heading .switch.enable .bg-surface {
  background-color: var(--green);
}
.section-pricing.style-two
  .container2
  .heading
  .switch.enable
  .bg-surface::before {
  left: 44px;
  background-color: var(--white);
}
.section-pricing.style-two .container2 .list-pricing .pricing-item,
.section-pricing.style-two .container2 .list-pricing-year .pricing-item {
  border: 2px solid var(--line);
}
.section-pricing.style-two .container2 .list-pricing .pricing-item a,
.section-pricing.style-two .container2 .list-pricing-year .pricing-item a {
  border: 2px solid var(--green);
  padding-top: 16px;
  padding-bottom: 16px;
}
.section-pricing.style-two .container2 .list-pricing .pricing-item a:hover,
.section-pricing.style-two
  .container2
  .list-pricing-year
  .pricing-item
  a:hover {
  background-color: var(--green);
  color: var(--white);
}
.section-pricing.style-two .container2 .list-pricing .pricing-item i.ph-x,
.section-pricing.style-two .container2 .list-pricing-year .pricing-item i.ph-x {
  background-color: var(--line);
}
.section-pricing.style-two .container2 .list-pricing .pricing-item:hover,
.section-pricing.style-two .container2 .list-pricing-year .pricing-item:hover {
  box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.15);
  background-color: var(--white);
  border: 2px solid var(--green);
}
@media (max-width: 575.98px) {
  .section-pricing.style-two .container2 .list-pricing .pricing-item a,
  .section-pricing.style-two .container2 .list-pricing-year .pricing-item a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@keyframes showList {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-pricing.style-two .list-pricing.hide {
  display: none;
}
.section-pricing.style-two .list-pricing.show {
  display: block;
  animation: showList ease-in-out 0.7s;
}
.section-pricing.style-two .list-pricing-year.hide {
  display: none;
}
.section-pricing.style-two .list-pricing-year.show {
  display: block;
  animation: showList ease-in-out 0.7s;
}

/*
  Section Pricing Home2: End
  */
/*
  Section Pricing Home3: Start
  */
.style-three .section-pricing {
  padding-bottom: 100px;
  background-color: var(--black-surface);
}
.style-three .section-pricing > .bg-blur {
  background: none;
}
.style-three .section-pricing .container2 .bg-blur {
  background: none;
}
.style-three
  .section-pricing
  .container2
  > .row
  > div:first-child
  button.active {
  background-color: var(--yellow);
  color: var(--on-surface);
}
.style-three .section-pricing .container2 > .row .list-pricing .pricing-item a,
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item
  a {
  transition: all ease 0.1s;
}
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a
  span:nth-child(2),
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item
  a
  span:nth-child(2) {
  border: 2px solid var(--yellow);
}
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item
  a:hover
  span:nth-child(2),
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item
  a:hover
  span:nth-child(2) {
  color: var(--on-surface);
  background-color: var(--yellow);
}
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover,
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item:hover {
  background-color: var(--on-surface);
  border: 2px solid var(--yellow);
}
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover
  a,
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item:hover
  a {
  color: var(--on-surface);
}
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing
  .pricing-item:hover
  a
  span:nth-child(2),
.style-three
  .section-pricing
  .container2
  > .row
  .list-pricing-year
  .pricing-item:hover
  a
  span:nth-child(2) {
  background-color: var(--yellow);
}
.style-three .section-pricing .bg-blue {
  background-color: var(--yellow);
  color: var(--on-surface);
}

/*
  Section Pricing Home3: End
  */
/*
  Our Blog Home1: Start
  */
.list-blog .cursor {
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all linear 0.1s;
  width: 70px;
  height: 70px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.list-blog .list .slick-list {
  padding-left: 0;
  padding-right: 0;
}
.list-blog .list .slick-list .item {
  padding-right: 15px;
  padding-left: 15px;
  cursor: none;
}
.list-blog .list .slick-list .item .main-item {
  cursor: none;
}
@media (max-width: 1023.99px) {
  .list-blog .cursor {
    display: none;
  }
  .list-blog .list .slick-list .item {
    cursor: pointer;
  }
  .list-blog .list .slick-list .item .main-item {
    cursor: pointer;
  }
}
.list-blog .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 16px;
}
@media (max-width: 767.99px) {
  .list-blog .slick-dots {
    margin-top: 30px;
  }

  .stat-icon img {
    width: 50%;
  }
}
.list-blog .slick-dots li {
  position: relative;
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list-blog .slick-dots li button {
  display: none;
}
.list-blog .slick-dots li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--line);
  transition: 0.5s;
}
.list-blog .slick-dots li.slick-active {
  border: 1px solid var(--white);
  background-color: var(--on-surface);
}
.list-blog .slick-dots li.slick-active::after {
  background-color: var(--white);
  border: 1px solid var(--on-surface);
}

.list-blog.style-two .item .blog-item {
  background-color: var(--surface);
}
.list-blog.style-two .item .blog-item .text-button-uppercase,
.list-blog.style-two .item .blog-item .heading6 {
  color: var(--on-surface);
}
.list-blog.style-two .item .blog-item .text-placehover {
  color: var(--secondary);
}
.list-blog.style-two .slick-dots li::after {
  background-color: transparent;
  border: 1px solid var(--on-surface);
}
.list-blog.style-two .slick-dots li.slick-active {
  border: 1px solid var(--on-surface);
  background-color: var(--white);
}
.list-blog.style-two .slick-dots li.slick-active::after {
  background-color: var(--on-surface);
  border: 1px solid var(--white);
}

.style-blog-detail .list-blog .heading a u:hover {
  color: var(--purple);
}

/*
  Our Blog Home1: End
  */
/*
  *** Counter Home3: Start
  */
.counter-block.style-three .list-img {
  background-image: url(https://avitex.vn/assets/images/components/bg-grid.png/);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.counter-block.style-three .list-img .bg-img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  padding: 72px;
  border: 1px dashed var(--line);
  position: relative;
}
.counter-block.style-three .list-img .bg-img .logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(243, 212, 101, 0.1);
}
.counter-block.style-three .list-img .bg-img .list-avatar {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: circleScroll 30s linear infinite;
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar {
  position: absolute;
  width: 96px;
  height: 96px;
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar img {
  width: 100%;
  height: 100%;
  animation: circleScrollMinus 30s linear infinite;
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(1) {
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(2) {
  top: 36px;
  right: -30px;
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(3) {
  bottom: 36px;
  right: -30px;
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(4) {
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
}
.counter-block.style-three .list-img .bg-img .list-avatar .avatar:nth-child(5) {
  bottom: 36px;
  left: -30px;
}

/*
  *** List Projects Home1: End
  */
/*
  *** List Projects Home2: Start
  */
.projects-block.style-two .heading .list-nav {
  gap: 32px;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 68px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.projects-block.style-two .heading .list-nav .nav-item {
  transition: all ease 0.3s;
}
.projects-block.style-two .heading .list-nav .nav-item:hover,
.projects-block.style-two .heading .list-nav .nav-item.active {
  background-color: var(--on-surface);
  color: var(--white);
}
@media (max-width: 575.98px) {
  .projects-block.style-two .heading .list-nav {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 12px;
  }
}
.projects-block.style-two .list {
  display: grid;
  grid-template-areas: "h1 h2 h3 h4" "h5 h2 h7 h4" "h5 h6 h7 h8";
  grid-gap: 30px;
}
.projects-block.style-two .list > div .item::before {
  display: none;
}
.projects-block.style-two .list > div .item .bg-img {
  overflow: hidden;
}
.projects-block.style-two .list > div .item .bg-img img {
  filter: grayscale(0.1);
  transition: all ease 0.5s;
}
.projects-block.style-two .list > div .item:hover .bg-img img {
  filter: saturate(1.5) contrast(1);
  transform: translateZ(0) scale(1.1);
}
.projects-block.style-two .list > div:nth-child(1) {
  grid-area: h1;
}
.projects-block.style-two .list > div:nth-child(2) {
  grid-area: h2;
}
.projects-block.style-two .list > div:nth-child(3) {
  grid-area: h3;
}
.projects-block.style-two .list > div:nth-child(4) {
  grid-area: h4;
}
.projects-block.style-two .list > div:nth-child(5) {
  grid-area: h5;
}
.projects-block.style-two .list > div:nth-child(6) {
  grid-area: h6;
}
.projects-block.style-two .list > div:nth-child(7) {
  grid-area: h7;
}
.projects-block.style-two .list > div:nth-child(8) {
  grid-area: h8;
}
@media (max-width: 1023.98px) {
  .projects-block.style-two .list {
    grid-template-areas: "h1 h2" "h4 h2" "h4 h3" "h5 h6" "h5 h7" "h8 h7";
  }
}
@media (max-width: 575.98px) {
  .projects-block.style-two .list {
    grid-template-areas: "h1" "h2" "h3" "h4" "h5" "h6" "h7" "h8";
  }
}

/************************************/
/***      23. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin-left: 0;
  }

  .service-content-title a {
    width: 60px;
    height: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .section-row {
    margin-bottom: 40px;
  }

  .section-title h3 {
    font-size: 18px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 46px;
  }

  .btn-default::before {
    font-size: 16px;
  }

  #magic-cursor {
    display: none !important;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  header.main-header .header-sticky {
    padding: 20px 0;
  }

  .header-btn .btn-default {
    display: none;
  }

  .hero {
    background-image: none;
    padding: 50px 0;
  }

  .hero-video-image {
    text-align: center;
    margin-top: 40px;
  }

  .hero-play-button {
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0;
  }

  .hero-layout-2 .hero-content {
    margin-bottom: 0px;
    max-width: 100%;
  }

  .hero-content .section-title {
    margin-bottom: 20px;
  }

  .hero-body {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-layout-2 .section-title h1 {
    font-size: 60px;
  }

  .hero-layout-2 .hero-body {
    margin-bottom: 20px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-image {
    text-align: center;
    margin-bottom: 90px;
    padding-right: 0;
  }

  .about-consultation {
    right: 50%;
    top: auto;
    transform: translate(50%, -50%);
  }

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

  .about-content ul li {
    font-size: 16px;
  }

  .about-content ul li:before {
    font-size: 18px;
  }

  .our-services {
    padding: 50px 0 20px;
  }

  .service-content {
    padding: 10px 10px 20px;
  }

  .service-content-title h2 {
    font-size: 24px;
    max-width: 180px;
  }

  .service-content-title a {
    width: 50px;
    height: 50px;
  }

  .service-content-title a img {
    width: 18px;
  }

  .service-content-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .our-work {
    padding: 50px 0 20px;
  }

  .works-item {
    padding: 20px 20px 30px 20px;
  }

  .works-image {
    margin-bottom: 20px;
  }

  .works-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .works-content {
    padding: 0 0 0 10px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us-item {
    padding: 30px;
  }

  .why-choose-us-item .icon-box {
    margin-bottom: 20px;
  }

  .why-choose-us-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .why-us-explore-item {
    padding: 40px;
  }

  .why-us-section-title {
    padding-right: 20px;
  }

  .why-us-explore-item .section-title {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .explore-item-icon {
    top: 70px;
    right: 10px;
  }

  .explore-item-icon img {
    width: 50px;
  }

  .explore-item-content p {
    margin-bottom: 20px;
  }

  .explore-item-tags {
    text-align: start;
  }

  .exclusive-partners {
    padding: 50px 0 20px;
  }

  .partners-logo {
    padding: 20px 30px;
  }

  .clients-testimonials {
    padding: 50px 0;
  }

  .testimonial-item {
    padding: 30px;
  }

  .testimonial-author-title h2 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .latest-news {
    padding: 50px 0 20px;
  }

  .post-item-body h2 {
    font-size: 20px;
  }

  .main-footer {
    padding: 40px 0 0;
  }

  .footer-about {
    margin-bottom: 30px;
  }

  .footer-about p,
  .footer-about img {
    margin-bottom: 15px;
  }

  .footer-about ul li a {
    font-size: 20px;
  }

  .footer-links h2 {
    font-size: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-policy-links ul {
    text-align: center;
  }

  .page-header {
    padding: 100px 0;
  }

  .page-header::before {
    background-size: cover;
  }

  .page-header-box h1 {
    font-size: 56px;
    margin-bottom: 10px;
  }

  .page-about {
    padding: 50px 0 20px;
  }

  .page-about-image {
    margin-right: 0;
    padding-bottom: 60px;
    margin-bottom: 20px;
    text-align: center;
  }

  .about-img-2 img {
    width: 300px;
  }

  .work-experience {
    left: 0;
    padding: 15px;
  }

  .work-experience-content h3 {
    font-size: 34px;
  }

  .work-experience-content p {
    font-size: 16px;
  }

  .overview-company {
    padding: 50px 0 20px;
  }

  .counter-box h3 {
    font-size: 24px;
  }

  .counter-box h3 em,
  .counter-box h3 span {
    font-size: 40px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .scrolling-content span {
    font-size: 34px;
  }

  .our-projects {
    padding: 50px 0 20px;
  }

  .our-projects-nav {
    margin-bottom: 20px;
  }

  .our-projects-nav ul li {
    margin-bottom: 20px;
  }

  .latest-news.our-blog {
    padding: 50px 0;
  }

  .our-projects-nav ul li:nth-child(3n + 3) {
    margin-right: 0px;
  }

  .post-pagination {
    margin-top: 10px;
  }

  .contact-information {
    padding: 50px 0 25px;
  }

  .contact-item {
    padding: 10px;
  }

  .contact-content {
    padding: 10px 10px 20px;
  }

  .contact-content-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .contact-content-title h2 {
    font-size: 24px;
  }

  .contact-content-title a {
    width: 50px;
    height: 50px;
  }

  .contact-content-title a img {
    width: 18px;
  }

  .contact-item p {
    max-width: 100%;
  }

  .contact-us {
    padding: 25px 0;
  }

  .contact-details {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-details .section-title {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .contact-detail-body p {
    margin-bottom: 20px;
  }

  .contact-detail-body h3 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .contact-detail-body ul li a {
    width: 40px;
    height: 40px;
  }

  .contact-detail-body ul li a i {
    font-size: 20px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .google-map {
    padding: 25px 0 50px;
  }

  .google-map iframe {
    height: 300px;
  }

  .page-single-post {
    padding: 50px 0 25px;
  }

  .post-featured-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .post-content {
    max-width: 100%;
  }

  .post-entry h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 22px;
  }

  .post-entry blockquote {
    padding: 30px;
  }

  .post-entry ul li:before {
    font-size: 18px;
  }

  .post-entry ul li {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-social-links {
    text-align: left;
  }

  .post-social-links ul li a {
    width: 40px;
    height: 40px;
  }

  .post-social-links ul li a i {
    font-size: 20px;
  }

  .latest-news.related-articles {
    padding: 25px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .services-list-box {
    padding: 30px;
  }

  .services-list-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .services-list-box ul {
    margin: 0 0 20px;
  }

  .services-list-box ul li {
    margin-bottom: 15px;
  }

  .why-choose-us.why-services {
    padding: 50px 0 20px;
  }

  .your-choice {
    padding: 50px 0 20px;
  }

  .your-choice-item {
    padding: 30px;
  }

  .your-choice-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .your-choice-title h2 {
    font-size: 24px;
  }

  .service-faqs {
    padding: 50px 0;
  }

  .service-faqs .faq-accordion {
    margin-bottom: 30px;
  }

  .ask-question {
    padding: 30px;
  }

  .ask-question-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .ask-question-content {
    margin-bottom: 20px;
  }

  .page-project-single {
    padding: 50px 0 25px;
  }

  .project-feature-image {
    margin-bottom: 30px;
  }

  .project-sidebar {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .about-project-box {
    padding: 30px;
  }

  .project-info-box {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .project-info-box h3 {
    font-size: 18px;
  }

  .project-info-box p {
    margin-bottom: 5px;
  }

  .project-icon img {
    width: 40px;
  }

  .project-entry h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .project-entry ul li {
    font-size: 16px;
  }

  .project-entry ul li:before {
    font-size: 18px;
  }

  .project-details-gallery {
    padding: 25px 0 50px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .accordion-header .accordion-button {
    font-size: 20px;
    padding: 12px 40px 12px 20px;
  }

  .accordion-header .accordion-button::after {
    transform: translate(-20px, -50%);
  }

  .accordion-body {
    padding: 10px 40px 20px 20px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-content-heading h2 {
    font-size: 56px;
    margin-bottom: 20px;
  }

  .error-page-content-heading {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .btn-default {
    font-size: 14px;
  }

  .section-row {
    margin-bottom: 30px;
  }

  .section-btn {
    text-align: center;
    margin-top: 20px;
  }

  .section-row .section-title {
    text-align: center;
  }

  .section-title h3 {
    font-size: 16px;
  }

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

  .my-hover {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    margin-right: 0px;
  }

  .hero-play-button {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-play-button i {
    font-size: 22px;
    background-color: var(--accent-color);
    color: var(--white-color);
    width: 80px;
    height: 80px;
  }

  .hero-layout-2 .section-title h1 {
    font-size: 40px;
  }

  .hero-layout-2 .hero-footer .btn-default {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .hero-layout-2 .hero-footer .btn-default:last-child {
    margin-bottom: 0;
  }

  .about-image {
    margin-bottom: 70px;
  }

  .about-consultation img {
    width: 120px;
    height: 120px;
  }

  .about-content ul {
    display: block;
    margin: 0 0 25px;
  }

  .about-content ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .service-content-title h2 {
    font-size: 22px;
    max-width: 170px;
  }

  .service-content-title a img {
    width: 16px;
  }

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

  .why-choose-us-item h3 {
    font-size: 22px;
  }

  .why-us-explore-item {
    padding: 20px;
  }

  .why-us-section-title {
    padding-right: 40px;
  }

  .explore-item-icon {
    top: 20px;
    right: 20px;
  }

  .explore-item-icon img {
    width: 40px;
  }

  .explore-item-tags ul li {
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .partners-logo {
    padding: 15px 20px;
  }

  .testimonial-author-title h2 {
    font-size: 18px;
  }

  .post-item-body h2 {
    font-size: 18px;
  }

  .mega-footer {
    margin-bottom: 10px;
  }

  .footer-about ul li a {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-policy-links ul li {
    margin-right: 10px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header-box ol {
    padding: 4px 15px;
    font-size: 14px;
  }

  .page-header-box h1 {
    font-size: 30px;
  }

  .page-about-image {
    padding-bottom: 110px;
    padding-top: 50px;
  }

  .about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }

  .work-experience {
    top: 0;
    left: 60px;
    padding: 10px;
  }

  .work-experience-content h3 {
    font-size: 30px;
  }

  .page-about .about-content .section-title {
    margin-bottom: 20px;
  }

  .counter-box {
    padding: 20px;
  }

  .counter-box h3 {
    font-size: 20px;
  }

  .counter-box h3 em,
  .counter-box h3 span {
    font-size: 30px;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .scrolling-content span {
    font-size: 28px;
  }

  .our-projects-nav ul li {
    padding: 10px 15px;
    margin-right: 6px;
    margin-bottom: 20px;
  }

  .our-projects-nav ul li:nth-child(3n + 3) {
    margin-right: 6px;
  }

  .our-projects-nav ul li a {
    font-size: 14px;
  }

  .contact-information {
    padding: 50px 0 5px;
  }

  .contact-item {
    height: calc(100% - 20px);
    margin-bottom: 20px;
  }

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

  .contact-detail-body h3 {
    font-size: 28px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .google-map iframe {
    height: 250px;
  }

  .post-single-meta ul li {
    margin-right: 15px;
  }

  .post-entry blockquote {
    padding: 20px;
  }

  .post-entry blockquote p {
    background: url(../images/icon-blockquote.svg) no-repeat 0px 0px;
    font-size: 20px;
    padding-left: 0px;
    padding-top: 50px;
  }

  .post-tags .btn-default {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .service-featured-image {
    margin-bottom: 20px;
  }

  .services-list-box {
    padding: 20px;
  }

  .services-list-box h3 {
    font-size: 22px;
  }

  .why-choose-us.why-services .section-title p {
    margin-bottom: 0;
    margin-top: 20px;
  }

  .your-choice-title h2 {
    font-size: 22px;
    max-width: 180px;
  }

  .ask-question-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .ask-contact-list a {
    display: inline-grid;
  }

  .project-info-box h3 {
    font-size: 16px;
  }

  .project-entry h2 {
    font-size: 28px;
  }

  .project-gallery-items {
    display: block;
  }

  .project-gallery-items .project-gallery-item {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .project-gallery-items .project-gallery-item:nth-child(3n + 3) {
    margin-bottom: 0;
  }

  .accordion-header .accordion-button {
    font-size: 18px;
  }

  .error-page-content-heading h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .error-page-content-heading {
    margin-bottom: 30px;
  }
}

.footer-about figure img {
  width: 30%;
}

.my-move {
  animation: mymove 7s infinite;
  position: relative;
  z-index: 999;
}

@keyframes mymove {
  0% {
    top: -80px;
  }
  25% {
    top: 200px;
  }
  75% {
    top: -90px;
  }
  100% {
    top: 100px;
  }
}

.accordion {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  background-color: #051469;
  color: #ffffff;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  background-color: #283593;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, background-color 0.3s ease;
  background-color: #e8eaf6;
}
.accordion-content-inner {
  padding: 20px;
  color: #000000;
}
.accordion-header::after {
  content: "+";
  font-size: 24px;
  transition: transform 0.3s ease;
}
.active .accordion-header {
  background-color: #3f51b5;
}
.active .accordion-header::after {
  transform: rotate(45deg);
}
.active .accordion-content {
  max-height: 1000px;
  background-color: white;
}

.accordion-parent-container {
  margin: 30px auto;
}

.accordion-parent-container h5 {
  color: #0a2adb;
  text-align: center;
  margin: 20px auto;
}

.accordion-parent-container h2 {
  text-align: center;
  margin: 20px auto;
}

.accordion-parent-container .accordion-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* >>>>><<<<<<<< */

.mlm-diagram-div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.containerr {
  text-align: center;
  padding: 25px;
}
.containerr h1 {
  color: #2c3e50;
  margin-bottom: 2rem;
}
.wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
.center-circle {
  position: absolute;
  top: 52%;
  left: 52%;
  padding: 60px;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.item {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #ecf0f1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.item:hover {
  transform: scale(1.1);
  background-color: var(--accent-color);
  color: white;
}
.modal {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  max-width: 500px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: black;
}
.cta-button {
  margin-top: 2rem;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #2825cf;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #1e10dd;
}

/* >>>>>>><<<<<<< */

@media (max-width: 800px) {
  .accordion-parent-container .accordion-container {
    flex-direction: column;
  }

  .hero-image {
    margin-top: 348px;
  }

  .mlm-diagram-div {
    width: 70% !important;
    margin: 10px auto !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* project ready  */
.project {
  background: #f7f8fd;
  padding-block: 40px;
}
.flaticon-medal:before {
  content: "\f100";
}

.flaticon-help:before {
  content: "\f11a";
}

.flaticon-customer-service:before {
  content: "\f106";
}

.flaticon-backup:before {
  content: "\f10e";
}
.stat-item {
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.stat-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* .stat-icon i {
        display: inline-block;
    font-size: 70px;
    margin-right: 20px;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgba(65, 84, 241, 1) 0%, rgba(14, 32, 173, 1) 75%);

} */
.stat-number {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 5px;
}
.stat-label {
  color: #6c757d;
}
.alignleft {
  text-align: left;
}

/* carousel  */

.testimonialHeader {
  font-size: 25px;
}
.blockChain {
  border-bottom: 2px solid black;
  /* padding-bottom: 20px; */
}
.blockChainPara {
  padding-top: 20px;
}
#string {
  height: 60px;
  width: 100%;
  /* background: red; */
}

.whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 315px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
}

.chat-header {
  background: #25d366;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.whats-logo {
  width: 90px;
  height: 30px;
  border-radius: 50%;
}

.company-info {
  color: white;
}

.company-name {
  font-weight: 600;
  margin: 0;
}

.company-status {
  font-size: 12px;
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

.chat-body {
  padding: 16px;
  background: #f9fafb;
}

.chat-message {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

.start-chat-btn {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.start-chat-btn:hover {
  background: #00ff03;
}

.chat-footer {
  padding: 8px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.powered-by {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.whatsapp-button {
  background: #25d366;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background: #00ff03;
}

.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.tooltip {
  position: absolute;
  top: -40px;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  display: none;
}

.whatsapp-button:hover .tooltip {
  display: block;
}

.chat-btn {
  width: 40px;
}

/* >>>>>>>>>>><<<<<<<<<< */

.navbar .dropdown-menu div[class*="col"] {
  margin-bottom: 1rem;
}

.navbar {
  padding: 15px 40px;
}

.navbar .dropdown-menu {
  top: 72px !important;
}

.navbar-brand img {
  width: 26%;
}

.navbar .dropdown-menu {
  border: none;
  /* background-color: #b0c1ffa7 !important; */
  backdrop-filter: blur(10px);
}

/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 992px) {
  /* remove the padding from the navbar so the dropdown hover state is not broken */
  .navbar {
    background: #f7f8fd;
  }

  /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
  .navbar .nav-item {
    padding: 0.5rem 0.9rem;
    margin: 0 0.25rem;
  }

  /* makes the dropdown full width  */
  .navbar .dropdown {
    position: static;
        display: flex
;
    justify-content: center;
    align-items: center;
  }

  .navbar .dropdown-menu {
    border-radius: 20px;
    width: 100%;
    left: 0;
    right: 0;
    /*  height of nav-item  */
    top: 45px;
    padding: 20px;
    display: none;
    /* visibility: visible; */
    opacity: 0;
    /* transition: visibility 0s, opacity 0.3s linear; */
  }

  /* shows the dropdown menu on hover */
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown .dropdown-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
    /* transition: visibility 0s, opacity 0.3s linear; */
  }

  .navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
}

.about-img {
  border-radius: 20px;
  width: 100%;
}

/* .dropdown-menu {
  background: url(../images/7106.jpg);
  background-repeat: no-repeat;
  background-size: cover;
} */

/* .my-link {
  color: white;
} */

/* .my-link:hover {
  color: #00ff03;
} */


      @media (max-width: 768px) {

        .nav-item{
              display: flex
;
    justify-content: space-between;
    align-items: center;

        }
      }