@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Urbanist";
}

.container {
  z-index: 100;
}
main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  /* background-color: aqua; */
}
.background {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  background-color: rgb(0, 0, 0);
}
.logo {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-color-2);
  margin-top: 20px;
}
.logo img {
  width: 40px;
  margin-right: 10px;
}
.logo span {
  background: var(--primary-gradiant);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.tabs button {
  display: flex;
  align-items: start;
  gap: 30px;
  width: 85%;
  height: 100%;
  margin-bottom: 35px;
  background-color: transparent;
  border: 0;
  margin-left: auto;
}

.tabs button i {
  background: var(--secondary-color);
  border-radius: 50%;
  min-width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  font-size: 34px;
  color: var(--text-color-2);
  transition: 0.5s all cubic-bezier(0.19, 1, 0.22, 1);
}
.tabText {
  text-align: start;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 50px;
  position: relative;
}
.tabText > * {
  margin-bottom: 0;
  font-weight: 900;
  transition: 0.5s all cubic-bezier(0.19, 1, 0.22, 1);
}
.tabText::before,
.tabText::after {
  content: "";
  min-width: 175px;
  max-width: 100%;
  height: 2px;
  transition: 0.5s all cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.tabText::after {
  background: var(--primary-gradiant);
  min-width: 0;
}
.tabText h4,
.tag {
  font-size: 18px;
  color: var(--secondary-color);
  background: var(--primary-gradiant);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.tabText h2 {
  font-size: 40px;
  color: var(--text-color-2);
}
.tabs button:last-child {
  margin-bottom: 0;
}
.tabs button:last-child .tabText::before,
.tabs button:last-child .tabText::after {
  display: none;
}
.tabs button.active i {
  background: var(--primary-gradiant);
  color: var(--text-color);
}
.active .tabText::after {
  min-width: 175px;
}
.active .tabText h2 {
  background: var(--primary-gradiant);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/*
.swiper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*/

.textures {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
.textures img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}
.textures img:last-child {
  top: 60%;
  right: 40%;
}

.tab-content {
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}
.tag {
  font-weight: 900;
}
.mainHeading {
  font-size: 80px;
  color: var(--text-color);
  font-weight: 900;
}
.mainDesc {
  font-size: 20px;
  color: var(--text-color);
  font-weight: normal;
  width: 80%;
}

.smallPrint {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  width: 80%;
}



.tab-content .tab-pane {
  opacity: 0;
  transform: translateX(-200px);
}
.slideLeft {
  opacity: 0;
  transform: translateX(-200px);
}
