/*
Theme Name:   Astra Child Theme
Author:       Krishna Panchani
Author URI:   https://krishnapanchani.com/
Template:     astra   
Version:      1.0.0
*/

/* Importing the parent theme's stylesheet */
@import url("../astra/style.css");

/* Add your custom styles below */
a {
	text-decoration: none !important;
}
.elementor.elementor-55 {
  counter-reset: section-counter; 
}
.kp-section {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    margin: 10px 0px 40px;
    width: 100%;
    white-space: nowrap;
		counter-increment: section-counter 1;
}
@media (max-width: 480px) {
	.big-heading{
		font-size: 40px !important;
	}
	.kp-sub-heading{
		font-size: 30px !important;
	}
	.kp-about-me .skills-list
	{
		grid-template-columns: repeat(2,minmax(140px, 200px)) !important;
	}
}
.kp-section::before {
    position: relative;
/*     counter-increment: div-counter; */
    content: "0" counter(section-counter) ".";
    margin-right: 10px;
    color: var(--ast-global-color-1);
}
.kp-section::after {
    content: "";
    display: block;
    position: relative;
    width: 300px;
    height: 1px;
    margin-left: 20px;
    background-color: #233554;
}
@media (max-width: 768px) {
    .kp-section-1::after {
        width: 100%;
    }
	
}
.kp-about-me .skills-list{
	display: grid;
  grid-template-columns: repeat(3,minmax(140px, 200px));
	gap: 0px 10px;
	padding: 0px;
	margin: 20px 0px 0px;
	overflow: hidden;
	list-style: none;
}
.kp-about-me .skills-list li{
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
}
.kp-about-me .skills-list li::before{
	content: "▹";
	position: absolute;
	left: 0px;
	color: var(--ast-global-color-1);
}
.kg-worked li{
	padding: 0px;
  margin: 0px;
  list-style: none;
}
.kg-worked ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.kg-worked ul li::before {
    content: "▹";
    position: absolute;
    left: 0px;
    color: var(--ast-global-color-1);
}
@media (max-width: 767px) {
    .kg-worked .e-n-tabs-heading{
        display: flex !important;
        overflow-x: auto;
        padding-left: 50px;
        margin-left: -50px;
        margin-bottom: 30px;
    }
}
.kp-contact-me .wpforms-submit-container{
	display: flex;
}
.kp-contact-me button{
	margin:auto !important;
	border: 1px solid !important;
}
.current-menu-item > .menu-link{
	color:#ccd6f6 !important;
}
.ast-inline-flex ul li a.menu-link::before {
	content: "0" counter(item) ".";
  margin-right: 5px;
  color: var(--ast-global-color-1) !important ;
}
.ast-inline-flex ul li.menu-item {
    counter-increment: item 1;
}

.kp-projects .swiper-slide-inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.kp-projects .swiper-slide-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 85, 94, 0.5); 
    pointer-events: none;
	transition: opacity 0.3s ease;
    opacity: 1;
}

.kp-projects .swiper-slide-image {
    display: block;
    width: 100%;
    height: auto;
	transition: transform 0.3s ease;
}
.kp-projects .swiper-slide-inner:hover::after {
    opacity: 0; 
}
.kp-projects .swiper-slide-inner:hover {
    transform: scale(1.1);
}
.kp-project .swiper-slide-inner:hover .swiper-slide-image {
    transform: scale(1.1);
}
/*Featured project slider css*/
.project-container {
  width: 100%;
}
.project-grid {
  display: grid;
  gap: 10rem;
}
.image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
  padding-top: 3rem;
  display: inline-block;
}
.project-image {
  position: absolute;
  width: 100%;
  object-fit: cover;
  border-radius: 4px !important;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
.project-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-content .link svg, .project-content .websiteLink svg{
height: 20px;
width: 20px;
margin: 5px;
}
.name {
  margin-bottom: 0.25rem;
}
.designation {
  margin-bottom: 2rem;
  color:var(--ast-global-color-1);
}
.arrow-buttons {
  display: flex;
  padding-top: 20rem;
  justify-content: center;

}
.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--ast-global-color-1);
  transition: transform 0.3s;
}
.arrow-button:hover {
  background-color: transparent;
}
.arrow-button:hover svg {
  fill:#f1f1f7 ;
}
.arrow-button:focus {
  background-color: transparent !important;
}
.prev-button:hover svg {
  transform: rotate(-12deg);
}
.next-button:hover svg {
  transform: rotate(12deg);
}
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* .arrow-buttons {
    padding-top: 0;
  } */
  
}
@media screen and (max-width: 600px) {
  .image-container{
    width: 75%;
    height: 7rem;
    padding-top: 0px;
    padding-left: 39px;
  }
  .arrow-buttons {
    padding-top: 10rem;
}
}


/*End of slider cs*/