* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
	--brand-color-primary: #db2740;
	--brand-color-secondary: #793b7c;
	--brand-color--primary-hover: #cc0087;
	--gray: rgba(255, 255, 255, 0.6);
	--dark-color: #343a40;
	--gray-dark: rgb(114, 113, 113);
	--dark: #000;
  }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  background-color: #fff;
  z-index: 9999999;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bar {
  width: 10px;
  height: 70px;
  background: #fff;
  display: inline-block;
  transform-origin: bottom center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
  animation: loader 1.2s linear infinite;
}
.bar1 {
  animation-delay: 0.1s;
}
.bar2 {
  animation-delay: 0.2s;
}
.bar3 {
  animation-delay: 0.3s;
}
.bar4 {
  animation-delay: 0.4s;
}
.bar5 {
  animation-delay: 0.5s;
}
.bar6 {
  animation-delay: 0.6s;
}
.bar7 {
  animation-delay: 0.7s;
}
.bar8 {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    transform: scaleY(0.1);
    background: transparent;
  }
  50% {
    transform: scaleY(1);
    background: linear-gradient(45deg, var(--brand-color-secondary), var(--brand-color-primary));
    opacity: 1;
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
    opacity: 0;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  background-color: #fff;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out; /* Add transition on transform */
}

.navbar.active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
}

.mobile-navigation {
 position: relative;
  z-index: 99999;
  width: 100%;
  transition: transform 0.3s ease-in-out; /* Add transition on transform */
}

.mobile-navigation.active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
}

.navbar .logo-section {
  width: 25%;
}

img{
  max-width: 100%;
}

.navbar .logo-section img {
  height: 55px;
  transition: all 0.3s ease-in-out;
}

.navbar.active .logo-section img {
  height: 45px;
}


.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  list-style-type: none;
  margin: 0 !important;
}

.navbar ul .nav-list {
  font-size: 16px;
  position: relative;
  width: 100%;
}

.navbar ul .nav-list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--brand-color-primary);
  bottom: -10px;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.navbar ul li.selected {
  border-bottom: 3px solid var(--brand-color-primary);
}

.navbar ul .nav-list:hover::after {
  bottom: -2px;
  opacity: 1;
}

.navbar ul li a {
  color: #000;
  text-decoration: none;
}

.navbar ul .nav-icon{
  font-size: 17px;
  cursor: pointer;
}

.navbar ul .share-icon{
  position: relative;
}


.navbar ul .icons-nav{
  display: flex;
  justify-content: space-around;
  gap: 22px;
}

.navbar ul li .social-nav{
  display: flex;
      gap: 16px;
      position: absolute;
      left: -119px;
      top: 0;
      background: #fff;
      opacity: 0;
      width: 0px;
      height: 0px;
      transition: all 0.3s ease-in-out;
      visibility: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      padding: 5px;
 
}

.navbar ul li  .social-nav.active{
  opacity: 1;
  width: auto;
  height: auto;
  visibility: visible;
}

.social-nav i{
  transition: all 0.3s ease-in-out;
}

.social-nav i:hover{
  color: var(--brand-color-secondary);
}

.mobile-navigation {
  justify-content: space-between;
  display: none;
  z-index: 999;
  align-items: center;
}

.mobile-navigation img{
  height: 38px;
}

.mobile-menu img{
  height: 38px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bars {
  width: 100%;
  height: 2px;
  background-color: #000;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  color: #000;
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 1000;
  transition: all 0.6s ease;
  overflow: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
  transition: all 0.6s ease;
  z-index: 999999;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.close-menu {
  font-size: 30px;
  cursor: pointer;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  margin: 15px 0;
}

.menu-items li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.menu-items li a:hover {
  color: var(--brand-color-primary);
}

.has-submenu ul.submenu {
  list-style: none;
  padding-left: 20px;
  display: none;
  transition: all 0.3s ease;
}

.has-submenu.open ul.submenu {
  display: block;
  transition: all 0.3s ease;
}

.has-submenu a span {
  font-size: 20px;
}

/* Close Menu Icon */
#closeMenu {
  font-size: 28px;
  cursor: pointer;
}

.menu-items li {
  margin: 15px 0;
  position: relative; /* For positioning the "+" sign */
}

.menu-items li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between; /* Make space between text and "+" */
  align-items: center;
}

/* Submenu toggle styles for child submenu */
.has-submenu-child a span {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

/* Submenu is hidden by default */
.submenu-child {
  display: none;
  padding-left: 20px;
  transition: all 0.3s ease;
}

/* Submenu visible when parent has 'open' class */
.has-submenu-child.open .submenu-child {
  display: block;
}

.has-submenu-child a span {
  font-size: 20px;
}

.has-submenu-child.open a span {
  color: var(--brand-color-secondary);
}

/* Tab Buttons */
.tab-buttons,
.tab-buttons-guide {
  display: flex;
  justify-content: space-around;
  background-color: inherit; /* Use your existing background color */
  padding: 10px;
}

.tab-btn,
.tab-btn-guide {
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use the existing color */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn-guide.active {
  border-bottom: 2px solid var(--brand-color-secondary); /* Match the active state to your design */
}

.tab-btn:not(.active):hover,
.tab-btn-guide:not(.active):hover {
  color: var(--brand-color-secondary); /* A soft hover effect */
}

/* Tab Content */
.tab-content,
.tab-content-guide {
  padding: 20px;
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use your existing text color */
}

.tab-panel,
.tab-panel-guide {
  display: none;
  transform: translateY(50px);
  transition: all 3s ease;
}

.tab-panel.active,
.tab-panel-guide.active {
  display: block;
  transform: translateY(0);
}

.nav-logo-mobile{
  transition: all 0.3s ease-in-out;
}

.footer-icon {
  color: var(--brand-color-secondary);
  background-color: transparent;
  height: 32px;
  width: 32px;
  padding: 8px;
  border: 1px solid var(--brand-color-secondary);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: var(--brand-color-primary);
  color: #fff;
}

.slider-container {
  position: relative;
}

.owl-carousel .item {
  position: relative;
  height: 85vh; /* Adjusted height */
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* The image layer */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust overlay opacity */
  height: 100%; /* Full height */
  width: 100%; /* Full width */
  z-index: 2; /* Overlay above the image */
}

.slider-content {
  position: absolute; /* Content positioned above the overlay */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3; /* Content above the overlay */
  color: white;
  padding: 20px;
}



.slider-content h1 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slider-content p {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slider-content h1.active{
  opacity: 1;
  transform: translateX(0);
}

.slider-content p.active{
  opacity: 1;
  transform: translateX(0);
}

.slider-btn{
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slider-content .slider-btn.active{
  opacity: 1;
  transform: translateY(0);
}

.slider-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}

.slider-content h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 2px;
}

.owl-nav button {
  background-color: #fff !important;
  border: none;
  color: var(--brand-color-secondary);
  padding: 10px 20px;
  font-size: 18px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 95%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.owl-nav .owl-prev {
  right: 45px;
}

.owl-nav .owl-next {
  right: -5px;
}

.owl-nav button:hover {
  background-color: var(--brand-color-primary) !important;
}

.slider-btn{
  background-color: var(--brand-color-secondary);
  color: #fff;
  width: 150px;
  padding: 10px;
}

.slider-btn:hover{
  background-color: var(--brand-color-primary);
  color: #fff;
  text-decoration: none;
}


    #particles-js {
	position: absolute;
	min-width: 280px;
	min-height: 280px;
	top: 0;
	left: 0;
}

@media (min-width: 576px) {
	#particles-js {
		min-width: 360px;
		min-height: 360px;
	}
}

#particles-js .particles-js-canvas-el {
	min-width: 280px;
	min-height: 280px;
}

@media (min-width: 576px) {
	#particles-js .particles-js-canvas-el {
		min-width: 360px !important;
		min-height: 360px !important;
		width: auto;
	}
}

    .text-img {
	position: relative;
	display: inline-block;
	overflow: hidden;
	font-size: 320px;
	line-height: 85%;
	font-weight: 600;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #151515;
	letter-spacing: -.06em;
	padding-right: 10px;
	height: 270px;
}

.text-img:hover {
	color: #9b9b9b;
}

@media (min-width: 576px) {
	.text-img {
		font-size: 410px;
		height: 355px;
	}
}

    @supports (-webkit-background-clip: text) {
	.text-img {
		-webkit-text-fill-color: transparent;
		background: -webkit-linear-gradient(transparent, transparent);
		background: -o-linear-gradient(transparent, transparent);
		background: linear-gradient(-62deg, var(--brand-color-primary), #6689ff);
		-webkit-background-clip: text;
	}
	.text-img > span {
		pointer-events: none;
	}
	.text-img:hover {
		animation-play-state: running;
		color: red;
	}
	@media (min-width: 576px) {
		.text-img {
			background-position-y: 22%;
		}
	}
}

.btn{
  background-color: var(--brand-color-secondary);
  color: #fff;
  width: 150px;
  padding: 10px;
}

.btn:hover{
  background-color: var(--brand-color-primary);
  color: #fff;
  text-decoration: none;
}

.counter {
	text-align: center;
	padding: 30px 10px;
}

.counter-number {
	font-size: 80px;
	line-height: 0.8;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: uppercase;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.counter-number > * {
	display: inline-block;
}

.counter-number .symbol {
	font-size: 70px;
	letter-spacing: 0;
	margin-left: -8px;
}

.counter-title {
	font-weight: 400;
	letter-spacing: .1em;
	color: #9b9b9b;
}

* + .counter-title {
	margin-top: 4px;
}

* + .border-creative {
	margin-top: 0;
}

.border-2-column > div {
	padding: 0;
	border-top: 1px solid #e1e1e1;
}

.border-2-column > div:nth-child(1) {
	border-top: none;
}

.border-2-column > div:nth-child(1) .counter {
	padding-top: 0;
}

.border-2-column > div:nth-last-child(1) .counter {
	padding-bottom: 0;
}

@media (min-width: 576px) {
	.border-2-column > div:nth-child(2) {
		border-top: none;
	}
	.border-2-column > div:nth-child(2) .counter {
		padding-top: 0;
	}
	.border-2-column > div:nth-last-child(2) .counter {
		padding-bottom: 0;
	}
	.border-2-column > div:nth-child(even) {
		border-left: 1px solid #e1e1e1;
	}
	.border-2-column > div:nth-child(even) .counter {
		padding-right: 0;
	}
	.border-2-column > div:nth-child(odd) .counter {
		padding-left: 0;
	}
}

.box-icon {
	text-align: center;
	max-width: 370px;
	min-height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 66px 15px 50px;
	background: #ffffff;
	box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17);
	transition: all .3s ease;
}

.box-icon-custom {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100%;
	padding-top: 36px;
	padding-bottom: 38px;
}

.box-icon-icon {
	position: relative;
	font-size: 47px;
	line-height: 1;
	color: inherit;
	z-index: 1;
  color: #000;
}


.box-icon-icon::after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 9px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 34.5px 60px 34.5px;
	border-color: transparent transparent #eaeaea transparent;
	transform: translate3d(-50%, 0, 0) rotate(15deg);
	transform-origin: 50% 80%;
	transition: all .3s ease;
	z-index: -1;
}

.box-icon-title a, .box-icon-title a:focus, .box-icon-title a:active {
	color: inherit;
}

.box-icon-title a:hover {
	color: var(--brand-color-secondary);
}

.box-icon-big-title {
	line-height: 1.04;
}

.box-icon-decor {
	position: relative;
	max-width: 126px;
	width: 100px;
	height: 2px;
	margin: 20px auto 22px;
}

.box-icon-decor::before {
	position: absolute;
	content: '';
	height: 100%;
	left: 15px;
	right: 15px;
	background: #d7d7d7;
	transition: all .3s ease;
}

.box-icon-decor::after {
	position: absolute;
  width: 0;
	content: '';
	height: 100%;
	left: 50%;
	right: 50%;
	background: var(--brand-color-secondary);
	transition: all .3s ease;
}

.box-icon:hover .box-icon-decor::after {
  width: 100%;
  left: 0;
  right: 0;

}

.box-icon:hover .box-icon-icon::after {
  bottom: 4px;
  transform: translate3d(-50%, 0, 0) rotate(0deg);
}

a{
  text-decoration: none !important;
}

.box-icon-text {
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

* + .box-icon-title {
	margin-top: 16px;
}

.box-icon-decor + .button {
	margin-top: 8px;
}

.box-icon-decor + .box-icon-text {
	margin-top: 0;
}

.box-icon-2 {
	padding-top: 42px;
	padding-bottom: 35px;
}

.box-icon-2 .box-icon-decor {
	margin-top: 18px;
	margin-bottom: 15px;
}

.box-icon-2 .box-icon-text {
	letter-spacing: .025em;
}

.box-icon-2 * + .box-icon-title {
	margin-top: 18px;
}

.tab-about-buttons{
  display: flex;
  justify-content: space-between;
  
  font-size: 35px;
  color: var(--gray-dark);
  position: relative;
}

.tab-about-btn{
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.tab-about-btn.active{
  color: var(--brand-color-primary);
}

.tab-about-btn:hover{
  color: var(--brand-color-secondary);
}

.tab-about-btn.active:hover{
  color: var(--brand-color-primary);
}

.tab-about-panel {
  display: none;
}

.tab-about-panel.active {
  display: block;
}

.tab-about-btn.active {
  font-weight: bold;
}

.title{
font-size: 22px;
}

.tab-about-btn::before{
  position: absolute;
  content: "";
  background-color: var(--brand-color-secondary);
  width: 0;
  height: 2px;
  bottom: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.tab-about-btn.active::before{
  position: absolute;
  content: "";
  background-color: var(--brand-color-primary);
  width: 100%;
  height: 2px;
  bottom: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.tab-about-btn:hover:before{
  width: 100%;
}

.tab-about-buttons::after{
  position: absolute;
  content: "";
  background-color: #d7d7d7;
  width: 100%;
  height: 2px;
  bottom: 0;
}

/* General Section Styling */


.tabs-project-buttons {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;  /* Ensure that its children with absolute positioning are based on it */
  overflow: auto;
}

.tab-project-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 2px 10px;
  background-color: #fff;
  color: #9b9b9b;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  border-left: 1px solid var(--brand-color-secondary);
}

.tab-project-btn:first-child{
  border: none;
}

.tab-project-btn:hover{
  color: var(--brand-color-secondary);
}

.tab-project-btn.active {
  color: var(--brand-color-primary);
}



.tab-project-panel {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensure it takes the height of its parent */
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
  height: 0;
}

.tab-project-panel.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
  pointer-events: auto;
  visibility: visible;
  height: auto;
}

/* Project Card Design */
.project-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px 0;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img{
  width: 100%;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.project-content{
  position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 95%;
    height: 95%;
    display: flex
;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    color: #fff;
}

.project-content h4{
  color: #fff;
}

.project-card:hover .project-content{
  top: 6px;
  left: 10px;
  opacity: 1;
}

.blog-card  .img-container{
  position: relative;
}

.blog-card .date-line{
  position: absolute;
  bottom: -12px;
  left: -12px;
  background-color: #fff;
  padding: 10px;
  color: var(--brand-color-primary);
  font-size: 22px;
  font-weight: 600;
  border-radius: 5px;
}

.blog-card .title{
  color: var(--brand-color-secondary);
  transition: all 0.3s ease-in-out;
}

.blog-card .desc{
  color: var(--gray-dark);
  transition: all 0.3s ease-in-out;
}

.blog-card:hover .desc{
  color: var(--brand-color-primary);
}

.blog-card:hover .title{
  color: var(--brand-color-primary);
}

.blog-card img{
  transition: all 0.3s ease-in-out;
}

.blog-card:hover img{
  transform: scale(0.97);
}

footer{
  background-color: var(--brand-color-secondary);
  color: #fff;
  padding-top: 30px;
}

footer .title{
  font-size: 25px;
  font-weight: 600;
}

footer .info-container .sub-title{
  font-size: 18px;
  line-height:40px;
}

footer .info-container .desc{
  color: var(--gray);
}

footer ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 50px;
  font-size: 16px;
}

footer ul li a{
  color: #fff;
}


footer ul li a:hover{
  color: #fff;
}

.copy-right-container{
  font-size: 14px;
  font-weight: 600;
}

/* Breadcrumb Section Styling */
.breadcrumb-section {
  position: relative;
  background: url('/theme/cyburning-dev/images/breadcrumb.webp') center/cover no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  animation: fadeIn 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fff;
  /* text-shadow: 0 4px 10px rgba(219, 39, 64, 0.7); */
  animation: slideIn 1.5s ease-in-out;
  animation-delay: 2.5s; /* Add delay */
}

.breadcrumb-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.9;
  animation: fadeIn 2s ease;
  animation-delay: 5s; /* Add delay */
}
.breadcrumb {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 12px;
  font-size: 1rem;
  justify-content: center;
  margin-top: 10px;
  background-color: transparent;
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li a {
  text-decoration: none;
  color: var(--brand-color-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: var(--brand-color-primary);
}

.breadcrumb li::after {
  content: ">";
  color: #fff;
  margin: 0 10px;
}

.breadcrumb li:last-child::after {
  content: "";
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.our-team{
  background: #000;
  text-align: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}
.our-team img{
  width: 100%;
  height: auto;
  transition: all 0.55s ease 0s;
}
.our-team:hover img{ opacity: 0.5; }
.our-team .team-content{
  padding: 5px 10px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0 0;
  transition: all 0.55s ease 0s;
}
.our-team:hover .team-content{ opacity: 1; }
.our-team .team-content:before,
.our-team .team-content:after{
  content: "";
  width: 400px;
  height: 2px;
  background: var(--brand-color-primary);
  position: absolute;
  top: 0;
  left: 10px;
  transform: translateX(100%);
  transition: all 0.55s ease 0s;
}
.our-team .team-content:after{
  top: auto;
  left: auto;
  bottom: 0;
  right: 10px;
  transform: translateX(-100%);
}
.our-team:hover .team-content:before,
.our-team:hover .team-content:after{
  transform: translate(0, 0);
  transition-delay: 0.15s;
}
.our-team .title{
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.our-team .title:before,
.our-team .title:after{
  content: "";
  width: 2px;
  height: 300px;
  background: var(--brand-color-primary);
  position: absolute;
  top: 10px;
  right: 0;
  transform: translateY(100%);
  transition: all 0.55s ease 0s;
}
.our-team .title:after{
  top: auto;
  right: auto;
  bottom: 10px;
  left: 0;
  transform: translateY(-100%);
}
.our-team:hover .title:before,
.our-team:hover .title:after{
  transform: translate(0, 0);
}
.our-team .post{
  display: block;
  padding: 5px 10px;
  background: var(--brand-color-secondary);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}
@media only screen and (max-width: 990px){
  .our-team{ margin-bottom: 30px; }

  .tabs-project-buttons{
    justify-content: flex-start;
  }
}

.team-container{
  row-gap:15px ;
}

.editor-box h1, .editor-box h2, .editor-box h3, .editor-box h4{
  color: var(--brand-color-secondary);
}

.subtitle{
  font-size: 35px;
  text-align: center;
  color: var(--brand-color-primary);
  font-weight: bold;
}

.more-container h2{
  color: var(--brand-color-secondary);
  font-size: 25px;
  font-weight: 600;
}

.editor-img-container img{
  width: 450px;
  border-radius: 25px;
}

.tagline {
  color: var(--brand-color-secondary);
  font-size: 40px;
  text-align: center;
}

.summary{
  font-size: 15px;
}

.info-section{
  padding-left: 13rem;
  padding-right: 6rem;
}

.form-control{
  border: none;
  border-bottom: 1px solid #ddd;

}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
  border-bottom: 1px solid #000 !important;
}

input::placeholder {
  color: gray !important; /* Change to your desired color */
  opacity: 0.5; /* Ensure the color is fully opaque */
}

.editor-box {
  max-width: 100%;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.editor-box h1, 
.editor-box h2, 
.editor-box h3 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 600;
  color: #2c3e50;
}

.editor-box h1 { font-size: 2em; }
.editor-box h2 { font-size: 1.75em; }
.editor-box h3 { font-size: 1.5em; }

.editor-box p {
  margin: 1em 0;
}

.editor-box ul, 
.editor-box ol {
  margin: 1em 0;
  padding-left: 2em;
}

.editor-box li {
  margin: 0.4em 0;
}

.editor-box blockquote {
  border-left: 4px solid #d1d1d1;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  background: #f9f9f9;
}

.editor-box a {
  color: #007BFF;
  text-decoration: none;
}
.editor-box a:hover {
  text-decoration: underline;
}

.editor-box img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1em 0;
}


