@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

:root {
  --themered: #ee4619;
  --deepgray: #575757;
  --gradient-2: linear-gradient(-3deg, #fd3b45 0%, #fa8640 100%);
}

body {
  overflow-x: hidden;
  background: #f2f2f2;
}

p {
  margin-bottom: 0px;
}

ul {
  padding-left: 0px;
}

.section-title {
  font-size: 60px;
  font-weight: 900;
}

.section-paragraph {
  color: var(--deepgray);
  font-weight: 400;
  font-size: 18px;
}

.section-sub-title {
  font-size: 25px;
  font-weight: 900;
}

.small-title {
  font-size: 19px;
  font-weight: 900;
  text-transform: capitalize;
  color: var(--themered);
}
.small-title span {
  display: inline-block;
  width: 15px;
  height: 25px;
  background: var(--themered);
  border: 2px solid #000;
  transform: skewX(-25deg);
}

ul {
  list-style: none;
  padding-left: 0px;
}
ul a {
  color: #000;
  display: inline-block;
  text-decoration: none;
}

.commonbtn {
  font-size: 16px;
  padding: 20px 30px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.commonbtn::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -2;
}
.commonbtn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 98%;
  height: 100%;
  background: var(--themered);
  z-index: -1;
  border-radius: 30px;
  border-top-right-radius: 0px;
  transition: 0.3s;
  transform: translateX(-50px);
}
.commonbtn:hover::before {
  width: 100%;
  height: 100%;
  transform: translateX(0px);
}

.scroll-top {
  position: fixed;
  width: 50px;
  bottom: 0px;
  right: 50px;
  padding: 20px 10px;
  background: #000;
  color: #fff;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  right: 10px;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
}

header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
}
header .bargar-menu {
  width: 50px;
  height: 55px;
  border-radius: 4px;
  background: var(--gradient-2);
  text-align: center;
  font-size: 25px;
  line-height: 50px;
  color: #fff;
}
header .bargar-menu .fa-chevron-left {
  display: none;
}
header .bargar-menu:hover .fa-chevron-left {
  display: inline-block;
}
header .bargar-menu:hover .fa-bars {
  display: none;
}
header nav ul {
  list-style: none;
  /* The container <div> - needed to position the dropdown content */
  /* Dropdown Content (Hidden by Default) */
  /* Links inside the dropdown */
  /* Change color of dropdown links on hover */
  /* Show the dropdown menu on hover */
  /* Change the background color of the dropdown button when the dropdown content is shown */
}
header nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #1b1a1a;
  transition: 0.2s;
}
header nav ul li a i {
  font-size: 14px;
}
header nav ul li a:hover {
  color: #9946ec;
}
header nav ul .dropdown {
  position: relative;
  display: inline-block;
}
header nav ul .dropdown-content {
  transform: rotateX(90deg);
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: top;
  opacity: 0;
  border-top: 3px solid var(--themered);
}
header nav ul .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
header nav ul .dropdown-content a:hover {
  background-color: #ddd;
}
header nav ul .dropdown:hover .dropdown-content {
  transform: rotateX(0deg);
  opacity: 1;
}
header .headerbtn {
  font-size: 18px;
  padding: 15px 50px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
header .headerbtn::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: var(--themered);
  z-index: -2;
}
header .headerbtn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 80%;
  background: #000;
  z-index: -1;
  border-radius: 30px;
  transition: 0.3s;
  transform: translateX(-50px);
}
header .headerbtn:hover::before {
  width: 100%;
  height: 100%;
  transform: translateX(0px);
}
header .search .search-icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  line-height: 60px;
}

.side-menu {
  width: 0%;
  min-height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10;
  position: absolute;
  transform: translateX(-200px);
}
.side-menu .menu-header {
  width: 100%;
  opacity: 0;
}
.side-menu .menu-header .close {
  color: #fff;
  font-size: 35px;
  transform: translateX(150px);
  transition: 0.3s;
  transition-delay: 0.6s;
}
.side-menu .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.side-menu .bg .span {
  display: block;
  width: 0%;
  height: 33.33%;
  background: #000;
  transition: 0.3s;
}
.side-menu .bg .bg2 {
  transition-delay: 0.2s;
}
.side-menu .bg .bg3 {
  transition-delay: 0.4s;
}
.side-menu form.search {
  border-bottom: 1px solid #616161;
  padding: 15px 20px;
  transform: translateY(40px);
  opacity: 0;
}
.side-menu form.search input {
  border: none;
  outline: none;
  box-sizing: border-box;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  width: 80%;
}
.side-menu form.search input:-moz-placeholder-shown {
  color: #616161;
}
.side-menu form.search input:placeholder-shown {
  color: #616161;
}
.side-menu form.search label {
  color: #fff;
}
.side-menu .menu-galary {
  transform: translateY(40px);
  opacity: 0;
}
.side-menu .menu-galary .menu li a {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.side-menu .menu-galary .gallary img {
  width: 100%;
  height: 124px;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-menu .social-media {
  transform: translateY(40px);
  opacity: 0;
}
.side-menu .social-media a {
  font-size: 30px;
  color: #bfbfbf;
}

.side-menu-active {
  width: 100%;
  opacity: 1;
  transform: translateX(0px);
}
.side-menu-active .menu-header {
  opacity: 1;
}
.side-menu-active .menu-header .close {
  transform: translateX(0px);
}
.side-menu-active .bg .span {
  width: 100%;
}
.side-menu-active .menu-galary {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.3s;
  transition-delay: 1s;
}
.side-menu-active form.search {
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s;
  transition-delay: 0.8s;
}
.side-menu-active .social-media {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.3s;
  transition-delay: 1.2s;
}

.banner {
  background: url(../image/banner-bg.webp);
  background-size: cover;
  padding: 100px 0px;
}
.banner .mySwiper {
  padding: 180px 0px 30px 0px;
  overflow: visible;
}
.banner .mySwiper .swiper-slide .left-img {
  position: relative;
  padding: 0px 30px;
}
.banner .mySwiper .swiper-slide .left-img .back-img {
  position: relative;
  transform: scale(0);
  opacity: 0;
}
.banner .mySwiper .swiper-slide .left-img .back-img .frame {
  width: 100%;
}
.banner .mySwiper .swiper-slide .left-img .back-img .certified {
  position: absolute;
  top: -20px;
  right: -20px;
}
.banner .mySwiper .swiper-slide .left-img .back-img .like {
  position: absolute;
  bottom: -50px;
  left: -30px;
  z-index: -1;
}
.banner .mySwiper .swiper-slide .left-img .back-img .instagram {
  position: absolute;
  top: -80px;
  left: -60px;
  z-index: -1;
}
.banner .mySwiper .swiper-slide .left-img .front-img {
  position: absolute;
  top: -150px;
  left: 0px;
  padding: 0px 30px;
}
.banner .mySwiper .swiper-slide .left-img .front-img img {
  width: 100%;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: 0.8s;
  opacity: 0;
}
.banner .mySwiper .swiper-slide .right-content {
  perspective: 800px;
}
.banner .mySwiper .swiper-slide .right-content .merketing-text {
  font-size: 20px;
  font-weight: 900;
  padding: 10px 20px;
  background: #000;
  display: inline-block;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 18%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 18%, 100% 100%, 0% 100%);
  margin-left: 60px;
  transform: rotateX(90deg);
  transition: 0.5s;
  color: transparent;
  opacity: 0;
}
.banner .mySwiper .swiper-slide .right-content .ino {
  font-size: 80px;
  background: var(--themered);
  padding: 10px 50px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  -webkit-clip-path: polygon(6% 0, 100% 0, 100% 90%, 0% 100%);
          clip-path: polygon(6% 0, 100% 0, 100% 90%, 0% 100%);
  z-index: 2 !important;
  transform: rotateX(90deg);
  transition: 0.5s;
  transition-delay: 0.5s;
  color: transparent;
}
.banner .mySwiper .swiper-slide .right-content .solu {
  font-size: 80px;
  background: #e1eaea;
  font-weight: 900;
  color: #000;
  padding: 10px 50px;
  display: inline-block;
  -webkit-clip-path: polygon(5% 7%, 93% 0, 100% 100%, 0% 100%);
          clip-path: polygon(5% 7%, 93% 0, 100% 100%, 0% 100%);
  margin-top: -10px;
  z-index: -2;
  transform: rotateX(90deg);
  transition: 0.5s;
  transition-delay: 1s;
  color: transparent;
}
.banner .mySwiper .swiper-slide .right-content p {
  color: #575757;
  font-size: 18px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.6s;
}
.banner .mySwiper .swiper-slide-active .left-img .back-img {
  transform: scale(1);
  opacity: 1;
  transition: 1.5s;
}
.banner .mySwiper .swiper-slide-active .left-img .front-img img {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  opacity: 1;
  transition-delay: 1.2s;
}
.banner .mySwiper .swiper-slide-active .right-content .merketing-text,
.banner .mySwiper .swiper-slide-active .right-content .ino,
.banner .mySwiper .swiper-slide-active .right-content .solu {
  transform: rotateX(0deg);
  transform-origin: top;
  opacity: 1;
  color: #fff;
}
.banner .mySwiper .swiper-slide-active .right-content .solu {
  color: #000;
}
.banner .mySwiper .swiper-slide-active .right-content p {
  transform: translateY(0px);
  opacity: 1;
}
.banner .mySwiper .swiper-button-next,
.banner .mySwiper .swiper-button-prev {
  min-width: 70px;
  height: 70px;
  background: #000;
  border-radius: 50%;
  left: -180px;
}
.banner .mySwiper .swiper-button-next {
  left: unset;
  right: -180px;
}
.banner .mySwiper .swiper-button-next::after,
.banner .mySwiper .swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  content: "\f178";
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 60px;
}
.banner .mySwiper .swiper-button-prev::after {
  content: "\f177";
}

.buisness-trend .container {
  border-bottom: 0.5px solid #bdbdbd;
}
.buisness-trend .container .trend-left h2 {
  font-weight: 800;
}
.buisness-trend .container .trend-left p {
  font-size: 18px;
  color: var(--deepgray);
  padding: 5px 0px;
}
.buisness-trend .container .trend-left h3 {
  font-size: 20px;
  font-weight: 800;
  padding: 5px 0px;
}
.buisness-trend .container .trend-right .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
.buisness-trend .container .trend-right .swiper-slide {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}
.buisness-trend .container .trend-right .swiper-slide .lunch-icon {
  width: 80px;
  height: 80px;
  background: #e7e3f2;
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  line-height: 80px;
}
.buisness-trend .container .trend-right .swiper-slide h4 {
  font-size: 25px;
  font-weight: 800;
  text-transform: capitalize;
  padding: 10px 0px 0px 0px;
}
.buisness-trend .container .trend-right .swiper-slide p {
  font-size: 18px;
  color: var(--deepgray);
}
.buisness-trend .container .trend-right .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
}
.buisness-trend .container .trend-right .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
}
.buisness-trend .container .trend-right .swiper-pagination .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: var(--themered);
}

.who-we-are .who-we-are-left {
  position: relative;
}
.who-we-are .who-we-are-left .creative {
  position: absolute;
  top: 40px;
  left: 0px;
  z-index: 2;
}
.who-we-are .who-we-are-left .views {
  position: absolute;
  top: 60%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 2;
}
.who-we-are .who-we-are-left .profile {
  position: absolute;
  bottom: -190px;
  left: -30px;
  transform: translateY(-50%);
  z-index: 2;
}
.who-we-are .who-we-are-left .left-img {
  position: relative;
}
.who-we-are .who-we-are-left .left-img::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 50%;
  background: #ffffff;
  border-radius: 30px;
  bottom: 0px;
  left: 5%;
  z-index: -2;
}
.who-we-are .who-we-are-left .left-img::before {
  content: "";
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  position: absolute;
  top: 47%;
  left: 4%;
  border-radius: 50%;
  animation: zoominout 1s linear infinite alternate-reverse;
}
@keyframes zoominout {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
.who-we-are .right-content .brand .left .bard-card {
  background: #fff;
  min-height: 60px;
  display: grid;
  place-content: center;
  border-radius: 60px;
}
.who-we-are .right-content .brand .right {
  font-size: 22px;
  font-weight: 800;
  border-left: 2px solid #dddddd;
}
.who-we-are .right-content .brand .right .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
}

.portfolio .swiper {
  min-height: 70vh;
}
.portfolio .swiper .swiper-wrapper {
  padding: 100px 0px;
}
.portfolio .swiper-slide {
  font-size: 18px;
  min-height: 400px;
  transition: 0.3s;
}
.portfolio .swiper-slide::after, .portfolio .swiper-slide::before {
  content: "";
  width: 0px;
  height: 60%;
  background: var(--themered);
  position: absolute;
  top: 20%;
  right: 100%;
  transition: 0.5s;
}
.portfolio .swiper-slide::before {
  left: unset;
  left: 100%;
}
.portfolio .swiper-slide .card-img img {
  display: block;
  width: 100%;
  height: 490px;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio .swiper-slide .card-content {
  position: absolute;
  left: 5%;
  bottom: 0px;
  opacity: 0;
  z-index: 2;
  background: #000;
  width: 90%;
  transform: translateY(-80px);
  transform: 0.8s;
  padding: 20px 20px;
  border-radius: 20px;
  transition: 0.6s;
}
.portfolio .swiper-slide .card-content .projectbtn {
  color: var(--themered);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.portfolio .swiper-slide .card-content .section-sub-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}
.portfolio .swiper-slide-next {
  transform: scale(1.2);
  border-radius: 10px;
  border-bottom: 10px solid var(--themepurple);
  z-index: 2;
}
.portfolio .swiper-slide-next::after, .portfolio .swiper-slide-next::before {
  width: 15px;
}
.portfolio .swiper-slide-next .card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.portfolio .swiper-slide-next .card-content {
  transform: translateY(40px);
  opacity: 1;
}
.portfolio .swiper-button-next {
  right: 25%;
}
.portfolio .swiper-button-prev {
  left: 25%;
}
.portfolio .swiper-button-next,
.portfolio .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 5px;
}
.portfolio .swiper-button-next:after,
.portfolio .swiper-button-prev:after {
  font-family: "Font Awesome 5 Free";
  content: "\f178";
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.portfolio .swiper-button-prev:after {
  content: "\f177";
}
.portfolio .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  left: unset;
  padding: 20px 80px 20px 0px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.portfolio .swiper-pagination .swiper-pagination-bullet {
  background: none;
  font-size: 22px;
  font-weight: 800;
  transition: 0.4s;
  color: unset;
}
.portfolio .swiper-pagination .swiper-pagination-bullet-active {
  font-size: 50px;
  color: var(--themered) !important;
  font-weight: 900;
  margin-bottom: 50px;
}

.service .container .service-left .icon-card {
  text-align: center;
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}
.service .container .service-left .icon-card .section-sub-title {
  padding: 20px 0px 0px 0px;
}
.service .container .service-left .icon-card .icon {
  font-size: 40px;
}
.service .container .service-right .completed-word .right h3 {
  font-size: 80px;
  color: var(--themered);
  font-weight: 900;
}

.growth {
  background: url(../image/growth-section-bg.webp);
  background-size: cover;
  color: white;
  padding: 130px 0px;
  position: relative;
}
.growth .commonbtn {
  z-index: 2;
}
.growth .section-paragraph {
  color: #fff;
}
.growth .growth-left .certifed-word .right p {
  font-size: 18px;
  color: #fff !important;
  font-weight: 800;
}
.growth .growth-left .certifed-word .right p .fa-circle-check {
  color: var(--themered);
}
.growth .growth-right .section-title {
  color: var(--themered);
}
.growth .growth-right .text-content:nth-child(1) {
  border-bottom: 2px solid var(--themered);
}
.growth .mobile-hand {
  position: absolute;
  right: 10%;
  bottom: 0px;
}
.growth .star {
  position: absolute;
  right: 25%;
  top: 0px;
  width: 32%;
}
.growth .star img {
  width: 100%;
}

.pricing .pricing-container {
  min-height: 705px;
  width: 85%;
  margin: 0px auto;
}
.pricing .pricing-container .pricing-card-img img {
  width: 100%;
  min-height: 255px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pricing .pricing-container .pricing-carousel {
  position: relative;
}
.pricing .pricing-container .pricing-carousel::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  left: -10%;
  bottom: -5%;
  background: linear-gradient(to bottom, #fff 86%, var(--themered) 14%);
  z-index: -1;
  border-radius: 10px;
}
.pricing .pricing-container .pricing-carousel .swiper {
  overflow: unset;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-img {
  height: 415px;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-img img {
  width: 100%;
  height: 100%;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content .section-sub-title {
  font-size: 30px;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content .section-title {
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content .section-title span {
  font-size: 20px;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content ul {
  transform: translateX(20px);
  opacity: 0;
  transition: 0.5s;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content ul li {
  font-weight: 600;
}
.pricing .pricing-container .pricing-carousel .swiper-slide .card-content ul li i {
  color: var(--themered);
  font-size: 20px;
}
.pricing .pricing-container .pricing-carousel .swiper-slide-active .card-content ul {
  transform: translateX(0);
  opacity: 1;
}
.pricing .pricing-container .pricing-carousel .swiper-slide-active .card-content .section-title,
.pricing .pricing-container .pricing-carousel .swiper-slide-active .card-content .section-sub-title {
  transform: translateY(0px);
  opacity: 1;
}
.pricing .pricing-container .pricing-carousel .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pricing .pricing-container .pricing-carousel .swiper-button-next,
.pricing .pricing-container .pricing-carousel .swiper-button-prev {
  min-width: 70px;
  height: 70px;
  background: #000;
  border-radius: 50%;
  left: -40px;
}
.pricing .pricing-container .pricing-carousel .swiper-button-next {
  left: unset;
  right: -40px;
}
.pricing .pricing-container .pricing-carousel .swiper-button-next::after,
.pricing .pricing-container .pricing-carousel .swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  content: "\f178";
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 60px;
}
.pricing .pricing-container .pricing-carousel .swiper-button-prev::after {
  content: "\f177";
}
.pricing .pricing-container .pricing-carousel .badg {
  margin: 5px auto;
}
.pricing .pricing-container .pricing-carousel .badg p {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 20px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
}
.pricing .pricing-container .pricing-carousel .pricing-btn {
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.testimonial {
  background: #000;
  padding: 80px 0px;
  color: #fff;
}
.testimonial .swiper {
  min-height: 400px;
}
.testimonial .mySwiper .swiper-slide {
  text-align: center;
}
.testimonial .mySwiper .swiper-slide .testimonial-profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto;
}
.testimonial .mySwiper .swiper-slide .testimonial-profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .mySwiper .swiper-slide .paragraph {
  font-weight: 600;
}
.testimonial .mySwiper .swiper-slide .icon-name {
  text-align: left;
}
.testimonial .mySwiper .swiper-slide .icon-name .icon {
  width: 60px;
  height: 60px;
  background: var(--themered);
  font-size: 40px;
  color: #151515;
  text-align: center;
  line-height: 60px;
}
.testimonial .mySwiper .swiper-slide .icon-name p {
  color: var(--themered);
  font-size: 18px;
  font-weight: 700;
}
.testimonial .mySwiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
}
.testimonial .mySwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: rgb(82, 82, 82);
  opacity: 1;
}
.testimonial .mySwiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: var(--themered);
}
.testimonial .testimonial-brand .col-12 img {
  opacity: 0.3;
  transition: 0.3s;
}
.testimonial .testimonial-brand .col-12 img:hover {
  opacity: 1;
}

.professinal {
  padding-top: 115px;
  overflow-x: hidden;
}
.professinal .professinal-left {
  position: relative;
}
.professinal .professinal-left .back-img {
  position: absolute;
  width: 90%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.professinal .professinal-left .back-img img {
  width: 100%;
  height: 100%;
}
.professinal .professinal-right .circle {
  /* color animation */
  /* 3rd progress bar */
}
.professinal .professinal-right .circle .circle-wrap {
  min-width: 115px;
  min-height: 115px;
  background: #e0e0e0;
  border-radius: 50%;
}
.professinal .professinal-right .circle .circle-wrap .circle .mask,
.professinal .professinal-right .circle .circle-wrap .circle .fill {
  width: 115px;
  height: 115px;
  position: absolute;
  border-radius: 50%;
}
.professinal .professinal-right .circle .circle-wrap .circle .mask {
  clip: rect(0px, 115px, 115px, 75px);
}
.professinal .professinal-right .circle .circle-wrap .inside-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  line-height: 90px;
  text-align: center;
  margin-top: 13px;
  margin-left: 13px;
  position: absolute;
  z-index: 10;
  font-weight: 800;
  font-size: 20px;
}
.professinal .professinal-right .circle .mask .fill {
  clip: rect(0px, 75px, 185px, 0px);
  background-color: var(--themered);
}
.professinal .professinal-right .circle .mask.full,
.professinal .professinal-right .circle .circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(130deg);
}
@keyframes fill {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(130deg);
  }
}
.professinal .professinal-right .circle h3 {
  font-size: 20px;
  font-weight: 800;
}
.professinal .animation-text {
  padding: 40px 0px;
  background: #5fd7ff;
}
.professinal .animation-text ul {
  animation: movetext 30s infinite;
}
.professinal .animation-text ul li {
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  white-space: nowrap;
  -webkit-text-stroke: 2px #000;
}
@keyframes movetext {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.blog .blog-card .card-img {
  height: 285px;
  border-radius: 10px;
  overflow: hidden;
}
.blog .blog-card .card-img img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-card .badg {
  display: inline-block;
  padding: 5px 12px;
  margin: 15px 0px;
  background: var(--themered);
  border-radius: 4px;
  text-transform: capitalize;
  font-weight: 800;
  color: #fff;
}
.blog .blog-card .section-subtitle {
  font-weight: 800;
}
.blog .blog-card ul li {
  font-weight: 600;
}
.blog .blog-card ul li i {
  color: var(--themered);
}
.blog .blog-card ul .line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #dedede;
}
.blog .blog-card:hover .card-img img {
  transform: scale(1.1);
  filter: grayscale(100%);
}

footer {
  padding: 70px 0px;
  background: #000;
}
footer li,
footer a,
footer h3,
footer h2,
footer p {
  color: #fff;
}
footer .footer-left h2 {
  font-size: 83px;
  font-weight: 900;
}
footer .footer-left .section-paragraph {
  color: #878787;
}
footer .footer-left .social-link {
  padding: 20px 0px;
}
footer .footer-left .social-link a {
  font-size: 25px;
  display: inline-block;
  margin-right: 10px;
}
footer .footer-left .copyright {
  font-size: 16px;
  color: rgb(171, 171, 171);
  font-weight: 600;
}
footer .footer-right .footer-right-top {
  border-bottom: 2px solid rgb(56, 56, 56);
}
footer .footer-right .footer-right-top .section-sub-title {
  font-size: 18px;
  font-weight: 600;
}
footer .footer-right .footer-right-top h3 {
  font-size: 23px;
  font-weight: 800;
}
footer .footer-right .footer-right-top ul li {
  padding: 5px 0px;
}
footer .footer-right .footer-right-top ul li a {
  font-size: 16px;
  color: rgb(171, 171, 171);
  font-weight: 600;
}
footer .footer-right .footer-right-top form input {
  padding: 18px 30px;
  border-radius: 5px;
  border: none;
  outline: none;
}
footer .footer-right .footer-right-top form .footerbtn {
  padding: 15px 25px;
  background: var(--themered);
  color: #fff;
  border-radius: 5px;
  border: none;
  outline: none;
  font-weight: 700;
  margin-top: 10px;
}
footer .footer-right .footer-right-bottom img {
  border-radius: 10px;
}

@media (max-width: 1600px) {
  .banner .mySwiper .swiper-button-next {
    left: unset;
    right: -30px;
  }
  .banner .mySwiper .swiper-button-prev {
    left: -40px;
  }
}
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
  }
  .section-sub-title {
    font-size: 20px;
  }
  .banner .mySwiper {
    padding: 80px 0px 20px 0px;
  }
  .banner .mySwiper .swiper-slide .right-content .ino {
    font-size: 40px;
  }
  .banner .mySwiper .swiper-slide .right-content .solu {
    font-size: 40px;
  }
  .banner .left-img {
    margin-top: 180px;
  }
  .banner .swiper-button-next, .banner .swiper-button-prev {
    min-width: 50px !important;
    height: 50px !important;
  }
  .banner .swiper-button-next {
    left: unset;
    right: 0px !important;
  }
  .banner .swiper-button-prev {
    left: 0px !important;
  }
  .who-we-are .right-content {
    margin-top: 100px;
  }
  .portfolio {
    overflow-x: hidden;
  }
  .portfolio .swiper {
    overflow: unset;
  }
  .portfolio .swiper-slide-next {
    opacity: 0;
  }
  .portfolio .swiper-slide-active {
    transform: scale(1.1);
    border-radius: 10px;
    border-bottom: 10px solid var(--themepurple);
    z-index: 2;
  }
  .portfolio .swiper-slide-active::after, .portfolio .swiper-slide-active::before {
    width: 15px;
  }
  .portfolio .swiper-slide-active .card-img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
  }
  .portfolio .swiper-slide-active .card-content {
    transform: translateY(40px);
    opacity: 1;
  }
  .portfolio .swiper-pagination {
    bottom: -60px;
  }
  .service .service-right {
    margin-top: 40px;
  }
  .growth .growth-right {
    margin-top: 30px;
  }
  .testimonial .mySwiper .swiper-pagination {
    bottom: 0px;
  }
  .pricing .pricing-container {
    width: 100%;
  }
  .pricing .pricing-container .pricing-carousel::after {
    width: 100%;
    left: 0px;
  }
  .pricing .pricing-container .pricing-carousel .swiper-button-next, .pricing .pricing-container .pricing-carousel .swiper-button-prev {
    min-width: 50px !important;
    height: 50px !important;
  }
  .pricing .pricing-container .pricing-carousel .swiper-button-next {
    left: unset;
    right: 0px !important;
  }
  .pricing .pricing-container .pricing-carousel .swiper-button-prev {
    left: 0px !important;
  }
}
@media (max-width: 576px) {
  .who-we-are .who-we-are-left .left-img img {
    width: 100%;
  }
  .who-we-are .who-we-are-left .profile {
    left: 0px;
    width: 100%;
  }
  .service .container .service-right .completed-word .right h3 {
    font-size: 40px;
  }
}/*# sourceMappingURL=style.css.map */