@font-face {
  font-family: Averta;
  src: url(./Averta-Regular.otf);
}
@font-face {
  font-family: AvertaBold;
  src: url(./Averta-ExtraBoldItalic.otf);
}

html {
  scroll-padding-top: 150px !important;
}

body {
  background-color: var(--body-color);
  font-family: 'Averta';
  height: auto;
  width: 100%;
}

.bold-italic-white {
  font-family: 'AvertaBold';
  color: white !important;
}
.menuActive.mobNavInner .birzaMenu li a,
.menuActive.mobNavInner .birzaMenu li button {
  color: var(--headingLight) !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 {
  border-bottom: 10px solid var(--primary-color);
  background-color: var(--primary-color);
  display: flex;
  height: 90vh;
  position: relative;
  flex-direction: column;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

.birzaHeader > * {
  position: relative;
  z-index: 2;
}

.birzaHeader video {
  margin-top: 120px;
  height: calc(100% - 120px);
}

.birzaNav {
  align-items: center;
  background-color: var(--body-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 90px;
  left: 0;
  min-height: 120px;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
}

.birzaNav.stickyNav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--headingDark);
  padding: 20px 30px;
  z-index: 10000000;
  min-height: 90px;
}
.logo {
  align-items: center;
  color: var(--headingDark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
}

.logo img {
  width: 150px;
}

.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);
}

.birzaNav.stickyNav .logo img {
  width: 150px;
}
.birzaMenu {
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .birzaMenu {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }
}

.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;
}

@media (max-width: 768px) {
  .birzaMenu li a,
  .birzaMenu li button {
    font-size: 32px;
  }
}

.birzaNav.stickyNav .birzaMenu li a,
.birzaNav.stickyNav .birzaMenu li button,
.birzaNav.stickyNav .logo span {
  color: var(--headingLight);
}
.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 a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
}
.birzaSocial a.pt-br {
  background: url(../../../images/br.svg) no-repeat center center;
  background-size: contain;
}
.birzaSocial a.en {
  background: url(../../../images/us.svg) no-repeat center center;
  background-size: contain;
}

#careerForm {
  margin-bottom: 0;
}

#careerForm h3.birzaH3 {
  margin: 0;
}

#careerForm #zapier {
  width: 100%;
  height: 820px;
  position: relative;
  top: -55px;
}

@media (max-width: 768px) {
  #careerForm #zapier {
    top: 0px;
  }
}

.birzaForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 70%;
}

.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;
}

@media (max-width: 768px) {
  .desktopNav {
    align-items: center;
    background-color: var(--body-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.25s ease-in-out;
    width: 100%;
    z-index: 9;
  }

  .desktopNav.active {
    transform: translateX(0);
  }
}

.mobileNav {
  position: relative;
  display: none;
}

@media (max-width: 768px) {
  .mobileNav {
    display: block;
  }
}

.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(--headingLight);
}
.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;
}

/* 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 15px;
  width: max-content;
  border-radius: 35px;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--headingLight);
  font-weight: bold;
  margin-bottom: 20%;
}
.rightTags .heroTag:nth-child(2) {
  margin-left: auto;
}
.rightTags {
  align-items: end;
  display: flex;
  flex-direction: column;
}

.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: 1;
  margin: 10px 0;
}
.birzaH1 {
  font-size: 70px;
}
.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;
  /* height: 350px; */
  border-radius: 20px;
  border: solid 1px var(--headingDark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 25px;
  cursor: pointer;
  transition: 0.5s var(--transition);
}
.box > * {
  pointer-events: none;
}
.box img {
  width: 65px;
}
.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.3;
}
.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: 50px;
  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: 45px;
  width: 100%;
  margin: 50px 0;
  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: 20px;
  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: 30px;
  height: 30px;
  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%);
}

.plusminus {
  position: relative;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
  background: var(--primary-color);
  border-radius: 50%;
  transition: 0.5s var(--transition);
}

.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;
}
.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);
}

.testimonialImg {
  width: 100%;
  position: relative;
}

.testimonialText {
  padding-left: 35px;
  position: relative;
}

.testimonialText .qouteS.position-absolute {
  top: 0px;
  left: 0px;
  font-family: 'Urbanist';
  font-size: 50px;
  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%;
}
.testimonialImg .test-img {
  display: block;
  height: 200px !important;
  margin: 0 auto;
  object-fit: cover;
  width: 200px !important;
}

.birzaFooter {
  height: auto;
  position: relative;
  width: 100%;
}

.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;
}

.birzaFooter .birzaDesc {
  text-align: center;
}

.birzaFooter .birzaDesc span {
  display: block;
}

.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: url(../../../images/whatsapp.svg) no-repeat center center;
  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;
}
