@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;
}

.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--headingDark);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loaderText {
  font-size: 100px;
  color: var(--headingLight);
  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;
}
.birzaHeader2 {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
  background-color: rgb(19, 10, 3);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.birzaHeader3 {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
  background-color: rgb(19, 10, 3);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.birzaHeader4 {
  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/header/bg.jpg);
  opacity: 0.7;
}
.birzaHeader2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../../images/header/bg2.jpg);
  opacity: 0.7;
}
.birzaHeader3::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../../images/header/bg3.jpg);
  opacity: 0.7;
}
.birzaHeader4::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../../images/header/bg4.jpg);
  opacity: 0.7;
}
.birzaHeader > * {
  position: relative;
  z-index: 2;
}
.effect1 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.effect2 {
  position: absolute;
  top: -10%;
  left: 25%;
  transform: translateX(-25%) rotate(-90deg);
  z-index: 1;
}
.birzaNav {
  width: 100%;
  padding: 20px 0;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  position: relative;
  top: 0;
}
.birzaNav.stickyNav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--headingDark);
  padding: 20px 30px;
  z-index: 10000000;
  min-height: 90px;
}
.logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo h3 {
  font-size: 45px;
  font-weight: bold;
  color: var(--headingLight);
}
.logo h3 span {
  color: var(--primary-color);
}
.logo img {
  width: 43px;
  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(--headingLight);
  text-decoration: none;
}
.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);
  padding: 0 30px;
  border-radius: 30px;
  height: 60px;
  border: 0;
  font-size: 15px;
  font-weight: bold;
  color: var(--headingDark);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.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(--headingLight);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.menuIcon::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary-color);
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.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: var(--secondary-color);
  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: var(--text-color);
}
.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 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.birzaH1,
.birzaH2,
.birzaH3,
.birzaH4,
.birzaH5 {
  color: var(--headingLight);
  font-weight: bold;
  line-height: 1;
  margin: 10px 0;
}
.birzaH1 {
  font-size: 80px;
}
.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: 120px 0;
}
.birzaPadding {
  padding: 120px 0;
}
.box {
  width: 100%;
  padding: 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: 65px;
}

.birzaList2 li {
  font-size: 20px;
  color: var(--headingDark);
  font-weight: bold;
  display: flex;
  align-items: center;
  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: 60%;
}
.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: 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: 50px 50px 25px 50px;
  background-color: var(--headingLight);
  border-radius: 20px;
  border: solid 2px transparent;
  transition: 0.5s var(--transition);
}
.serviceSingle .d-flex {
  gap: 50px;
}
.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;
}
.birzaFooter > * {
  position: relative;
  z-index: 2;
}
.birzaFooter::before {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../../../images/darkBg.jpg);
  z-index: 1;
}
.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(--headingLight);
  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 {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  color: var(--headingLight);
  height: 70px;
  line-height: 70px;
}
#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(--headingDark);
  pointer-events: none;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  cursor: pointer;
}

/* 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 {
  min-height: 650px;
  align-items: center;
}
.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: rgb(246, 246, 246);
  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 .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;
}
.about .accordionMain {
  background-color: transparent;
}
.about .accordion-item {
  background-color: var(--headingLight);
}
.aboutProject .birzaH3 {
  font-size: 45px;
}
.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);
}
