@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #009FE2;
  --secondary-color:#FFDB0D;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 15px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 70px 0 70px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  font-weight: 700;
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  font-weight: 600;
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 500;
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
}
.title {
  font-size: 18px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #000;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.header.stricky-fixed .leftLogo{
  width: 90px;
  margin-top: -20px;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading{
  font-family: "Plus Jakarta Sans", sans-serif;
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.containerFull{
  max-width: 1680px;
  margin: 0 auto;
}
.header{
  padding: 0px 0;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}
.heroSection{
  position: relative;
}
.heroSection img{
  width: 100%;
  height: 100vh;
}
.carousel-item:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right,  rgba(0,0,0,0.68) 0%,rgba(0,0,0,0.38) 100%);
}
.leftLogo {
  width: 115px;
  margin-top: -20px;
}
.leftLogo img{
  max-width: 100%;
}
.carousel-control-next, .carousel-control-prev{
  width: 5%;
}
.centerMenu ul{
  display: flex;
}
.centerMenu ul li a{
  display: inline-block;
  padding: 12px 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.centerMenu ul li:hover a, .centerMenu ul li.active a{
  color: #ccc;
}
.phoneHeader{
  position: relative;
  z-index: 1;
}
.phoneHeader a{
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding-left: 65px;
  letter-spacing: 1px;
}
.phoneHeader:before{
  content: "\f095";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
}
.btnHeader{
  display: inline-block;
  border: 1px solid #fff;
  padding:10px 30px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.btnHeader:hover{
  background: #fff;
  color:#000
}
.carousel-caption{
  width: 50%;
  bottom: auto;
  top: 56%;
  left: 8%;
  right: auto;
  text-align: left;
  z-index: 99;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.textGrey{
  color: #ccc;
}
.btnTheme{
  display: inline-block;
  padding: 16px 42px 20px 42px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 17px;
  color: #fff;
  background: var(--primary-color);
  font-weight: 600;
  border:none
}
.btnTheme:hover{
  background:#000;
  color: #fff;
}
.heroSection .btnTheme:hover{
  color: #000;
  background: #fff;
}
.carousel-caption h1, .carousel-caption h2, .carousel-caption h3, .carousel-caption p, .carousel-caption a{
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.active .carousel-caption h1, .active .carousel-caption h2, .active .carousel-caption h3, .active .carousel-caption p, .active .carousel-caption a{
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.active .carousel-caption p{
  transition-delay: .1s;
}
.active .carousel-caption a{
  transition-delay: .2s;
}
.carousel-indicators [data-bs-target]{
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  position: relative;
}
.carousel-indicators [data-bs-target]:after{
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
}
.carousel-indicators .active{
  border-color: var(--primary-color);
}
.carousel-indicators .active:after{
  background: var(--primary-color);
}
.iconLeft{
  width: 80px;
}
.iconLeft img{
  max-width: 100%;
}
.itemSubServices{
  display: flex;
  gap: 1rem;
  height: 100%;
}
.rightSub{
  width: calc(100% - 100px);
}
.itemSubServices{
  padding: 40px 30px;
}
.bgGrey{
  background: #f5f5f5;
}
.carousel-indicators{
  bottom: 15px;
}
.tagSection{
  display: inline-block;
  padding: 5px 15px;
  color: var(--primary-color);
  background: linear-gradient(to right,  rgba(204,235,249,1) 0%,rgba(0,159,226,0) 100%);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.column1{
  width: 60%;
  margin: 0 0 0 auto;
}
.column1 img, .column2 img{
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.column2{
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 50%;
}
.rightAboutHome{
  position: relative;
}
.column2 img{
  border:10px solid #fff
}
.numberProject {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.numberProject h5 {
  width: 250px;
  margin-left: 35px;
}
.leftMenuService ul li{
  margin: 10px 0;
  padding: 15px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 600;
  padding-left: 60px;
  position: relative;
  cursor: pointer;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}
.leftMenuService img{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 30px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.centerServiceImg{
  padding: 0 3rem;
}
.centerServiceImg img{
  max-width: 100%;
}
.iconRight{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  padding: 25px;
}
.iconRight img{
  max-width: 100%;
}
.leftMenuService ul li.active{
  color: var(--primary-color);
}
.leftMenuService ul li.active img{
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.bgSection{
  background: #252840;
}
.itemProduct{
  padding:60px 35px;
  border-right: 1px solid #444;
  text-align: center;
  height: 100%;
}
.itemProduct .small_heading{
  font-size: clamp(1rem, 1.1vw, 1.4rem);
}
.iconProduct{
  width: 70px;
  margin: 0 auto 20px;
}
.iconProduct img{
  max-width: 100%;
}
.itemProduct p{
  color: #fff;
}
.borderNone{
  border-right: none;
}
.borderTop{
  border-top: 1px solid #444;
}
.itemProduct:hover{
  background: var(--primary-color);
}
.formBox{
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.leftEnquiry{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 50px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.leftEnquiry:after{
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 250px;
  height: 250px;
  z-index: -1;
  background: linear-gradient(to bottom,  rgba(252,252,252,1) 0%,rgba(0,158,221,1) 100%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: roateCircle infinite 10s ease-in-out;
  -webkit-animation: roateCircle infinite 10s ease-in-out;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
@keyframes roateCircle {
  0%{
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
100%{
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
}
.itemEnquiry{
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.iconContact i{
  font-size: 22px;
  color: #fff;
}
.rightContact{
  width: calc(100% - 30px);
}
.rightContact p a, .rightContact p{
  font-weight: 600;
  color: #fff;
}
.hamburger,
.mobileMenu {
  display: none;
}

.rightForm{
  padding: 40px;
}
.rightForm .form-control{
  border:none;
  border-bottom: 1px solid #999;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0 5px;
  font-weight: 600;
  background: #f5f5f5;
}
.rightForm .form-control:focus{
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}
.rightForm .form-floating>label{
  padding-left: 3px;
  font-weight: 500;
}
.rightForm textarea{
  height: 120px !important;
}
.spacer{
  height: 100px;
}
.innerClient{
  height: 100px;
}
.innerClient img{
  max-width: 100%;
  max-height: 100%;
}
.innerClient{
  border:1px solid #e0e0e0;
  padding:10px;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
}
.slick-slide {
  margin: 0 10px;
}
.slick-list {
  margin: -10px -10px;
}
.footer{
  background: #000;
  padding: 50px 0;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.footerLogo{
  margin-top: -50px;
}
.textLight{
  color :#ccc;
}

/* about */
.about-section {
  background: url('../images/banner/banner.jpg') no-repeat center center/cover;
  position: relative;
  height: 300px;
  overflow: hidden;
  padding-top: 200px;
  color: #fff; 
}

.about-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1; 
}

.about-section .containerFull {
  position: relative;
  z-index: 2; 
  
}

.product-img{
  width: 600px;
  height: 450px;
}

.image-border{
  border: 8px solid #fff;
}
 
.itemCourseHome {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

}
.border-bottom2 {
  border-bottom: 4px solid white;
  width: 155px;

  margin: 0 auto;  
}
.whatsApp{
  position:fixed;
  bottom:0px;
  right:0px;
  width:190px;
  z-index:99;
}
.whatsApp img{
  max-width:100%;
}

.max-cont2{
  max-width: 900px;
  margin: 0 auto;
}
.iconsHomeCourse img{
  max-width: 30%;
}
.itemCourseHome{
  padding: 50px 45px 40px;
  border-radius: 15px;
  border: 1px solid black;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px 0px;
  position: relative;
  overflow: hidden;
}
.itemCourseInnerContent{
  padding: 50px 45px 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background:var(--primary-color);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -moz-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -ms-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  -o-transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
}
.itemCourseInnerContent p{
  color: #fff;
}
.itemCourseHome:hover .itemCourseInnerContent{
  bottom: 0;
}
 .product-icon {
  width: 36px;
  height: 36px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.main-block {
  width: 60%;
  background-color: #252840;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  height: 600px;
  
}

.video-box {
  position: absolute;
  bottom: 20%;
  right: -65%;
  width: 70%;
  z-index: 10;
}

.play-button i {
  transition: transform 0.3s ease;
}
.play-button:hover i {
  transform: scale(1.2);
}
.icon-hover-wrap {
  position: relative;
  width: 60px;
  height: 60px;
}

.icon-hover-wrap .icon {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  z-index: 2;
  transition: transform 0.3s ease;
}




.icon-hover-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
      background-color: rgba(173, 216, 230, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.icon-hover-wrap:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.feature-box {
  
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.15);
}

.point-item {
  border-bottom: 2px dashed #dee2e6;
  padding-bottom: 30px;
  width: 580px;

}

.serv-card-bg {
    padding: 30px;
   background-color: #c9c9db;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.point-item:last-child {
  border-bottom: none;
}
.icon-box {
  width: 45px;
  height: 45px;
  border: 2px solid white; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.vm-box {
  border: 1px solid #000;
  padding: 20px;

  height: 100%;
background-color: #e6f0fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.icon-box:hover {
  background-color: blue;
  color: #fff;
}
   .service-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    padding-bottom: 60px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

 .service-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}


  .service-content {
    padding: 35px 20px 20px 20px;

  }

 

.service-bottom-icon {
  position: absolute;
  top: 170px; 
  left: 20%;
  transform: translateX(-50%);
  z-index: 2;
 
}
.service-point {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.service-icon {
  background-color: #0d6efd; 
  color: #fff;               
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.max-cont {
  max-width: 700px; 
 
}


/* .text-box {
  border: 1px solid black;
 padding: 50px;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #222;
} */
.icon-wrapper {
  background-color: #002366; 
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.bottom-border-highlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 80%;
  background:var(--primary-color);
  border-radius: 2px 2px 0 0;
}
.with-bottom-border {
  position: relative;
}
.main-block {
  width: 60%;
}

.main-block .main-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px #0003;
 
}

.form-block {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 40%;
  padding: 50px;
  background: #ffffff;
  box-shadow: 0 10px 30px #0003;
  border-radius: 16px;
  transform: translate(20px, 20px);
}

.contact-info-section {
  background: #002366;
  width: 90%;
  margin: 50px auto;  
  padding: 30px;     
  border-radius: 5px;
  box-shadow: 0 10px 30px #0003;
}
.form-block .form-control {
  border: 1px solid black;
  box-shadow: none;
}

.form-block .form-control:focus {
  outline: none;
  border: 1px solid black;
  box-shadow: 0 0 0 2px black;
}
.accordion-button{
    font-size:1rem;
    font-weight:600;
}

.accordion-button:focus{
    outline:none;
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    color:#fff;
    background:#009FE2;
    box-shadow:none;
}


.team-item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
}

blockquote {
  font-size: 1.1rem;
  border-left: 4px solid #0d6efd;
  padding-left: 1rem;
  color: #0d6efd;
}
.get-in-touch-box {
  background-color: #fff;
  padding: 30px;
border-radius: 20px;
  width: 400px;
  height: 300px;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.userIcon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
}
.userIcon i{
    font-size:30px;
}

.innerItem{
    background:#fff;
    padding:40px;
    border-radius:10px;
}
.innerItem span{
    display:inline-block;
    background:var(--primary-color);
    padding:8px 10px;
    border-radius:20px;
    color: #fff;
}
.innerItem span i{
    padding:0 3px;
    font-size:15px;
}
.mySwiper{
    padding-left:30px;
}
.swiper-button-next, .swiper-button-prev{
    width:40px !important;
    height:40px !important;
    border-radius:50%;
    background:#ccc;
    
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size:20px !important;
    color:#000 !important;
}
.swiper-button-prev{
    left:var(--swiper-navigation-sides-offset,5px) !important;
}
.swiper-button-next{
    right:var(--swiper-navigation-sides-offset,5px) !important;
}




