@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100%;
  height: 100%;
  font-family: "Epilogue";
}

/* scrollbar */
.scrollbar-track-y {
  width: 10px !important;
  background-color: var(--bg-color-3) !important;
  z-index: 9 !important;
}
.scrollbar-thumb {
  background: var(--primary-color) !important;
  border-radius: 0 !important;
  width: 100% !important;
}
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color-2);
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  place-content: center;
}
.loader span {
  font-family: "Urbanist";
  font-size: 100px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-weight: 900;
  display: block;
  position: relative;
  line-height: 1;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(44, 195, 146, 1) 0%,
    rgba(44, 195, 146, 0) 100%
  );
  width: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

#scroll-content {
  width: 100%;
  height: 100%;
}
.z-index-3 {
  z-index: 3;
}
header {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 10px 0;
  padding-top: 0;
}

.heroBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  background-color: var(--bg-color-3);
  z-index: 1;
}

.heroBG img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.starta-nav {
  margin-top: 20px;

  padding: 15px 35px;
  height: auto;
  position: relative;
  z-index: 9;
  background-color: var(--bg-color-3);
  border: solid 3px var(--bg-color);
  border-radius: 53px;
  background-color: var(--bg-color-3);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  transform-style: preserve-3d;
}

.transitionNav {
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.backToTop {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: grid;
  place-content: center;
  background: var(--primary-color);
  color: var(--heading-color);
  position: fixed;
  bottom: 50px;
  right: 50px;
  opacity: 0;
  border-radius: 50%;
  transform: translateY(100%);
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  cursor: pointer;
}
.starta-nav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translateZ(-1px);
  top: 5px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  left: 0;
  background-color: var(--primary-color);
  border-radius: inherit;
}
.sticky {
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;
  max-height: 90px !important;
  margin-top: 0;
  border-radius: 0;
  border: 0;
  max-width: 100% !important;
}
.sticky::before {
  top: 0;
}
.starta-nav .logo,
.starta-nav .starta-menu li a,
.starta-nav .starta-helpline article {
  color: var(--heading-color-3) !important;
  border-color: var(--heading-color-3);
}
.starta-nav .starta-helpline {
  border-color: var(--heading-color-3);
}
.logo {
  display: flex;
  align-items: center;
  height: auto;
  padding-right: 40px;
  position: relative;
  border-right: solid 2px var(--heading-color);

  font-size: 45px;
  color: var(--heading-color);
  font-weight: 900;
  line-height: 1;
}

.logo img {
  margin-right: 10px;
}

.logo span {
  color: var(--primary-color);
  display: inline-block;
}
.starta-menu {
  display: flex;
  flex: 1;
  padding: 0 60px;
  justify-content: start;
  gap: 50px;
  margin-bottom: 0;
}
.starta-menu li a {
  font-family: "Urbanist";
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
}
.starta-menu li a.active::before {
  width: 100%;
}
.menu-animation {
  position: relative;
}
.menu-animation::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  background-color: var(--primary-color);
  height: 2px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-animation.hover::before {
  width: 100%;
  left: 0;
}
.starta-helpline {
  display: flex;
  align-items: end;
  gap: 8px;
  text-decoration: none;
  padding-left: 10px;
}
.starta-helpline:hover i::after {
  top: 7px;
}
.starta-helpline i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 3px var(--bg-color);
  background-color: var(--heading-color);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  font-size: 18px;
  color: var(--bg-color);

  display: grid;
  place-content: center;
  position: relative;
  transform-style: preserve-3d;
}
.starta-helpline i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: translateZ(-1px);
  transition: 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.starta-helpline article {
  color: var(--heading-color);
  font-family: "Urbanist";
}
.starta-helpline article * {
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 5px;
}
.starta-helpline article h4 {
  font-weight: 900;
  font-size: 18px;
}
.starta-helpline article p {
  font-weight: 600;
  font-size: 20px;
}

/* mobile menu */
.starta-mobile-nav {
  display: none;
}
.menuIcon {
  border-radius: 50%;
  background-color: var(--bg-color-3);
  height: 60px;
  width: 60px;
  place-content: center;
  margin-left: 20px;
  cursor: pointer;
  position: absolute;
  top: 38px;
  right: 20px;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
}
.menuIconSticky {
  background-color: var(--bg-color-3);
}
.menuIconSticky span {
  background-color: var(--bg-color);
}
.menuIcon span {
  background-color: var(--bg-color);
  width: 22px;
  height: 2px;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(-5px);
}
.menuIcon span:nth-child(2) {
  transform: translateY(0px);
}
.menuIcon span:nth-child(3) {
  transform: translateY(5px);
}

.menuIcon:hover span:nth-child(1) {
  transform: translateY(-10px);
}

.menuIcon:hover span:nth-child(3) {
  transform: translateY(10px);
}
.menuIcon.close {
  background-color: var(--bg-color-3);
}
.menuIcon.close span:nth-child(1) {
  transform: rotate(-45deg);
}
.menuIcon.close span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.menuIcon.close span:nth-child(3) {
  transform: rotate(45deg);
}

.close:hover span {
  transform: rotate(-45deg) translateY(0);
}
.close:hover span:nth-child(2) {
  transform: rotate(45deg) translateY(0);
}
.heroHeading {
  font-size: 70px;
  color: var(--text-color-4);
  font-weight: 800;
}
.starta-button {
  background-color: var(--primary-color);
  border-radius: 30px;
  height: 62px;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  border: 0;
  padding: 0 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.starta-button-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;
}
.starta-button span.position-relative,
.starta-button a.position-relative {
  z-index: 2;
}
.sideImg {
  transform: translateY(0);
}
/**/
/**/
/**/
.skill {
  width: 100%;
  height: 250px;
  border-radius: 95px;
  display: grid;
  place-content: center;
  border: solid 3px var(--bg-color);
  background-color: rgb(239, 239, 239);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  position: relative;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  text-align: center;
}
.skill img {
  margin: 0 auto;
  width: 90px;
}
.skill p {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}
.skill::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: var(--primary-color);
  transform: translateZ(-1px);
}
.starta-icon {
  border-radius: 50%;
  background-color: var(--primary-color);
  width: 113px;
  height: 113px;
  display: grid;
  place-content: center;
  font-size: 55px;
  color: var(--bg-color);
}
.starta-h4 {
  font-size: 27px;
  font-weight: 900;
  color: var(--heading-color-4);
  margin-bottom: 15px;
  line-height: 1;
}
.starta-desc {
  font-size: 18px;
  font-family: "Urbanist";
  color: var(--text-color-2);
  line-height: 1.65;
  margin-bottom: 0;
}

.starta-h4 i {
  color: rgb(0, 234, 12);
  font-size: 20px;
  margin-left: 2px;
}
.starta-h5 {
  font-size: 18px;
  font-weight: normal;
  color: var(--heading-color-3);
  display: flex;
  justify-content: space-between;
}

.starta-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading-color-4);
  height: 47px;
  width: max-content;
  background-color: transparent;
  box-shadow: 0px 7px 0px 0px rgba(31, 31, 31, 0.004);
  display: flex;
  align-items: center;
  border-radius: 27px;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 20px;
  position: relative;
  transform-style: preserve-3d;
}

.starta-heading i {
  font-size: 20px;
  margin-right: 10px;
  color: rgb(255, 180, 1);
}
.starta-h1,
.starta-h2 {
  font-weight: 900;
  font-size: 55px;
  color: var(--heading-color-3);
  line-height: 1.2;
  margin: 25px 0;
}
.starta-h2 {
  font-size: 40px;
}
.starta-desc a {
  font-weight: bold;
  text-decoration: underline;
  color: inherit;
}
.stars {
  width: max-content;
}
.stars i {
  margin-right: 3px;
  background-color: rgb(255, 180, 1);
  font-size: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}

.starta-h5.fw-bold {
  background-color: rgb(255, 245, 248);
  padding: 0 30px;
  height: 34px;
  border-radius: 17px;
  display: grid;
  place-content: center;
  width: max-content;
}
.starta-list li {
  font-weight: 900;
  font-size: 20px;
  color: var(--heading-color-4);
  margin-bottom: 30px;
}
.starta-hero .starta-list li {
  display: flex;
  align-items: baseline;
  color: var(--text-color-4);
  font-size: 21px;
  font-weight: 900;
}
.starta-hero .starta-list li p {
  font-size: 15px;
  font-weight: 600;
}

.starta-list i {
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 8px;
}

.featureslide {
  background-color: var(--bg-color-2);
  height: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.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-size: 50px;
  font-family: "Urbanist";
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--heading-color);
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 0;
  width: max-content;
}
.slide::after {
  content: "";
  display: inline-block;
  border: solid 2px rgb(4, 4, 4);
  background-color: rgb(95, 215, 255);
  width: 17px;
  transform: skew(320deg);
  margin-top: 10px;
  height: 18px;
}
.starta-servcies {
  width: 100%;
  height: auto;
  background-color: rgb(234, 240, 234);
}
.serviceSingle {
  border-radius: 10px;
  background-color: var(--bg-color-3);
  background-color: var(--bg-color-3);
  width: 100%;
  height: 182px;
  margin-bottom: 20px;
  padding: 0 0 0 40px;
  margin-bottom: 15px;
  border: 0;
  position: relative;
  transform-style: preserve-3d;
}
.serviceSingle,
.serviceSingle::before,
.serviceSingle .starta-desc,
.serviceButton button,
.serviceSingle .skillLink,
.serviceSingle .skillLink i.serviceButton button::before,
.serviceSingle img,
.serviceContent {
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.serviceSingle img {
  width: 100px;
}
.serviceSingle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: inherit;
  transform: translateZ(-1px);
}
.serviceContent {
  position: relative;
}
.changeFont {
  font-family: "Epilogue";
  font-weight: bold;
  text-transform: uppercase;
}
.serviceContent .starta-h3 {
  color: var(--text-color-3);
}
.serviceButton .starta-desc {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.serviceButton button {
  opacity: 0;
  transform: translateX(-50px);
  margin-bottom: 15px;
}
.skillLink {
  width: 180px;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--secondary-color);
  text-decoration: none;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.skillLink i {
  transform: rotate(-45deg);
  color: var(--bg-color);
  font-size: 35px;
}
.serviceButton {
  width: 30%;
  position: relative;
  border-left: solid 2px transparent;
  padding-left: 10px;
}
.serviceButton button {
  border: solid 3px var(--bg-color);
  border-radius: 30px;
  background-color: var(--bg-color-3);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  min-height: 50px;
  padding: 0 35px;
  position: relative;
  transform-style: preserve-3d;
  font-size: 18px;
  font-weight: bold;
  font-family: "Urbanist";
  color: var(--text-color-3);
  text-transform: uppercase;
}

.serviceSingle:hover {
  height: 275px;
  border: solid 2px var(--bg-color);
}
.serviceSingle:hover::before {
  top: 5px;
}
.serviceSingle:hover .skillLink {
  width: 80px;
  background-color: transparent;
}
.serviceSingle:hover .skillLink i {
  color: var(--primary-color);
}
.serviceSingle:hover img {
  width: 200px;
}
.serviceSingle:hover .serviceButton button {
  opacity: 1;
  transform: translateX(0);
}
.serviceSingle:hover .serviceButton button::before {
  top: 5px;
}
.serviceSingle:hover .serviceButton {
  border-color: var(--primary-color);
}
.serviceSingle:hover .serviceButton .starta-desc {
  top: 80%;
  transform: translate(-100%, -50%);
  left: -27%;
}
.plan {
  padding: 80px 0;
  background-color: var(--bg-color);
  height: auto;
}
.plan:hover .planImg img {
  transform: scale(1.2);
}
.plan-wrap {
  width: 100%;

  width: 60%;
  margin: 0 auto;
}
.plan-wrap .starta-desc {
  color: var(--heading-color);
}
.planImg {
  border-radius: 10px;
  background-color: var(--bg-color);
  width: 100%;
  height: 146px;
  margin-bottom: 35px;
  overflow: hidden;
}
.planImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.plan .starta-h3 {
  color: var(--heading-color);
  font-size: 38px;
  font-family: "Urbanist";
  font-weight: 800;
}
.plan .starta-list li {
  font-family: "Urbanist";
  font-weight: 600;
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}
.plan .starta-list li i {
  color: var(--heading-color);
}
.best {
  background-color: var(--primary-color);
}
.best .starta-h3,
.best .starta-desc,
.best .starta-list li i,
.best .starta-list li {
  color: var(--bg-color);
}
.progress-single {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}
.progress-single::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(247, 249, 255);
}
.progress-text {
  font-size: 25px;
  color: var(--bg-color);
  font-weight: bold;
  position: relative;
  z-index: 5;
}
.progress-text span {
  font-size: 90px;
}
.progress-type {
  font-size: 18px;
  color: rgb(113, 113, 113);
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
}
.testimonialsSlides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.testimonialImg {
  border-radius: 30px;
  background-color: rgb(226, 191, 183);
  width: 184px;
  height: 193px;
  position: relative;
}
.testimonialImg img:nth-child(1) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.testimonialImg .qoute {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 71px;
  height: 54px;
  object-fit: cover;
}
.testimonialAbout {
  margin-left: 50px;
  flex: 1;
}
.testimonialAbout .starta-h5 {
  font-size: 21px;
  font-weight: 900;
}
.testimonialAbout .starta-desc {
  font-size: 15px;
  font-family: "Epilogue";
  color: rgb(79, 79, 79);
  font-weight: bold;
}
.testimonialsSlides .starta-h4 {
  font-size: 25px;
  font-family: "Epilogue";
  color: rgb(21, 31, 53);
  font-weight: bold;
  line-height: 1.8;
  margin-top: 30px;
}
.starta-pagination .swiper-pagination-bullet {
  border: solid 1px rgb(201, 201, 201);
  background-color: rgb(255, 255, 255);
  width: 51px;
  height: 16px;
  border-radius: 6px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.starta-pagination .swiper-pagination-bullet-active {
  background-color: rgb(190, 224, 65);
  border: 0;
}
.member {
  background-color: rgba(255, 255, 255, 0);
  clip-path: inset(-100vw 0 0 0 round 50%);
  aspect-ratio: 1.5 / 1.5;
  position: relative;
  margin-bottom: 25px;
  margin-top: 70px;
}
.memberSingle:hover .member-social {
  transform: translateY(0);
  opacity: 1;
}

.member::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgb(236, 238, 255);
  position: absolute;
  top: 0;
  left: 0;
}
.member img {
  width: 115%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  object-position: 0 -20px;
}
.member-name .starta-h4 {
  color: var(--heading-color-3);
  margin-bottom: 15px;
}
.member-name p {
  font-size: 16px;
  font-weight: normal;
  color: var(--heading-color-3);
}
.member-name {
  margin-bottom: 25px;
}
.member-social {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(-50px);
  opacity: 0;
}
.member-social i {
  color: var(--bg-color-2);
  font-size: 24px;
  position: relative;
}
.member-social i::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: var(--bg-color-2);
  margin: 0 auto;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.member-social i:hover::after {
  width: 60%;
}
.starta-about {
  width: 100%;
  position: relative;
  min-height: 80vh;
}
.starta-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.starta-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.starta-about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../images/main/about/bgoverlay.png);
  width: 100%;
  opacity: 0.05;
  height: 100%;
}
.starta-about .starta-h1 {
  color: var(--heading-color);
  margin: 10px 0 20px 0;
}
.starta-semi {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0px;
}
.clients {
  border-radius: 70px;
  background-color: var(--primary-color);
  width: 670px;
  padding: 40px 50px;
  margin-top: 40px;
}
.client {
  border-radius: 30px;
  background-color: var(--bg-color-3);
  box-shadow: 0px 5px 65px 0px rgba(0, 0, 0, 0.03);
  aspect-ratio: 1 / 1;

  display: grid;
  place-content: center;
  margin-bottom: 20px;
}
.client img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.client-button {
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 800;
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 0;
}
.starta-h3 {
  font-size: 33px;
  color: var(--heading-color);
  font-weight: 900;
  margin-bottom: 0;
}
.check {
  aspect-ratio: 1 /1;
  object-fit: cover;
}
.starta-about .starta-desc {
  color: var(--heading-color);
}
.starta-about .starta-list li {
  color: var(--heading-color);
}
.contact-box i {
  font-size: 24px;
  color: var(--heading-color);
  display: grid;
  place-content: center;
  aspect-ratio: 1 / 1;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.contact-box article {
  font-size: 19px;
  color: var(--heading-color-3);
  font-weight: normal;
}
.contact-box article a {
  font-weight: 900;
  text-decoration: underline;
  color: var(--heading-color-3);
}
.accordion {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 50px;
}
.accordion::before {
  content: "";
  background-color: rgb(235, 241, 234);
  border-radius: 30px;
  width: 100%;
  height: calc(50% + 50px);
  position: absolute;
  bottom: 0;
  left: 0;
}
/* faqs */
.accordion-item {
  width: 90%;
  margin: 0 auto;
  border: 0;
  position: relative;
  background-color: transparent;
}
.accordion-header {
  padding: 12px 0;
  margin: 0;
}
.accordion-header button {
  width: 100%;

  background-color: var(--bg-color-3);
  height: 95px;
  border-radius: 48px;
  border: 0;
  background-color: rgb(235, 241, 234);
  font-size: 30px;
  font-weight: 900;
  padding: 0 65px;
  text-align: start;
  position: relative;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-header button::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: inherit;
  color: inherit;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(90deg);
}
button.collapsed {
  background-color: var(--bg-color-3) !important;
}
button.collapsed::after {
  transform: rotate(0deg) !important;
}
.accordion-body {
  padding: 50px 65px;
  margin: 12px 0;
  border: solid 2px var(--bg-color-2);
  border-radius: 56px;
  background-color: var(--bg-color-3);
}
.accordion-body .starta-block-img {
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
}
.accordion-body .starta-h3 {
  color: var(--heading-color-3);
  margin-bottom: 15px;
  font-weight: 700;
}
.instaFeed {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: inherit;
  height: 100%;
  max-width: 55%;
  overflow: hidden;
}
.starta-block-dark {
  padding: 80px 0;
  background-color: var(--bg-color-2);
  margin-bottom: 80px !important;
}
.starta-block-dark .starta-list li {
  color: var(--text-color-2);
}
.starta-block-dark .starta-heading,
.starta-block-dark .starta-h1 {
  color: var(--heading-color);
}
.imgdark {
  width: 100%;
  border-radius: 30px;
  height: 300px;
}
.imgdark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.darkBar {
  position: relative;
  overflow: hidden;
}
.darkBar img {
  width: 60%;

  height: 100%;
  bottom: -20px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.darkHeading-block {
  margin-top: 15px;
  border-radius: 30px;
  background-color: rgb(28, 27, 27);
  width: 100%;
  height: auto;
  padding: 25px;
}
.darkHeading-block .starta-heading {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  color: rgb(190, 224, 65);
  font-weight: 900;
  text-transform: uppercase;
}
.darkBar {
  border-radius: 30px;
  background-color: rgb(31, 31, 31);
  width: 100%;
  height: 180px;
}
.starta-stories {
  position: relative;
  margin: 50px 0;
}
.starta-stories .starta-desc {
  width: 85%;
}
.feedSingle {
  display: block;
  width: 100%;
  height: 300px;
  background-color: var(--text-color-2);
  position: relative;
  cursor: pointer;
  margin-bottom: 25px;
}
.feedSingle::before {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
  color: var(--heading-color);
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 195, 146, 0.9);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
.feedSingle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedSingle:hover:before {
  opacity: 1;
}
/**/
/**/
/**/
/**/
/**/

.starta-footer {
  background-color: rgb(23, 23, 23);
  width: 100%;
  height: auto;
  margin-top: 80px !important;
}
.starta-footer .border-end {
  border-right: solid 2px rgb(49, 49, 49) !important;
}
.starta-footer .starta-h1 {
  font-size: 65px;
  color: var(--heading-color);
  font-weight: 800;
}
.starta-footer .starta-desc {
  color: rgb(182, 189, 185);
}
.starta-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.starta-social li a {
  font-size: 25px;
  color: var(--heading-color);
  transition: 0.5s ease-in-out;
}
.starta-social li:hover a {
  color: var(--primary-color);
}

.starta-footer .starta-h4 {
  font-size: 22px;
  color: var(--heading-color);
}
.footer-list li {
  margin-bottom: 25px;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list li a {
  font-size: 16px;
  color: rgb(182, 189, 185);
  font-weight: bold;
  text-decoration: none;
}
.newsLetter {
  padding: 30px 35px;
  padding-bottom: 25px;
  border-radius: 28px;
  border: solid 3px var(--primary-color);
  box-shadow: 0px 7px 0px 0px rgba(44, 195, 146, 0.004);
  width: 100%;
  height: auto;
  position: relative;
  transform-style: preserve-3d;
  background-color: rgb(23, 23, 23);
}
.newsLetter::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: var(--primary-color);
  transform: translateZ(-1px);
}
.newsLetter input[type="email"] {
  width: 100%;
  height: 40px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: normal;
  border: 0;
  border-bottom: solid 2px rgb(182, 189, 185);
  background-color: transparent;
}
.newsLetter input[type="email"]:focus {
  outline: none;
}
::placeholder {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: normal;
}

.newsLetter .starta-button {
  width: 100%;
  margin-top: 30px;
}
.copyright {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-family: "Urbanist";
  color: rgb(182, 189, 185);
  font-weight: bold;
}
