@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: auto;
  font-family: "Space Grotesk";
  overflow: hidden;
  background-color: var(--body-color);
}
#scroll-content {
  width: 100%;
  height: 100vh;
  overflow: clip;
}
.scrollbar-track {
  width: 10px !important;
  background-color: var(--secondary-color) !important;
}
.scrollbar-track-x {
  display: none !important;
}
.scrollbar-thumb {
  border-radius: 0 !important;
  background-color: var(--primary-color) !important;
}
.menuActive.mobNavInner .birzaMenu li a,
.menuActive.mobNavInner .birzaMenu li button {
  color: var(--headingDark) !important;
}

.menuActive.mobNavInner .birzaMenu li .dropdown-item {
  color: var(--headingDark) !important;
}
.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--headingLight);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loaderText {
  font-size: 100px;
  color: var(--headingDark);
  font-weight: 900;
  letter-spacing: 50px;
  padding: 20px 40px;
  position: relative;
  transform-style: preserve-3d;
  display: grid;
  place-content: center;
}
.loaderText::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 0;
  min-height: 10px;
  background-color: var(--primary-color);
  border-radius: 20px;
  transform: translateZ(-1px);
}
.loaderText span {
  transform: scale(1);
  position: relative;
  z-index: 3;
}
.birzaHeader {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
  background-color: rgb(19, 10, 3);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
.birzaHeader::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../../images/bgLight2.png);
  opacity: 1;
}
.birzaHeader > * {
  position: relative;
  z-index: 2;
}

.birzaNav {
  width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  position: relative;
  top: 0;
}

.bgCircle {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 730px;
  height: 730px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.circleBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.circle2 {
  width: 70%;
  height: 70%;
  position: relative;
}
.circle2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circle2 img:nth-child(1) {
  position: absolute;
  bottom: 0;
  width: 90%;
  height: 90%;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  opacity:0.4;
}
.apps {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.appSingle {
  background-color: var(--headingLight);
  box-shadow: 0px 15px 30.4px 1.6px rgba(29, 29, 29, 0.06);
  width: 83px;
  height: 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -5%;
  left: 45%;
}
.appSingle:nth-child(2) {
  left: unset;
  right: -5%;
  top: 45%;
}
.appSingle:nth-child(3) {
  top: 45%;
  left: -5%;
}
.appSingle:nth-child(4) {
  top: unset;
  bottom: -5%;
  left: 45%;
}
.appSingle img {
  width: 65%;
}

.birzaNav.stickyNav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--headingLight);
  padding: 5px 30px;
  z-index: 59;
  min-height: 90px;
}
.logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.birzaHero .birzaDesc {
  font-size: 28px;
  text-align: center;
}
.logo h3 {
  font-size: 45px;
  font-weight: bold;
  color: var(--headingDark);
}
.birzaNav.stickyNav .logo h3 {
  color: var(--headingLight);
}
.logo h3 span {
  color: var(--primary-color);
}
.logo img {
  filter: var(--logo-color);
}
.birzaMenu {
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}
.birzaMenu li,
.footerLinks li {
  transition: 0.5s var(--transition);
  position: relative;
}
.birzaMenu li::after,
.footerLinks li::after,
.birzaMenu li::before,
.footerLinks li::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0;
  transition: 0.5s var(--transition);
  pointer-events: none;
}
.birzaMenu li::after,
.footerLinks li::after {
  top: 50%;
  transform: translateY(-50%);
}
.birzaMenu li::before,
.footerLinks li::before {
  bottom: 50%;
  transform: translateY(-50%);
}
.birzaMenu li:hover::after,
.footerLinks li:hover::after {
  top: -2px;
  transform: translateY(0);
  opacity: 1;
}
.birzaMenu li:hover::before,
.footerLinks li:hover::before {
  bottom: -3px;
  transform: translateY(0);
  opacity: 1;
}
.birzaMenu li a,
.birzaMenu li button {
  font-size: 18px;
  font-weight: bold;
  color: var(--headingDark);
  text-decoration: none;
}
.birzaNav.stickyNav .birzaMenu li a,
.birzaNav.stickyNav .birzaMenu li button {
  color: var(--headingDark);
}
.birzaMenu li button {
  background-color: transparent;
  border: 0;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color) !important;
  color: var(--headingDark);
}
.dropdown-menu li.active::before,
.dropdown-menu li.active::after,
.dropdown-menu li:active::before,
.dropdown-menu li:active::after {
  display: none !important;
}

.birzaMenu li.active::before {
  bottom: -3px;
  transform: translateY(0);
  opacity: 1;
}
.birzaMenu li.active::after {
  top: -2px;
  transform: translateY(0);
  opacity: 1;
}
.birzaSocial {
  width: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.birzaSocial i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: grid;
  place-content: center;
  font-size: 14px;
  color: var(--headingLight);
}
.birzaButton {
  background-color: var(--primary-color);
  display:inline-block!important;
  padding: 15px 30px;
  border-radius: 10px;
  border: 0;
  font-size: 15px;
  font-weight: bold;
  color: var(--headingLight);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  text-decoration: none;
}
.birzaButton:hover {
  color: var(--headingLight);
  background-color: var(--headingDark);
}
.birzaButton-hover {
  background-color: red;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
}
.birzaButton span:nth-child(1) {
  position: relative;
  z-index: 2;
}
.birzaButton i {
  transform: rotate(-45deg);
  margin-left: 10px;
}
.desktopNav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* mobile menu */
/* mobile Nav */

.mobileNav {
  position: relative;
  display: none;
}
.menuIcon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: solid 1px var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.menuIcon span {
  width: 60%;
  display: block;
  height: 1px;
  background-color: var(--headingDark);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.birzaNav.stickyNav .mobileNav .menuIcon span {
  background-color: var(--headingDark);
}
.menuIcon::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
  background: #000;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.close {
    opacity: 1!important; 
}
.menuIcon span:nth-child(1) {
  transform: translateX(0%);
}
.menuIcon span:nth-child(2) {
  transform: translateX(50%);
}
.menuIcon:hover span:nth-child(1) {
  transform: translateX(50%);
}
.menuIcon:hover span:nth-child(2) {
  transform: translateX(0%);
}
.mobNavInner {
  width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 0px 40px 20px 40px;
  z-index: 99999999;

  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.menuActive.menuIcon::before {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.mobNavInner .birzaMenu {
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.mobNavInner .birzaMenu li a {
  font-size: 40px;
}
.menuActive.mobNavInner {
  display: flex;
}
.menuActive.menuIcon {
  border-color: transparent;
}
.menuActive.menuIcon span {
  background-color: #fff;
}
.menuActive.menuIcon span:nth-child(1) {
  transform: translateX(50%);
}
.close {
  position: absolute;
  top: 20px;
  right: 50px;
  align-items: end;
}

.menuActive.menuIcon span:nth-child(2) {
  transform: translateX(0%);
}
.menuActive.close span {
  transform: translate(0, 0);
}
.menuActive.close span:nth-child(1) {
  transform: rotate(-45deg) translate(-40%, 0);
}
.menuActive.close span:nth-child(2) {
  transform: rotate(45deg) translate(-40%, 0);
}
.birzaHero {
  padding:180px 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.birzaHeader{
    height:500px;
}
.birzaTag {
  padding: 0 20px;
  height: 30px;
  border-radius: 15px;
  background-color: var(--primary-color);

  font-size: 13px;
  font-weight: normal;
  display: grid;
  place-content: center;
  width: max-content;
  text-transform: uppercase;
  color: var(--headingDark);
  margin-bottom: 20px;
}

/* birza Landing 2 */

.tagSection {
  width: 90%;
  height: 100%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  margin: 0 auto;
  gap: 10px;
}
/* .tagSection .tagInner {
  width: 30%;
} */
.heroTag {
  padding: 0 30px;
  width: max-content;
  border-radius: 20px;
  height: 65px;
  font-size: 16px;
  text-transform: uppercase;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--headingLight);
  font-weight: bold;
  margin-bottom: 40%;
}
.rightTags .heroTag:nth-child(2) {
  margin-left: auto;
}
.tag1 {
  background-color: #f91f5d;
}
.tag2 {
  background-color: #f9901f;
}

.tag3 {
  background-color: #228d87;
}

.tag4 {
  background-color: #6555a5;
}

.tag5 {
  background-color: #60d0fc;
}

.birzaH1,
.birzaH2,
.birzaH3,
.birzaH4,
.birzaH5 {
  color: var(--headingLight);
  font-weight: bold;
  line-height: 35px;
  margin: 10px 0;
}
.birzaH1 {
  font-size: 50px;
}
.birzaList {
  position: relative;
  height: auto;
  padding-left: 30px;
  font-size: 26px;
  font-weight: bold;
  color: var(--headingLight);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}
.highlight {
  color: var(--primary-color);
}
.birzaList::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  border-radius: 5px;
  background-color: var(--primary-color);
}

.birzaCall {
  display: flex;
  align-items: center;
  gap: 20px;
}
.birzaCall i {
  border-radius: 50%;
  background-color: var(--secondary-color2);
  width: 50px;
  height: 50px;
  font-size: 19px;
  color: var(--headingDark);
  display: grid;
  place-content: center;
}

.birzaCall article p {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: bold;
}
.birzaCall article h5 {
  color: var(--headingLight);
  font-size: 19px;
  font-weight: bold;
}

.heroImages img:nth-child(2).position-absolute {
  left: -10%;
  bottom: -10%;
}
.heroImages img:nth-child(3).position-absolute {
  right: -10%;
  bottom: -10%;
}
.birzaMargin {
  margin: 80px 0;
}
.birzaPadding {
  padding: 80px 0;
}
.box {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  height: 350px;
  border-radius: 20px;
  border: solid 1px var(--headingDark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
  cursor: pointer;
  transition: 0.5s var(--transition);
}
.box > * {
  pointer-events: none;
}
.box img {
  width: 83px;
}
.birzaH4 {
  font-size: 26px;
}
.headingDark {
  color: var(--headingDark) !important;
}
.headingLight {
  color: var(--headingLight) !important;
}
.birzaDesc {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.667;
}
.box:hover {
  border-color: var(--primary-color);
  border-bottom-width: 10px;
}
.birzaLine {
  width: 100%;
  background-color: var(--secondary-color2);
  height: 2px;
}
.birzaH2 {
  font-size: 30px;
  padding-bottom:10px;
}

.birzaList2 li {
  font-size: 18px;
  color: var(--headingDark);
  font-weight: bold;
  display: flex;
  gap: 15px;
  margin: 12.5px 0;
}
.birzaList2 li i {
  font-size: 27px;
  color: var(--primary-color);
}
.birzaDesc.w65 {
  width: 65%;
}
.birzaExp .row > img.position-absolute {
  width: 420px;
  left: 75%;
}
.expCount {
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
  justify-content: space-between;
  z-index: 1;
}
.expBlock {
  min-width: 150px;
  height: 150px;
  border-radius: 20px;
  background-color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
  display: grid;
  place-content: center;
  line-height: 1;
}
.expBlock span {
  font-size: 55px;
}
.expBlock i {
  font-style: normal;
  font-size: 30px;
}
.expAmmount {
  font-size: 62px;
  line-height: 1;
  font-weight: 300;
}
.birzaTab {
  width: 100%;
  min-height: 90vh;
  position: relative;
  transform-style: preserve-3d;
}
.birzaTab::before {
  content: "";
  background: url(../../../images/darkBg.jpg);
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(-1px);
}
.tabButton {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: end;
}
.tabButton button {
  font-size: 40px;
  font-weight: bold;
  color: var(--headingLight);
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  transition: 1s var(--transition);
  margin-bottom: 35px;
  line-height: 1;
  border-bottom: solid 1px var(--primary-color);
}
.tabButton button span {
  font-size: 16px;
  color: var(--primary-color);
  position: relative;
  left: -25px;
}
.tabButton button.active {
  color: var(--primary-color);
}
.tabContentTxt {
  width: 100%;
  padding: 60px 60px 20px 60px;
  background-color: var(--secondary-color);
  height: auto;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.pricH sup {
  font-size: 24px;
}
.pricH {
  font-size: 57px;
  font-weight: bold;
  color: var(--headingLight);
}
.pricH span {
  font-size: 22px;
  font-weight: bold;
}
.birzaLg {
  font-size: 20px;
  font-weight: 600;
  color: rgb(176, 176, 176);
}
.tabContentImg img {
  border-bottom: 10px solid rgb(245, 245, 245);
}
.clientSingle {
  width: 100%;
  height: 200px;
  display: grid;
  place-content: center;
}
.clientSingle img {
  width: 250px;
  max-width: 100%;
}
.birzaTag2 {
  width: max-content;
  height: 50px;
  box-shadow: 0px 7px 95px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background-color: var(--headingLight);
  font-size: 18px;
  font-weight: 400;
  gap: 10px;
  border-radius: 27px;
}
.birzaTag2 i {
  color: rgb(255, 180, 1);
}
.birzaH4 {
  font-size: 22px;
  line-height:30px;
}
.descSm {
  font-size: 15px;
  font-weight: 300;
}
.featureslide {
  background: var(--primary-color);
  height: 150px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featureslide marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideInner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  width: 100%;
  height: 100%;
}
.slide {
  font-weight: bold;
  font-size: 40px;
  color: var(--headingDark);
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 0;
  width: max-content;
}
.slide::after {
  content: "";
  background-image: url(../../../images/star.png);
  background-size: cover;
  width: 50px;
  height: 50px;
  display: inline-block;
}
.birzaList3 {
  width: 100%;
}
.birzaList3 li {
  font-size: 18;
  font-weight: bold;
  border-bottom: solid 1px var(--headingDark);
  color: var(--headingDark);
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  margin-left: 20px;
  margin-top: 20px;
  width: max-content;
}
.birzaList3 li::before {
  content: "*";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  font-size: 22px;
  color: var(--primary-color);
}
.eventSingle {
  width: 100%;
  padding: 30px;
  background-color: var(--secondary-color2);
  border-radius: 10px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  transition: 0.5s var(--transition);
  border: solid 2px transparent;
  overflow: hidden;
}
.eventSingle img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.birzaEvents .container > .row {
  flex-wrap: nowrap !important;
}
.eventSingle a {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transition: 0.5s var(--transition);
  background-color: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
}
.eventSingle i {
  color: var(--headingDark);
  padding: 0 20px;
  background-color: var(--primary-color);
  font-size: 20px;
  filter: hue-rotate(-5deg) brightness(95%) saturate(98%);
  display: grid;
  place-content: center;
  height: 60px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.eventSingle p {
  width: max-content;
  background-color: var(--primary-color);
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  display: grid;
  place-content: center;
  line-height: 1.2;
  color: var(--headingDark);
  height: 60px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.eventSingle:hover {
  border-color: var(--primary-color);
  border-bottom-width: 10px;
}
.eventSingle:hover a {
  opacity: 1;
}

.birzaServices {
  width: 100%;
  height: auto;
  background: url(../../../images/lightBg.jpg);
  background-size: cover;
}

.serviceSingle {
  width: 100%;
  height: auto;
  padding: 30px;
  background-color: var(--headingLight);
  border-radius: 20px;
  border: solid 2px transparent;
  transition: 0.5s var(--transition);
}
.serviceSingle .d-flex {
  gap: 20px;
}
.serviceSingle img {
  width: 80px;
}
.onHoverService {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: 0.5s var(--transition);
}
.hoverLine {
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  position: relative;
  transition: 0.5s var(--transition);
}
.hoverLine::before {
  content: "";
  width: 15%;
  height: 1px;
  position: absolute;
  background-color: var(--primary-color);
  top: 0;
  left: -25px;
  transform: rotate(45deg) translate(-50%, -50%);
}
.serviceBtn {
  width: 53px;
  height: 53px;
  display: grid;
  place-content: center;
  text-decoration: none;
  font-size: 12px;
  color: var(--headingDark);
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: 0.5s var(--transition);
  opacity: 0;
}
.serviceSingle:hover {
  border-color: var(--primary-color);
  border-bottom-width: 10px;
}
.serviceSingle:hover .onHoverService .serviceBtn {
  opacity: 1;
}
.serviceSingle:hover .onHoverService .hoverLine {
  width: 65%;
}
.teamMember {
  width: 100%;
  height: 350px;
  position: relative;
  padding: 0 20px;
  transition: 1s var(--transition);
  transform: translateX(0);
}
.teamMember > * {
  position: relative;
  z-index: 3;
}
.teamMember img {
  width: calc(100% - 40px);
  object-position: bottom;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.teamMember:before {
  content: "";
  width: 100%;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgb(233, 233, 233);
}
.memberDetails {
  padding: 40px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: rgb(250, 250, 250);
  transition: 1s var(--transition);
  transform: translateX(0);
  z-index: 1;
}
.birzaH3 {
  font-size: 35px;
}

.memberDetails .birzaDesc {
  font-size: 16px;
}
.memberProgress {
  width: 100%;
  height: auto;
}
.barInner {
  border-radius: 5px;
  background-color: rgb(240, 240, 240);
  height: 11px;
  width: 100%;
}
.barInner .fill {
  width: 50%;
  background-color: var(--primary-color);
  border-radius: inherit;
  height: 100%;
}
.memberProgress .barText {
  font-size: 12px;
}
.memberSocials {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.memberSocials i {
  display: grid;
  place-content: center;
  border-radius: 50%;
  background-color: var(--headingDark);
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: var(--headingLight);
}
.teamMember:hover {
  transform: translateX(-100%) !important;
}
.teamMember:hover .memberDetails {
  transform: translateX(100%);
}
.birzaCounter .birzaH2 {
  font-size: 55px;
}
.counterStar::before {
  content: "*";
  font-size: 35px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
}
.birzaAccordion {
  width: 100%;
  background-color: var(--secondary-color2);
  background-image: url(../../../images/bgLight2.png);
  height: auto;
}
.accordionMain {
  width: 100%;
  height: auto;
  padding: 60px 30px;
  background-color: var(--headingLight);
  border-radius: 30px;
}
.birzaAccordion .accordion-item {
  padding: 20px 30px 0px 30px;
  margin-bottom: 30px;
  transition: 0.5s var(--transition);

  border-radius: 0;
}
.birzaAccordion .accordion-item.active {
  background-color: var(--primary-color);
  border-radius: 30px;
  border-bottom: 0;
}
.birzaAccordion .accordion-header {
  padding-bottom: 20px;
  border-bottom: solid 1px rgb(223, 223, 223);
}
.birzaAccordion .accordion-item.active .accordion-header {
  border: 0;
}
.birzaAccordion .accordion-body {
  padding-top: 20px;
  padding-bottom: 40px;
}
.plusminus {
  position: relative;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
  background: var(--primary-color);
  border-radius: 50%;
  transition: 0.5s var(--transition);
}
#birzaAccordion button.collapsed .plusminus {
  background: rgb(245 245 245) !important;
}
.plusminus:before {
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.plusminus:after {
  transform: translate(-50%, -50%) rotate(0);
}
.plusminus:before,
.plusminus:after {
  content: "";
  display: block;
  background-color: var(--headingDark);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s var(--transition);

  width: 10px;
  height: 2px;
}
#birzaAccordion button.collapsed .plusminus:before,
#birzaAccordion button.collapsed .plusminus:after {
  background-color: var(--headingDark);
}
#birzaAccordion button.collapsed .plusminus:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#birzaAccordion button.collapsed .plusminus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#birzaAccordion .accordion-header button {
  font-size: 27px;
  font-weight: bold;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  text-align: start;
}
.birzaList4 li {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-top: 15px;
}
.birzaList4 li span {
  line-height: 0;
  margin-top: 3px;
  font-size: 26px;
}
.birzaTag3 {
  padding: 0 20px;
  width: max-content;
  height: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}
.blogDate {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 19px;
  font-weight: bold;
  display: grid;
  place-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 25px;
  left: 25px;
}
.blogDate::after {
  content: "";
  width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  /* mix-blend-mode: multiply; */
  filter: hue-rotate(-5deg) brightness(95%) saturate(98%);

  /* background-color: rgb(16, 242, 122); */
}
.blogDetails {
  width: max-content;
  height: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  transform: translateY(-50%);
}
.blogDetails > div {
  padding: 0 30px;
  height: 100%;
  border-radius: inherit;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  gap: 5px;
}
.blogDetails > div:nth-child(odd) {
  background-color: var(--primary-color);
  filter: hue-rotate(-5deg) brightness(95%) saturate(98%);
}
.birzaDesc a {
  color: var(--headingDark);
}

.testimonials {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.testimonials .swiper-slide.swiper-slide-next.swiper-slide-prev {
  opacity: 0 !important;
}
.testimonials .swiper.slide {
  width: 100%;
}
.testimonialImg {
  width: 100%;
  position: relative;
}
.testimonialImg .qouteS.position-absolute {
  top: 30px;
  left: 30px;
  font-family: "Urbanist";
  font-size: 180px;
  color: var(--primary-color);
  line-height: 1;
  font-weight: 900;
}
.rating {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.rating i {
  font-size: 16px;
  color: var(--primary-color);
}
.rating::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  background-color: rgb(215, 230, 253);
  margin-left: 30px;
  max-width: 60%;
}
.nextPrev {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 30px;
  left: 17%;
  transform: translateX(-17%);
}
.nextPrev button {
  width: 65px;
  height: 65px;
  display: grid;
  place-content: center;
  background-color: var(--secondary-color2);
  border-radius: 50%;
  border: 0;
  opacity: 1;
  font-size: 20px;
  color: var(--headingDark);
  transition: 0.5s var(--transition);
}
.nextPrev .next {
  background-color: var(--primary-color);
}

.birzaFooter {
  width: 100%;
  height: auto;
  position: relative;
  background:#000;
}
.birzaFooter > * {
  position: relative;
  z-index: 2;
}
.birzaH5 {
  font-size: 23px;
}
.footerLinks li {
  margin-bottom: 12px;
}
.footerLinks li a {
  font-size: 18px;
  font-weight: 300;
  color: var(--headingLight);
  text-decoration: none;
}
.address {
  display: flex;
  gap: 5px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
  color: var(--headingDark);
  line-height: 1;
}
.address img {
  min-width: 20px;
  height: 13px;
  object-fit: cover;
}
.addressText {
  font-size: 16px;
  font-weight: 500;
  color: rgb(135, 145, 175);
  line-height: 1;
  margin-top: 10px;
}
.footerSlider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.footerSocials {
  width: 100%;
  background-color: var(--primary-color);
  min-height: 50px;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.footerSocials > * {
  position: relative;
  z-index: 2;
}
.footerSocials ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footerSocials li {
  margin: 10px 0;
  min-width: 120px;
}
.footerSocials li > a {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 800;
  text-decoration: none;
  gap: 16px;
  color: var(--headingDark);
  font-size: 19px;
}
.footerSocials ul.borderLeft {
  border-left: solid 1px var(--headingLight);
}
.footerSocials::before {
  content: "";
  width: calc(100% + 12px);
  height: 100%;
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.footerPagination {
  position: absolute;
  bottom: 5% !important;
  left: 15% !important;
  transform: translate(-15%, -5%) !important;

  z-index: 5;
  width: max-content !important;
}
.footerPagination .swiper-pagination-bullet {
  background-color: var(--headingLight);
  width: 20px;
  height: 7px;
  border-radius: 0;
  opacity: 1;
}
.footerPagination
  .swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.footerSlider .slideContent {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  padding: 35px 30px;
  background-color: var(--secondary-color);
  max-width: 60%;
}
.footerSlider .slideContent a {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
}
.copyright {
  padding: 5px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  color: var(--headingLight);
  line-height: 28px;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--transition), visibility 0.3s var(--transition);
  display: grid;
  place-content: center;
  font-size: 24px;
  color: var(--headingLight);
  pointer-events: none;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  cursor: pointer;
  text-align:center;
}

/* color pallete */
.colorPallete {
  width: auto;
  max-width: 300px;
  position: fixed;
  top: 30%;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  transform: translateX(-80%);
  transition: 0.5s var(--transition);
}
.colorPallete.reveal {
  transform: translateX(0);
}
.palleteButton {
  padding: 10px 20px;
  font-size: 20px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  color: var(--headingLight);
  background-color: var(--headingDark);
  cursor: pointer;
}
.palleteInner {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--headingDark);
  gap: 10px;
  border-bottom-right-radius: 30px;
}
.palleteInner button {
  color: red;
  width: 60px;
  border: 0;
  height: 60px;
  position: relative;
  border-radius: 50%;
}
.themeChange {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.themeChange button {
  width: 50%;
  border-radius: 0;
  height: 45px;
  border-radius: 20px;
  font-size: 20px;
}
.themeChange .dark {
  color: rgb(255, 232, 124);
  background-color: rgb(58, 58, 55);
}
.themeChange .light {
  color: rgb(27, 23, 88);
  background-color: rgb(255, 255, 255);
}

.color1 {
  background-color: rgb(14, 255, 133);
  --logo-color: none;
}
.color2 {
  background-color: rgb(233, 196, 106);
  --logo-color: brightness(0) saturate(100%) invert(87%) sepia(19%)
    saturate(1131%) hue-rotate(344deg) brightness(95%) contrast(93%);
}
.color3 {
  background-color: rgb(42, 157, 143);
  --logo-color: none;
}
.color4 {
  background-color: rgb(20, 33, 61);
  --logo-color: none;
}
.color5 {
  background-color: rgb(214, 40, 40);
  --logo-color: none;
}
.color6 {
  background-color: rgb(247, 37, 133);
  --logo-color: none;
}
.pallete.active::before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--headingDark);
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* birza COntact Style */
.contactUs .birzaHeader,
.project .birzaHeader {
  min-height: 650px;
  align-items: center;
}
.contactUs .birzaHero,
.about .birzaHero {
  justify-content: center !important;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 16px;
  color: rgb(184, 184, 211);
}
.breadcrumb a {
  font-size: 16px;
  color: rgb(184, 184, 211);
  text-decoration: none;
}
.mapEmbed {
  width: 100%;
}
.mapEmbed {
  width: 100%;
  background-color: var(--secondary-color);
  height: 600px;
}
.mapEmbed iframe {
  width: 100%;
  height: 100%;
}
.contactUs .birzaMenu {
  align-items: center;
}
.contactInfo {
  transform: translateY(-25%);
}
.mapInfo .infoSingle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.mapInfo .infoSingle .infoIcon {
  border-radius: 50%;
  background-color: var(--headingLight);
  box-shadow: 0px 4px 18px 0px rgba(32, 45, 73, 0.1);
  width: 123px;
  height: 123px;
  font-size: 45px;
  display: grid;
  place-content: center;
  color: var(--headingDark);
}
.mapInfo .infoSingle article {
  text-align: center;
  margin-top: 30px;
}
.mapInfo .infoSingle article strong {
  color: var(--headingDark);
  margin-bottom: 10px;
  display: block;
}
.mapInfo .infoSingle article p {
  font-size: 18px;
  color: #646d7c;
  font-weight: bold;
}
.birzaContact img {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  object-fit: cover;
}
.inputField {
  width: 100%;
  height: 100%;
}
.inputField input,
.inputField textarea {
  width: 100%;
  height: 64px;
  border: solid 2px rgb(236, 238, 242);
  background-color: #fff;
  border-radius: 50px;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 300;
  color: rgb(135, 153, 163);
}
.inputField textarea {
  min-height: 200px;
  height: 100%;
  padding-top: 30px;
  resize: none;
}
.inputField input::placeholder,
.inputField textarea::placeholder {
  color: rgb(135, 153, 163);
}
.contactForm article h4 {
  font-size: 32px;
  color: var(--headingDark);
  font-weight: bold;
}
.contactForm article p {
  font-size: 17px;
  color: rgb(246, 246, 246);
  font-weight: bold;
}

/* about page */
.about .birzaMenu {
  align-items: center;
}
.about .birzaHeader {
  min-height: 650px;
  align-items: center;
}
.about .birzaTestimonials {
  background-color: rgba(238, 244, 252, 0.49);
}

.birzaVideo {
  width: 100%;
  background-color: var(--headingDark);
  height: 776px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.birzaVideo::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../../images/aboutUs/videoBG.jpg);
  background-size: cover;
  opacity: 0.23;
}
.birzaVideo .birzaDesc {
  color: rgb(218, 218, 218);
}
.birzaVideo .birzaH2 {
  font-size: 55px;
}
.video-play-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 85px;
  height: 85px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 19px solid var(--headingLight);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.about .birzaAccordion {
  background-color: rgb(244, 244, 244);
  background-image: none;
}
.contactUs .birzaMenu,
.about .birzaMenu,
.project .birzaMenu {
  align-items: center;
}
.about .accordionMain {
  background-color: transparent;
}
.about .accordion-item {
  background-color: var(--headingLight);
}
.aboutProject .birzaH3 {
  font-size: 45px;
}
.project .birzaHero {
  align-items: center;
  justify-content: center;
}
.share {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: bold;
  gap: 30px;
}
.share i {
  color: #bbc7cd;
}
.colorGray {
  color: rgb(99, 99, 99);
}
.birzaFooter .logo h3 {
  color: var(--headingLight);
}
.birzaNav.stickyNav .birzaMenu li .dropdown-item {
  color: var(--headingDark);
}

/*custom css*/
.my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.listar-map-button {
  width: 100%;
  position: absolute;
  display: table;
  right: 0;
  top: 0;
  height: 200px;
  line-height: 164px;
  white-space: nowrap;
  font-size: 0;
}

.listar-map-button {
  right: auto;
  /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

@keyframes wave {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1440px;
  }
}

.listar-feature-item-wrapper {
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
  padding:120px 20px 0;
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: absolute;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}


@keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
}



.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #8d096a;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #8d096a;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -3px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  color: #252525;
  font-size: 18px;
}

.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height:100px;
  padding: 0;
  font-size:;
}

.pset {
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(180deg,rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
    15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
  bottom: -30px;
  background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
  background-size: 40%;
  color: #555;
  line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  align-self: flex-start;
}
#img-container {
  margin-top: -100px;
  width: 280px;
  height: 400px;
  perspective: 500px;
  transform-style: preserve-3d;
}
#img-container .box {
  height: 280px;
  width: 280px;
  position: absolute;
  top: 30%;
  border: 1px solid #bbb;
  border-radius: 1.5em;
  box-shadow: 0 0 8px hsla(0deg, 0%, 0%, 75%);
  transition: 800ms ease-in-out;
  overflow: hidden;
}
#img-container .box img {
  width: 100%;
  height: 100%;
}
#img-container .box:first-of-type {
  left: 15%;
  opacity: 0;
  z-index: 5;
  transform: translate(-10%,-10%) rotateY(-10deg);
}
#img-container.box:nth-of-type(2) {
  left: 20%;
  opacity: 1;
  z-index: 5;
  transform: translate(-10%,-10%) rotateY(-10deg);
}
#img-container .box:nth-of-type(3) {
  left: 25%;
  opacity: 0.75;
  z-index: 10;
  transform: translate(-10%,-10%) rotateY(-10deg) translateZ(-40px);
}
#img-container .box:nth-of-type(4) {
  left: 30%;
  opacity: 0.5;
  z-index: 5;
  transform: translate(-10%,-10%) rotateY(-10deg) translateZ(-100px);
  color: #eee;
}

#img-container .card {
  --br: 1em;
  position: relative;
  padding: 1vmin 1em;
  width: min(400px,95%);
  background: linear-gradient(30deg,#2F3238,hsl(210, 56%, 24%));
  color: #dce3f9;
  border-radius: var(--br);
}
.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: var(--br);
  --color1: hsla(0deg, 0%, 96%, 30%);
  --color2: hsla(0deg, 0%, 90%, 75%);
  background: linear-gradient(35deg, var(--color1), var(--color2));
  background: conic-gradient(var(--color1), var(--color2) 15%, var(--color1) 25%), hsl(210, 95%, 8%);
  background-blend-mode: screen;
}
@media (width>768px) {
  section { flex-direction: row;}
  .card::after { inset: -1px;}
}
.shadow {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, hsl(210,50%,30%), hsl(210,40%,10%));
  filter: blur(25px);
  transform: translateY(20px) scale(0.9);
  z-index: -1;
}
.logic-flow {
  background: radial-gradient(circle at top, #1d0f27, #490b42);
  padding: 80px 20px;
  color: #fff;
}

.flow-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.flow-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.flow-header h2 {
  font-size: 30px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #ffffff, #d3d3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-header p {
  font-size: 17px;
  color: #a8b3c5;
  line-height: 1.7;
}

/* CENTRAL SPINE */
.flow-line {
  position: absolute;
  left: 50%;
  top: 240px;
  width: 2px;
  height: calc(100% - 240px);
  background: linear-gradient(
    to bottom,
    transparent,
    #ffd328,
    #f55600cc,
    transparent
  );
  transform: translateX(-50%);
}

/* ITEMS */
.flow-item {
  width: 45%;
  padding: 35px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  position: relative;
  margin-bottom: 10px;
}

.flow-item.left {
  margin-right: auto;
}

.flow-item.right {
  margin-left: auto;
}

.flow-item::before {
  content: "";
  position: absolute;
  top: 40px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffd328;
  box-shadow: 0 0 20px rgb(245 86 0 / 80%);
}

.flow-item.left::before {
  right: -57px;
}

.flow-item.right::before {
  left: -57px;
}

/* CONTENT */
.step {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #ffd328;
  margin-bottom: 10px;
}

.flow-item h3 {
  font-size: 22px;
}

.flow-item p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
}


/*card*/
.expert-team {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1d0f27, #490b42);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.section-head .tagline {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.section-head h2 {
  font-size: 30px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #d3d3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  font-size: 16px;
  color: #cbd5e1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgb(187 83 168 / 25%), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.team-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.team-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
}
footer a {
    color: rgb(222 222 222);
}
a{
    color:#8d096a;
    text-decoration: none!important;
}
.accordionMain .d-flex{
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}
.pt-30{
   padding-top:30px; 
}
.infoIcon i {
    font-size: 35px;
}
.infoSingle{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.flex-direction-column {
    flex-direction:column!important;
}
.infoSingle p, .infoSingle .contact-address{
    font-size:18px;
}
.accordionMain h4{
    
}
.pb-10{
    padding-bottom:10px;
}
.flow-container h3 {
    margin-top: 0px;
}
@media (max-width: 768px) {
    .flow-item {
        width: 100%;
    }
    .flow-item::before{
        display:none;
    }
    .logo img {
        width: 100px;
    }
    .flow-line {
        display:none;
    }
    .birzaHeader{
        height:50vh;
    }
    .pt-50{
        padding-top:0!important;
    }
}
@media (min-width: 768px) {
    .serviceSingle .birzaDesc{
      height:100px;
    }
    .logo img {
      width: 150px;
    }
}
.call-back{
    font-size: 32px;
    color: var(--headingDark);
    font-weight: bold;
}
.pt-50{
    padding-top:50px;
}