@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: auto;
  position: relative;
  font-family: "Urbanist";
  overflow: hidden;
}
.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 100;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.startplay {
  cursor: pointer;
}
.loaded {
  transition-delay: 0.5s;
  left: 100%;
}
.loaded .loaderBar,
.loaded .loaderText {
  transition-delay: 0.5s;
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  left: 100px;
}
.loaderBar {
  width: 30px;
  height: 0;
  transition: var(--transition-hover);
  border: 0;
  border-right: solid 1px #9289c1;
}
.loaderText {
  height: 0;
  font-size: 50px;
  font-weight: 300;
  color: #9289c1;
  display: flex;
  transition: var(--transition-hover);
  flex-direction: column;
  line-height: 1;
  justify-content: end;
}
.barsa-hero {
  min-height: 100vh;
  width: 100%;
}
.tag4 {
  width: max-content;
/*  margin: 0 auto;*/
  text-align: center;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag4::before {
  content: "";
  border-radius: 50%;
  background-color: var(--bg-color);
  height: 10px;
  width: 10px;
  display: inline-block;
}
.search {
  background-color: var(--bg-color);
  width: 100%;
  height: 89px;
  border-radius: 45px;
  padding: 5px 5px 5px 40px;
  display: flex;
  align-items: center;
}
.search input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  color: rgb(219, 219, 219);
}

.search input::placeholder {
  font-size: 14px;
  color: rgb(219, 219, 219);
}
.search input:focus {
  outline: none;
}

.search .searchBtn {
  aspect-ratio: 1 / 1;
  height: 100%;
  border-radius: 50%;
  border: 0;
  background: var(--primary-gradiant);
  display: grid;
  place-content: center;
}
.search .searchBtn {
  font-size: 20px;
  color: var(--text-color);
}
.sideImgs img {
  background-color: rgb(255, 232, 34);
  border-radius: 150px;
/*  aspect-ratio: 1 /1;*/
  opacity: 0;
  transform: translateY(200px);
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
.barsa {
  width: 100%;

  height: 100vh;
}
.barsa-header {
  width: 100%;

  height: auto;
}
.barsa-nav {
  position: relative;
  /*padding: 0 80px;*/
  /* background-color: var(--bg-color); */
  z-index: 10;
  position: absolute;
  width: 100%;
}
.barsa-nav:after {
  content: '';
  width: 30%;
  height: 100%;
  background-color: var(--bg-color);
/*  background: red;*/
  position: absolute;
  top:0;
  right:0;
  z-index: 0;
  }
.header-right{
    display: inline-flex;
    padding: 0 0px 0 50px;
    background-color: var(--bg-color);
    /*  width: calc(100% - 150px);*/
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
   /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 1% 100%);*/
    border-bottom-left-radius: 43px;
}
.desktopNav {
  padding-right: 50px;
}
.sticky {
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;
  background-color: var(--bg-color);
}
.sticky  .logo img{
  filter: none;
}
.transitionNav {
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo {
  display: flex;
  align-items: center;
  /*gap: 5px;*/
  padding-top: 10px;
}
.logo h1 {
  line-height: 1;
  font-size: 50px;
  color: var(--heading-color);
  font-weight: 900;
  position: relative;
}
.logo img {
  width: 108px;
  filter: brightness(0) invert(1);
}
.logo .logo-dot {
  font-size: 82px;
  position: absolute;
  bottom: -5px;
  right: -20px;
}
.barsa-nav .header-Nav li a {
  font-size: 16px;
  color: var(--heading-color);
  font-weight: 700;
  display: block;
  padding: 35px 0;
  line-height: 1;
  transition: var(--transition-hover);
  position: relative;
}
.mobileNav {
  display: none !important;
}
.barsa-nav .header-Nav li a::before,
.barsa-nav .header-Nav li a::after {
  content: "";
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  transition: var(--transition-hover);
  background-color: var(--primary-color);
}
.barsa-nav .header-Nav li a::before {
  top: 0;
}
.barsa-nav .header-Nav li a::after {
  bottom: 0;
}

.barsa-nav .header-Nav li a:hover {
  color: var(--secondary-color);
}
.barsa-nav .header-Nav li a:hover::before,
.barsa-nav .header-Nav li a:hover::after {
  width: 100%;
}
.more {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
.socialMedia {
  gap: 20px;
}
.socialMedia a i {
  font-size: 16px;
  color: var(--heading-color-2);
  transition: var(--transition-hover);
}
.socialMedia a i:hover {
  color: var(--secondary-color);
}
.cart {
  position: relative;
}
.cart i {
  font-size: 21px;
  color: var(--nav-color);
}
.cart::before {
  content: "2";
  font-size: 9px;
  color: var(--text-color);
  display: grid;
  place-content: center;
  position: absolute;
  top: -5px;
  right: -10px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--primary-gradiant);
}
.barsa-button {
  display: grid;
  place-content: center;
  padding: 0 30px;
  border-radius: 29px;
  width: max-content;
  height: 55px;
  font-size: 14px;
  font-family: "Jost";
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  background-color: var(--nav-color);
  border:0;
}
.hamMenu {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--nav-color);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.hamMenu span {
  width: 20px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 5px;
  transition: 0.1s linear;
  margin: 0 auto;
}
.hamMenu:hover span {
  width: 25px;
}
.hamContent {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--nav-color);
  margin-top: 10px !important;
  border-radius: 10px;
  padding: 25px 35px;
  gap: 10px !important;
  width: max-content;
  display: none !important;
}
.hamContent li i {
  background: var(--text-color);
}
/*-------------form--------------*/
.barsa-hero {
  min-height: 98vh;
  background: linear-gradient(
    -90deg,
    rgb(217, 229, 255) 0%,
    rgb(235, 241, 255) 52%,
    rgb(252, 253, 255) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
/*  padding-right: 30px;
   padding-left: 50px;*/
  padding-top: 150px !important;!i;!;
  width: 100%;
  overflow: hidden;
}
.tag {
  display: block;
  margin: 0 auto;
  width: max-content;
  border-radius: 17px;
  font-size: 14px;
  color: var(--text-color);
  font-family: "Jost";
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 28px;
  text-transform: uppercase;
  background: var(--primary-gradiant);
}
.barsa-h1 {
  font-size: 100px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
}
.barsa-desc {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  color: var(--text-color-2);
  margin: 15px 0;
}
.barsa-form {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(30, 30, 30);
  box-shadow: 0px 2px 62px 0px rgba(0, 0, 0, 0.13);
  position: relative;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.heroBG {
  opacity: 1;
  overflow: hidden;
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form1 {
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: var(--primary-gradiant);
  padding: 32px 35px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.barsa-cut {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 95%);
}
.barsa-cut-reverse {
  clip-path: polygon(0 10%, 100% 0, 100% 95%, 0% 100%);
}
.barsa-h3 {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-color);
}
.barsa-h3.dark {
  color: rgb(38, 37, 36);
}
.barsa-h3.big {
  font-size: 52px;
}
.inputSingle {
  border-radius: 33px;
  border: solid rgb(235, 235, 235) 1px;
  background-color: transparent;
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  gap: 9px;
  margin-bottom: 12px;
  transition: var(--transition-hover);
}
.inputSingle i {
  font-size: 12px;
  color: var(--text-color);
}
.inputSingle input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-color);
}
.inputSingletextarea{
     align-items: flex-start;
    height: 114px;
    padding-top: 15px;
}
.inputSingletextarea textarea {
    flex: 1;
    height: 150px;
    background-color: transparent;
    border: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-color);
}
.form1 ::placeholder {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-color);
}
.inputSingle input:focus, .inputSingletextarea textarea:focus {
  outline: none;
  background-color: transparent;
}
.inputSingle:focus-within {
  background: var(--primary-gradiant);
 
}
.line {
  background-color: rgb(236, 241, 237);
  width: 100%;
  height: 1px;
  margin: 15px 0;
}
.barsa-h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}
.barsa-button2 {
  width: max-content;
  line-height: 59px;
  height: 55px;
  background-color: var(--text-color);
  border-radius: 31px;
  font-size: 18px;
  font-family: "Epilogue";
  padding: 0 40px;
  color: var(--heading-color);
  font-weight: bold;
  border: 0;
  transition: var(--transition-hover);
  position: relative;
}
.barsa-button2::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition-hover);
  font-size: 30px;
}
.barsa-button2:hover::before {
  left: 83%;
  opacity: 1;
}
.radioBtn {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0 20px;
  height: 41px;
  border: solid 2px rgb(235, 235, 235);
  background-color: transparent;
  position: relative;
  border-radius: 50px;
  gap: 10px;
  margin-bottom: 10px;
}
.radioBtn input {
  -webkit-appearance: none;
  border-radius: 50%;
  background-color: rgb(236, 241, 237);
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-hover);
}
/*.gifAnimate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: none;
}*/
.scrollbar-track {
  display: none !important;
}
.radioBtn input:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-hover);
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  pointer-events: none;
}
.radioBtn input:hover {
  background-color: var(--hover-color);
}
.radioBtn input:checked {
  background-color: var(--hover-color);
}
.radioBtn input:checked::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.radioBtn label {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
}
.barsa-h2 {
  font-size: 65px;
  color: var(--text-color);
  line-height: 1;
  font-weight: 900;
}
.barsa-list li {
  color: var(--text-color);
}
.barsa-list li i {
  font-size: 18px;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}
.barsa-button3 {
  width: max-content;
  height: 62px;
  padding: 0 35px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 31px;
  background: var(--primary-gradiant);
  border: 0;
  position: relative;
  transition: 0.5s linear;
}
.barsa-button3 span {
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin-left: 7px;
}
.barsa-button3 i {
  font-size: 15px;
  transform: rotate(45deg);
  transition: var(--transition-hover);
  position: relative;
}
.barsa-button3 span i:nth-child(1) {
  position: absolute;
  left: -10px;
  bottom: -10px;
  transform: translateX(-5px) rotate(45deg);
}
.barsa-button3 span i:nth-child(2) {
  bottom: 0;
  left: 0;
}
.barsa-button3:hover span i:nth-child(2) {
  left: 100px;
  bottom: 100px;
}
.barsa-button3:hover span i:nth-child(1) {
  bottom: 5px;
  left: 5px;
}
.barsa-services {
  width: 100%;
  height: auto;
}
.margin-y-80 {
  margin: 80px 0;
}
.padding-y-80 {
  padding: 80px 0;
}
.serviceSingle {
  width: 100%;
  height: 120px;
  border-radius: 65px;
  background-color: rgb(247, 247, 247);
  padding: 0 45px;
  overflow: hidden;
}
.barsa-h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color-2);
  transition: var(--transition-hover);
}
.barsa-desc.small {
  font-size: 18px;
}
.barsa-h6 {
  font-size: 16px;
  color: var(--heading-color-3);
  font-weight: 800;
}
.barsa-h6 a {
  color: inherit;
  border-bottom: solid 1px var(--heading-color-3);
}
.slideLeft {
  padding-left: 40px;
}
/*-----------------/form-------------*/
.tag {
  display: block;
  margin: 0 auto;
  width: max-content;
  border-radius: 17px;
  font-size: 14px;
  color: var(--text-color);
  font-family: "Jost";
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 28px;
  text-transform: uppercase;
  background: var(--primary-gradiant);
}
.barsa-h1 {
  font-size: 63px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
}
.text-white a{
  color: #fff
}
.footer-logo{
  width: 125px;
  /* background: #fff; */
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.footer-logo img{
  max-width: 100%;
  filter: brightness(0) invert(1);
}
.barsa-desc {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  color: var(--text-color-2);
  margin: 15px 0;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg.dark {
  background-color: rgb(39, 39, 39);
}
.dark img {
  opacity: 0.41;
}
.heroBG {
  opacity: 1;
  overflow: hidden;
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.barsa-cut {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 95%);
}
.barsa-cut-reverse {
  clip-path: polygon(0 10%, 100% 0, 100% 95%, 0% 100%);
}
.barsa-h3 {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-color);
}
.barsa-h3.dark {
  color: rgb(38, 37, 36);
}
.barsa-h3.big {
  font-size: 52px;
}
.line {
  background-color: rgb(236, 241, 237);
  width: 100%;
  height: 1px;
  margin: 15px 0;
}
.barsa-h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}
.barsa-button2 {
  width: max-content;
  line-height: 48px;
  height: 47px;
  background-color: var(--text-color);
  border-radius: 31px;
  font-size: 16px;
  font-family: "Epilogue";
  padding: 0 31px;
  color: var(--heading-color);
  font-weight: bold;
  border: 0;
  transition: var(--transition-hover);
  position: relative;
}
.barsa-button2::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition-hover);
  font-size: 30px;
}
.barsa-button2:hover::before {
  left: 83%;
  opacity: 1;
}
.gifAnimate {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: none;
  max-width: 90%;
  border-radius: 15px;
}
.scrollbar-track {
  display: none !important;
}
.barsa-h2 {
  font-size: 65px;
  color: var(--text-color);
  line-height: 1;
  font-weight: 900;
}
.barsa-list li {
  color: var(--text-color);
}
.barsa-list li i {
  font-size: 18px;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}
.barsa-button3 {
  width: max-content;
  height: 52px;
  padding: 0 29px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 31px;
  background: var(--primary-gradiant);
  border: 0;
  position: relative;
  transition: 0.5s linear;
}
.barsa-button3 span {
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin-left: 7px;
}
.barsa-button3 i {
  font-size: 15px;
  transform: rotate(45deg);
  transition: var(--transition-hover);
  position: relative;
}
.barsa-button3 span i:nth-child(1) {
  position: absolute;
  left: -10px;
  bottom: -10px;
  transform: translateX(-5px) rotate(45deg);
}
.barsa-button3 span i:nth-child(2) {
  bottom: 0;
  left: 0;
}
.barsa-button3:hover span i:nth-child(2) {
  left: 100px;
  bottom: 100px;
}
.barsa-button3:hover span i:nth-child(1) {
  bottom: 5px;
  left: 5px;
}
.barsa-services {
  width: 100%;
  height: auto;
}
.margin-y-80 {
  margin: 80px 0;
}
.margin-y-50 {
  margin: 50px 0;
}
.margin-y-60 {
  margin: 60px 0;
}
.padding-y-80 {
  padding: 80px 0;
}
.serviceSingle {
  width: 100%;
  height: 120px;
  border-radius: 65px;
  background-color: rgb(247, 247, 247);
  padding: 0 10px 0 25px;
  overflow: hidden;
}
.barsa-h4 {
  font-size: 34px;
  font-weight: 700;
  color: rgb(24 103 144);
  transition: var(--transition-hover);
}
.barsa-desc.small {
  font-size: 14px;
}
.barsa-h6 {
  font-size: 16px;
  color: var(--heading-color-3);
  font-weight: 800;
}
.barsa-h6 a {
  color: inherit;
  border-bottom: solid 1px var(--heading-color-3);
}
.tag2 {
  display: block;
  padding: 0 20px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 1px var(--primary-color);
  border-radius: 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--heading-color-2);
  text-transform: uppercase;
  width: max-content;
  margin-bottom: 20px;
}
.barsa-h2.dark {
  color: var(--heading-color-4);
}
.barsa-list2 li {
  font-family: "Jost";
  font-size: 16px;
  font-weight: bold;
  margin: 12.5px 0;
}
.barsa-list2 li img {
  width: 30px;
  margin-right: 30px;
}
.pricingSingle {
  border: solid 2px rgb(239, 239, 239);
  border-radius: 10px;
  background: transparent;
  width: 100%;
  height: 280px;
  margin-bottom: 30px;
  transition: var(--transition-hover);
  overflow: hidden;
}
.pricingSingle img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  }
.box{
  padding: 0 25px 0 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
  height: 100%;
  overflow: hidden;
}
.solution-box{
  background: url(../../../images/bg.jpg) no-repeat;
  background-size: cover;
  isolation: isolate;
}
.solution-box>.row{
  height: 100%;
}
.solution-box-left{
  width: 60%;
}
.solution-box-right{
  width: 40%;
}
.solution-box>.row>div{
  height: 100%;
  position: relative;
}
.solution-box>.row>div>img{
  height: 100%;
  width: 100%;
  transform: none !important;!i;!;
}
.solution-box .barsa-h4{
  font-size: 22px;
  text-transform: capitalize;
  }
.info {
  background: var(--primary-gradiant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-hover);

  display: flex;
  align-items: center;
  width: max-content;
  font-size: 16px;
  font-weight: 600;
}
.info i {
  font-size: 17px;
  margin-right: 5px;
  color: transparent;
}
.barsa-button4 {
  padding: 0 20px;
  height: 44px;
  border: solid 1px var(--primary-color);
  color: var(--heading-color-4);
  width: max-content;
  transition: var(--transition-hover);
  font-weight: 600;
  background-color: transparent;
}
.barsa-button4:hover {
  background-color: #fff;
  border-color: #fff;
}
.goTo {
  position: absolute;
  bottom: 20px;
  right: 50px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  background: var(--secondary-color);
  color: #fff;
  transform: translateX(-100px);
  opacity: 0;
  transition: var(--transition-hover);
  z-index: 10;
}
.goTo i {
  font-size: 17px;
  color: #fff;
}
/* .toRight,
.toLeft {
  transform: translateX(0);
  transition: var(--transition-hover);
} */
/*.pricingSingle::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;

  width: 0;
  height: 100%;
  background: var(--primary-gradiant);
  border-radius: inherit;
  transition: var(--transition-hover);
}*/
.pricingSingle:hover {
/*  border-color: transparent;*/
}
/*.pricingSingle:hover::after {
  width: 100%;
}*/
/* .pricingSingle:hover .toRight {
  transform: translateX(70%);
}
.pricingSingle:hover .toLeft {
  transform: translateX(-150%);
}
.pricingSingle:hover .goTo {
  opacity: 1;
  transform: translateX(0);
} */
.pricingSingle:hover .info {
/*  color: var(--text-color);
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;*/
}
/* .pricingSingle:hover .box{
  padding-left: 0
} */
.pricingSingle:hover .barsa-h4 {
/*  color: var(--text-color);*/
}
/* .pricingSingle:hover .barsa-button4 {
  border-color: var(--hover-color);
  color: var(--hover-color);
} */


 
.solution-box:after, .solution-box:before{
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #dcdae9;
  z-index: -1;
}

.solution-box::before {
/*   background: blue; */
  transform: translateX(-100%);
  z-index: -1;
}

.solution-box:hover:before {
  transform: translateX(0);
  transition: transform 450ms ease;
}

.solution-box::after {
   z-index: -2;
  transform: translateX(100%);
  transition: none;
  transition: transform 450ms ease;
}

.solution-box:hover:after {
  opacity: 1;
  transform: translateX(0);
 transition: transform 550ms 560ms ease;
}

footer#contact button.barsa-button3.d-flex.align-items-center {
  margin-top: 45px;
}









.emailLink {
  width: 100%;
  font-size: 30px;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Jost";
  font-weight: bold;
}

.radius-50 {
  border-radius: 50%;
}
.tranformX-15 {
  transform: translateX(-15%);
}
.barsa-desc2 {
  font-size: 22px;
  font-weight: 100;
  color: var(--text-color);
  padding-left: 30px;
  position: relative;
  width: 80%;
}
.barsa-desc2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradiant);
  border-radius: 10px;
}
.InfoSection {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.barsa-h1.light {
  color: var(--text-color);
}
.barsa-list2.light li img {
  filter: invert(100%);
}
.barsa-list2.light li {
  color: var(--text-color);
}
.quickInfo {
  background: var(--primary-gradiant);
}
.barsa-desc.light {
  color: var(--text-color);
}
.quickInfo {
  border-radius: 30px;
  padding: 50px 75px;
}
.tranform-y-reverse {
  transform: translateY(-80px);
}
.teams {
  width: 100%;
  height: auto;
  position: relative;
}
.member {
  border-radius: 200px;
  width: 100%;
  background-color: rgb(246, 246, 246);
  height: 600px;
  border: solid 2px transparent;
  transition: var(--transition-hover);
  position: relative;
}
.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.member:hover {
  padding: 70px 50px;
  border-color: var(--primary-color);
}
.memberDetails {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) scale(0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-hover);
  opacity: 0;
}
.member:hover .memberDetails {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.memberDetails .barsa-desc {
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  z-index: 5;
  width: 180px;
  height: 55px;
  background: var(--primary-gradiant);
  display: grid;
  border-radius: 24px;
  place-content: center;
}

.memberDetails span {
  display: grid;
  border-radius: 24px;
  place-content: center;
  width: 145px;
  height: 55px;
  background-color: var(--text-color);
  box-shadow: 0px 3px 60px 0px rgba(32, 42, 181, 0.11);
  font-size: 14px;
  font-weight: bold;
  color: var(--heading-color-3);
  position: relative;
  top: -20px;
  text-transform: uppercase;
}
.teamSlider,
.testimonialsSlider {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 50px;
}
.team-next,
.team-prev {
  border-radius: 50%;
  background-color: rgb(250, 250, 250);
  display: grid;
  place-content: center;
  width: 75px;
  height: 75px;
  font-size: 20px;
  transition: var(--transition-hover);
}
.next-prev {
  width: 115%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-next:hover,
.team-prev:hover {
  background: var(--primary-gradiant);
  color: var(--text-color);
}
.testimonialSingle .barsa-desc {
  font-weight: bold;
  color: var(--text-color-3);
}
.testimonialSingle {
  padding: 40px;
  border-radius: 10px;
  background-color: #edeaf9;
}
.aboutTestimonials {
  margin-top: 40px;
}
.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #f5cc3d;
  margin-bottom: 30px;
}
.aboutTestimonials h6 {
  font-size: 18px;
  color: #186790;
  font-weight: 900;
  line-height: 1;
}
.aboutTestimonials p {
  font-size: 14px;
  color: rgb(128, 130, 142);
  font-weight: 900;
}
.testimonialsSlider {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}
.testimonial-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.swiper-pagination-bullet {
  margin: 0;
  background-color: rgb(46, 118, 254);
  width: 20px;
  opacity: 0.2;
  border-radius: 5px;
  height: 10px;
  transition: var(--transition-hover);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-gradiant);
  width: 40px;
  opacity: 1;
}

#barsaFaq {
  width: 80%;
  margin: 0 auto;
}
.faqIcon {
  background-color: rgb(212, 222, 234);
  min-width: 95px;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.faqIcon::before {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: var(--text-color-4);
}
.accordion-item {
  margin-bottom: 10px;
  border: solid 2px transparent !important;
  display: flex;
  align-items: center;
  width: 100%;
  height: 65px;
  background-color: rgb(245, 247, 250);
  transition: var(--transition-hover);
}
.accordion-item.active {
  height: 225px;
  background-color: var(--bg-color);
  border-color: var(--primary-color) !important;
}
#bardsFaq .accordion-item {
}
.accordion-header,
.accordion-body {
  padding: 10px 30px;
}
.accordion-body {
  padding: 5px 30px;
}
.accordion-header button {
  width: 100%;
  height: 100%;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color-4);
  text-align: start;
  background-color: transparent;
  border: 0;
}
.accordion-body {
  font-size: 16px;
  color: var(--text-color-5);
  font-weight: normal;
}
.accordion-item.active .faqIcon {
  background: var(--primary-gradiant);
}
.accordion-item.active .faqIcon::before {
  content: "\f068";
  color: var(--text-color);
}
.barsa-h2.small {
  font-size: 55px;
}
.tag3 {
  font-size: 17px;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.projectSingle {
  aspect-ratio: 1 /1;
  border-radius: 50%;
  border: solid 2px rgb(235, 235, 235);
  position: relative;
  cursor: pointer;
  background-color: var(--bg-color);
  transition: var(--transition-hover);
  overflow: hidden;
}

.projectSingle .projectImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.projectSingle .ProjectIcon {
width: 189px;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.projectSingle:hover {

  box-shadow: 0px 6px 29px 0px rgba(0, 0, 0, 0.11);
}
.projectSingle:hover .projectImg {
  opacity: 0.76;
}
.barsa-h5.dark {
  color: var(--bg-color-2);
  font-weight: 900;
}
.addP {
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  background: var(--primary-gradiant);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.addP i {
  color: var(--text-color);
  font-size: 19px;
  transition: var(--transition-hover);
}
.addP:hover i {
  transform: rotate(180deg);
}
.projectContainer:hover .add {
  opacity: 1;
}
.add {
  opacity: 0;
  transition: 0.5s all;
}
.addP:hover i {
  transform: rotate(180deg);
}
footer {
  width: 100%;
  min-height: 50vh;
  background-color: var(--footer-bg);
  position: relative;
}

footer .line {
  background-color: rgb(46, 45, 45);
}
.blocks,
.address {
  background-color: var(--block-bg);
  width: 100%;
  border-radius: 30px;
  position: relative;
  height: 100%;
}
.block {
  width: 100%;
  height: auto;
}
.barsa-list3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.barsa-list3 li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.barsa-list3 li a {
  font-size: 20px;
  font-weight: normal;
  color: rgb(206, 206, 206);
}
.barsa-list3 li i {
  font-size: 15px;
  color: transparent;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blocks .line-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 1px;
}
.blocks .wrapper {
  width: 85%;
  padding: 0;
  position: relative;
}
.logo.light h1 {
  color: var(--text-color);
}
.footer-h4 {
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 15px;
}
.address p {
/*  font-weight: 900;*/
font-size: 18px;
  color: var(--text-color);
}
.emailLink2 {
  font-size: 21px;
  color: rgb(206, 206, 206);
  font-weight: normal;
  line-height: 1;
  margin-top: 10px;
  display: block;
}
.address {
/*  background: var(--primary-gradiant);*/
    background: url(../../../images/bg2.jpg) no-repeat;
  background-size: cover
}
.address .wrapper {
  width: 70%;
}
.copyright {
width: 100%;

    height: 95px;
    background-color: rgb(3, 3, 5);
}
.copyright-in{
  width: 100%;
      font-size: 18px;
    color: var(--text-color);
    font-weight: normal;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    padding: 36px 0;
}
.copyright .socialMedia a i {
    font-size: 16px;
    color: #fff;
    transition: var(--transition-hover);
}
.counter {
  width: max-content;
  /* margin: 0 auto; */
  /* margin-top: 20px; */
  /* height: auto; */
  /* margin-bottom: 30px; */
  /* font-size: 19px; */
  color: rgb(32, 32, 34);
  font-weight: bold;
  /*  text-transform: uppercase;*/
  /* padding-left: 3px; */
  position: relative;
  /* padding-top: 5px; */
}

.counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgb(202, 171, 244);
  z-index: -1;
}
.counter .count {
  font-size: 75px;
  color: var(--text-color-8);
  font-weight: 900;
  text-transform: lowercase;
  line-height: 1;
}
.star::before {
  content: "*";
  font-family: "Enoway";
  position: absolute;
  line-height: 1;
  font-size: 60px;
  top: 45%;
  right: -5%;
  transform: translateY(-50%);
}
.playBtn {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.playBtn .btnInner {
  width: 90px;
  height: 90px;
  background: var(--primary-gradiant);
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-color);
  display: grid;
  place-content: center;
}
.rotateAnimation {
  position: absolute;
  top: -20px;
  left: 50%;
}
#circle {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  text-transform: uppercase;
}

#error {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 18px;
  color: var(--primary-color);
  background-color: rgba(97, 0, 242, 0.2);
  border: solid 2px var(--primary-color);
  border-radius: 10px;
  padding: 10px 20px;
  z-index: 99999;
  display: none;
}

.backToTop {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: grid;
  place-content: center;
  background: var(--primary-gradiant);
  color: var(--text-color);
  position: fixed;
  bottom: 8px;
  right: 7px;
  opacity: 0;
  border-radius: 50%;
  transform: translateY(100%);
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  cursor: pointer;
}

.video-block {
  position: relative;
}

.video-block .close {
  font-size: 50px;
  color: var(--bg-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  cursor: pointer;
  z-index: 6;
}

.video-block .close {
  display: none;
}
.video-block iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 3;
}
.pd-0{
  padding: 0 !important
}

/*-----------whatsapp------------*/
.whtsapp-link{position:fixed;right: 8px;bottom: 181px;z-index: 9;}
.whtsapp-link h5{width: 130px;position:absolute;right:-11px;top: 0;opacity:0;color:#fff;background-color:var(--secondary-color);font-size: 15px;font-weight:500;margin:10px 0 0 0;padding:10px;border-radius:5px;line-height:18px;z-index:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.whatsapp-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width:50px;
    height:50px;
    background:#2db742;
    border-radius:50%;
    /* -webkit-border-radius:50%; */
    -moz-border-radius:50%;
    /* box-shadow:0px 6px 8px 2px rgba(0,0,0,0.14); */
    /* -webkit-box-shadow:0px 6px 8px 2px rgba(0,0,0,0.14); */
    -moz-box-shadow:0px 6px 8px 2px rgba(0,0,0,0.14);
    text-align:center;
    line-height:78px;
    margin-left:0;
    z-index:1;
    position:relative;
    }
.whatsapp-icon img{width:32px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.whtsapp-link:hover h5{right:52px;opacity:1}
.whtsapp-link:hover .whatsapp-icon img{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);}



.call-link{position:fixed;right: 8px;bottom: 123px;z-index: 9;}
.call-link h5{width: 130px;position:absolute;right:-11px;opacity:0;color:#fff;
  background-color:var(--secondary-color);font-size: 15px;font-weight:500;margin:10px 0 0 0;padding:10px;border-radius:5px;line-height:18px;z-index:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.call-icon{
        width: 50px;
        height: 50px;
        background: var(--nav-color);
        border-radius: 50%;
        /* -webkit-border-radius: 50%; */
        -moz-border-radius: 50%;
        /* box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14); */
        /* -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14); */
        -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
        text-align: center;
        line-height: 78px;
        margin-left: 0;
        z-index: 1;
        position: relative;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
}
.call-icon img{border-radius:50% ;width:53px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.call-link:hover h5{right:52px;top: 0;opacity:1}
.call-link:hover .call-icon img{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);}

.email-link{position:fixed;right: 8px;bottom: 66px;z-index: 9;}

.br-0{border:0 !important;}

.barsa-button3 a {
  color: #fff;
}
.mobnav {
  display: none;
}
.mobnav .icon {
  display: none;
}


ul.s-logos{
/*  margin:20px 0 0 0;*/
  padding: 0;
  display: flex;
  align-items: center;
  gap:15px;
}
ul.s-logos{
  padding: 5px;
  list-style: none;
  margin:0;
  }
  ul.s-logos img{
    max-width: 150px;
  }

/*  modal-popup*/

.modal-content {
    position: relative;
    display: flex
;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
       background: var(--primary-gradiant);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: 15px;
    outline: 0;
}
.modal-title  {
font-size: 37px !important;
    color:#fff !important;
    color: var(--secondary-color);
  
}
.modal-in{
  padding: 10px;
}
.modal-in .form1{
  padding: 0;

}
.btn-close {
    background-color: #fff !important;
    padding: 15px !important;
    border-radius: 100%  !important
  }

  .barsa-hero .barsa-h1 br{ display: none;}