* {
	font-family: "Sono", serif;	
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.3s linear;
	outline: none;
	scroll-margin-top: 80px;
}
html {
	scroll-behavior: smooth;
}
img {
	object-fit: cover;
}
p {
	font-size: 14px;
	line-height: 22px;
}
h1 {
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 20px;
}
h2 {
	font-size: 45px;
	line-height: 52px;
}
a {
	color: currentcolor;
	text-decoration: none;
}
button {
	padding: 10px 20px;
	font-size: 16px;
	line-height: 22px;
	color: black;
	border: none;
	border-radius: 8px;
	margin: 20px 0;
	cursor: pointer;
	background-color: #e9e8e8;
}
button:hover {
	color: white;
	background-color: #000000;
	transition: all 0.3s linear;
}
input {
	padding: 5px 10px;
	height: 42px;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #000000;
}
.av-grp {
	padding: 50px 0 70px;
	border-bottom: 1px solid #000000;
}
.av-grp:last-child {
	padding-bottom: 0;
	border: none;
}
.content-wrapper ul {
	margin: 30px 0;
	padding-left: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.content-wrapper ul li {
	font-size: 16px;
	line-height: 22px;	
}
/* Border */
.av-box {
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0px #000000;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}
/* Logo */
.av-logo {
	font-size: 30px;
	line-height: 35px;
	text-decoration: none;
	color: #000000;
	text-align: center;
	display: block;
}
.header_main {
	padding: 15px 0;
	border-bottom: 1px solid #000000;
	position: sticky;
	top: 0;
	background: #ffffff;
	z-index: 99999;
}
/* Hero Section */
.av-hero-section-cols {
	flex-direction: column;
	gap: 0;
}
.av-hero-section-stack {
	padding: 15px;
	gap: 0;
}
.av-hero-section-stack a {
	text-decoration: underline;
}
.av-hero-section-stack figure {
	width: 150px;
	height: 150px;
	overflow: hidden;
	border: 1px solid #000000;
	border-radius: 50%;
	margin-bottom: 30px;
}
.av-hero-section-stack  img {
	width: 100%;
	height: auto;
}
.av-hero-section-grid {
	display: grid !important;
	grid-template-columns: repeat(2, auto);
	margin: 30px 0;
	grid-gap: 15px;
}
.av-hero-section-grid-item {
	padding: 15px;
	height: 100%;
	justify-content: flex-end;
	gap: 0;
	cursor: pointer;
}
.av-hero-section-grid-item:nth-child(1) {
	grid-column: 1 / 3;
}
.av-hero-section-grid-item:nth-child(2) {
	grid-column: 3 / 4;
}
.av-hero-section-grid-item:nth-child(3) {
	grid-column: 1 / 2;
}
.av-hero-section-grid-item:nth-child(4) {
	grid-column: 2 / 4;
}
p.av-hero-section-abt-me {
	text-align: right;
	margin-bottom: 10px;
	border-bottom: 1px solid #000000;
}
.av-hero-section-col h1 {
	position: relative;
	font-size: 53px;
	line-height: 60px;
	margin: 40px 0;
}
.av-hero-section-col h1::after {
	content: '';
	position: absolute;
	background: #000000;
	top: -4px;
	right: 115px;
	width: 10px;
	height: 10px;
	animation: rotate 8s infinite linear;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}	
}
/* Memory game */
.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
}
.container h2 {
	margin-bottom: 10px;
}
.cards {
	display: grid;
	grid-template-columns: repeat(4, auto);
	grid-gap: 0.625rem;
}
.card {
	width: 4rem;
	height: 4rem;
	position: relative;
	transform: rotateY(-180deg);
	transition: transform 0.5s ease-out;
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0px #000000;
	border-radius: 8px;
	cursor: pointer;
}
.card::after {
	content: '';
	position: absolute;
	background-color: white;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform: rotateY(0deg);
	transition: transform 0.5s ease-out;
}
.card.rotate {
	transform: rotateY(0deg);
	transition: transform 0.5s ease-out;
}
.card.rotate::after {
	transform: rotateY(180deg);
	transition: transform 0.5s ease-out;
}
.card.out {
	pointer-events: none;
	transform: rotateY(0deg);
	transition: transform 0.5s ease-out;
}
.card.out::after {
	transform: rotateY(180deg);
	transition: transform 0.5s ease-out;
}
.text {
	display: none;
	position: fixed;
	z-index: 9999;
	background: #ffffff;
	padding: 20px;
	font-size: 20px;
	inset: 0;
	margin: auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: fit-content;
	width: fit-content;
	text-align: center;
	box-shadow: 2px 2px 20px 0px #5b5050;
	border-radius: 8px;
	background-color: rgb(255 255 255 / 46%);
	border: 2px solid rgb(255 255 255);
	backdrop-filter: blur(10px);
}
.text.visible {
	display: flex;
}
/* Work */
.av-work-grp > div > h2 {
	margin-bottom: 30px;
}
.av-work-title {
	font-size: 20px;
	line-height: 1;
}
.av-work-card {
	padding: 20px;
	gap: 20px;
	position: sticky;
	top: 0;
	background-color: white;
	margin-bottom: 30px;
}
p.av-work-date {
	font-style: italic;
}
.av-work-card:nth-child(2) {
	top: 100px;
}
.av-work-card:nth-child(3) {
	top: 160px
}
.av-work-card:nth-child(4) {
	top: 220px
}
.av-work-card:nth-child(5) {
	top: 280px;
}
.av-work-card:nth-child(6) {
	top: 340px
}
.av-work-card:nth-child(7) {
	top: 400px
}
.av-about-title p {
	margin: 20px 0;
}
/* About */
.av-about-title {
	position: relative;
	padding-left: 60px;
}
.av-about-title::before {
	content: 'I';
	position: absolute;
	left: -13px;
	top: 0;
	font-size: 111px;
}
/* Animation */
.av-skill-grp > div > div {
	flex-direction: column;
	gap: 30px;
}
.av-skill-grp > div > div > div:last-child {
	display: block;
	column-count: 6;
}
.av-skill-grp p {
	padding: 10px;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0px #000000;
	border-radius: 8px;
	margin-bottom: 10px;
	break-inside: avoid;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
/* WORK */
.av-work-hero .av-work-para {
	display: grid !important;
	grid-gap: 20px;
}
.av-work-hero h2 {
	text-align: right;
	margin: 30px 0;
}
blockquote {
	margin: 50px 0;
	padding: 30px 0;
	border: 1px solid #000000;
	border-width: 1px 0;
}
.av-work-para > p:first-letter {
	font-size: 70px;
	line-height: 53px;
}
.av-grp.av-work-hero {
	border: none;
}
/* projects */
.av-dark {
	background: #000000;
	color: #f5f5dc;
	padding: 70px 0;
}
.av-work-stack figure {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
}
.av-work-stack img{
	width: 100%;
	height: auto;
}
.av-work-grp p {
	text-align: right;
}
.av-work-sub-number {
	text-align: right;
	width: 100%;
}
.av-work-stack {
	gap: 20px;
	margin-bottom: 70px;
	padding-bottom: 70px;
	border-bottom: 1px solid beige;
}
.av-work-stack > div {
	gap: 10px;
}
/* Change Background */
.bg-change-grp {
	margin-top: 40px;
}
.bg-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
}
.av-ideas-grp h2 {
	font-size: 30px;
	line-height: 1;
	text-align: center;
}
h2.av-title-margin {
	margin-bottom: 50px;
}
/*--------------------------------- SINGLE POST STYLE STARTS HERE --------------------------------*/
.sp-content-wrapper {
	margin: 50px auto 70px;
}
.sp-title {
	font-size: 26px;
	line-height: 32px;
}
.sp-thumbnail {
	width: 100%;
	height: 100%;
	display: flex;
}
.sp-thumbnail img {
	width: 100%;
	height: auto;
}
.sp-content h2 {
	font-size: 26px;
	line-height: 32px;
	margin: 30px 0 10px;
}
.sp-content h3 {
	font-size: 22px;
	line-height: 28px;
	margin: 20px 0 10px;
}
/* Calculator */
.av-calculator .container {
	width: 100%;
	display: flex;
	gap: 40px;
	padding: 40px 0;
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.calculator {
	width: fit-content;
	height: fit-content;
	background: #ffffff;
	border: 0.063rem solid #000000;
	box-shadow: 4px 4px 0 0px #000000;
	border-radius: 1rem;
}
.button {
	background-color: #ffffff;
	width: 3rem;
	height: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.063rem solid #000000;
	border-radius: 0.5rem;
	box-shadow: 1px 1px 0 1px #000000;
	transition: all 0.3s linear;
}
.button:hover {
	background-color: #d3df76;
	transition: all 0.3s linear;
}
.operators .button:hover,.operators .button.focused {
	background-color: #6fddc4;
	transition: all 0.3s linear;
}
.operations {
	display: grid;
	grid-gap: 0.625rem;
	grid-template-columns: repeat(2, auto);
	padding: 1.88rem 1.25rem;
	border-radius: 1rem;
	background: #9798ef;
}
.numbers {
	display: grid;
	grid-gap: 0.625rem;
	grid-template-columns: repeat(3, auto);
	justify-content: space-between;
}
.operators {
	display: grid;
	grid-gap: 0.625rem;
}
.result, .clear {
	background-color: #ffffff;
	width: 100%;
	height: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.063rem solid #000000;
	border-radius: 0.5rem;
	box-shadow: 1px 1px 0 1px #000000;
}
.result:hover, .clear:hover {
	background-color: #d3df76;
	transition: all 0.3s linear;
}
.display {
	width: 13.813rem;
	height: 3rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 1.88rem 1.25rem 1rem;
	padding: 0 0.625rem;
	font-size: 1.4rem;
	overflow-x: scroll;
	overflow-y: hidden;
	border: none;
	text-align: right;
	border: 0.063rem solid #000000;
	border-radius: 0.5rem;
	box-shadow: 1px 1px 0 1px #000000;
}
.display::-webkit-scrollbar {
	display: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}
.final {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0.625rem;
	justify-content: space-between;
	width: 100%;
	grid-column: 1 / 3;
}
/*--------------------------------- PHOTO GALLERY STYLE STARTS HERE --------------------------------*/
.av-pg-grp {
	padding: 50px 0 55px;
}
.av-pg-grid {
	display: block !important;
	column-count: 2;
	column-gap: 15px;
	margin-top: 20px;
}
.av-pg-grid figure {
	width: 100%;
	height: 100%;
	display: flex;
	margin-bottom: 15px;
	border-radius: 8px;
	box-shadow: rgb(0 0 0 / 36%) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	break-inside: avoid;
}
.av-pg-grid figure img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
/* Post */
.akp-blog-div {
	max-width: 360px;
	margin: 50px auto;
}
/* Palindrome */
.p-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 20px;
	text-align: center;
}
.p-card button {
	width: 100%;
}
/* Age Detector */
.age-container {
	padding: 50px 20px;
	display: flex;
	flex-direction: column;
	text-align: center;
}
/* Tip Calculator */
.tip-calc {
	padding: 50px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/* Day Night Toggle */
.akp-dae-grp {
	margin: 50px auto;
}
.toggle-container {
	height: 550px;
	background-color: #57b9f3;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
}
.t-items {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 9;
	transform-style: preserve-3d;
}
.wall-one {
	width: 500px;
	height: 200px;
	display: grid;
	grid-template-columns: repeat(4, auto);
	padding: 30px 0;
	gap: 10px 48px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: #c0ccd8;
	left: -393px;
	transform: rotateY(55deg);
	justify-items: start;
	justify-content: center;
}
.wall-two {
	display: grid;
	padding: 30px 29px;
	gap: 10px 0;
	background: #f7f8fc;
	height: 200px;
	width: 128px;
	position: absolute;
	bottom: 0;
	left: -386px;
	transform: rotateY(55deg);
	justify-content: start;
}
.wall-three {
	background: #c0ccd8;
	height: 100px;
	width: 200px;
	position: absolute;
	bottom: 199px;
	right: -43px;
	transform: rotateY(55deg);
}
.wall-four {
	background: #f7f8fc;
	height: 100px;
	width: 128px;
	position: absolute;
	bottom: 199px;
	left: -215px;
	transform: rotateY(55deg);
}
.window {
	background-color: #fff194;
	width: 60px;
	height: 50px;
	position: relative;
	border: 2px solid black;
}
.window-one {
	margin-top: 30px;
	margin-left: 80px;
}
.window-two {
	margin-top: 30px;
	margin-left: 32px;
}
.window::before {
	content: '';
	background: #000000;
	width: 2px;
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.window::after {
	content: '';
	background: #000000;
	width: 100%;
	position: absolute;
	height: 2px;
	inset: 0;
	margin: auto;
}
.sun {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	box-shadow: 0px 0px 100px 38px #FFFF00;
	background: radial-gradient(circle at center, #fff700, #fbe984);
	margin-left: 100px;
	margin-top: 100px;
	border: 1px solid #FFEB3B;
	position: relative;
	z-index: 99;
}
.clouds {
	background: white;
	width: 60px;
	height: 20px;
	border-radius: 50px;
	position: relative;
	animation: clouds 50s linear infinite;
}
.clouds::before, .clouds::after {
	content: '';
	position: absolute;
	background: #ffffff;
	z-index: 0;  
}
.clouds::before {
	bottom: 10px;
	left: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
.clouds::after {
	bottom: 5px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.cloud {
	display: grid;
	grid-template-columns: repeat(4, auto);
	gap: 50px;
	position: absolute;
	top: 50px;
	justify-content: center;
	width: 100%;
}
.clouds.hide {
	visibility: hidden;
}
@keyframes clouds {
	0% {
		transform: translate(-100%);
	}
	100% {
		transform: translate(700%);
	}
}
.moon {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(circle, rgb(228 220 233) 4%, rgb(255 255 255) 100%);
	box-shadow: 0 0 70px 10px #f5e4e4ab, 0 0 70px 20px #000000dc, 0 0 70px 30px #5d5d5ddc;
	animation: move 5s infinite;
	z-index: 99;
}
/* On Hover */
.toggle-container {
	transition: all 1s linear;
}
.toggle-container.hover {
	background-color: #000000;
	transition: all 1s linear;
}
.toggle-container .window {
	transition: all 1s linear;
}
.toggle-container.hover .window {
	background-color: #656563;
	transition: all 1s linear;
}
.toggle-container .sun{
	transition: all 1s linear;
	opacity: 1;
}
.toggle-container.hover .sun {
	margin-left: -150px;
	margin-top: -150px;
	opacity: 0;
	transition: all 1s linear;
}
.toggle-container .moon{
	top: -150px;
	right: -150px;
	opacity: 0;
	transition: all 1s linear;
}
.toggle-container.hover .moon {
	top: 50px;
	right: 100px;
	opacity: 1;
	transition: all 1s linear;
}
.toggle-container .clouds {
	transition: all 1s linear;
}
.toggle-container.hover .clouds {
	background: #fff457;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	box-shadow: 0px 0px 20px 6px #FFFF00;
}
.toggle-container .clouds::before,.t-container .clouds::after {
	transition: all 1s linear;
}
.toggle-container.hover .clouds::before,
.toggle-container.hover .clouds::after {
	background: #fff457;
	width: 2px;
	height: 2px;
	border-radius: 50%;
}
.container-div {
	position: absolute;
	top: -10px;
	left: 10px;
}
/* DAY NIGHT TOGGLE */
.sky {
	background-color: #f5f2ae;
	height: 300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sky-container {
	position:relative;
}
.dark-mode{
	position:absolute;
	z-index:2;
	display:none;
	top: 0;
}
.toggle-one{
	position:relative;
	width:200px;
	height:100px;
	border:none;
	border-radius:9999px;
	background-color:#68abf7;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}
.round-three{
	position:absolute;
	display:block;
	height:80px;
	width:80px;
	top:10px;
	left:13px;
	border-radius:50%;
	background-color:white;
	z-index:2;
	cursor:pointer;
}
.round-one{
	background-color:#edf1f5;
	height:38px;
	width:38px;
	border-radius:50%;
	position:absolute;
	top:38px;
	left:130px;
}
.round-two{
	background-color:#edf1f5;
	height:15px;
	width:15px;
	border-radius:50%;
	position:absolute;
	top:10px;
	left:130px;
}
.toggle-two{
	position:relative;
	width:200px;
	height:100px;
	border:none;
	border-radius:9999px;
	background-color:#042245;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}
.toggle-two::after{
	content: '';
	position: absolute;
	display: block;
	height: 79px;
	width: 101px;
	left: 65px;
	border-radius: 0% 54% 117% 0% / 99% 129% 131% 0%;
	background-color: #042245;
	pointer-events:none;
}
.star-one{
	background-color:white;
	height:80px;
	width:80px;
	border-radius:50%;
	position:absolute;
	top:10px;
	left:103px;
	cursor:pointer;
}
.star-two{
	background-color:#edf1f5;
	height:10px;
	width:10px;
	border-radius:50%;
	position:absolute;
	top:20px;
	left:30px;
}
.star-three{
	background-color:#edf1f5;
	height:10px;
	width:10px;
	border-radius:50%;
	position:absolute;
	top:40px;
	left:40px;
}
/*--------------------------------- PROJECT STYLE STARTS HERE --------------------------------*/
.akp-project-loop ul {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 30px;
	margin: 50px 0px 70px;
	padding: 0;
}
.akp-project-loop ul li {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px;
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0px #000000;
	border-radius: 8px;
}
.akp-project-loop ul li div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.akp-project-loop ul li p a {
	text-decoration: underline;
}
.akp-bp-grp {
	margin: 50px auto 70px;
}
.akp-bp-grp h2 {
	margin-bottom: 30px;
}
.akp-bp-stack:not(:last-child) {
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #000000;
}
.akp-bp-stack h3 {
	margin-bottom: 15px;
}
.akp-bp-stacks {
	margin: 30px 0;
}
/* FOOTER STYLES STARTS HERE */
.footer.container-fluid {
	margin: 50px 0 10px;
}
.footer_desktop {
	background: #000000;
	color: #ffffff;
	padding: 20px;
	border-radius: 20px;
	max-width: calc(100% - 20px);
	margin: 0 auto;
}
.akp-footer-widget-one {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.akp-footer-logo {
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 20px;
}
div.akp-mp-grp {
	margin-top: 50px;
}
/* PINK VILLA STARTS HERE---------------------------------------------------------------------------------------------------------------- */
.pink-villa-page * {
	font-family: 'Roboto';
	margin: 0;
	padding: 0;
	gap: 0;
}
.pink-villa-page .akp-sep {
	margin-top: 3.125rem;
}
html:has(.pink-villa-page) {
	font-size: calc(100vw* 16 / 360);
}
.pink-villa-page .akp-container {
	max-width: 18.75rem;
	margin-left: auto;
	margin-right: auto;
}
.pink-villa-page ul {
	margin: 0;
	padding-left: 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.872rem;
	margin-bottom: 3.75rem;
}
.pink-villa-page h2 {
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.611rem;
	margin-bottom: 1.875rem;
}
.pink-villa-page figure {
	width: 100%;
	height: 11.269rem;
	overflow: hidden;
	border-radius: .5rem;
	cursor: pointer;
}
.pink-villa-page img {
	width: 100%;
	height: 100%;
}
.pink-villa-page video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pink-villa-page li h2 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
	margin-top: 1.25rem;
	cursor: pointer;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 0;
}
.pink-villa-page li h2 a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;	
}
.pink-villa-page .wp-block-post {
	padding-bottom: 1.872rem;
	border-bottom: .031rem solid rgb(226 217 217);
}
.pink-villa-page .wp-block-post-excerpt__excerpt {
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.438rem;
	margin: .355rem 0 0;
	color: #434343;
	cursor: pointer;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
p.explore-more {
	font-size: 0.75rem;
	line-height: 1.563rem;
	position: relative;
	padding: 0 0.625rem;
}
p.explore-more::before {
	content: '';
	position: absolute;
	background-color: #fbdbe4;
	width: 1.563rem;
	height: 100%;
	border-radius: 1.563rem;
	z-index: -1;
	left: 0;
	transition: all 0.3s linear;
}
p.explore-more:hover::before {
	width: 100%;
	transition: all 0.3s linear;
}
div.pink-villa-page .video-col {
	display: flex;
	flex-direction: column;
	gap: 0.938rem;
	padding-bottom: 1.875rem;
	border-bottom: .031rem solid rgb(226 217 217);
}
.pink-villa-page .video-col h2 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
	margin: 0;
}
.pink-villa-page .video-col p {
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.438rem;
	margin: .355rem 0 0;
	color: #434343;
}
.pink-villa-page .video-cols {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 1.875rem;
}
.wp-block-group.pink-bg {
	background: #f7ecee;
	padding: 3.125rem 0;
}
.pink-villa-page .movie-grp ul{
	margin-bottom: 0;
}
p.rating-star {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 1.5rem;
	font-size: 1rem;
	line-height: 1rem;
	margin: 0.313rem 0;
}
p.rating-star::before{
	content: '';
	position: absolute;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' class='ipc-icon ipc-icon--star-inline' viewBox='0 0 24 24' fill='%23FFD700' role='presentation'%3E%3Cpath d='M12 20.1l5.82 3.682c1.066.675 2.37-.322 2.09-1.584l-1.543-6.926 5.146-4.667c.94-.85.435-2.465-.799-2.567l-6.773-.602L13.29.89a1.38 1.38 0 0 0-2.581 0l-2.65 6.53-6.774.602C.052 8.126-.453 9.74.486 10.59l5.147 4.666-1.542 6.926c-.28 1.262 1.023 2.26 2.09 1.585L12 20.099z'%3E%3C/path%3E%3C/svg%3E ");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	left: 0;
}
.pink-villa-page .wp-block-post-author-name {
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 0.313rem;
	font-weight: 500;
}
.pink-villa-page ul li figure {
	position: relative;
}
.pink-villa-page ul li figure::after {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.313rem;
	margin: 0.313rem;
	border-radius: 0.5rem;
	transition: all 0.3s linear;
}
.life-style-grp ul li figure::after {
	content: 'Fashion';
	background: #ffe5fc;
}
.pink-villa-page .movie-grp ul li figure::after ,
.pink-villa-page .movie-grp ul li figure::after ,
.pink-villa-page .south-grp li figure::after {
	content: 'Entertainment';
	background: #e5eeff;
}
.pink-villa-page li figure:hover::after {
	opacity: 0;
	transition: all 0.3s linear;
}
.pink-villa-page li figure img {
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
	transition: .6s ease-in-out;
}
.pink-villa-page li figure:hover img {
	-webkit-transform: rotate(1deg) scale(1.05);
	transform: rotate(1deg) scale(1.05);
	-webkit-transition: .6s ease-in-out;
	transition: .6s ease-in-out;	
}
body:has(.life-style-grp) .footer-one {
	display: none;
}
.footer-two {
	display: none;	
}
body:has(.life-style-grp) .footer-two {
	display: block;
}
body:has(.life-style-grp) .footer.container-fluid {
	margin: 2.5rem 0 0;
}
body:has(.life-style-grp) .footer_desktop {
	padding: 3.125rem 0 1.875rem;
	border-radius: 0;
	max-width: 100%;
}
.pink-villa-fs-one {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 1.875rem;
	grid-row-gap: 0.938rem;
	margin-bottom: 2.5rem;
	color: #cccccc;
	padding-bottom: 2.5rem;
	border-bottom: 0.0313rem solid #827f7f;
}
.pink-villa-page .pink-villa-fs-two figure {
	width: 15.625rem;
	height: auto;
	margin-bottom: 1.875rem;
	border-radius: 0;
}
.pink-villa-page .pink-villa-fs-two .pv-fs-socials figure {
	width: auto;
	height: 1.001rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 0;
	border-radius: 0;
}
.pink-villa-page .pink-villa-fs-two {
	padding-bottom: 2.5rem;
	border-bottom: 0.0313rem solid #827f7f;
	width: 100%;
	margin-bottom: 2.5rem;	
}
.pink-villa-page .pink-villa-fs-two .pv-fs-socials {
	display: flex;
	gap: 1.25rem;
}
.pink-villa-page .pink-villa-fs-three p {
	color: #cccccc;
}
/* header */
.pink-villa-header {
	display: none;
}
body:has(.life-style-grp) .pink-villa-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
body:has(.life-style-grp) .main-header {
	display: none;
}
.pv-desk-menu {
	display: none;
}
a.pv-logo {
	display: flex;
}
a.pv-logo img {
	width: 11.25rem;
	height: auto;
}
.pv-mobile-toggle, .pv-mobile-toggle svg {
	width: 1.11rem;
	height: .875rem;
	cursor: pointer;
	overflow: visible;
}
.pv-mobile-toggle rect:first-child, .pv-mobile-toggle rect:nth-child(2), .pv-mobile-toggle rect:nth-child(3) {
	transition: .5s;
	transform-box: fill-box;
	transform-origin: center;
}
.menu-active .pv-mobile-toggle rect:first-child {
	transform: translateY(7px) rotate(-135deg);
	transition: .5s;
}
.menu-active .pv-mobile-toggle rect:nth-child(2) {
	transform: translateY(1px) rotate(135deg);
	transition: .5s;
}
.menu-active .pv-mobile-toggle rect:nth-child(3) {
	opacity: 0;
	transition: .1s;
}
.pv-mob-menu-links {
	transform: translateX(-100%);
	transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
	position: absolute;
	background: #ffffff;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: -1;
	padding-top: 5rem;
}
.menu-active .pv-mob-menu-links {
	transform: translateX(0%);
	transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}
.menu-active .pv-mob-menu-links ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.pv-mob-menu-links ul li a:hover {
	text-decoration: underline;
}
/* ----------------------------------------RENOVAS GROUP------------------------------------------- */
body:has(.renovas-page) .footer {
	display:none;
} 
body:has(.renovas-page) .pink-villa-header {
	display:none;
}
body:has(.life-style-grp) .renovas-header.pink-villa-header {
	display: none;
}
body:has(.renovas-page) .renovas-header.pink-villa-header {
	display: flex;
}
body:has(.renovas-page) .header_main {
	padding: 0;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: transparent;
	border: none;
}
.rs-container {
	max-width: 18.75rem;
	margin-right: auto;
	margin-left: auto;
}
.renovas-page {
	position: relative;
}
.renovas-page::before {
	content: '';
	position: absolute;
	background-image: url(/wp-content/uploads/2025/02/Background-Image.webp);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}
.renovas-page::after {
	content: '';
	position: absolute;
	background: linear-gradient(68.85deg, #0C0E17 0%, rgba(12, 14, 23, 0.12) 81.88%);
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}
.rs-logo {
	display: flex;
}
.rs-hero-grp-col-one h1 {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 2.625rem;
	line-height: 3rem;
	letter-spacing: -0.125rem;
	color: #ffffff;
	margin-bottom: 1rem;
}
.rs-hero-grp-col-one p {
	font-family: 'Figtree';
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.7rem;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin-bottom: 2rem;
	max-width: 17.188rem;
}
.rs-red-btn a {
	font-family: 'Figtree';
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.7rem;
	padding: 0.875rem 1.125rem;
	background: linear-gradient(180deg, #FF1919 0%, #E30B0B 100%);
	border-radius: 0.625rem;
	border: 0.063rem solid rgba(0, 0, 0, 0.2);
	white-space: nowrap;
}
.rs-white-btn a {
	font-family: 'Figtree';
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.7rem;
	padding: 0.875rem 1.125rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
	color: #0C0E17;
	border: 0.0625rem solid rgba(0, 0, 0, 0.15);
	border-radius: 0.625rem;
	white-space: nowrap;
}
.rs-button-grp {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.rs-hero-grp-col-two{
	position: relative;
	padding: 1.938rem 1.563rem 2.938rem;
	border-radius: 0.75rem;
	box-shadow: 0 0.25rem 5.25rem 0 rgba(0, 0, 0, 0.45);
}
.rs-hero-grp-col-two::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2rem);
	left: 0;
	top: 0;
	z-index: -1;
}
.rs-hero-grp-col-two h2 {
	font-family: 'Figtree';
	font-weight: 600;
	font-size: 2.063rem;
	line-height: 2.5rem;
	letter-spacing: -0.0625rem;
	text-align: center;
	margin: auto;
	position: relative;
	color: #ffffff;
}
.rs-hero-grp-col-stack {
	gap: 1.813rem;
}
div.rs-contact-forms.wpforms-container {
	margin: 0;
	width: 100%;
}
div.rs-contact-forms.wpforms-container .wpforms-field {
	padding: 0;
}
div.rs-contact-forms.wpforms-container .wpforms-field input {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
	padding: 0.688rem 1.125rem 0.625rem;
	height: 3rem;
	border-radius: 0.5rem;
	border: none;
}
div.rs-contact-forms.wpforms-container .wpforms-field input::placeholder {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
}
div.rs-contact-forms.wpforms-container .wpforms-field select {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
	padding: 0.688rem 1.125rem 0.625rem;
	height: 3rem;
	border-radius: 0.5rem;
	border: none;
}
div.rs-contact-forms.wpforms-container .wpforms-field select::placeholder {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
}
div.rs-contact-forms.wpforms-container .wpforms-field textarea {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
	padding: 0.688rem 1.125rem 0.625rem;
	height: 6.563rem;
	border-radius: 0.5rem;
	border: none;
	resize: none;
}
div.rs-contact-forms.wpforms-container .wpforms-field textarea::placeholder {
	font-family: 'Figtree';
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.7rem;
	color: #0C0E17;
}
.wpforms-field-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
div.rs-contact-forms .wpforms-submit-container {
	margin-top: 0.75rem !important;
}
div.rs-contact-forms .wpforms-submit-container button {
	font-family: 'Figtree';
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.7rem;
	padding: 0.875rem 1.125rem;
	background: linear-gradient(180deg, #FF1919 0%, #E30B0B 100%);
	border-radius: 0.75rem;
	border: 0.063rem solid rgba(0, 0, 0, 0.2);
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.438rem;
}
.rs-gero-grp-cols {
	flex-direction: column;
	gap: 5rem;
}
.renovas-page {
	padding: 6.25rem 0;
}
.rs-desk-menu {
	display: none;
}
.rs-mob-menu {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.rs-mob-menu-links {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #909054;
	padding: 5rem 0 0 0;
	z-index: -1;
}
.rs-mob-menu-links ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 0.938rem;
}
.rs-logo img {
	width: 8.75rem;
	height: auto;
}
body:has(.renovas-page) .header_main {
	padding: 0.938rem 0;
}
div.rs-contact-forms.wpforms-container .wpforms-field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.25 6.75L9 12L3.75 6.75' stroke='%230C0E17' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position-x: 95.9%;
	background-position-y: center;
	background-size: 1.125rem;
}
.rs-mobile-toggle, .rs-mobile-toggle svg {
	width: 1.11rem;
	height: .875rem;
	cursor: pointer;
	overflow: visible;
}
.rs-mobile-toggle rect:first-child, .rs-mobile-toggle rect:nth-child(2), .rs-mobile-toggle rect:nth-child(3) {
	transition: .5s;
	transform-box: fill-box;
	transform-origin: center;
}
.rs-mobile-toggle rect {
	fill: #ffffff;	
}
.menu-active .rs-mobile-toggle rect:first-child {
	transform: translateY(7px) rotate(-135deg);
	transition: .5s;
}
.menu-active .rs-mobile-toggle rect:nth-child(2) {
	transform: translateY(1px) rotate(135deg);
	transition: .5s;
}
.menu-active .rs-mobile-toggle rect:nth-child(3) {
	opacity: 0;
	transition: .1s;
}
.rs-mob-menu-links {
	transform: translateX(-100%);
	transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-active .rs-mob-menu-links {
	transform: translateX(0%);
	transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}
.rs-mob-menu-links ul li a:hover {
	text-decoration: underline;
}
.header_main {
	transition: all 0.3s linear;
}
.page-id-277  .header_main.scrolled {
	background-color: #000000;
	transition: all 0.3s linear;
}
/* Project page */
.akp-bp-grp-gallery .akp-bp-grp-gallery-cols {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 30px;
	margin-top: 40px;
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-cols > div {
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0px #000000;
	border-radius: 8px;
	overflow: hidden;	
	position: relative;
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-stack {
	position: absolute;
	background: #000000;
	padding: 30px 20px;
	height: 100%;
	width: 100%;
	flex-direction: column;
	gap: 0;
	opacity: 0;
    pointer-events: none;
	cursor: pointer;
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-cols > div:hover .akp-bp-grp-gallery-stack {
	opacity: 1;	
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-stack h4 {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 10px;
	color: #ffffff;
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-stack ul {
	padding: 0 0 0 15px;
	margin: 0;
	gap: 8px;
	width: 100%;
}
.akp-bp-grp-gallery .akp-bp-grp-gallery-stack ul li {
	font-size: 12px;
	line-height: 1;
	color: #efefef;
}
.wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
    padding-bottom: 50px;
}
#experience > div > div {
	padding-bottom: 50px;
}
div.akp-bp-grp-gallery {
    margin-bottom: 50px;