@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@font-face {
  font-family: 'Gernus Doripos';
  src: url('fonts/Gernus Doripos.woff') format('woff'),
	   url('fonts/Gernus Doripos.ttf') format('truetype'),
	   url('fonts/Gernus Doripos.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gernus Doripos', sans-serif;
}
h2{
	font-size: 2.75em;
}
body{
 margin:0;	
 font-family: "Nunito", sans-serif;
   font-optical-sizing: auto;
   
}
header{
	background: #9265ab;
	position: relative;
}
header .section{
	max-width:1220px;
	margin:auto;
	display:flex;
	justify-content: space-between;
	padding: 50px 0 10px 0;
	position: relative;
}

/* header:after{
	width: 100%;
	position: absolute;
	bottom:-110px;
	height:110px;
	display:block;
	 background:	url(headbg.svg); 
	
	content: " ";
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
} */


.header-wave {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 120px; /* Adjust wave height */
  transform: rotate(180deg);
}
.footer-wave {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120px; /* Adjust wave height */

}
.topNav ul{
	list-style: none;
	display:flex;
}
.topNav ul li{
	padding:0px 20px;
}
.topNav ul li a{
	color:#fff;
	text-decoration: none;
}
.logo img{
	width:100%;
}
main{
	padding: 90px 0;
}
main .section{
	max-width:1220px;
	margin:auto;
}
.textImage{
	display:flex;
	max-width:940px;
	margin:auto;
	column-gap: 70px;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
}
.textImage h2{
	color: #9265AB;
}
.textImage p{
	margin-bottom: 20px;
}
footer{
	background: #9265ab;
	position: relative;
}
footer .byline{
	width:100%;
}
footer .col{
	width:30%;
}
footer {
	color:#fff;
}
/* footer:before{
	width: 100%;
	position: absolute;
	top:-90px;
	height:90px;
	display:block;
	background:	url(headbg.svg);
	content: " ";
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	transform: rotate(180deg);
} */

footer .section{
	max-width:1220px;
	margin:auto;
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 40px;
}

.linkBtn{
	border-radius: 40px;
	background: #F89A38;
	padding: 15px 20px;
	color: #fff;
	text-decoration: none;
	margin-top:20px;
	display: block;
	width: fit-content;
}
.who{
	background: url(/patternbg.svg);
	padding: 80px;
	
}
.who .text{
	width: 500px;
	background:#F89A38;
	border-radius: 40px;
	padding: 40px;
	color: #fff;

}
.linkBtn.outline{
	border: 3px solid #FFF;
}
.threeCol {
	padding: 80px 0;
}
.threeCol .cols{
	display:flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	row-gap: 30px;
}
.threeCol .cols .col{
	width:30%;
	text-align: center;

}
.threeCol h2{
	text-align:center;
	color: #9265AB;
	
}
.col .linkBtn{
	margin: auto;
}
.col .profilePic{
	position: relative;
}
.col .profilePic:after
{
	width: 300px;
	height:300px;
	border-radius:50%;
	display:block;
	background: #F89A38;
	content: "";
	position: absolute;
	bottom:0;
	z-index:-1;
}
.col {
  position: relative;
}

.profilePic {
  position: relative;
  width: 300px;
  height: 390px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  margin: auto;
}

.profilePic img {
  position: relative;
  z-index: 1;
  /* clip-path: ellipse(186px 242px at 50% 35%); */
clip-path: ellipse(186px 242px at 50% 38%);
  height: 100%;
}

.profilePic::after {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: block;
  background: #F89A38;
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.col:nth-of-type(2) .profilePic::after {
  background: #FFDF3E;
}
.col:nth-of-type(3) .profilePic::after {
  background: #9265AB;
}
.who .circle{
	background: #FFDF3E;
	border-radius: 50%;
	width:40%;
	padding: 40px 40px 0 40px;
	position: relative;
}
.who .circle .info
{
	position: absolute;
	right: -10%;
	top: 30%;
}
.who .circle .info h2{
	color: #9265AB;
}
.who .circle .info a
{
	background: #9265AB;
}
.who .circle img{
	max-width: 70%;
}
.who.patterned .section{
	display:flex;
	justify-content: space-between;
}
.who.patterned .text{
	width:35%;
}
.newsletter {
 
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.newsletter h2 {
  color: #9A6DBF;
  font-size: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  max-width: 500px;

}

.newsletter-form {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: #F89A38;
  color: white;
  width: 250px;
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: white;
  opacity: 0.9;
}

.newsletter-btn {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: #9A6DBF;
  color: white;

  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-btn:hover {
  background: #7C4BBA;
}
.newsletter{
	padding:80px 0;
}
.newsletter .image img{
	width: 100%;
	max-width: 370px;
}
footer .circles{
	list-style: none;
	margin: 0;
	padding:0;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: flex-start;
	column-gap: 10px;
	row-gap: 10px;
}
footer .circles li{
	display:block;
	width: 35%;
	
}
footer .circles a{
	display:block;
}
footer .circles img{
	width:100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	list-style: none;
}
.contact form{
	display:flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.contact input{
	width:100%;
	padding: 1rem 1.5rem;
	  border: 1px solid #fff;
	  border-radius: 50px;
	background:none;
	color:#fff;
	margin: 10px 0;
	font-size:16px;
}
.contact input::placeholder{
	color:#fff;
}
.contact button{
	padding: 1rem 1.5rem;
	  border: none;
	  border-radius: 50px;
	  background: #F89A38;
	  color: white;
	
	  font-size: 1rem;
	  cursor: pointer;
	  transition: 0.3s ease;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.btnCont{
	position: relative;
	width: -webkit-fit-content;
}
.btnCont a{
	margin-right:0;
	transition: margin 0.3s ease;
	z-index: 10;
	position: relative;
}
.btnCont a:hover{
	margin-right: 30px;
}
.btnCont .creature
{
	right: -20px;
	position: absolute;
	top: 0;
	z-index: 1;
	max-height: 60px;
	height: 60px;
}
.btnCont .creature {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 1;
  max-height: 60px;
  height: 60px;

  animation: hop 4s ease-in-out infinite;
  transform-origin: bottom center;
  animation-delay: calc(var(--seed) * -4s);
}
html {
  scroll-behavior: smooth;
}

@keyframes hop {
  0%, 92%, 100% {
	transform: translateY(0);
  }
  95% {
	transform: translateY(-8px);
  }
  97% {
	transform: translateY(0);
  }
}
@media (max-width: 1050px) {
	.threeCol .cols .col{
		width:45%;
	}
	.who.patterned .section{
		flex-wrap: wrap;
		row-gap:40px;
		flex-direction:column-reverse;
	}
	.who .circle{
		width:80%;
	}
	.who.patterned .text{
		width:85%;
	}
	footer .col {
width: 45%;
}
}
@media (max-width: 991px) {
  .menu-toggle {
	display: block;
	position: relative;
	z-index: 1001;
  }

  .topNav ul {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #8E5BAA; /* your header purple */
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 0;
	margin: 0;
	display: none;
  }

  .topNav.open ul {
	display: flex;
  }
}
@media (max-width: 885px) {
	.textImage{
		flex-wrap:wrap;
		row-gap: 40px;
	}
	.textImage .text{
		width:80%;
	}
	.who .text{
		max-width: 100%;
		margin: auto;
		
	}
	.who .circle .info{
		top:60%;
	}
	footer .col {
width: 85%;
}
	.footer-wave{
	top:-16%;
	}
}
@media screen and (max-width: 771px) {
 .threeCol .cols .col {
width: 55%;
}
}