@font-face {
  font-family: "Raleway";
  src: url(../fonts/Raleway-VariableFont_wght.ttf);
}

:root {
  --primary-gradiant: linear-gradient(120deg,
      rgb(67, 0, 231) 0%,
      rgb(125, 0, 252) 100%);
  --hover-color: rgb(44, 195, 146);
  --primary-color: rgb(97, 0, 242);
  --secondary-color: rgb(122, 0, 251);
  --heading-color: rgb(0, 0, 0);
  --nav-color: rgb(38, 50, 56);
  --transition-hover: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --text-color: rgb(255, 255, 255);
  --text-color-3: rgb(22, 29, 57);
  --text-color-4: rgb(36, 47, 81);
  --heading-color-2: rgb(17, 28, 22);
  --heading-color-3: rgb(51, 51, 51);
  --heading-color-4: rgb(2, 6, 38);
  --bg-color: rgb(255, 255, 255);
  --bg-color-2: rgb(10, 13, 20);
  --text-color-2: rgb(75, 75, 75);
  --text-color-5: rgb(97, 99, 104);
  --footer-bg: #111111;
  --block-bg: rgb(34, 34, 34);
}

body {
  width: 100%;
  height: auto;
  position: relative;
  font-family: "Raleway";
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
.barsa {
  width: 100%;
  position: relative;
}
.barsa-header {
  position: fixed;
  width: 100%;
  top: 0;
  transition: 1s ease;
  z-index: 100;
}
.barsa-header.sticky {
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;
}
.barsa-nav {
  position: relative;
  padding: 4px 80px;
  background-color: var(--bg-color);
  z-index: 10;
  transition: 1s ease;
}
.barsa-header.sticky .barsa-nav {
  transition: 1s ease;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo img {
  width: 150px;
}
.barsa-nav .header-Nav li a {
  font-size: 17px;
  color: var(--nav-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%;
}

.barsa-button {
  display: grid;
  place-content: center;
  padding: 0 30px;
  border-radius: 29px;
  width: max-content;
  height: 55px;
  font-size: 14px;
  font-family: "Raleway";
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  background-color: var(--nav-color);
}
.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;
}

.barsa-hero {
  min-height: 100vh;
  background: url(../images/bg1.webp) no-repeat center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 100px;
}
.tag {
  display: block;
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  border-radius: 17px;
  font-size: 14px;
  color: var(--text-color);
  font-family: "Raleway";
  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);
  text-align: center;
}
.barsa-h1 {
  font-size: 80px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
  margin: 20px 0;
}
.barsa-desc {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  color: var(--text-color-2);
  margin: 15px 0;
}
.barsa-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 !important;
  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: 55px 50px;
}
.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) 2px;
  background-color: transparent;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  gap: 18px;
  margin-bottom: 15px;
  transition: var(--transition-hover);
}
.inputSingle input {
  flex: 1;
  height: 100%;
  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 {
  outline: none;
}
.inputSingle:focus-within {
  background: var(--primary-gradiant);
  border: 0;
}
.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: "Raleway";
  padding: 0 40px;
  color: var(--heading-color);
  font-weight: bold;
  border: 0;
  transition: var(--transition-hover);
  position: relative;
}
.barsa-h2 {
  font-size: 65px;
  color: var(--text-color);
  line-height: 1;
  font-weight: 900;
}
.barsa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}
.barsa-list li img {
  filter: invert(1);

}
.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-about.barsa-cut {
  background: url(../images/bg2.webp) no-repeat center / cover;
}
.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);
}
.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: "Raleway";
  font-size: 20px;
  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: 100%;
  transition: var(--transition-hover);
}
.wrapper {
  width: 75%;
  margin: 0 auto;
  padding: 35px 0;
  height: 100%;
}
#pricing .row {
  row-gap: 30px;
}
.info {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.barsa-button4 {
  display: flex;
  align-items: center;
  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: white;
  border-color: var(--text-color);
  color: var(--primary-color) !important;
}
.toRight,
.toLeft {
  transform: translateX(0);
  transition: var(--transition-hover);
}
.pricingSingle::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  /* top: 0;
  left: 0; */
  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(100%);
}
.pricingSingle:hover .toLeft {
  transform: translateX(-100%);
}
.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 .barsa-h4 {
  color: var(--text-color);
}
.pricingSingle:hover .barsa-button4 {
  border-color: var(--text-color);
  color: var(--text-color);
}
.radius-50 {
  border-radius: 50%;
}
.tranformX-15 {
  transform: translateX(-15%);
}
.barsa-desc2 {
  font-size: 33px;
  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;
}
.barsa-h1.light {
  color: var(--text-color);
}
.barsa-list2.light li img {
  filter: invert(100%);
}
.barsa-list2.light li {
  color: var(--text-color);
}
.barsa-desc.light {
  color: var(--text-color);
}
.tranform-y-reverse {
  transform: translateY(-80px);
}
.swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 30px;
}
.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;
  background: var(--primary-gradiant);
  display: grid;
  border-radius: 24px;
  place-content: center;
  padding: 4px 8px;
  text-align: center;
}

.memberDetails span {
  display: grid;
  border-radius: 24px;
  place-content: center;
  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: -10px;
  text-transform: uppercase;
  padding: 4px 8px;
  text-align: center;
}
.teamSlider,
.testimonialsSlider {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 50px;
}

.barsa-h2.small {
  font-size: 55px;
}
.barsa-h5.dark {
  color: var(--bg-color-2);
  font-weight: 900;
}

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: 30px;
}
.barsa-list3 li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.barsa-list3 li a {
  font-size: 23px;
  font-weight: normal;
  color: rgb(206, 206, 206);
  transition: 0.3s;
}
.barsa-list3 li a:hover {
  color: var(--text-color);
}
footer .disc {
  color: rgb(206, 206, 206);
}
footer .barsa-h6 {
  color: var(--text-color);
}
footer .barsa-h6 a {
  font-weight: normal;
  text-decoration: none !important;
  border-bottom: none !important;
}
.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 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-weight: 900;
  color: var(--text-color);
}
.address {
  background: var(--primary-gradiant);
}
.address .wrapper {
  width: 80%;
}
.copyright {
  width: 100%;
  font-size: 18px;
  color: var(--text-color);
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 95px;
  background-color: rgb(3, 3, 5);
}

.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: 48px;
  color: var(--text-color-8);
  font-weight: 900;
  text-transform: lowercase;
  line-height: 1;
}
.star::before {
  content: "*";
  font-family: "Raleway";
  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: 50px;
  right: 50px;
  opacity: 0;
  border-radius: 50%;
  transform: translateY(100%);
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  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;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 1440px) {
  .barsa-nav {
    padding: 4px 60px;
  }
  .header-Nav.gap-5 {
    gap: 25px !important;
  }
  .barsa-button {
    padding: 0 20px;
    font-size: 12px;
    height: 45px;
  }
  .hamMenu {
    width: 45px;
    height: 45px;
  }
  .hamMenu span {
    width: 15px;
    height: 2px;
  }
  .more {
    gap: 35px;
  }
  .barsa-nav .header-Nav li a {
    padding: 35px 0;
  }
  .tag {
    font-size: 10px;
    padding: 0 23px;
  }
  .barsa-h3.big {
    font-size: 42px;
  }
  .rating {
    gap: 20px;
  }
  .stars {
    font-size: 14px;
  }
  .barsa-h1 {
    font-size: 80px;
  }
  .barsa-desc {
    font-size: 18px;
  }

  .next-prev {
    align-items: end;
    height: 110%;
    width: 100%;
  }
  .testimonialSingle {
    padding: 30px;
  }
  .testimonialSingle .barsa-desc {
    font-size: 16px;
  }
  .aboutTestimonials {
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .barsa-h2 {
    font-size: 45px;
  }
  .barsa-list li {
    font-size: 14px;
  }
  .barsa-list li i {
    font-size: 14px;
  }
  header .logo span {
    display: none;
  }
  .barsa-nav .header-Nav li a {
    font-size: 14px;
    padding: 25px 0;
  }
  .header-Nav.gap-5 {
    gap: 20px !important;
  }
  .socialMedia {
    display: none !important;
  }
  .more {
    gap: 20px;
  }
  .barsa-nav {
    padding: 4px 40px;
  }
  .hamContent {
    padding: 15px 25px;
  }
  .barsa-list3 li i {
    font-size: 12px;
  }
  .barsa-list3 li a {
    font-size: 18px;
  }
  .barsa-h1 {
    font-size: 60px;
  }
  .barsa-desc {
    font-size: 16px;
  }
  .form1 {
    padding: 40px 35px;
  }
  .barsa-h3 {
    font-size: 30px;
  }
  .inputSingle {
    height: 50px;
  }
  .serviceSingle {
    padding: 0 30px;
    height: 100px;
  }
  .barsa-h4 {
    font-size: 20px;
  }
  .barsa-desc.small {
    font-size: 14px;
  }
  .barsa-list2 li img {
    margin-right: 10px;
    width: 20px;
  }
  .barsa-list2 li {
    font-size: 15px;
  }
  .counter {
    font-size: 15px;
  }
  .counter::before {
    width: 30px;
    height: 30px;
  }
  .star::before {
    font-size: 50px;
  }
  .counter .count {
    font-size: 48px;
  }
  .barsa-desc2 {
    font-size: 24px;
  }
  .quickInfo {
    padding: 30px 50px;
  }
  .member {
    height: 450px;
  }
  .member:hover {
    padding: 50px 30px;
  }
  .testimonialSingle {
    padding: 20px;
  }
  .stars {
    margin-bottom: 15px;
  }
  .testimonialSingle .barsa-desc {
    font-size: 12px;
  }
  .aboutTestimonials h6 {
    font-size: 14px;
  }
  .aboutTestimonials p {
    font-size: 10px;
  }
  .accordion-header button {
    font-size: 18px;
  }
  .accordion-item.active {
    height: 230px;
  }
  .accordion-body {
    padding: 15px 30px;
  }
  .projectSingle .ProjectIcon {
    width: 50px;
  }
  .blocks.py-5 {
    padding: 20px 0 !important;
  }
  .copyright {
    height: 60px;
  }
}

@media (max-width: 992px) {
  .form1 {
    padding: 20px 15px;
  }
  .form1 .mb-5 {
    margin-bottom: 15px !important;
  }
  .inputSingle {
    height: 40px;
  }
  .inputSingle i,
  .inputSingle input {
    font-size: 14px;
  }
  .barsa-h5.my-4 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .form1 {
    border-radius: 0;
  }
  .playBtn {
    margin-bottom: 15px;
  }
  .barsa-h2 {
    font-size: 30px;
  }
  .barsa-list li,
  .barsa-list li i {
    font-size: 12px;
  }
  .barsa-button3 {
    font-size: 16px;
    height: 40px;
  }
  .barsa-button2 {
    width: 100%;
  }
  .serviceSingle {
    padding: 0 15px;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .barsa-h4 {
    font-size: 16px;
  }
  .barsa-desc.small {}
  .barsa-list2 li {
    font-size: 12px;
  }
  .barsa-list2 li img {
    width: 12px;
    margin-right: 5px;
  }
  .counter .count {
    font-size: 40px;
  }
  .counter {
    font-size: 12px;
  }
  .star::before {
    font-size: 30px;
  }
  .wrapper {
    width: 90%;
    padding: 30px 10px;
  }
  .barsa-button4 {
    padding: 0 10px;
    height: 30px;
    font-size: 12px;
  }
  .info.mt-4 {
    margin-top: 15px !important;
  }
  .pricingSingle {
    height: auto;
  }
  .goTo {
    display: none;
  }
  .barsa-h1 {
    font-size: 40px;
  }
  .emailLink {
    font-size: 18px;
  }
  .barsa-desc2 {
    width: 90%;
    font-size: 18px;
  }
  .barsa-h3.ms-5,
  .barsa-desc2.ms-5,
  .barsa-button3.ms-5 {
    margin-left: 30px !important;
  }
  .quickInfo {
    padding: 20px 20px;
  }
  .barsa-h3 {
    font-size: 20px;
  }
  .accordion-header {
    padding: 15px;
  }
  .accordion-header button {
    font-size: 15px;
  }
  .accordion-body {
    font-size: 12px;
  }
  .faqIcon {
    min-width: 60px;
  }
  .projectSingle .ProjectIcon {
    width: 40px;
  }
  .barsa-list3 {
    gap: 10px;
  }
  .barsa-list3 li a {
    font-size: 12px;
  }
  .barsa-button3 {
    padding: 0 25px;
  }
  .footer-h4 {
    padding: 0 !important;
    margin: 0 !important;
  }
  .logo.light.mb-4 {
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  
  .barsa-desc {
    width: 100% !important;
  }
  .barsa-h6 {
    font-size: 12px;
  }
  .counter {
    font-size: 10px;
  }
  .counter .count {
    font-size: 24px;
  }
  .InfoSection .row {
    align-items: center;
  }
  .projectSingle .ProjectIcon {
    width: 20px;
  }
  .address {
    margin-top: 25px;
  }
  .desktopNav {
    display: none !important;
  }
  .barsa-nav {
    padding: 4px 40px;
  }
  .mobileNav {
    display: flex !important;
  }
  .mobileNav ul {
    flex-direction: column;
  }
  .mobileNav ul li a {
    padding: 0 !important;
    color: var(--text-color) !important;
  }
  .barsa-h2.small {
    font-size: 40px;
  }
  .barsa-hero.padding-y-80 {
    min-height: auto;
    padding: 150px 0 100px !important;
  }
  .padding-y-80 {
    padding: 50px 0;
  }
  .margin-y-80 {
    margin: 50px 0;
  }
    .swiper-wrapper {
      grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
  .more {
    display: none;
  }
  .barsa-nav {
    padding: 4px 20px;
  }
  .tranformX-15 {
    transform: none;
  }
  .sm-none {
    display: none;
  }
  .sm-100 {
    width: 100%;
  }
  .sm-30 {
    width: 30%;
  }
  .sm-70 {
    width: 70%;
  }
  .sm-50 {
    width: 50%;
  }
  .sm-50.nStar::before {
    display: none;
  }
  .barsa-desc {
    font-size: 14px;
  }
  .barsa-h1 {
    font-size: 35px;
  }
  .counter {
    margin: 20px;
  }
  .info {
    font-size: 12px;
  }
  #barsaFaq {
    width: 100%;
  }
  .accordion-body {
    font-size: 10px;
  }
  .accordion-header,
  .accordion-body {
    padding: 10px;
  }
  .accordion-header button {
    font-size: 12px;
  }
  .emailLink {
    text-align: start !important;
  }
  .barsa-h2.small {
    font-size: 30px;
  }
  .wrapper {
    width: 100%;
  }
  .logoDiv.wrapper {
    margin-top: 30px;
    width: 100% !important;
    height: auto !important;
  }
  .blocks .line-x {
    display: none !important;
  }
  .copyright {
    font-size: 14px;
  }
}

@media (max-width: 480px) {}

.rotateAnimation {
  animation: rotate 5s infinite linear;
  transform: rotate(360deg) translateX(-50%);
}

.revealHam {
  animation: slideDown 0.3s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  display: flex !important;
  transform: translateY(-50px);
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(-50%);
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 100px 20px 50px;
}
.docs .wrapper {
  width: 100% !important;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--primary-color);
  transition: 0.3s;
}
.docs a:hover {
  color: var(--heading-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
}