@import url("https://fonts.googleapis.com/css2?family=Montserrat&amp;display=swap");


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&family=Rambla:ital,wght@0,400;0,700;1,400;1,700&display=swap');




:root {
    --primary-purple: #6a0dad; /* A deep purple */
    --light-purple: #e6e6fa; /* Lavender blush */
    --text-dark: #333;
    --text-light: #555;
    --yellow-accent: #ffd700; /* Gold */
    --border-color: #ddd;
}

body {
	width: 100%;

	font-family: 'Fredoka', Helvetica, Arial, Lucida, sans-serif;
	height: 100%;
}

.title {
	font-size: 5em;
	font-weight: bold;
	margin-bottom: 0.2em;
}

.text {
	font-size: 1.25em;
}

@media only screen and (min-width: 420px) {
	.social svg {
		height: 2.25em;
		width: 2.25em;
	}
	.title {
		font-size: 8em;
	}
	.text {
		font-size: 1.5em;
	}
}

#sport-link,
#team-link {
	cursor: pointer;
}

.lg-backdrop {
	z-index: 9998;
}
.lg-outer {
	z-index: 9999;
}
.gallery-container {
	display: none;
}

#modelpop2 a {
	text-decoration: none;

	display: contents;
}

.ptb-30 {
	padding-top: 30px;

	padding-bottom: 30px;
}

.ptb-70 {
	padding-top: 70px;

	padding-bottom: 70px;
}

a:hover {
	text-decoration: none;
}

.modal-title.tab {
	margin-bottom: 0;

	line-height: 1.5;

	font-weight: bold;
	background-color: #b4c9ff;

	margin-bottom: 10px;
}
/* 
.hero-sec {
	width: 100%;

	padding: 20px 0px 50px 0px;
} */








/* Hexagonal background pattern (approximated) */
/* .container::before,
.container::after {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="86.6"><path d="M50 0L100 28.8675V86.6L50 115.4675L0 86.6V28.8675Z" fill="%236a0dad" stroke="%236a0dad" stroke-width="1"/></svg>');
    background-size: 80px; 
    background-repeat: repeat;
} */

/* .container::before {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    transform: rotate(30deg);
}

.container::after {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    transform: rotate(-60deg);
} */


/* Header and Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
	background-image: url(/assets/img/background.jpg);
	background-size: cover;
    align-items: center;
    padding: 30px 60px; /* Added horizontal padding for content within the full width container */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-content {
    flex: 2;
    padding-right: 40px;
	margin-bottom: 30px;
    min-width: 300px; /* Ensure content doesn't shrink too much */
}

.welcome-text {
    color: #c02121;
    font-size: 0.9em;
	margin-left: 3px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 800;
}

.hero-content h1 {
    font-family: 'Fredoka', Helvetica, Arial, Lucida, sans-serif;
    font-size: 3.5em;
    margin: 0 0 15px 0;
    line-height: 1.1;
    color: #000;
}

.hero-content h1 .highlight {
    color: #13043f;
	font-weight: 600;
    /* border-bottom: 4px solid var(--yellow-accent); */
    padding-bottom: 5px;
}

.intro-text {
    font-size: 20px;
    font-weight: 500;
	color: #000000;
	font-family: 'Fredoka', Helvetica, Arial, Lucida, sans-serif;
    margin-bottom: 30px;
	margin-top: 20px;
}

.view-resume-btn {
   display: inline-block;
    background-color: #b12c71;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color all 300ms ease 0ms;
}

.view-resume-btn:hover {
    background-color: #164c69; /* Slightly darker yellow */
	color: white;
    
}

.view-resume-btn .arrow {
    margin-left: 8px;
    font-size: 1.2em;
}

.hero-image-container {
    /* flex: 1; */
	width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add some padding around the image */
  /*  background-color: var(--primary-purple);  Background for the border effect */
    border-radius: 15px; /* Rounded corners for the container */
    overflow: hidden; /* Ensure image doesn't overflow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    min-width: 250px; /* Ensure image container has a min width */
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Slightly rounded corners for the image itself */
    border: 5px solid white; /* White border as seen in the image */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}





/* Keyframes for the background gradient movement */
@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Keyframes for the whole page slide up effect */
@keyframes slideUpPage {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply slide up effect to the page content wrapper */
.page-slide-up {
    animation: slideUpPage 1s ease-out forwards;
    opacity: 0;
}


/* Header/Introduction Section */
.intro-header {
    min-height: 450px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 60px 0;
    display: flex;
    align-items: center;
}

/* Text Colors */
.text-dark {
    color: #4a148c !important;
}

.text-secondary {
    color: #7a7a7a !important;
}

.highlight-text {
    color: #000;
}

/* Button Group Spacing */
.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 768px) {
    .button-group {
        justify-content: flex-start;
    }
}

/* Resume Button Styling */
.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid #f7bbd7;
    color: #4a148c;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}














.btn-outline-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f7bbd7;
    transition: left 0.3s ease-out;
    z-index: -1;
}

.btn-outline-secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-secondary:hover::before {
    left: 0;
}


/* --- Global Animations --- */

/* Text fade-in and slight slide-up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for the border spinning animation */
@keyframes borderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Image fade-in and slight scale (applies to the container) */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Apply Animations with Delays */
.animate__text-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Apply image animation to the container */
.animate__img-in {
    animation: fadeInScale 1s ease-out forwards;
    opacity: 0;
}

/* Delay classes for staggered animations */
.delay-1 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.6s; }


/* --- Profile Image Container (for animated border) --- */
.profile-img-container {
    position: relative;
    display: inline-block;
    width: 350px;
    height: 350px;
    border-radius: 0; /* CHANGED: For sharp corners */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

/* Animated Border Pseudo-element */
.profile-img-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: conic-gradient(from 0deg, #f7bbd7 0% 25%, #4a148c 25% 50%, #f7bbd7 50% 75%, #4a148c 75% 100%);
    border-radius: 0; /* CHANGED: For sharp corners */
    animation: borderSpin 4s linear infinite;
    z-index: -1;
}

/* Image inside the container */
.profile-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* CHANGED: For sharp corners */
    border: none;
    box-shadow: none;
    /* REMOVED: transition: transform 0.3s ease-in-out; as hover effect is removed */
}

/* REMOVED: Hover effect on the image itself
.profile-img:hover {
    transform: scale(1.03) rotate(2deg);
}
*/


/* --- Portfolio/Reference Work Section --- */
.portfolio-section {
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
    padding-bottom: 80px;
}

.reference-title {
    background-color: #f7bbd7;
    color: #4a148c;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin: 0 auto 50px auto;
    
    animation: breatheTitle 3s infinite alternate ease-in-out;
    transform-origin: center center;
}

@keyframes breatheTitle {
    0% {
        transform: scale(1);
        background-color: #f7bbd7;
        box-shadow: 0 0 0px rgba(74, 20, 140, 0);
    }
    50% {
        transform: scale(1.02);
        background-color: #ffe0f0;
        box-shadow: 0 0 10px rgba(74, 20, 140, 0.4);
    }
    100% {
        transform: scale(1);
        background-color: #f7bbd7;
        box-shadow: 0 0 0px rgba(74, 20, 140, 0);
    }
}


@keyframes pulsateCardGlow {
    0% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
                    0 0 10px rgba(255, 105, 180, 0.6);
    }
    100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}





@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 20;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 150%;
    }

}



































/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .references-section {
        padding: 150px 15px; /* Adjust padding for smaller screens */
    }

    .references-section h2 {
        font-size: 1.8em;
    }

    .references-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2em;
    }

    .intro-text {
        font-size: 1em;
    }

    .view-resume-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .references-section h2 {
        font-size: 1.5em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-content span {
        margin-bottom: 5px;
    }
}




















.cnt-sec {
	margin-top: 80px;
}

/*.hero-sec .head-sec {

    padding: 25px 45px;

    background-color: #fff;

    border: 3px solid #d28500;

}*/

/*.hero-sec .mil-overay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(38,50,56,.95);

}*/

.hero-sec .container .mil-dots {
	position: absolute;

	left: 0;

	top: 0;

	width: 100px;

	height: 90vh;
}

.mil-dots {
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.2) 15%,
		transparent 0
	);

	background-size: 10px 10px;
}

.hero-sec .container {
	position: relative;

	z-index: 2;
}

.hero-sec .cnt-sec h2 {
	font-size: 45px;

	font-weight: 800;

	color: #000;

	margin-bottom: 18px;
}
.img-fluid {
	height: 180px;
}
#outreach .pdf-sec .img-sec {
	border: 2px solid #fff;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	width: 45%;
	margin: 0 auto;
}

.hero-sec .cnt-sec p {
	font-size: 18px;
	font-weight: 600;
	color: #121212;
}

.hero-sec .cnt-sec a {
	color: #000;

	border-bottom: 2px solid #000000;
}

/* .hero-sec .cnt-sec .i {

    width: 100%;

    display: inline-block;

    margin-top: 25px;


} */
/*
.hero-sec .cnt-sec .i a {

    padding: 15px 80px;

    font-size: 22px;

    letter-spacing: 2px;

    color: #000000;

    font-weight: 600;

    text-decoration: none;
  transition-duration: 0.3s;
    background-color: #1d895f;

    border-radius: 10px;

} */

/* .hero-sec .cnt-sec .i a:hover {

    color: #000;

    background-color: #ffffff;

}

.hero-sec .cnt-sec .i a i {

    margin-right: 12px;

    font-size: 22px;

} */

.hero-sec .img-sec {
	margin-top: 30px;
	text-align: right;

	border-radius: 50px;
}

.hero-sec .img-sec img {
	width: 350px;

	border-radius: 15px;

	border: 5px solid #fff;
}

.nav ul li {
	color: #fff;
	font-size: 18px;
	background-color: rgb(31, 104, 52);
	text-decoration: none;
	border-radius: 0.5em;
	width: 10em;
	height: 3em;
	text-transform: uppercase;
	font-weight: bold;
	font-family: sans-serif;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 3em;
	position: relative;
	right: 40px;
	overflow: hidden;
	z-index: 1;
	transition: 0.5s;
	cursor: pointer;
}

.nav ul li span {
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: var(--c);
	transform: translateY(150%);
	border-radius: 50%;
	left: calc((var(--n) - 1) * 25%);
	transition: 0.5s;
	transition-delay: calc((var(--n) - 1) * 0.1s);
	z-index: -1;
}

.nav ul li:hover {
	background-color: rgb(7, 64, 53);
}

.nav ul li:hover span {
	transform: translateY(0) scale(2);
}

.nav ul li span:nth-child(1) {
	--n: 1;
}

.nav ul li span:nth-child(2) {
	--n: 2;
}

.nav ul li span:nth-child(3) {
	--n: 3;
}

.nav ul li span:nth-child(4) {
	--n: 4;
}

/*
.navs ul li {
    --c: rgb(31, 104, 52);
    color: var(--c);
    font-size: 18px;
    border: 0.1em solid var(--c);
    border-radius: 0.2em;
    width: 19.4em;
    height: 3em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    right: 40px;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;



}

.navs ul li span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.navs ul li:hover {
    color: rgb(255, 255, 255);
}

.navs ul li:hover span {
    transform: translateY(0) scale(2);
}

.navs ul li span:nth-child(1) {
    --n: 1;
}

.navs ul li span:nth-child(2) {
    --n: 2;
}

.navs ul li span:nth-child(3) {
    --n: 3;
}

.navs ul li span:nth-child(4) {
    --n: 4;
} */

section.midd-part.wow.fadeInUp {
	
	background:#f7f2f2 ;
	/* background-image: linear-gradient(
		to right,
		#ff8177 0%,
		#ff867a 0%,
		#ff8c7f 21%,
		#f99185 52%,
		#cf556c 78%,
		#b12a5b 100%
	); */
	background-size: cover;
}

.social-info {
	width: 100%;

	display: inline-block;

	margin: 20px 0;
}

.social-info p i {
	margin-right: 7px;
}

.social-info p a {
	font-weight: 600;
}

.midd-part {
	width: 100%;

	display: inline-block;
    background: rgba(233,216,176,0.2);

	padding: 20px 0px;

	border-top: 1px solid #fff;
}

.midd-part .title-sec {
	width: 100%;

	display: inline-block;

	margin-bottom: 30px;

	padding: 20px 0px;

	text-align: center;
}

.midd-part .title-sec h2 {
	font-size: 30px;

	color: #000;

	font-weight: 600;

	border-radius: 10px;

	border: 1px dashed #000;

	padding: 10px 25px;

	width: fit-content;

	margin: 0 auto;
}

.title {
	width: 100%;

	max-width: 500px;

	margin-left: auto;

	margin-right: auto;

	margin-bottom: 20px;

	position: relative;
}

.title h2 {
	/* text-align: center;

	margin: 4% auto;

	padding: 10px 100px;
	border-radius: 5px;

	color: #ffffff;

	font-family: "Montserrat", sans-serif;
	font-size: 24px;

	font-weight: 500;

	background-color: #1d895f;

	border-bottom: 3px solid #000000;

	width: fit-content;

	position: relative;

	z-index: 2; */


    font-weight: 600;
    font-size: 30px;
    line-height: 1.6em;
    background-color: #cdefff;
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    padding-top: 5px !important;
    padding-right: 35px !important;
    padding-bottom: 5px !important;
    padding-left: 35px !important;
    box-shadow: inset 0px 0px 18px 0px #2897ab;
    width: max-content;
    margin: auto;
    margin-top: 10px;







}

/*.title:before {

    content: " ";

    height: 2px;

    width: 30%;

    background-color: transparent;

    border-bottom: 1px dotted #000;

    position: absolute;

    top: 50%;

    left: 0px;

}

.title:after {

    content: " ";

    height: 2px;

    width: 30%;

    background-color: transparent;

    border-bottom: 1px dotted #000;

    position: absolute;

    top: 50%;

    right: 0px;

}*/

.midd-part .info-sec {
	width: 100%;

	display: inline-block;

	margin: 20px 0px;

	margin-bottom: 0px;
}

.midd-part .info-sec .info-pop-sec {
	margin-top: 0px;

	transition: all 0.3s ease-in-out;
}

.midd-part .info-sec h2 {
	color: #000;
	border-bottom: 3px solid #000000;
	font-size: 18px;
line-height: 25px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	/* letter-spacing: 0.1px; */
	/* background-color: #feffc4; */
	margin-top: 8px;
	padding: 25px 10px;
	height: 80px;
	border-radius: 2px;

	text-align: center;

	position: relative;

	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.midd-part .info-sec:hover h2 {
	color: rgb(9, 9, 9);
	transition-duration: 0.3s;
	background-image: linear-gradient(
			to right,

			#ffd700,
			#ffd700
		),
		url(../../../wallup.net/wp-content/uploads/2019/09/830279-multi-monitor-dual-screen-widescreen.jpg);
}

.midd-part .info-pop-sec .pop-sec {
	border-radius: 2px;

	overflow: hidden;
}

.midd-part .info-pop-sec .pop-sec img {
	cursor: pointer;

	width: 100%;

	overflow: hidden;

	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.midd-part .info-sec:hover .pop-sec img {
	transform: scale(1.1);

	transition: all 0.3s ease-in-out;
}
/* 
.midd-part .card {
	width: 100%;

	display: inline-block;

	margin-bottom: 30px;

	border-radius: 5px;

	cursor: pointer;
}

.midd-part .card:hover h3 {
	color: #ffca49;
}

.midd-part .card .details-sec {
	margin-top: 10px;

	padding: 10px;

	min-height: 90px;
}

.midd-part .card .details-sec h3 {
	font-size: 25px;
}

.card-popup .modal .modal-body li {
	font-size: 28px;

	margin-bottom: 10px;
} */
/* 
.card-popup .modal .modal-dialog {
	max-width: 980px;
}

.card-popup .modal .modal-content {
	background: #fff;
}

.card-popup .modal .modal-header {
	text-align: center;

	background: rgb(31, 104, 52);
	color: white;
}

.card-popup .modal .modal-header .modal-title {
	width: 100%;

	text-align: center;

	color: #ffffff;
}

.card-popup .modal .modal-header .close {
	border-radius: 100%;

	background-color: #ffca49;

	width: 40px;

	height: 40px;

	opacity: 1;

	text-align: center;

	position: relative;

	transition: all 0.3s ease-in-out;

	z-index: 1;
}

.card-popup .modal-header .close {
	padding: 1rem 1rem;

	margin: -2rem -2rem -1rem auto;
}

.card-popup .modal .modal-header .close span {
	position: absolute;

	top: 7px;

	left: 13px;
}

.card-popup .modal .modal-header .close:hover {
	transform: rotate(360deg);

	transition: all 0.3s ease-in-out;
}

.card-popup .modal .pdf-sec {
	width: 100%;

	padding: 15px;

	display: flex;

	flex-wrap: wrap;

	text-align: center;

	justify-content: center;

	overflow: hidden;

	transition: all 0.3s ease-in-out;
}

.card-popup .modal .pdf-sec .pdf-col {
	flex: 0 0 40%;

	max-width: 100%;

	margin: 0px 10px;
}

.card-popup .modal a {
	text-decoration: none;
}

.card-popup .modal a:hover p {
	color: #000;
}

.card-popup .modal .pdf-sec .img-sec {
	border: 2px solid #fff;

	overflow: hidden;

	transition: all 0.3s ease-in-out;

	width: 60%;

	margin: 0 auto;
} */
/* 
#spin .pdf-sec .img-sec {
	border: 2px solid #fff;

	overflow: hidden;

	transition: all 0.3s ease-in-out;

	width: 30%;

	margin: 0 auto;
}

.card-popup .modal .pdf-sec .img-sec img {
	transition: all 0.3s ease-in-out;
	object-fit: cover;
}

.card-popup .modal .pdf-sec .img-sec:hover img {
	transform: scale(1.3);

	transition: all 0.3s ease-in-out;
}

.card-popup .modal .pdf-sec p {
	color: #000;

	margin-top: 10px;
} */
footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 15px 10px;
      font-size: 1rem;
      width: 100%;
      box-sizing: border-box;
      margin-top: auto;
    }
footer p {
	font-size: 16px;

	color: #fff;

	margin-bottom: 0px;
}

@media (max-width: 991px) {
	.cnt-sec p {
		text-align: center;
	}
	
	.cnt-sec {
		margin-top: 0px;

		margin-left: 0px;

		text-align: center;
	}


#music .modal-body .img-sec {
    display: inline-block;
    width: 100%;
    padding: 20px 20px;

}




	.hero-sec .img-sec {
		text-align: center;

		margin-bottom: 15px;
		margin-top: 40px;
	}

	.midd-part .card .img-sec img {
		width: 100%;
	}
}

@media (max-width: 767px) {
	#music .pdf-sec .pdf-col {
		flex: 0 0 49%;

		max-width: 100%;

		margin: 0px 0px;
	}
	.cnt-sec p {
		text-align: center;
	}


#fest .modal-body .img-sec {
    display: inline-block;
    width: 100% !important;
    padding: 10px 20px !important;
}




	.card-popup .modal .pdf-sec .pdf-col {
		flex: none;

		max-width: 100%;

		margin: 0px 10px;
	}


    
#music .modal-body .img-sec {
    display: inline-block;
    width: 100% !important ;
    padding: 20px 20px !important ;

}

	body {
		background-position: center;
	}

	.header-sec .col-lg-6 {
		order: 2;
	}

	.header-sec .col-lg-6.position-relative {
		order: 1;
	}

	.hero-sec .cnt-sec h2 {
		font-size: 42px;

		margin-top: 20px;
	}

	.midd-part .full-row .info-sec h2 {
		margin-bottom: 20px;

		font-size: 25px;
	}

	.midd-part .full-row .info-sec h2,
	.midd-part .full-row .info-pop-sec {
		flex: 0 0 100%;

		max-width: 100%;
	}
}
@media (max-width: 467px) {
	.hero-sec .img-sec img {
		width: 300px;
	}
}


/*===== Service css =====*/

   .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service-box .main-box {
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
  }
  .service-box .main-box:hover .box-front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .service-box .main-box:hover .box-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  .service-box .main-box .box-front {
    text-align: center;
    z-index: 1;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.38);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    border-radius: 15px;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    background-color: transparent;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    position: relative;


    font-family: 'Fredoka', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 900;
    font-style: normal

  }


  .service-box .main-box .box-front:before {
    content: "";
    width: 23px;
    height: 42px;
    position: absolute;
    left: 15%;
    bottom: 5%;
    -webkit-transform: rotate(248deg);
            transform: rotate(248deg);
    background-image: url(../img/.html);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .service-box .main-box .box-front:after {
    content: "";
    width: 38px;
    height: 40px;
    position: absolute;
    right: 1%;
    top: 5%;
    -webkit-transform: rotate(248deg);
            transform: rotate(248deg);
    background-image: url(../img/designs/3.html);
    background-repeat: no-repeat;
  }
  .service-box .main-box .box-back {
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.38);
    transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3), -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    border-radius: 15px;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-color: navy;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-box .flipper {
    position: relative;
    /* padding: 35px 0 50px 0; */
    margin-bottom: 30px;
  }
  .service-box .flipper:hover .box-front {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    -webkit-transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  }
  .service-box .flipper:hover .box-back {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    -webkit-transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  }
  
  .flipper .content-wrap .icon {
    position: relative;
  }
  .flipper .content-wrap .icon:before {
    content: "";
    width: 100px;
    height: 100px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation: morphing-image 15s linear infinite forwards;
            animation: morphing-image 15s linear infinite forwards;
  }
  .flipper .content-wrap .svg_img {
    width: 120px;
    height: auto;
    margin: 0 0 15px 0;
    position: relative;
  }
  .flipper .content-wrap .svg_img path {
    fill: #716fff;
  }
  
  @-webkit-keyframes morphing-image {
    0% {
      border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    }
    10% {
      border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
    }
    20% {
      border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
    }
    30% {
      border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
    }
    40% {
      border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
    }
    50% {
      border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
    }
    60% {
      border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
    }
    70% {
      border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
    }
    80% {
      border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
    }
    90% {
      border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
    }
    100% {
      border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    }
  }
  
  @keyframes morphing-image {
    0% {
      border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    }
    10% {
      border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
    }
    20% {
      border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
    }
    30% {
      border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
    }
    40% {
      border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
    }
    50% {
      border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
    }
    60% {
      border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
    }
    70% {
      border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
    }
    80% {
      border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
    }
    90% {
      border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
    }
    100% {
      border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    }
  }
  .main-box .content-wrap {
    width: 100%;
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: inherit;
    perspective: inherit;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 30px;
    -webkit-transform: translate3d(0, 0, 50px) scale(0.9);
    transform: translate3d(0, 0, 50px) scale(0.9);
  }
  
  .box-front .content-wrap h3 {
    margin-bottom: 15px;
    color: #000;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
  }
  .box-front .content-wrap p {
    margin: 0;
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
  }
  .box-front .bg-img {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    border-radius: 0 30px 0 0;
  }
  .box-front .bg-img path {
    fill: #000;
  }
  
  .box-back .content-wrap h3 {
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
    margin-top: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
  }
  .box-back .content-wrap p {
    margin: 0;
    color: #000;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }
  .box-back .btn {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 6px 15px;
    font-size: 14px;
    letter-spacing: 0.05rem;
    margin-top: 15px;
    font-weight: 500;
    border-radius: 0 20px 0 0;
    border: 1px solid #000;
    border-radius: 15px;
    color: #000;
    background-color: #fff;
  }
  .box-back .btn:hover {
    background-color: #000;
    color: #fff;
  }
  
  .content-wrap p {
    margin-bottom: 10px;
    text-align: left;
  }